forked from dragly/neuronify
-
Notifications
You must be signed in to change notification settings - Fork 12
/
images.qrc
2152 lines (2152 loc) · 187 KB
/
images.qrc
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
<RCC>
<qresource prefix="/">
<file>images/back.png</file>
<file>images/systems.png</file>
<file>images/logo.png</file>
<file>images/transform-move.png</file>
<file>images/endpoint_exitatory.png</file>
<file>images/delete.png</file>
<file>images/categories/generators.png</file>
<file>images/categories/inhibitory_neuron.png</file>
<file>images/categories/marker.png</file>
<file>images/categories/meters.png</file>
<file>images/categories/neuron.png</file>
<file>images/generators/current_clamp.png</file>
<file>images/generators/irregular_spike_generator.png</file>
<file>images/meters/voltmeter.png</file>
<file>images/neurons/adaptive.png</file>
<file>images/neurons/adaptive_inhibitory.png</file>
<file>images/neurons/blank.png</file>
<file>images/neurons/blank_inhibitory.png</file>
<file>images/neurons/burst.png</file>
<file>images/neurons/burst_inhibitory.png</file>
<file>images/neurons/leaky.png</file>
<file>images/neurons/leaky_inhibitory.png</file>
<file>images/sensors/eye.png</file>
<file>images/sensors/touch_sensor.png</file>
<file>images/categories/sensors.png</file>
<file>images/generators/generator_overlay.png</file>
<file>images/generators/ac_clamp.png</file>
<file>images/generators/irregular_spike_generator_inhibitory.png</file>
<file>images/categories/annotate.png</file>
<file>images/annotate/annotate.png</file>
<file>images/meters/spikemeter.png</file>
<file>images/generators/irregular_spike_generator_excitatory.png</file>
<file>images/meters/ratePlot.png</file>
<file>images/sensors/kernels/offLeft.png</file>
<file>images/sensors/kernels/offTop.png</file>
<file>images/sensors/kernels/offRight.png</file>
<file>images/sensors/kernels/offBottom.png</file>
<file>images/sensors/kernels/gabor.png</file>
<file>images/sensors/kernels/dog.png</file>
<file>images/playback/fast.png</file>
<file>images/playback/pause.png</file>
<file>images/playback/play.png</file>
<file>images/playback/superduperfast.png</file>
<file>images/playback/superfast.png</file>
<file>images/logo/mainMenuLogo.png</file>
<file>images/playback/playpause.png</file>
<file>images/playback/fast-active.png</file>
<file>images/playback/pause-active.png</file>
<file>images/playback/play-active.png</file>
<file>images/playback/playpause-active.png</file>
<file>images/playback/superduperfast-active.png</file>
<file>images/playback/superfast-active.png</file>
<file>images/tools/create.png</file>
<file>images/tools/delete.png</file>
<file>images/tools/mainmenu.png</file>
<file>images/tools/playback.png</file>
<file>images/tools/properties.png</file>
<file>images/tools/done.png</file>
<file>images/annotate/next.png</file>
<file>images/sensors/touch_sensor_overlay.png</file>
<file>images/generators/regular_spike_generator.png</file>
<file>images/generators/regular_spike_generator_excitatory.png</file>
<file>images/generators/regular_spike_generator_inhibitory.png</file>
<file>images/particles/particle.png</file>
<file>images/meters/loudspeaker.png</file>
<file>images/generators/eye.png</file>
<file>images/generators/touch_sensor.png</file>
<file>qml/store/StoreFrontPage.qml</file>
<file>qml/store/StoreItem.qml</file>
<file>images/store/ic_search_black_48dp.png</file>
<file>images/background/background.png</file>
<file>images/logo/logo-no-background.png</file>
<file>images/categories/annotation.png</file>
<file>images/categories/excitatory.png</file>
<file>images/categories/inhibitory.png</file>
<file>images/material-icons/navigation/svg/production/ic_arrow_back_18px.svg</file>
<file>images/material-icons/navigation/svg/production/ic_arrow_back_24px.svg</file>
<file>images/material-icons/navigation/svg/production/ic_arrow_back_36px.svg</file>
<file>images/material-icons/navigation/svg/production/ic_arrow_back_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_3d_rotation_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_3d_rotation_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_accessibility_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_accessibility_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_accessible_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_accessible_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_account_balance_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_account_balance_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_account_balance_wallet_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_account_balance_wallet_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_account_box_18px.svg</file>
<file>images/material-icons/action/svg/production/ic_account_box_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_account_box_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_account_circle_18px.svg</file>
<file>images/material-icons/action/svg/production/ic_account_circle_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_account_circle_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_add_shopping_cart_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_add_shopping_cart_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_alarm_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_alarm_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_alarm_add_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_alarm_add_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_alarm_off_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_alarm_off_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_alarm_on_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_alarm_on_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_all_out_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_all_out_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_android_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_android_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_announcement_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_announcement_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_aspect_ratio_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_aspect_ratio_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_assessment_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_assessment_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_ind_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_ind_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_late_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_late_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_return_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_return_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_returned_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_returned_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_turned_in_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_assignment_turned_in_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_autorenew_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_autorenew_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_backup_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_backup_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_book_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_book_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_bookmark_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_bookmark_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_bookmark_border_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_bookmark_border_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_bug_report_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_bug_report_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_build_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_build_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_cached_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_cached_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_camera_enhance_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_card_giftcard_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_card_giftcard_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_card_membership_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_card_membership_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_card_travel_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_card_travel_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_change_history_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_change_history_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_check_circle_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_check_circle_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_chrome_reader_mode_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_chrome_reader_mode_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_class_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_class_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_code_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_code_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_compare_arrows_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_compare_arrows_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_copyright_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_copyright_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_credit_card_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_credit_card_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_dashboard_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_dashboard_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_date_range_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_date_range_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_delete_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_delete_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_delete_forever_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_delete_forever_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_description_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_description_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_dns_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_dns_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_done_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_done_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_done_all_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_done_all_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_donut_large_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_donut_large_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_donut_small_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_donut_small_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_eject_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_euro_symbol_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_euro_symbol_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_event_18px.svg</file>
<file>images/material-icons/action/svg/production/ic_event_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_event_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_event_seat_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_event_seat_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_exit_to_app_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_exit_to_app_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_explore_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_explore_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_extension_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_extension_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_face_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_face_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_favorite_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_favorite_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_favorite_border_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_favorite_border_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_feedback_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_feedback_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_find_in_page_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_find_in_page_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_find_replace_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_find_replace_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_fingerprint_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_fingerprint_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_flight_land_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_flight_land_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_flight_takeoff_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_flight_takeoff_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_flip_to_back_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_flip_to_back_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_flip_to_front_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_flip_to_front_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_g_translate_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_g_translate_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_gavel_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_gavel_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_get_app_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_get_app_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_gif_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_grade_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_grade_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_group_work_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_group_work_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_help_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_help_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_help_outline_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_highlight_off_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_highlight_off_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_history_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_history_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_home_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_home_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_hourglass_empty_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_hourglass_empty_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_hourglass_full_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_hourglass_full_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_http_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_http_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_https_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_https_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_important_devices_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_important_devices_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_info_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_info_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_info_outline_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_info_outline_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_input_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_input_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_invert_colors_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_invert_colors_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_label_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_label_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_label_outline_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_label_outline_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_language_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_language_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_launch_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_launch_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_lightbulb_outline_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_lightbulb_outline_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_line_style_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_line_style_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_line_weight_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_line_weight_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_list_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_list_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_lock_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_lock_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_lock_open_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_lock_open_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_lock_outline_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_lock_outline_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_loyalty_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_loyalty_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_markunread_mailbox_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_markunread_mailbox_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_motorcycle_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_motorcycle_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_note_add_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_note_add_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_offline_pin_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_opacity_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_opacity_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_open_in_browser_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_open_in_browser_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_open_in_new_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_open_in_new_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_open_with_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_open_with_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_pageview_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_pageview_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_pan_tool_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_pan_tool_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_payment_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_payment_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_camera_mic_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_camera_mic_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_contact_calendar_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_contact_calendar_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_data_setting_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_data_setting_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_device_information_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_device_information_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_identity_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_identity_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_media_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_media_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_phone_msg_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_phone_msg_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_scan_wifi_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_perm_scan_wifi_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_pets_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_pets_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_picture_in_picture_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_picture_in_picture_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_picture_in_picture_alt_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_picture_in_picture_alt_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_play_for_work_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_play_for_work_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_polymer_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_polymer_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_power_settings_new_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_power_settings_new_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_pregnant_woman_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_pregnant_woman_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_print_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_print_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_query_builder_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_query_builder_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_question_answer_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_question_answer_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_receipt_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_receipt_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_record_voice_over_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_record_voice_over_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_redeem_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_redeem_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_remove_shopping_cart_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_remove_shopping_cart_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_reorder_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_report_problem_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_report_problem_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_restore_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_restore_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_restore_page_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_restore_page_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_room_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_room_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_rounded_corner_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_rounded_corner_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_rowing_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_rowing_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_schedule_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_schedule_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_search_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_search_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_applications_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_applications_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_backup_restore_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_backup_restore_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_bluetooth_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_bluetooth_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_brightness_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_brightness_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_cell_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_cell_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_ethernet_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_ethernet_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_input_antenna_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_input_antenna_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_input_component_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_input_component_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_input_composite_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_input_composite_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_input_hdmi_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_input_hdmi_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_input_svideo_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_input_svideo_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_overscan_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_overscan_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_phone_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_phone_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_power_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_power_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_remote_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_remote_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_voice_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_settings_voice_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_shop_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_shop_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_shop_two_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_shop_two_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_shopping_basket_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_shopping_basket_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_shopping_cart_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_shopping_cart_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_speaker_notes_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_speaker_notes_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_speaker_notes_off_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_speaker_notes_off_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_spellcheck_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_spellcheck_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_star_rate_18px.svg</file>
<file>images/material-icons/action/svg/production/ic_stars_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_stars_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_store_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_store_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_subject_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_subject_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_supervisor_account_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_supervisor_account_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_swap_horiz_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_swap_horiz_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_swap_vert_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_swap_vert_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_swap_vertical_circle_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_swap_vertical_circle_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_system_update_alt_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_system_update_alt_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_tab_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_tab_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_tab_unselected_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_tab_unselected_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_theaters_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_theaters_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_thumb_down_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_thumb_down_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_thumb_up_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_thumb_up_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_thumbs_up_down_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_thumbs_up_down_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_timeline_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_timeline_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_toc_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_toc_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_today_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_today_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_toll_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_toll_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_touch_app_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_touch_app_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_track_changes_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_track_changes_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_translate_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_translate_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_trending_down_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_trending_down_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_trending_flat_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_trending_flat_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_trending_up_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_trending_up_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_turned_in_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_turned_in_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_turned_in_not_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_turned_in_not_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_update_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_update_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_verified_user_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_verified_user_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_agenda_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_agenda_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_array_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_array_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_carousel_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_carousel_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_column_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_column_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_day_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_day_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_headline_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_headline_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_list_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_list_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_module_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_module_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_quilt_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_quilt_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_stream_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_stream_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_week_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_view_week_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_visibility_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_visibility_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_visibility_off_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_visibility_off_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_watch_later_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_watch_later_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_work_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_work_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_youtube_searched_for_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_youtube_searched_for_48px.svg</file>
<file>images/material-icons/action/svg/production/ic_zoom_in_24px.svg</file>
<file>images/material-icons/action/svg/production/ic_zoom_out_24px.svg</file>
<file>images/material-icons/alert/svg/production/ic_add_alert_24px.svg</file>
<file>images/material-icons/alert/svg/production/ic_add_alert_48px.svg</file>
<file>images/material-icons/alert/svg/production/ic_error_18px.svg</file>
<file>images/material-icons/alert/svg/production/ic_error_24px.svg</file>
<file>images/material-icons/alert/svg/production/ic_error_36px.svg</file>
<file>images/material-icons/alert/svg/production/ic_error_48px.svg</file>
<file>images/material-icons/alert/svg/production/ic_error_outline_24px.svg</file>
<file>images/material-icons/alert/svg/production/ic_error_outline_48px.svg</file>
<file>images/material-icons/alert/svg/production/ic_warning_18px.svg</file>
<file>images/material-icons/alert/svg/production/ic_warning_24px.svg</file>
<file>images/material-icons/alert/svg/production/ic_warning_36px.svg</file>
<file>images/material-icons/alert/svg/production/ic_warning_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_add_to_queue_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_add_to_queue_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_airplay_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_airplay_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_album_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_album_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_art_track_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_art_track_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_av_timer_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_av_timer_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_branding_watermark_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_branding_watermark_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_call_to_action_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_call_to_action_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_closed_caption_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_closed_caption_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_equalizer_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_equalizer_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_explicit_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_explicit_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_fast_forward_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_fast_forward_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_fast_rewind_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_fast_rewind_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_featured_play_list_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_featured_play_list_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_featured_video_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_featured_video_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_fiber_dvr_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_fiber_dvr_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_fiber_manual_record_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_fiber_manual_record_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_fiber_new_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_fiber_new_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_fiber_pin_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_fiber_pin_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_fiber_smart_record_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_fiber_smart_record_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_forward_10_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_forward_10_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_forward_30_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_forward_30_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_forward_5_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_forward_5_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_games_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_games_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_hd_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_hearing_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_hearing_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_high_quality_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_high_quality_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_library_add_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_library_add_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_library_books_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_library_books_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_library_music_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_library_music_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_loop_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_loop_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_mic_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_mic_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_mic_none_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_mic_none_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_mic_off_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_mic_off_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_movie_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_movie_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_music_video_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_music_video_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_new_releases_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_new_releases_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_not_interested_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_not_interested_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_note_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_note_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_pause_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_pause_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_pause_circle_filled_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_pause_circle_filled_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_pause_circle_outline_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_pause_circle_outline_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_play_arrow_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_play_arrow_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_play_circle_filled_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_play_circle_filled_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_play_circle_filled_white_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_play_circle_outline_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_play_circle_outline_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_playlist_add_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_playlist_add_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_playlist_add_check_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_playlist_add_check_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_playlist_play_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_playlist_play_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_queue_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_queue_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_queue_music_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_queue_music_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_queue_play_next_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_queue_play_next_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_radio_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_radio_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_recent_actors_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_recent_actors_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_remove_from_queue_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_remove_from_queue_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_repeat_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_repeat_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_repeat_one_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_repeat_one_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_replay_10_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_replay_10_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_replay_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_replay_30_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_replay_30_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_replay_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_replay_5_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_replay_5_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_shuffle_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_shuffle_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_skip_next_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_skip_next_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_skip_previous_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_skip_previous_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_slow_motion_video_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_slow_motion_video_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_snooze_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_snooze_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_sort_by_alpha_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_stop_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_stop_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_subscriptions_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_subscriptions_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_subtitles_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_subtitles_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_surround_sound_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_surround_sound_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_video_call_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_video_call_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_video_label_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_video_label_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_video_library_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_video_library_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_videocam_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_videocam_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_videocam_off_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_videocam_off_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_volume_down_18px.svg</file>
<file>images/material-icons/av/svg/production/ic_volume_down_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_volume_down_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_volume_mute_18px.svg</file>
<file>images/material-icons/av/svg/production/ic_volume_mute_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_volume_mute_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_volume_off_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_volume_off_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_volume_up_18px.svg</file>
<file>images/material-icons/av/svg/production/ic_volume_up_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_volume_up_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_web_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_web_48px.svg</file>
<file>images/material-icons/av/svg/production/ic_web_asset_24px.svg</file>
<file>images/material-icons/av/svg/production/ic_web_asset_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_business_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_business_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_end_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_end_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_made_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_made_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_merge_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_merge_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_missed_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_missed_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_missed_outgoing_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_missed_outgoing_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_received_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_received_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_split_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_call_split_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_chat_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_chat_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_chat_bubble_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_chat_bubble_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_chat_bubble_outline_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_chat_bubble_outline_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_clear_all_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_clear_all_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_comment_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_comment_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_contact_mail_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_contact_mail_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_contact_phone_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_contact_phone_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_contacts_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_contacts_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_dialer_sip_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_dialer_sip_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_dialpad_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_dialpad_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_email_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_email_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_forum_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_forum_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_import_contacts_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_import_contacts_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_import_export_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_import_export_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_invert_colors_off_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_invert_colors_off_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_live_help_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_live_help_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_location_off_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_location_off_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_location_on_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_location_on_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_mail_outline_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_mail_outline_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_message_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_message_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_no_sim_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_no_sim_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_phone_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_phone_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_phonelink_erase_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_phonelink_lock_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_phonelink_ring_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_phonelink_setup_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_portable_wifi_off_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_portable_wifi_off_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_present_to_all_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_present_to_all_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_ring_volume_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_ring_volume_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_rss_feed_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_rss_feed_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_screen_share_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_screen_share_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_speaker_phone_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_speaker_phone_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_stay_current_landscape_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_stay_current_landscape_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_stay_current_portrait_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_stay_current_portrait_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_stay_primary_landscape_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_stay_primary_landscape_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_stay_primary_portrait_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_stay_primary_portrait_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_stop_screen_share_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_stop_screen_share_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_swap_calls_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_swap_calls_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_textsms_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_textsms_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_voicemail_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_voicemail_48px.svg</file>
<file>images/material-icons/communication/svg/production/ic_vpn_key_24px.svg</file>
<file>images/material-icons/communication/svg/production/ic_vpn_key_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_add_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_add_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_add_box_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_add_box_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_add_circle_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_add_circle_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_add_circle_outline_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_add_circle_outline_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_archive_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_archive_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_backspace_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_backspace_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_block_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_block_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_clear_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_clear_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_content_copy_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_content_copy_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_content_cut_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_content_cut_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_content_paste_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_content_paste_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_create_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_create_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_delete_sweep_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_delete_sweep_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_drafts_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_drafts_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_filter_list_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_filter_list_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_flag_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_flag_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_font_download_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_forward_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_forward_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_gesture_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_gesture_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_inbox_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_inbox_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_link_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_link_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_low_priority_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_low_priority_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_mail_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_mail_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_markunread_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_markunread_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_move_to_inbox_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_move_to_inbox_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_next_week_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_next_week_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_redo_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_redo_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_remove_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_remove_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_remove_circle_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_remove_circle_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_remove_circle_outline_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_remove_circle_outline_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_reply_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_reply_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_reply_all_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_reply_all_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_report_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_report_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_save_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_save_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_select_all_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_select_all_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_send_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_send_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_sort_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_sort_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_text_format_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_text_format_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_unarchive_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_unarchive_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_undo_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_undo_48px.svg</file>
<file>images/material-icons/content/svg/production/ic_weekend_24px.svg</file>
<file>images/material-icons/content/svg/production/ic_weekend_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_access_alarm_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_access_alarm_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_access_alarms_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_access_alarms_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_access_time_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_access_time_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_add_alarm_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_add_alarm_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_airplanemode_active_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_airplanemode_active_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_airplanemode_inactive_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_airplanemode_inactive_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_20_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_20_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_20_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_30_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_30_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_30_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_50_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_50_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_50_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_60_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_60_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_60_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_80_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_80_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_80_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_90_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_90_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_90_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_alert_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_alert_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_alert_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_20_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_20_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_20_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_30_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_30_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_30_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_50_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_50_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_50_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_60_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_60_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_60_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_80_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_80_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_80_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_90_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_90_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_90_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_full_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_full_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_charging_full_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_full_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_full_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_full_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_std_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_std_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_std_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_unknown_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_unknown_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_battery_unknown_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_bluetooth_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_bluetooth_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_bluetooth_connected_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_bluetooth_connected_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_bluetooth_disabled_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_bluetooth_disabled_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_bluetooth_searching_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_bluetooth_searching_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_brightness_auto_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_brightness_auto_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_brightness_high_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_brightness_high_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_brightness_low_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_brightness_low_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_brightness_medium_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_brightness_medium_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_data_usage_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_data_usage_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_developer_mode_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_developer_mode_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_devices_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_devices_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_dvr_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_dvr_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_gps_fixed_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_gps_fixed_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_gps_not_fixed_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_gps_not_fixed_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_gps_off_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_gps_off_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_graphic_eq_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_graphic_eq_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_location_disabled_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_location_disabled_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_location_searching_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_location_searching_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_network_cell_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_network_cell_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_network_cell_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_network_wifi_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_network_wifi_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_network_wifi_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_nfc_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_nfc_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_screen_lock_landscape_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_screen_lock_landscape_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_screen_lock_portrait_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_screen_lock_portrait_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_screen_lock_rotation_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_screen_lock_rotation_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_screen_rotation_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_screen_rotation_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_sd_storage_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_sd_storage_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_settings_system_daydream_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_settings_system_daydream_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_0_bar_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_0_bar_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_0_bar_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_1_bar_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_1_bar_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_1_bar_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_2_bar_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_2_bar_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_2_bar_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_3_bar_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_3_bar_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_3_bar_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_4_bar_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_4_bar_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_4_bar_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_connected_no_internet_0_bar_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_connected_no_internet_0_bar_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_connected_no_internet_0_bar_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_connected_no_internet_1_bar_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_connected_no_internet_1_bar_24px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_connected_no_internet_1_bar_48px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_connected_no_internet_2_bar_18px.svg</file>
<file>images/material-icons/device/svg/production/ic_signal_cellular_connected_no_internet_2_bar_24px.svg</file>