forked from home-assistant/android
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlint-baseline.xml
More file actions
1810 lines (1643 loc) · 450 KB
/
lint-baseline.xml
File metadata and controls
1810 lines (1643 loc) · 450 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<issues format="6" by="lint 9.0.1" type="baseline" client="gradle" dependencies="false" name="AGP (9.0.1)" variant="all" version="9.0.1">
<issue
id="MissingPermission"
message="Call requires permission which may be rejected by user: code should explicitly check to see if permission is available (with `checkPermission`) or explicitly handle a potential `SecurityException`"
errorLine1=" actReg.removeActivityUpdates(pendingIntent)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/full/kotlin/io/homeassistant/companion/android/sensors/ActivitySensorManager.kt"
line="232"
column="13"/>
</issue>
<issue
id="MissingPermission"
message="Call requires permission which may be rejected by user: code should explicitly check to see if permission is available (with `checkPermission`) or explicitly handle a potential `SecurityException`"
errorLine1=" actReg.requestActivityUpdates(TimeUnit.MINUTES.toMillis(if (fastUpdate) 1 else 2), pendingIntent)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/full/kotlin/io/homeassistant/companion/android/sensors/ActivitySensorManager.kt"
line="237"
column="17"/>
</issue>
<issue
id="MissingPermission"
message="Call requires permission which may be rejected by user: code should explicitly check to see if permission is available (with `checkPermission`) or explicitly handle a potential `SecurityException`"
errorLine1=" ActivityRecognition.getClient(context).requestSleepSegmentUpdates("
errorLine2=" ^">
<location
file="src/full/kotlin/io/homeassistant/companion/android/sensors/ActivitySensorManager.kt"
line="257"
column="25"/>
</issue>
<issue
id="MissingPermission"
message="Call requires permission which may be rejected by user: code should explicitly check to see if permission is available (with `checkPermission`) or explicitly handle a potential `SecurityException`"
errorLine1=" ActivityRecognition.getClient(context).requestSleepSegmentUpdates("
errorLine2=" ^">
<location
file="src/full/kotlin/io/homeassistant/companion/android/sensors/ActivitySensorManager.kt"
line="265"
column="25"/>
</issue>
<issue
id="MissingPermission"
message="Call requires permission which may be rejected by user: code should explicitly check to see if permission is available (with `checkPermission`) or explicitly handle a potential `SecurityException`"
errorLine1=" ActivityRecognition.getClient(context).requestSleepSegmentUpdates("
errorLine2=" ^">
<location
file="src/full/kotlin/io/homeassistant/companion/android/sensors/ActivitySensorManager.kt"
line="273"
column="25"/>
</issue>
<issue
id="MissingPermission"
message="Call requires permission which may be rejected by user: code should explicitly check to see if permission is available (with `checkPermission`) or explicitly handle a potential `SecurityException`"
errorLine1=" NotificationManagerCompat.from(context)"
errorLine2=" ^">
<location
file="src/main/kotlin/io/homeassistant/companion/android/util/DataUriDownloadManager.kt"
line="64"
column="9"/>
</issue>
<issue
id="MissingPermission"
message="Call requires permission which may be rejected by user: code should explicitly check to see if permission is available (with `checkPermission`) or explicitly handle a potential `SecurityException`"
errorLine1=" notificationManager.notify(notificationId, notificationBuilder.build())"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/full/kotlin/io/homeassistant/companion/android/location/HighAccuracyLocationService.kt"
line="109"
column="17"/>
</issue>
<issue
id="MissingPermission"
message="Call requires permission which may be rejected by user: code should explicitly check to see if permission is available (with `checkPermission`) or explicitly handle a potential `SecurityException`"
errorLine1=" notify(tag, messageId, notificationBuilder.build())"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/notifications/MessagingManager.kt"
line="1095"
column="17"/>
</issue>
<issue
id="MissingClass"
message="Class referenced in the manifest, `com.google.android.gms.metadata.ModuleDependencies`, was not found in the project or the libraries"
errorLine1=" android:name="com.google.android.gms.metadata.ModuleDependencies""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/full/AndroidManifest.xml"
line="93"
column="27"/>
</issue>
<issue
id="DefaultLocale"
message="Implicitly using the default locale is a common source of bugs: Use `String.format(Locale, ...)` instead"
errorLine1=" "" + String.format("%8.5f", latitude) + " " +"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/full/kotlin/io/homeassistant/companion/android/location/HighAccuracyLocationService.kt"
line="96"
column="26"/>
</issue>
<issue
id="DefaultLocale"
message="Implicitly using the default locale is a common source of bugs: Use `String.format(Locale, ...)` instead"
errorLine1=" String.format("%8.5f", longitude)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/full/kotlin/io/homeassistant/companion/android/location/HighAccuracyLocationService.kt"
line="97"
column="25"/>
</issue>
<issue
id="InlinedApi"
message="Field requires API level 24 (current min is 23): `android.provider.Settings#ACTION_MANAGE_DEFAULT_APPS_SETTINGS`"
errorLine1=" Intent(Settings.ACTION_MANAGE_DEFAULT_APPS_SETTINGS)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/assist/DefaultAssistantManager.kt"
line="92"
column="20"/>
</issue>
<issue
id="NewApi"
message="Field requires API level 31 (current min is 30): `CameraControl`"
errorLine1=" CAMERA_DOMAIN to CameraControl,"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/controls/HaControlsProviderService.kt"
line="46"
column="30"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `intentMatchingFlags` is only used in API level 36 and higher (current min is 23)"
errorLine1=" android:intentMatchingFlags="allowNullAction""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/full/AndroidManifest.xml"
line="81"
column="13"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `targetCellWidth` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:targetCellWidth="2""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/button_widget_info.xml"
line="10"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `targetCellHeight` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:targetCellHeight="1""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/button_widget_info.xml"
line="11"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `widgetFeatures` is only used in API level 28 and higher (current min is 23)"
errorLine1=" android:widgetFeatures="reconfigurable""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/button_widget_info.xml"
line="14"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `previewLayout` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:previewLayout="@layout/widget_button_wrapper_dynamiccolor" />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/button_widget_info.xml"
line="18"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `targetCellHeight` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:targetCellHeight="2""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/camera_widget_info.xml"
line="8"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `targetCellWidth` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:targetCellWidth="2""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/camera_widget_info.xml"
line="9"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `widgetFeatures` is only used in API level 28 and higher (current min is 23)"
errorLine1=" android:widgetFeatures="reconfigurable""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/camera_widget_info.xml"
line="13"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `targetCellWidth` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:targetCellWidth="2""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/entity_widget_info.xml"
line="11"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `targetCellHeight` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:targetCellHeight="1""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/entity_widget_info.xml"
line="12"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `widgetFeatures` is only used in API level 28 and higher (current min is 23)"
errorLine1=" android:widgetFeatures="reconfigurable""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/entity_widget_info.xml"
line="14"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `previewLayout` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:previewLayout="@layout/widget_static_wrapper_dynamiccolor" />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/entity_widget_info.xml"
line="18"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `targetCellWidth` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:targetCellWidth="4""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/media_player_control_widget_info.xml"
line="8"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `targetCellHeight` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:targetCellHeight="1""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/media_player_control_widget_info.xml"
line="9"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `widgetFeatures` is only used in API level 28 and higher (current min is 23)"
errorLine1=" android:widgetFeatures="reconfigurable""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/media_player_control_widget_info.xml"
line="12"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `previewLayout` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:previewLayout="@layout/widget_media_controls_wrapper_dynamiccolor" />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/media_player_control_widget_info.xml"
line="16"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `targetCellWidth` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:targetCellWidth="2""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/template_widget_info.xml"
line="11"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `targetCellHeight` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:targetCellHeight="1""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/template_widget_info.xml"
line="12"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `widgetFeatures` is only used in API level 28 and higher (current min is 23)"
errorLine1=" android:widgetFeatures="reconfigurable""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/template_widget_info.xml"
line="13"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `previewLayout` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:previewLayout="@layout/widget_template_wrapper_dynamiccolor" />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/template_widget_info.xml"
line="18"
column="5"/>
</issue>
<issue
id="UnusedAttribute"
message="Attribute `clipToOutline` is only used in API level 31 and higher (current min is 23)"
errorLine1=" android:clipToOutline="true""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/widget_media_controls.xml"
line="10"
column="5"/>
</issue>
<issue
id="BatteryLife"
message="Use of `REQUEST_IGNORE_BATTERY_OPTIMIZATIONS` violates the Play Store Content Policy regarding acceptable use cases, as described in https://developer.android.com/training/monitoring-device-state/doze-standby.html"
errorLine1=" Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS,"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/websocket/WebsocketSettingFragment.kt"
line="72"
column="46"/>
</issue>
<issue
id="CustomSplashScreen"
message="The application should not provide its own launch screen"
errorLine1="class LaunchActivity : AppCompatActivity() {"
errorLine2=" ~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/launch/LaunchActivity.kt"
line="42"
column="7"/>
</issue>
<issue
id="PictureInPictureIssue"
message="An activity in this app supports picture-in-picture and the targetSdkVersion is 31 or above; it is therefore strongly recommended to call both `setAutoEnterEnabled(true)` and `setSourceRectHint(...)`"
errorLine1=" <application"
errorLine2=" ~~~~~~~~~~~">
<location
file="src/main/AndroidManifest.xml"
line="89"
column="6"/>
</issue>
<issue
id="VectorRaster"
message="Limit vector icons sizes to 200×200 to keep icon drawing fast; see https://developer.android.com/studio/write/vector-asset-studio#when for more"
errorLine1=" android:width="288dp""
errorLine2=" ~~~~~">
<location
file="src/main/res/drawable-v31/app_icon_launch_screen.xml"
line="3"
column="20"/>
</issue>
<issue
id="VectorRaster"
message="Limit vector icons sizes to 200×200 to keep icon drawing fast; see https://developer.android.com/studio/write/vector-asset-studio#when for more"
errorLine1=" android:width="220dp""
errorLine2=" ~~~~~">
<location
file="src/main/res/drawable-v24/dots.xml"
line="3"
column="20"/>
</issue>
<issue
id="VectorRaster"
message="Limit vector icons sizes to 200×200 to keep icon drawing fast; see https://developer.android.com/studio/write/vector-asset-studio#when for more"
errorLine1=" android:width="220dp""
errorLine2=" ~~~~~">
<location
file="src/main/res/drawable/dots.xml"
line="3"
column="20"/>
</issue>
<issue
id="VectorRaster"
message="Limit vector icons sizes to 200×200 to keep icon drawing fast; see https://developer.android.com/studio/write/vector-asset-studio#when for more"
errorLine1=" android:width="240dp""
errorLine2=" ~~~~~">
<location
file="src/main/res/drawable/ic_home_assistant_branding.xml"
line="2"
column="20"/>
</issue>
<issue
id="LocalContextGetResourceValueCall"
message="Querying resource values using LocalContext.current"
errorLine1=" context.getString(commonR.string.missing_camera_permission),"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/barcode/view/BarcodeScannerView.kt"
line="132"
column="25"/>
</issue>
<issue
id="LocalContextGetResourceValueCall"
message="Querying resource values using LocalContext.current"
errorLine1=" context.getString(commonR.string.settings),"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/barcode/view/BarcodeScannerView.kt"
line="133"
column="25"/>
</issue>
<issue
id="LocalContextGetResourceValueCall"
message="Querying resource values using LocalContext.current"
errorLine1=" onToolbarTitleChanged(context.getString(R.string.gestures))"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/gestures/views/GesturesScreen.kt"
line="73"
column="39"/>
</issue>
<issue
id="LocalContextGetResourceValueCall"
message="Querying resource values using LocalContext.current"
errorLine1=" onToolbarTitleChanged(context.getString(action.gesture.fullDescription))"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/gestures/views/GesturesScreen.kt"
line="76"
column="39"/>
</issue>
<issue
id="LocalContextGetResourceValueCall"
message="Querying resource values using LocalContext.current"
errorLine1=" scaffoldState.snackbarHostState.showSnackbar(context.getString(it))"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/qs/views/ManageTilesView.kt"
line="64"
column="62"/>
</issue>
<issue
id="LocalContextGetResourceValueCall"
message="Querying resource values using LocalContext.current"
errorLine1=" onShowSnackbar(context.getString(it.messageRes), null)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/onboarding/nameyourdevice/navigation/NameYourDeviceNavigation.kt"
line="68"
column="36"/>
</issue>
<issue
id="LocalContextGetResourceValueCall"
message="Querying resource values using LocalContext.current"
errorLine1=" scaffoldState.snackbarHostState.showSnackbar(context.getString(it))"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/nfc/views/NfcNavigationView.kt"
line="65"
column="62"/>
</issue>
<issue
id="LocalContextGetResourceValueCall"
message="Querying resource values using LocalContext.current"
errorLine1=" context.getString("
errorLine2=" ^">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/notification/views/NotificationChannelView.kt"
line="99"
column="53"/>
</issue>
<issue
id="LocalContextGetResourceValueCall"
message="Querying resource values using LocalContext.current"
errorLine1=" context.getString(R.string.undo),"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/notification/views/NotificationChannelView.kt"
line="103"
column="53"/>
</issue>
<issue
id="LocalContextGetResourceValueCall"
message="Querying resource values using LocalContext.current"
errorLine1=" context.getString(it.message),"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/sensor/views/SensorDetailView.kt"
line="120"
column="17"/>
</issue>
<issue
id="LocalContextGetResourceValueCall"
message="Querying resource values using LocalContext.current"
errorLine1=" context.getString(commonR.string.settings),"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/sensor/views/SensorDetailView.kt"
line="121"
column="17"/>
</issue>
<issue
id="DiscouragedApi"
message="Use of this function is discouraged because resource reflection makes it harder to perform build optimizations and compile-time verification of code. It is much more efficient to retrieve resources by identifier (e.g. `R.foo.bar`) than by name (e.g. `getIdentifier("bar", "foo", null)`)."
errorLine1=" val stringId = app.resources.getIdentifier(identifierString, "string", app.packageName)"
errorLine2=" ~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/sensor/SensorDetailViewModel.kt"
line="368"
column="38"/>
</issue>
<issue
id="Typos"
message="Did you mean "tile_!" instead of "tile_1"?"
errorLine1=" <item>tile_1</item>"
errorLine2=" ~~~~~~">
<location
file="src/main/res/values/arrays.xml"
line="34"
column="15"/>
</issue>
<issue
id="Typos"
message="Did you mean "tile_!!" instead of "tile_11"?"
errorLine1=" <item>tile_11</item>"
errorLine2=" ~~~~~~~">
<location
file="src/main/res/values/arrays.xml"
line="44"
column="15"/>
</issue>
<issue
id="UnsafeProtectedBroadcastReceiver"
message="This broadcast receiver declares an intent-filter for a protected broadcast action string, which can only be sent by the system, not third-party applications. However, the receiver's `onReceive` method does not appear to call `getAction` to ensure that the received Intent's action string matches the expected value, potentially making it possible for another actor to send a spoofed intent with no action string or a different action string and cause undesired behavior."
errorLine1=" override fun onReceive(context: Context, intent: Intent) {"
errorLine2=" ~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/websocket/WebsocketBroadcastReceiver.kt"
line="14"
column="18"/>
</issue>
<issue
id="AcceptsUserCertificates"
message="The Network Security Configuration allows the use of user certificates in the release version of your app"
errorLine1=" <certificates src="user"/>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/xml/network_security_config.xml"
line="10"
column="13"/>
</issue>
<issue
id="InsecureBaseConfiguration"
message="Insecure Base Configuration"
errorLine1=" <base-config cleartextTrafficPermitted="true">"
errorLine2=" ~~~~">
<location
file="src/main/res/xml/network_security_config.xml"
line="5"
column="45"/>
</issue>
<issue
id="ObsoleteSdkInt"
message="Unnecessary; `Build.VERSION.SDK_INT >= Build.VERSION_CODES.O` is never true here"
errorLine1=" Build.VERSION.SDK_INT >= Build.VERSION_CODES.O &&"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/SettingsFragment.kt"
line="539"
column="17"/>
</issue>
<issue
id="ObsoleteSdkInt"
message="Unnecessary; `Build.VERSION.SDK_INT >= Build.VERSION_CODES.O` is never true here"
errorLine1=" Build.VERSION.SDK_INT >= Build.VERSION_CODES.O &&"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/io/homeassistant/companion/android/settings/SettingsFragment.kt"
line="539"
column="17"/>
</issue>
<issue
id="StaticFieldLeak"
message="Do not place Android context classes in static fields (static reference to `Builder` which has field `mContext` pointing to `Context`); this is a memory leak"
errorLine1=" private lateinit var notificationBuilder: NotificationCompat.Builder"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/full/kotlin/io/homeassistant/companion/android/location/HighAccuracyLocationService.kt"
line="34"
column="9"/>
</issue>
<issue
id="StaticFieldLeak"
message="Do not place Android context classes in static fields (static reference to `NotificationManagerCompat` which has field `mContext` pointing to `Context`); this is a memory leak"
errorLine1=" private lateinit var notificationManagerCompat: NotificationManagerCompat"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/full/kotlin/io/homeassistant/companion/android/location/HighAccuracyLocationService.kt"
line="36"
column="9"/>
</issue>
<issue
id="UseCompoundDrawables"
message="This tag and its children can be replaced by one `<TextView/>` and a compound drawable"
errorLine1=" <LinearLayout"
errorLine2=" ~~~~~~~~~~~~">
<location
file="src/main/res/layout/widget_static.xml"
line="30"
column="10"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (16658 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M110,210.98C112.49,210.98 114.51,212.99 114.51,215.49C114.51,217.98 112.49,220 110,220C107.51,220 105.49,217.98 105.49,215.49C105.49,212.99 107.51,210.98 110,210.98ZM78.34,210.73C78.98,208.32 81.46,206.89 83.87,207.53C86.27,208.18 87.7,210.65 87.06,213.06C86.41,215.47 83.94,216.9 81.53,216.25C79.12,215.61 77.69,213.13 78.34,210.73ZM136.13,207.53C138.54,206.89 141.02,208.32 141.66,210.73C142.31,213.13 140.88,215.61 138.47,216.25C136.06,216.9 133.59,215.47 132.94,213.06C132.3,210.65 133.73,208.18 136.13,207.53ZM53.35,199.1C54.59,196.94 57.35,196.2 59.51,197.45C61.67,198.69 62.41,201.45 61.17,203.61C59.92,205.77 57.16,206.51 55,205.26C52.84,204.02 52.1,201.26 53.35,199.1ZM160.49,197.45C162.65,196.2 165.4,196.94 166.65,199.1C167.9,201.26 167.16,204.02 165,205.26C162.84,206.51 160.08,205.77 158.84,203.61C157.59,201.45 158.33,198.69 160.49,197.45ZM94.5,201.84C94.74,199.99 96.44,198.68 98.29,198.93C100.15,199.17 101.45,200.87 101.21,202.72C100.96,204.58 99.26,205.88 97.41,205.64C95.56,205.39 94.25,203.69 94.5,201.84ZM121.71,198.93C123.56,198.68 125.26,199.99 125.5,201.84C125.75,203.69 124.44,205.39 122.59,205.64C120.74,205.88 119.04,204.58 118.79,202.72C118.55,200.87 119.85,199.17 121.71,198.93ZM71.25,194.7C71.97,192.97 73.95,192.15 75.68,192.87C77.4,193.58 78.22,195.56 77.51,197.29C76.79,199.01 74.81,199.83 73.09,199.12C71.36,198.4 70.54,196.42 71.25,194.7ZM144.32,192.87C146.05,192.15 148.03,192.97 148.75,194.7C149.46,196.42 148.64,198.4 146.91,199.12C145.19,199.83 143.21,199.01 142.49,197.29C141.78,195.56 142.6,193.58 144.32,192.87ZM110,188.41C111.87,188.41 113.39,189.93 113.39,191.79C113.39,193.66 111.87,195.18 110,195.18C108.13,195.18 106.61,193.66 106.61,191.79C106.61,189.93 108.13,188.41 110,188.41ZM85.56,188.13C86.04,186.33 87.9,185.25 89.71,185.74C91.51,186.22 92.58,188.08 92.1,189.88C91.62,191.69 89.76,192.76 87.95,192.28C86.15,191.79 85.08,189.94 85.56,188.13ZM130.29,185.74C132.1,185.25 133.96,186.33 134.44,188.13C134.92,189.94 133.85,191.79 132.05,192.28C130.24,192.76 128.38,191.69 127.9,189.88C127.42,188.08 128.49,186.22 130.29,185.74ZM32.22,181.4C33.98,179.64 36.84,179.64 38.6,181.4C40.36,183.16 40.36,186.02 38.6,187.78C36.84,189.54 33.98,189.54 32.22,187.78C30.46,186.02 30.46,183.16 32.22,181.4ZM181.4,181.4C183.16,179.64 186.02,179.64 187.78,181.4C189.54,183.16 189.54,186.02 187.78,187.78C186.02,189.54 183.16,189.54 181.4,187.78C179.64,186.02 179.64,183.16 181.4,181.4ZM50.65,181.78C51.79,180.3 53.92,180.02 55.4,181.16C56.88,182.29 57.16,184.42 56.02,185.9C54.89,187.39 52.76,187.67 51.28,186.53C49.8,185.39 49.52,183.26 50.65,181.78ZM164.6,181.16C166.08,180.02 168.21,180.3 169.35,181.78C170.49,183.26 170.21,185.39 168.72,186.53C167.24,187.67 165.11,187.39 163.98,185.9C162.84,184.42 163.12,182.29 164.6,181.16ZM66.17,179.14C67.11,177.52 69.18,176.97 70.79,177.9C72.41,178.84 72.97,180.91 72.03,182.53C71.1,184.15 69.03,184.7 67.41,183.77C65.79,182.83 65.24,180.76 66.17,179.14ZM149.21,177.9C150.82,176.97 152.89,177.52 153.83,179.14C154.76,180.76 154.21,182.83 152.59,183.77C150.97,184.7 148.9,184.15 147.97,182.53C147.03,180.91 147.59,178.84 149.21,177.9ZM100.86,177.44C102.1,177.6 102.96,178.74 102.8,179.97C102.64,181.21 101.51,182.08 100.27,181.92C99.04,181.75 98.17,180.62 98.33,179.38C98.49,178.15 99.62,177.28 100.86,177.44ZM118.68,177.44C119.91,177.28 121.05,178.15 121.21,179.38C121.37,180.62 120.5,181.75 119.27,181.92C118.03,182.08 116.9,181.21 116.74,179.97C116.57,178.74 117.44,177.6 118.68,177.44ZM80.7,174.05C81.18,172.9 82.5,172.35 83.65,172.83C84.8,173.31 85.35,174.63 84.87,175.78C84.39,176.93 83.07,177.48 81.92,177C80.77,176.52 80.22,175.2 80.7,174.05ZM135.89,172.83C137.04,172.35 138.36,172.9 138.84,174.05C139.32,175.2 138.77,176.52 137.62,177C136.47,177.48 135.15,176.93 134.67,175.78C134.19,174.63 134.74,173.31 135.89,172.83ZM49.77,165.44C51.09,164.12 53.23,164.12 54.56,165.44C55.88,166.77 55.88,168.91 54.56,170.23C53.23,171.55 51.09,171.55 49.77,170.23C48.45,168.91 48.45,166.77 49.77,165.44ZM165.44,165.44C166.77,164.12 168.91,164.12 170.23,165.44C171.55,166.77 171.55,168.91 170.23,170.23C168.91,171.55 166.77,171.55 165.44,170.23C164.12,168.91 164.12,166.77 165.44,165.44ZM34.1,163.98C35.58,162.84 37.7,163.12 38.84,164.6C39.98,166.08 39.7,168.21 38.22,169.35C36.73,170.49 34.61,170.21 33.47,168.72C32.33,167.24 32.61,165.11 34.1,163.98ZM181.16,164.6C182.29,163.12 184.42,162.84 185.9,163.98C187.39,165.11 187.67,167.24 186.53,168.72C185.39,170.21 183.26,170.49 181.78,169.35C180.3,168.21 180.02,166.08 181.16,164.6ZM65.05,164.34C65.81,163.35 67.23,163.16 68.22,163.92C69.21,164.68 69.39,166.1 68.63,167.08C67.88,168.07 66.46,168.26 65.47,167.5C64.48,166.74 64.3,165.33 65.05,164.34ZM151.32,163.92C152.31,163.16 153.73,163.35 154.48,164.34C155.24,165.33 155.06,166.74 154.07,167.5C153.08,168.26 151.66,168.07 150.9,167.08C150.15,166.1 150.33,164.68 151.32,163.92ZM16.39,158.84C18.55,157.59 21.31,158.33 22.55,160.49C23.8,162.65 23.06,165.4 20.9,166.65C18.74,167.9 15.98,167.16 14.74,165C13.49,162.84 14.23,160.08 16.39,158.84ZM197.45,160.49C198.69,158.33 201.45,157.59 203.61,158.84C205.77,160.08 206.51,162.84 205.26,165C204.02,167.16 201.26,167.9 199.1,166.65C196.94,165.4 196.2,162.65 197.45,160.49ZM52.45,150.9C53.44,150.15 54.86,150.33 55.62,151.32C56.38,152.31 56.19,153.73 55.2,154.48C54.21,155.24 52.8,155.06 52.04,154.07C51.28,153.08 51.47,151.66 52.45,150.9ZM163.92,151.32C164.68,150.33 166.1,150.15 167.08,150.9C168.07,151.66 168.26,153.08 167.5,154.07C166.74,155.06 165.33,155.24 164.34,154.48C163.35,153.73 163.16,152.31 163.92,151.32ZM37.47,147.97C39.09,147.03 41.16,147.59 42.09,149.21C43.03,150.82 42.47,152.89 40.86,153.83C39.24,154.76 37.17,154.21 36.23,152.59C35.3,150.97 35.85,148.9 37.47,147.97ZM177.9,149.21C178.84,147.59 180.91,147.03 182.53,147.97C184.15,148.9 184.7,150.97 183.77,152.59C182.83,154.21 180.76,154.76 179.15,153.83C177.53,152.89 176.97,150.82 177.9,149.21ZM192.87,144.32C193.58,142.6 195.56,141.78 197.29,142.49C199.01,143.21 199.83,145.19 199.12,146.91C198.4,148.64 196.42,149.46 194.7,148.75C192.97,148.03 192.15,146.05 192.87,144.32ZM22.71,142.49C24.44,141.78 26.42,142.6 27.13,144.32C27.85,146.05 27.03,148.03 25.3,148.75C23.58,149.46 21.6,148.64 20.88,146.91C20.17,145.19 20.99,143.21 22.71,142.49ZM6.94,132.94C9.35,132.3 11.82,133.73 12.47,136.13C13.11,138.54 11.68,141.02 9.28,141.66C6.87,142.31 4.39,140.88 3.75,138.47C3.1,136.06 4.53,133.59 6.94,132.94ZM207.53,136.13C208.18,133.73 210.65,132.3 213.06,132.94C215.47,133.59 216.9,136.06 216.25,138.47C215.61,140.88 213.13,142.31 210.73,141.66C208.32,141.02 206.89,138.54 207.53,136.13ZM43.76,134.67C44.91,134.19 46.23,134.74 46.71,135.89C47.19,137.04 46.64,138.36 45.49,138.84C44.34,139.32 43.02,138.77 42.54,137.62C42.06,136.47 42.61,135.15 43.76,134.67ZM172.83,135.89C173.31,134.74 174.63,134.19 175.78,134.67C176.93,135.15 177.48,136.47 177,137.62C176.52,138.77 175.2,139.32 174.05,138.84C172.9,138.36 172.35,137.04 172.83,135.89ZM30.12,127.9C31.92,127.42 33.78,128.49 34.26,130.29C34.75,132.1 33.67,133.96 31.87,134.44C30.06,134.92 28.21,133.85 27.72,132.05C27.24,130.24 28.31,128.38 30.12,127.9ZM185.74,130.29C186.22,128.49 188.08,127.42 189.88,127.9C191.69,128.38 192.76,130.24 192.28,132.05C191.79,133.85 189.94,134.92 188.13,134.44C186.33,133.96 185.26,132.1 185.74,130.29ZM17.28,118.79C19.13,118.55 20.83,119.85 21.08,121.71C21.32,123.56 20.01,125.26 18.16,125.5C16.31,125.75 14.61,124.44 14.36,122.59C14.12,120.74 15.42,119.04 17.28,118.79ZM198.93,121.71C199.17,119.85 200.87,118.55 202.72,118.79C204.58,119.04 205.88,120.74 205.64,122.59C205.42,124.21 204.1,125.41 202.52,125.53C202.41,125.53 202.3,125.54 202.18,125.53C202.07,125.53 201.96,125.52 201.84,125.5C199.99,125.26 198.68,123.56 198.93,121.71ZM39.57,116.74C40.8,116.57 41.93,117.44 42.1,118.68C42.26,119.91 41.39,121.05 40.15,121.21C38.92,121.37 37.78,120.5 37.62,119.27C37.46,118.03 38.33,116.9 39.57,116.74ZM179.97,116.74C181.21,116.9 182.08,118.03 181.92,119.27C181.75,120.5 180.62,121.37 179.38,121.21C178.15,121.05 177.28,119.91 177.44,118.68C177.6,117.44 178.74,116.57 179.97,116.74ZM4.51,105.49C7.01,105.49 9.03,107.51 9.03,110C9.03,112.49 7.01,114.51 4.51,114.51C2.02,114.51 0,112.49 0,110C0,107.51 2.02,105.49 4.51,105.49ZM215.49,105.49C217.98,105.49 220,107.51 220,110C220,112.49 217.98,114.51 215.49,114.51C212.99,114.51 210.98,112.49 210.98,110C210.98,107.51 212.99,105.49 215.49,105.49ZM28.21,106.61C30.07,106.61 31.59,108.13 31.59,110C31.59,111.87 30.07,113.39 28.21,113.39C26.34,113.39 24.82,111.87 24.82,110C24.82,108.13 26.34,106.61 28.21,106.61ZM191.79,106.61C193.66,106.61 195.18,108.13 195.18,110C195.18,111.87 193.66,113.39 191.79,113.39C189.93,113.39 188.41,111.87 188.41,110C188.41,108.13 189.93,106.61 191.79,106.61ZM40.15,98.33C41.39,98.49 42.26,99.62 42.1,100.86C41.93,102.1 40.8,102.96 39.57,102.8C38.33,102.64 37.46,101.51 37.62,100.27C37.79,99.04 38.92,98.17 40.15,98.33ZM179.38,98.33C180.62,98.17 181.75,99.04 181.92,100.27C182.08,101.51 181.21,102.64 179.97,102.8C178.74,102.96 177.6,102.1 177.44,100.86C177.28,99.62 178.15,98.49 179.38,98.33ZM17.65,94.47C17.82,94.46 17.99,94.47 18.16,94.5C18.22,94.5 18.28,94.51 18.33,94.52C18.45,94.54 18.56,94.57 18.67,94.6C18.88,94.66 19.09,94.75 19.29,94.85C19.39,94.9 19.48,94.96 19.57,95.02C19.66,95.08 19.75,95.14 19.84,95.21C19.92,95.28 20,95.35 20.08,95.43C20.82,96.15 21.22,97.19 21.08,98.29C20.97,99.1 20.58,99.81 20.03,100.33C19.95,100.4 19.87,100.47 19.78,100.54C19.26,100.93 18.64,101.18 17.96,101.23C17.85,101.24 17.74,101.24 17.62,101.23C17.51,101.23 17.39,101.22 17.28,101.21C17.16,101.19 17.05,101.17 16.94,101.14C16.21,100.97 15.59,100.57 15.14,100.04C15.07,99.96 15,99.87 14.94,99.78C14.48,99.11 14.25,98.28 14.36,97.41C14.41,97.06 14.51,96.73 14.65,96.43C14.67,96.38 14.69,96.33 14.72,96.28C15.26,95.25 16.3,94.56 17.48,94.47C17.53,94.47 17.59,94.47 17.65,94.47ZM201.84,94.5C203.69,94.25 205.39,95.56 205.64,97.41C205.88,99.26 204.58,100.96 202.72,101.21C200.87,101.45 199.17,100.15 198.93,98.29C198.68,96.44 199.99,94.74 201.84,94.5ZM27.72,87.95C28.21,86.15 30.06,85.08 31.87,85.56C33.67,86.04 34.75,87.9 34.26,89.71C33.78,91.51 31.92,92.58 30.12,92.1C28.31,91.61 27.24,89.76 27.72,87.95ZM188.13,85.56C189.94,85.08 191.79,86.15 192.28,87.95C192.76,89.76 191.69,91.61 189.88,92.1C188.08,92.58 186.22,91.51 185.74,89.71C185.25,87.9 186.33,86.04 188.13,85.56ZM3.75,81.53C4.39,79.12 6.87,77.69 9.28,78.34C11.68,78.98 13.11,81.46 12.47,83.87C11.82,86.27 9.35,87.7 6.94,87.06C4.53,86.41 3.1,83.94 3.75,81.53ZM210.73,78.34C213.13,77.69 215.61,79.12 216.25,81.53C216.9,83.94 215.47,86.41 213.06,87.06C210.65,87.7 208.18,86.27 207.53,83.87C206.89,81.46 208.32,78.98 210.73,78.34ZM42.54,81.92C43.02,80.77 44.34,80.22 45.49,80.7C46.64,81.18 47.19,82.5 46.71,83.65C46.23,84.8 44.91,85.35 43.76,84.87C42.61,84.39 42.06,83.07 42.54,81.92ZM174.05,80.7C175.2,80.22 176.52,80.77 177,81.92C177.48,83.07 176.93,84.39 175.78,84.87C174.63,85.35 173.31,84.8 172.83,83.65C172.35,82.5 172.9,81.18 174.05,80.7ZM20.88,73.09C21.6,71.36 23.58,70.54 25.3,71.25C27.03,71.97 27.85,73.95 27.13,75.68C26.42,77.4 24.44,78.22 22.71,77.51C20.99,76.79 20.17,74.81 20.88,73.09ZM194.7,71.25C196.42,70.54 198.4,71.36 199.12,73.09C199.83,74.81 199.01,76.79 197.29,77.51C195.56,78.22 193.58,77.4 192.87,75.68C192.15,73.95 192.97,71.97 194.7,71.25ZM36.23,67.41C37.17,65.79 39.24,65.24 40.86,66.17C42.48,67.11 43.03,69.18 42.09,70.79C41.16,72.41 39.09,72.97 37.47,72.03C35.85,71.1 35.3,69.03 36.23,67.41ZM179.15,66.17C180.76,65.24 182.83,65.79 183.77,67.41C184.7,69.03 184.15,71.1 182.53,72.03C180.91,72.97 178.84,72.41 177.9,70.79C176.97,69.18 177.53,67.11 179.15,66.17ZM52.04,65.47C52.8,64.48 54.21,64.3 55.2,65.05C56.19,65.81 56.38,67.23 55.62,68.22C54.86,69.21 53.44,69.39 52.45,68.63C51.47,67.88 51.28,66.46 52.04,65.47ZM164.34,65.05C165.33,64.3 166.74,64.48 167.5,65.47C168.26,66.46 168.07,67.88 167.08,68.63C166.1,69.39 164.68,69.21 163.92,68.22C163.16,67.23 163.35,65.81 164.34,65.05ZM14.74,55C15.98,52.84 18.74,52.1 20.9,53.35C23.06,54.59 23.8,57.35 22.55,59.51C21.31,61.67 18.55,62.41 16.39,61.17C14.23,59.92 13.49,57.16 14.74,55ZM199.1,53.35C201.26,52.1 204.02,52.84 205.26,55C206.51,57.16 205.77,59.92 203.61,61.16C201.45,62.41 198.69,61.67 197.45,59.51C196.2,57.35 196.94,54.59 199.1,53.35ZM33.47,51.28C34.61,49.8 36.73,49.52 38.22,50.65C39.7,51.79 39.98,53.92 38.84,55.4C37.7,56.88 35.58,57.16 34.1,56.02C32.61,54.89 32.33,52.76 33.47,51.28ZM181.78,50.65C183.26,49.52 185.39,49.79 186.53,51.28C187.67,52.76 187.39,54.89 185.9,56.02C184.42,57.16 182.3,56.88 181.16,55.4C180.02,53.92 180.3,51.79 181.78,50.65ZM65.47,52.04C66.46,51.28 67.88,51.47 68.63,52.45C69.39,53.44 69.21,54.86 68.22,55.62C67.23,56.38 65.81,56.19 65.05,55.2C64.3,54.21 64.48,52.8 65.47,52.04ZM150.9,52.45C151.66,51.47 153.08,51.28 154.07,52.04C155.06,52.8 155.24,54.21 154.48,55.2C153.73,56.19 152.31,56.38 151.32,55.62C150.33,54.86 150.15,53.44 150.9,52.45ZM49.77,49.77C51.09,48.45 53.23,48.45 54.56,49.77C55.88,51.09 55.88,53.23 54.56,54.56C53.23,55.88 51.09,55.88 49.77,54.56C48.45,53.23 48.45,51.09 49.77,49.77ZM165.44,49.77C166.77,48.45 168.91,48.45 170.23,49.77C171.55,51.09 171.55,53.23 170.23,54.56C168.91,55.88 166.77,55.88 165.44,54.56C164.12,53.23 164.12,51.09 165.44,49.77ZM81.92,42.54C83.07,42.06 84.39,42.61 84.87,43.76C85.35,44.91 84.8,46.23 83.65,46.71C82.5,47.19 81.18,46.64 80.7,45.49C80.22,44.34 80.77,43.02 81.92,42.54ZM134.67,43.76C135.15,42.61 136.47,42.06 137.62,42.54C138.77,43.02 139.32,44.34 138.84,45.49C138.36,46.64 137.04,47.18 135.89,46.71C134.74,46.23 134.19,44.91 134.67,43.76ZM67.41,36.23C69.03,35.3 71.1,35.85 72.03,37.47C72.97,39.09 72.41,41.16 70.79,42.09C69.18,43.03 67.11,42.47 66.17,40.86C65.24,39.24 65.79,37.17 67.41,36.23ZM147.97,37.47C148.9,35.85 150.97,35.3 152.59,36.23C154.21,37.17 154.76,39.24 153.83,40.86C152.89,42.47 150.82,43.03 149.21,42.09C147.59,41.16 147.03,39.09 147.97,37.47ZM100.27,37.62C101.51,37.46 102.64,38.33 102.8,39.57C102.96,40.8 102.1,41.93 100.86,42.1C99.62,42.26 98.49,41.39 98.33,40.15C98.17,38.92 99.04,37.79 100.27,37.62ZM119.27,37.62C120.5,37.79 121.37,38.92 121.21,40.15C121.05,41.39 119.91,42.26 118.68,42.1C117.44,41.93 116.57,40.8 116.74,39.57C116.9,38.33 118.03,37.46 119.27,37.62ZM32.22,32.22C33.98,30.46 36.84,30.46 38.6,32.22C40.36,33.98 40.36,36.84 38.6,38.6C36.84,40.36 33.98,40.36 32.22,38.6C30.46,36.84 30.46,33.98 32.22,32.22ZM181.4,32.22C183.16,30.46 186.02,30.46 187.78,32.22C189.54,33.98 189.54,36.84 187.78,38.6C186.02,40.36 183.16,40.36 181.4,38.6C179.64,36.84 179.64,33.98 181.4,32.22ZM51.28,33.47C52.76,32.33 54.89,32.61 56.02,34.1C57.16,35.58 56.88,37.7 55.4,38.84C53.92,39.98 51.79,39.7 50.65,38.22C49.52,36.73 49.8,34.61 51.28,33.47ZM163.98,34.1C165.11,32.61 167.24,32.33 168.72,33.47C170.21,34.61 170.49,36.73 169.35,38.22C168.21,39.7 166.08,39.98 164.6,38.84C163.12,37.7 162.84,35.58 163.98,34.1ZM87.95,27.72C89.76,27.24 91.62,28.31 92.1,30.12C92.58,31.92 91.51,33.78 89.71,34.26C87.9,34.75 86.04,33.67 85.56,31.87C85.08,30.06 86.15,28.21 87.95,27.72ZM127.9,30.12C128.38,28.31 130.24,27.24 132.05,27.72C133.85,28.21 134.92,30.06 134.44,31.87C133.96,33.67 132.1,34.75 130.29,34.26C128.49,33.78 127.42,31.92 127.9,30.12ZM110,24.82C111.87,24.82 113.39,26.34 113.39,28.21C113.39,30.07 111.87,31.59 110,31.59C108.13,31.59 106.61,30.07 106.61,28.21C106.61,26.34 108.13,24.82 110,24.82ZM73.09,20.88C74.81,20.17 76.79,20.99 77.51,22.71C78.22,24.44 77.4,26.42 75.68,27.13C73.95,27.85 71.97,27.03 71.25,25.3C70.54,23.58 71.36,21.6 73.09,20.88ZM142.49,22.71C143.21,20.99 145.19,20.17 146.91,20.88C148.64,21.6 149.46,23.58 148.75,25.3C148.03,27.03 146.05,27.85 144.32,27.13C142.6,26.42 141.78,24.44 142.49,22.71ZM55,14.74C57.16,13.49 59.92,14.23 61.17,16.39C62.41,18.55 61.67,21.31 59.51,22.55C57.35,23.8 54.59,23.06 53.35,20.9C52.1,18.74 52.84,15.98 55,14.74ZM158.84,16.39C160.08,14.23 162.84,13.49 165,14.74C167.16,15.98 167.9,18.74 166.65,20.9C165.4,23.06 162.65,23.8 160.49,22.55C158.33,21.31 157.59,18.55 158.84,16.39ZM97.41,14.36C99.26,14.12 100.96,15.42 101.21,17.28C101.45,19.13 100.15,20.83 98.29,21.08C96.44,21.32 94.74,20.01 94.5,18.16C94.25,16.31 95.56,14.61 97.41,14.36ZM118.79,17.28C119.04,15.42 120.74,14.12 122.59,14.36C124.44,14.61 125.75,16.31 125.5,18.16C125.26,20.01 123.56,21.32 121.71,21.08C119.85,20.83 118.55,19.13 118.79,17.28ZM81.53,3.75C83.94,3.1 86.41,4.53 87.06,6.94C87.7,9.35 86.27,11.82 83.87,12.47C81.46,13.11 78.98,11.68 78.34,9.28C77.69,6.87 79.12,4.39 81.53,3.75ZM132.94,6.94C133.59,4.53 136.06,3.1 138.47,3.75C140.88,4.39 142.31,6.87 141.66,9.28C141.02,11.68 138.54,13.11 136.13,12.47C133.73,11.82 132.3,9.35 132.94,6.94ZM110,0C112.49,0 114.51,2.02 114.51,4.51C114.51,7.01 112.49,9.03 110,9.03C107.51,9.03 105.49,7.01 105.49,4.51C105.49,2.02 107.51,0 110,0Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable-v24/dots.xml"
line="8"
column="27"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (16658 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M110,210.98C112.49,210.98 114.51,212.99 114.51,215.49C114.51,217.98 112.49,220 110,220C107.51,220 105.49,217.98 105.49,215.49C105.49,212.99 107.51,210.98 110,210.98ZM78.34,210.73C78.98,208.32 81.46,206.89 83.87,207.53C86.27,208.18 87.7,210.65 87.06,213.06C86.41,215.47 83.94,216.9 81.53,216.25C79.12,215.61 77.69,213.13 78.34,210.73ZM136.13,207.53C138.54,206.89 141.02,208.32 141.66,210.73C142.31,213.13 140.88,215.61 138.47,216.25C136.06,216.9 133.59,215.47 132.94,213.06C132.3,210.65 133.73,208.18 136.13,207.53ZM53.35,199.1C54.59,196.94 57.35,196.2 59.51,197.45C61.67,198.69 62.41,201.45 61.17,203.61C59.92,205.77 57.16,206.51 55,205.26C52.84,204.02 52.1,201.26 53.35,199.1ZM160.49,197.45C162.65,196.2 165.4,196.94 166.65,199.1C167.9,201.26 167.16,204.02 165,205.26C162.84,206.51 160.08,205.77 158.84,203.61C157.59,201.45 158.33,198.69 160.49,197.45ZM94.5,201.84C94.74,199.99 96.44,198.68 98.29,198.93C100.15,199.17 101.45,200.87 101.21,202.72C100.96,204.58 99.26,205.88 97.41,205.64C95.56,205.39 94.25,203.69 94.5,201.84ZM121.71,198.93C123.56,198.68 125.26,199.99 125.5,201.84C125.75,203.69 124.44,205.39 122.59,205.64C120.74,205.88 119.04,204.58 118.79,202.72C118.55,200.87 119.85,199.17 121.71,198.93ZM71.25,194.7C71.97,192.97 73.95,192.15 75.68,192.87C77.4,193.58 78.22,195.56 77.51,197.29C76.79,199.01 74.81,199.83 73.09,199.12C71.36,198.4 70.54,196.42 71.25,194.7ZM144.32,192.87C146.05,192.15 148.03,192.97 148.75,194.7C149.46,196.42 148.64,198.4 146.91,199.12C145.19,199.83 143.21,199.01 142.49,197.29C141.78,195.56 142.6,193.58 144.32,192.87ZM110,188.41C111.87,188.41 113.39,189.93 113.39,191.79C113.39,193.66 111.87,195.18 110,195.18C108.13,195.18 106.61,193.66 106.61,191.79C106.61,189.93 108.13,188.41 110,188.41ZM85.56,188.13C86.04,186.33 87.9,185.25 89.71,185.74C91.51,186.22 92.58,188.08 92.1,189.88C91.62,191.69 89.76,192.76 87.95,192.28C86.15,191.79 85.08,189.94 85.56,188.13ZM130.29,185.74C132.1,185.25 133.96,186.33 134.44,188.13C134.92,189.94 133.85,191.79 132.05,192.28C130.24,192.76 128.38,191.69 127.9,189.88C127.42,188.08 128.49,186.22 130.29,185.74ZM32.22,181.4C33.98,179.64 36.84,179.64 38.6,181.4C40.36,183.16 40.36,186.02 38.6,187.78C36.84,189.54 33.98,189.54 32.22,187.78C30.46,186.02 30.46,183.16 32.22,181.4ZM181.4,181.4C183.16,179.64 186.02,179.64 187.78,181.4C189.54,183.16 189.54,186.02 187.78,187.78C186.02,189.54 183.16,189.54 181.4,187.78C179.64,186.02 179.64,183.16 181.4,181.4ZM50.65,181.78C51.79,180.3 53.92,180.02 55.4,181.16C56.88,182.29 57.16,184.42 56.02,185.9C54.89,187.39 52.76,187.67 51.28,186.53C49.8,185.39 49.52,183.26 50.65,181.78ZM164.6,181.16C166.08,180.02 168.21,180.3 169.35,181.78C170.49,183.26 170.21,185.39 168.72,186.53C167.24,187.67 165.11,187.39 163.98,185.9C162.84,184.42 163.12,182.29 164.6,181.16ZM66.17,179.14C67.11,177.52 69.18,176.97 70.79,177.9C72.41,178.84 72.97,180.91 72.03,182.53C71.1,184.15 69.03,184.7 67.41,183.77C65.79,182.83 65.24,180.76 66.17,179.14ZM149.21,177.9C150.82,176.97 152.89,177.52 153.83,179.14C154.76,180.76 154.21,182.83 152.59,183.77C150.97,184.7 148.9,184.15 147.97,182.53C147.03,180.91 147.59,178.84 149.21,177.9ZM100.86,177.44C102.1,177.6 102.96,178.74 102.8,179.97C102.64,181.21 101.51,182.08 100.27,181.92C99.04,181.75 98.17,180.62 98.33,179.38C98.49,178.15 99.62,177.28 100.86,177.44ZM118.68,177.44C119.91,177.28 121.05,178.15 121.21,179.38C121.37,180.62 120.5,181.75 119.27,181.92C118.03,182.08 116.9,181.21 116.74,179.97C116.57,178.74 117.44,177.6 118.68,177.44ZM80.7,174.05C81.18,172.9 82.5,172.35 83.65,172.83C84.8,173.31 85.35,174.63 84.87,175.78C84.39,176.93 83.07,177.48 81.92,177C80.77,176.52 80.22,175.2 80.7,174.05ZM135.89,172.83C137.04,172.35 138.36,172.9 138.84,174.05C139.32,175.2 138.77,176.52 137.62,177C136.47,177.48 135.15,176.93 134.67,175.78C134.19,174.63 134.74,173.31 135.89,172.83ZM49.77,165.44C51.09,164.12 53.23,164.12 54.56,165.44C55.88,166.77 55.88,168.91 54.56,170.23C53.23,171.55 51.09,171.55 49.77,170.23C48.45,168.91 48.45,166.77 49.77,165.44ZM165.44,165.44C166.77,164.12 168.91,164.12 170.23,165.44C171.55,166.77 171.55,168.91 170.23,170.23C168.91,171.55 166.77,171.55 165.44,170.23C164.12,168.91 164.12,166.77 165.44,165.44ZM34.1,163.98C35.58,162.84 37.7,163.12 38.84,164.6C39.98,166.08 39.7,168.21 38.22,169.35C36.73,170.49 34.61,170.21 33.47,168.72C32.33,167.24 32.61,165.11 34.1,163.98ZM181.16,164.6C182.29,163.12 184.42,162.84 185.9,163.98C187.39,165.11 187.67,167.24 186.53,168.72C185.39,170.21 183.26,170.49 181.78,169.35C180.3,168.21 180.02,166.08 181.16,164.6ZM65.05,164.34C65.81,163.35 67.23,163.16 68.22,163.92C69.21,164.68 69.39,166.1 68.63,167.08C67.88,168.07 66.46,168.26 65.47,167.5C64.48,166.74 64.3,165.33 65.05,164.34ZM151.32,163.92C152.31,163.16 153.73,163.35 154.48,164.34C155.24,165.33 155.06,166.74 154.07,167.5C153.08,168.26 151.66,168.07 150.9,167.08C150.15,166.1 150.33,164.68 151.32,163.92ZM16.39,158.84C18.55,157.59 21.31,158.33 22.55,160.49C23.8,162.65 23.06,165.4 20.9,166.65C18.74,167.9 15.98,167.16 14.74,165C13.49,162.84 14.23,160.08 16.39,158.84ZM197.45,160.49C198.69,158.33 201.45,157.59 203.61,158.84C205.77,160.08 206.51,162.84 205.26,165C204.02,167.16 201.26,167.9 199.1,166.65C196.94,165.4 196.2,162.65 197.45,160.49ZM52.45,150.9C53.44,150.15 54.86,150.33 55.62,151.32C56.38,152.31 56.19,153.73 55.2,154.48C54.21,155.24 52.8,155.06 52.04,154.07C51.28,153.08 51.47,151.66 52.45,150.9ZM163.92,151.32C164.68,150.33 166.1,150.15 167.08,150.9C168.07,151.66 168.26,153.08 167.5,154.07C166.74,155.06 165.33,155.24 164.34,154.48C163.35,153.73 163.16,152.31 163.92,151.32ZM37.47,147.97C39.09,147.03 41.16,147.59 42.09,149.21C43.03,150.82 42.47,152.89 40.86,153.83C39.24,154.76 37.17,154.21 36.23,152.59C35.3,150.97 35.85,148.9 37.47,147.97ZM177.9,149.21C178.84,147.59 180.91,147.03 182.53,147.97C184.15,148.9 184.7,150.97 183.77,152.59C182.83,154.21 180.76,154.76 179.15,153.83C177.53,152.89 176.97,150.82 177.9,149.21ZM192.87,144.32C193.58,142.6 195.56,141.78 197.29,142.49C199.01,143.21 199.83,145.19 199.12,146.91C198.4,148.64 196.42,149.46 194.7,148.75C192.97,148.03 192.15,146.05 192.87,144.32ZM22.71,142.49C24.44,141.78 26.42,142.6 27.13,144.32C27.85,146.05 27.03,148.03 25.3,148.75C23.58,149.46 21.6,148.64 20.88,146.91C20.17,145.19 20.99,143.21 22.71,142.49ZM6.94,132.94C9.35,132.3 11.82,133.73 12.47,136.13C13.11,138.54 11.68,141.02 9.28,141.66C6.87,142.31 4.39,140.88 3.75,138.47C3.1,136.06 4.53,133.59 6.94,132.94ZM207.53,136.13C208.18,133.73 210.65,132.3 213.06,132.94C215.47,133.59 216.9,136.06 216.25,138.47C215.61,140.88 213.13,142.31 210.73,141.66C208.32,141.02 206.89,138.54 207.53,136.13ZM43.76,134.67C44.91,134.19 46.23,134.74 46.71,135.89C47.19,137.04 46.64,138.36 45.49,138.84C44.34,139.32 43.02,138.77 42.54,137.62C42.06,136.47 42.61,135.15 43.76,134.67ZM172.83,135.89C173.31,134.74 174.63,134.19 175.78,134.67C176.93,135.15 177.48,136.47 177,137.62C176.52,138.77 175.2,139.32 174.05,138.84C172.9,138.36 172.35,137.04 172.83,135.89ZM30.12,127.9C31.92,127.42 33.78,128.49 34.26,130.29C34.75,132.1 33.67,133.96 31.87,134.44C30.06,134.92 28.21,133.85 27.72,132.05C27.24,130.24 28.31,128.38 30.12,127.9ZM185.74,130.29C186.22,128.49 188.08,127.42 189.88,127.9C191.69,128.38 192.76,130.24 192.28,132.05C191.79,133.85 189.94,134.92 188.13,134.44C186.33,133.96 185.26,132.1 185.74,130.29ZM17.28,118.79C19.13,118.55 20.83,119.85 21.08,121.71C21.32,123.56 20.01,125.26 18.16,125.5C16.31,125.75 14.61,124.44 14.36,122.59C14.12,120.74 15.42,119.04 17.28,118.79ZM198.93,121.71C199.17,119.85 200.87,118.55 202.72,118.79C204.58,119.04 205.88,120.74 205.64,122.59C205.42,124.21 204.1,125.41 202.52,125.53C202.41,125.53 202.3,125.54 202.18,125.53C202.07,125.53 201.96,125.52 201.84,125.5C199.99,125.26 198.68,123.56 198.93,121.71ZM39.57,116.74C40.8,116.57 41.93,117.44 42.1,118.68C42.26,119.91 41.39,121.05 40.15,121.21C38.92,121.37 37.78,120.5 37.62,119.27C37.46,118.03 38.33,116.9 39.57,116.74ZM179.97,116.74C181.21,116.9 182.08,118.03 181.92,119.27C181.75,120.5 180.62,121.37 179.38,121.21C178.15,121.05 177.28,119.91 177.44,118.68C177.6,117.44 178.74,116.57 179.97,116.74ZM4.51,105.49C7.01,105.49 9.03,107.51 9.03,110C9.03,112.49 7.01,114.51 4.51,114.51C2.02,114.51 0,112.49 0,110C0,107.51 2.02,105.49 4.51,105.49ZM215.49,105.49C217.98,105.49 220,107.51 220,110C220,112.49 217.98,114.51 215.49,114.51C212.99,114.51 210.98,112.49 210.98,110C210.98,107.51 212.99,105.49 215.49,105.49ZM28.21,106.61C30.07,106.61 31.59,108.13 31.59,110C31.59,111.87 30.07,113.39 28.21,113.39C26.34,113.39 24.82,111.87 24.82,110C24.82,108.13 26.34,106.61 28.21,106.61ZM191.79,106.61C193.66,106.61 195.18,108.13 195.18,110C195.18,111.87 193.66,113.39 191.79,113.39C189.93,113.39 188.41,111.87 188.41,110C188.41,108.13 189.93,106.61 191.79,106.61ZM40.15,98.33C41.39,98.49 42.26,99.62 42.1,100.86C41.93,102.1 40.8,102.96 39.57,102.8C38.33,102.64 37.46,101.51 37.62,100.27C37.79,99.04 38.92,98.17 40.15,98.33ZM179.38,98.33C180.62,98.17 181.75,99.04 181.92,100.27C182.08,101.51 181.21,102.64 179.97,102.8C178.74,102.96 177.6,102.1 177.44,100.86C177.28,99.62 178.15,98.49 179.38,98.33ZM17.65,94.47C17.82,94.46 17.99,94.47 18.16,94.5C18.22,94.5 18.28,94.51 18.33,94.52C18.45,94.54 18.56,94.57 18.67,94.6C18.88,94.66 19.09,94.75 19.29,94.85C19.39,94.9 19.48,94.96 19.57,95.02C19.66,95.08 19.75,95.14 19.84,95.21C19.92,95.28 20,95.35 20.08,95.43C20.82,96.15 21.22,97.19 21.08,98.29C20.97,99.1 20.58,99.81 20.03,100.33C19.95,100.4 19.87,100.47 19.78,100.54C19.26,100.93 18.64,101.18 17.96,101.23C17.85,101.24 17.74,101.24 17.62,101.23C17.51,101.23 17.39,101.22 17.28,101.21C17.16,101.19 17.05,101.17 16.94,101.14C16.21,100.97 15.59,100.57 15.14,100.04C15.07,99.96 15,99.87 14.94,99.78C14.48,99.11 14.25,98.28 14.36,97.41C14.41,97.06 14.51,96.73 14.65,96.43C14.67,96.38 14.69,96.33 14.72,96.28C15.26,95.25 16.3,94.56 17.48,94.47C17.53,94.47 17.59,94.47 17.65,94.47ZM201.84,94.5C203.69,94.25 205.39,95.56 205.64,97.41C205.88,99.26 204.58,100.96 202.72,101.21C200.87,101.45 199.17,100.15 198.93,98.29C198.68,96.44 199.99,94.74 201.84,94.5ZM27.72,87.95C28.21,86.15 30.06,85.08 31.87,85.56C33.67,86.04 34.75,87.9 34.26,89.71C33.78,91.51 31.92,92.58 30.12,92.1C28.31,91.61 27.24,89.76 27.72,87.95ZM188.13,85.56C189.94,85.08 191.79,86.15 192.28,87.95C192.76,89.76 191.69,91.61 189.88,92.1C188.08,92.58 186.22,91.51 185.74,89.71C185.25,87.9 186.33,86.04 188.13,85.56ZM3.75,81.53C4.39,79.12 6.87,77.69 9.28,78.34C11.68,78.98 13.11,81.46 12.47,83.87C11.82,86.27 9.35,87.7 6.94,87.06C4.53,86.41 3.1,83.94 3.75,81.53ZM210.73,78.34C213.13,77.69 215.61,79.12 216.25,81.53C216.9,83.94 215.47,86.41 213.06,87.06C210.65,87.7 208.18,86.27 207.53,83.87C206.89,81.46 208.32,78.98 210.73,78.34ZM42.54,81.92C43.02,80.77 44.34,80.22 45.49,80.7C46.64,81.18 47.19,82.5 46.71,83.65C46.23,84.8 44.91,85.35 43.76,84.87C42.61,84.39 42.06,83.07 42.54,81.92ZM174.05,80.7C175.2,80.22 176.52,80.77 177,81.92C177.48,83.07 176.93,84.39 175.78,84.87C174.63,85.35 173.31,84.8 172.83,83.65C172.35,82.5 172.9,81.18 174.05,80.7ZM20.88,73.09C21.6,71.36 23.58,70.54 25.3,71.25C27.03,71.97 27.85,73.95 27.13,75.68C26.42,77.4 24.44,78.22 22.71,77.51C20.99,76.79 20.17,74.81 20.88,73.09ZM194.7,71.25C196.42,70.54 198.4,71.36 199.12,73.09C199.83,74.81 199.01,76.79 197.29,77.51C195.56,78.22 193.58,77.4 192.87,75.68C192.15,73.95 192.97,71.97 194.7,71.25ZM36.23,67.41C37.17,65.79 39.24,65.24 40.86,66.17C42.48,67.11 43.03,69.18 42.09,70.79C41.16,72.41 39.09,72.97 37.47,72.03C35.85,71.1 35.3,69.03 36.23,67.41ZM179.15,66.17C180.76,65.24 182.83,65.79 183.77,67.41C184.7,69.03 184.15,71.1 182.53,72.03C180.91,72.97 178.84,72.41 177.9,70.79C176.97,69.18 177.53,67.11 179.15,66.17ZM52.04,65.47C52.8,64.48 54.21,64.3 55.2,65.05C56.19,65.81 56.38,67.23 55.62,68.22C54.86,69.21 53.44,69.39 52.45,68.63C51.47,67.88 51.28,66.46 52.04,65.47ZM164.34,65.05C165.33,64.3 166.74,64.48 167.5,65.47C168.26,66.46 168.07,67.88 167.08,68.63C166.1,69.39 164.68,69.21 163.92,68.22C163.16,67.23 163.35,65.81 164.34,65.05ZM14.74,55C15.98,52.84 18.74,52.1 20.9,53.35C23.06,54.59 23.8,57.35 22.55,59.51C21.31,61.67 18.55,62.41 16.39,61.17C14.23,59.92 13.49,57.16 14.74,55ZM199.1,53.35C201.26,52.1 204.02,52.84 205.26,55C206.51,57.16 205.77,59.92 203.61,61.16C201.45,62.41 198.69,61.67 197.45,59.51C196.2,57.35 196.94,54.59 199.1,53.35ZM33.47,51.28C34.61,49.8 36.73,49.52 38.22,50.65C39.7,51.79 39.98,53.92 38.84,55.4C37.7,56.88 35.58,57.16 34.1,56.02C32.61,54.89 32.33,52.76 33.47,51.28ZM181.78,50.65C183.26,49.52 185.39,49.79 186.53,51.28C187.67,52.76 187.39,54.89 185.9,56.02C184.42,57.16 182.3,56.88 181.16,55.4C180.02,53.92 180.3,51.79 181.78,50.65ZM65.47,52.04C66.46,51.28 67.88,51.47 68.63,52.45C69.39,53.44 69.21,54.86 68.22,55.62C67.23,56.38 65.81,56.19 65.05,55.2C64.3,54.21 64.48,52.8 65.47,52.04ZM150.9,52.45C151.66,51.47 153.08,51.28 154.07,52.04C155.06,52.8 155.24,54.21 154.48,55.2C153.73,56.19 152.31,56.38 151.32,55.62C150.33,54.86 150.15,53.44 150.9,52.45ZM49.77,49.77C51.09,48.45 53.23,48.45 54.56,49.77C55.88,51.09 55.88,53.23 54.56,54.56C53.23,55.88 51.09,55.88 49.77,54.56C48.45,53.23 48.45,51.09 49.77,49.77ZM165.44,49.77C166.77,48.45 168.91,48.45 170.23,49.77C171.55,51.09 171.55,53.23 170.23,54.56C168.91,55.88 166.77,55.88 165.44,54.56C164.12,53.23 164.12,51.09 165.44,49.77ZM81.92,42.54C83.07,42.06 84.39,42.61 84.87,43.76C85.35,44.91 84.8,46.23 83.65,46.71C82.5,47.19 81.18,46.64 80.7,45.49C80.22,44.34 80.77,43.02 81.92,42.54ZM134.67,43.76C135.15,42.61 136.47,42.06 137.62,42.54C138.77,43.02 139.32,44.34 138.84,45.49C138.36,46.64 137.04,47.18 135.89,46.71C134.74,46.23 134.19,44.91 134.67,43.76ZM67.41,36.23C69.03,35.3 71.1,35.85 72.03,37.47C72.97,39.09 72.41,41.16 70.79,42.09C69.18,43.03 67.11,42.47 66.17,40.86C65.24,39.24 65.79,37.17 67.41,36.23ZM147.97,37.47C148.9,35.85 150.97,35.3 152.59,36.23C154.21,37.17 154.76,39.24 153.83,40.86C152.89,42.47 150.82,43.03 149.21,42.09C147.59,41.16 147.03,39.09 147.97,37.47ZM100.27,37.62C101.51,37.46 102.64,38.33 102.8,39.57C102.96,40.8 102.1,41.93 100.86,42.1C99.62,42.26 98.49,41.39 98.33,40.15C98.17,38.92 99.04,37.79 100.27,37.62ZM119.27,37.62C120.5,37.79 121.37,38.92 121.21,40.15C121.05,41.39 119.91,42.26 118.68,42.1C117.44,41.93 116.57,40.8 116.74,39.57C116.9,38.33 118.03,37.46 119.27,37.62ZM32.22,32.22C33.98,30.46 36.84,30.46 38.6,32.22C40.36,33.98 40.36,36.84 38.6,38.6C36.84,40.36 33.98,40.36 32.22,38.6C30.46,36.84 30.46,33.98 32.22,32.22ZM181.4,32.22C183.16,30.46 186.02,30.46 187.78,32.22C189.54,33.98 189.54,36.84 187.78,38.6C186.02,40.36 183.16,40.36 181.4,38.6C179.64,36.84 179.64,33.98 181.4,32.22ZM51.28,33.47C52.76,32.33 54.89,32.61 56.02,34.1C57.16,35.58 56.88,37.7 55.4,38.84C53.92,39.98 51.79,39.7 50.65,38.22C49.52,36.73 49.8,34.61 51.28,33.47ZM163.98,34.1C165.11,32.61 167.24,32.33 168.72,33.47C170.21,34.61 170.49,36.73 169.35,38.22C168.21,39.7 166.08,39.98 164.6,38.84C163.12,37.7 162.84,35.58 163.98,34.1ZM87.95,27.72C89.76,27.24 91.62,28.31 92.1,30.12C92.58,31.92 91.51,33.78 89.71,34.26C87.9,34.75 86.04,33.67 85.56,31.87C85.08,30.06 86.15,28.21 87.95,27.72ZM127.9,30.12C128.38,28.31 130.24,27.24 132.05,27.72C133.85,28.21 134.92,30.06 134.44,31.87C133.96,33.67 132.1,34.75 130.29,34.26C128.49,33.78 127.42,31.92 127.9,30.12ZM110,24.82C111.87,24.82 113.39,26.34 113.39,28.21C113.39,30.07 111.87,31.59 110,31.59C108.13,31.59 106.61,30.07 106.61,28.21C106.61,26.34 108.13,24.82 110,24.82ZM73.09,20.88C74.81,20.17 76.79,20.99 77.51,22.71C78.22,24.44 77.4,26.42 75.68,27.13C73.95,27.85 71.97,27.03 71.25,25.3C70.54,23.58 71.36,21.6 73.09,20.88ZM142.49,22.71C143.21,20.99 145.19,20.17 146.91,20.88C148.64,21.6 149.46,23.58 148.75,25.3C148.03,27.03 146.05,27.85 144.32,27.13C142.6,26.42 141.78,24.44 142.49,22.71ZM55,14.74C57.16,13.49 59.92,14.23 61.17,16.39C62.41,18.55 61.67,21.31 59.51,22.55C57.35,23.8 54.59,23.06 53.35,20.9C52.1,18.74 52.84,15.98 55,14.74ZM158.84,16.39C160.08,14.23 162.84,13.49 165,14.74C167.16,15.98 167.9,18.74 166.65,20.9C165.4,23.06 162.65,23.8 160.49,22.55C158.33,21.31 157.59,18.55 158.84,16.39ZM97.41,14.36C99.26,14.12 100.96,15.42 101.21,17.28C101.45,19.13 100.15,20.83 98.29,21.08C96.44,21.32 94.74,20.01 94.5,18.16C94.25,16.31 95.56,14.61 97.41,14.36ZM118.79,17.28C119.04,15.42 120.74,14.12 122.59,14.36C124.44,14.61 125.75,16.31 125.5,18.16C125.26,20.01 123.56,21.32 121.71,21.08C119.85,20.83 118.55,19.13 118.79,17.28ZM81.53,3.75C83.94,3.1 86.41,4.53 87.06,6.94C87.7,9.35 86.27,11.82 83.87,12.47C81.46,13.11 78.98,11.68 78.34,9.28C77.69,6.87 79.12,4.39 81.53,3.75ZM132.94,6.94C133.59,4.53 136.06,3.1 138.47,3.75C140.88,4.39 142.31,6.87 141.66,9.28C141.02,11.68 138.54,13.11 136.13,12.47C133.73,11.82 132.3,9.35 132.94,6.94ZM110,0C112.49,0 114.51,2.02 114.51,4.51C114.51,7.01 112.49,9.03 110,9.03C107.51,9.03 105.49,7.01 105.49,4.51C105.49,2.02 107.51,0 110,0Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/dots.xml"
line="8"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (16658 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M110,210.98C112.49,210.98 114.51,212.99 114.51,215.49C114.51,217.98 112.49,220 110,220C107.51,220 105.49,217.98 105.49,215.49C105.49,212.99 107.51,210.98 110,210.98ZM78.34,210.73C78.98,208.32 81.46,206.89 83.87,207.53C86.27,208.18 87.7,210.65 87.06,213.06C86.41,215.47 83.94,216.9 81.53,216.25C79.12,215.61 77.69,213.13 78.34,210.73ZM136.13,207.53C138.54,206.89 141.02,208.32 141.66,210.73C142.31,213.13 140.88,215.61 138.47,216.25C136.06,216.9 133.59,215.47 132.94,213.06C132.3,210.65 133.73,208.18 136.13,207.53ZM53.35,199.1C54.59,196.94 57.35,196.2 59.51,197.45C61.67,198.69 62.41,201.45 61.17,203.61C59.92,205.77 57.16,206.51 55,205.26C52.84,204.02 52.1,201.26 53.35,199.1ZM160.49,197.45C162.65,196.2 165.4,196.94 166.65,199.1C167.9,201.26 167.16,204.02 165,205.26C162.84,206.51 160.08,205.77 158.84,203.61C157.59,201.45 158.33,198.69 160.49,197.45ZM94.5,201.84C94.74,199.99 96.44,198.68 98.29,198.93C100.15,199.17 101.45,200.87 101.21,202.72C100.96,204.58 99.26,205.88 97.41,205.64C95.56,205.39 94.25,203.69 94.5,201.84ZM121.71,198.93C123.56,198.68 125.26,199.99 125.5,201.84C125.75,203.69 124.44,205.39 122.59,205.64C120.74,205.88 119.04,204.58 118.79,202.72C118.55,200.87 119.85,199.17 121.71,198.93ZM71.25,194.7C71.97,192.97 73.95,192.15 75.68,192.87C77.4,193.58 78.22,195.56 77.51,197.29C76.79,199.01 74.81,199.83 73.09,199.12C71.36,198.4 70.54,196.42 71.25,194.7ZM144.32,192.87C146.05,192.15 148.03,192.97 148.75,194.7C149.46,196.42 148.64,198.4 146.91,199.12C145.19,199.83 143.21,199.01 142.49,197.29C141.78,195.56 142.6,193.58 144.32,192.87ZM110,188.41C111.87,188.41 113.39,189.93 113.39,191.79C113.39,193.66 111.87,195.18 110,195.18C108.13,195.18 106.61,193.66 106.61,191.79C106.61,189.93 108.13,188.41 110,188.41ZM85.56,188.13C86.04,186.33 87.9,185.25 89.71,185.74C91.51,186.22 92.58,188.08 92.1,189.88C91.62,191.69 89.76,192.76 87.95,192.28C86.15,191.79 85.08,189.94 85.56,188.13ZM130.29,185.74C132.1,185.25 133.96,186.33 134.44,188.13C134.92,189.94 133.85,191.79 132.05,192.28C130.24,192.76 128.38,191.69 127.9,189.88C127.42,188.08 128.49,186.22 130.29,185.74ZM32.22,181.4C33.98,179.64 36.84,179.64 38.6,181.4C40.36,183.16 40.36,186.02 38.6,187.78C36.84,189.54 33.98,189.54 32.22,187.78C30.46,186.02 30.46,183.16 32.22,181.4ZM181.4,181.4C183.16,179.64 186.02,179.64 187.78,181.4C189.54,183.16 189.54,186.02 187.78,187.78C186.02,189.54 183.16,189.54 181.4,187.78C179.64,186.02 179.64,183.16 181.4,181.4ZM50.65,181.78C51.79,180.3 53.92,180.02 55.4,181.16C56.88,182.29 57.16,184.42 56.02,185.9C54.89,187.39 52.76,187.67 51.28,186.53C49.8,185.39 49.52,183.26 50.65,181.78ZM164.6,181.16C166.08,180.02 168.21,180.3 169.35,181.78C170.49,183.26 170.21,185.39 168.72,186.53C167.24,187.67 165.11,187.39 163.98,185.9C162.84,184.42 163.12,182.29 164.6,181.16ZM66.17,179.14C67.11,177.52 69.18,176.97 70.79,177.9C72.41,178.84 72.97,180.91 72.03,182.53C71.1,184.15 69.03,184.7 67.41,183.77C65.79,182.83 65.24,180.76 66.17,179.14ZM149.21,177.9C150.82,176.97 152.89,177.52 153.83,179.14C154.76,180.76 154.21,182.83 152.59,183.77C150.97,184.7 148.9,184.15 147.97,182.53C147.03,180.91 147.59,178.84 149.21,177.9ZM100.86,177.44C102.1,177.6 102.96,178.74 102.8,179.97C102.64,181.21 101.51,182.08 100.27,181.92C99.04,181.75 98.17,180.62 98.33,179.38C98.49,178.15 99.62,177.28 100.86,177.44ZM118.68,177.44C119.91,177.28 121.05,178.15 121.21,179.38C121.37,180.62 120.5,181.75 119.27,181.92C118.03,182.08 116.9,181.21 116.74,179.97C116.57,178.74 117.44,177.6 118.68,177.44ZM80.7,174.05C81.18,172.9 82.5,172.35 83.65,172.83C84.8,173.31 85.35,174.63 84.87,175.78C84.39,176.93 83.07,177.48 81.92,177C80.77,176.52 80.22,175.2 80.7,174.05ZM135.89,172.83C137.04,172.35 138.36,172.9 138.84,174.05C139.32,175.2 138.77,176.52 137.62,177C136.47,177.48 135.15,176.93 134.67,175.78C134.19,174.63 134.74,173.31 135.89,172.83ZM49.77,165.44C51.09,164.12 53.23,164.12 54.56,165.44C55.88,166.77 55.88,168.91 54.56,170.23C53.23,171.55 51.09,171.55 49.77,170.23C48.45,168.91 48.45,166.77 49.77,165.44ZM165.44,165.44C166.77,164.12 168.91,164.12 170.23,165.44C171.55,166.77 171.55,168.91 170.23,170.23C168.91,171.55 166.77,171.55 165.44,170.23C164.12,168.91 164.12,166.77 165.44,165.44ZM34.1,163.98C35.58,162.84 37.7,163.12 38.84,164.6C39.98,166.08 39.7,168.21 38.22,169.35C36.73,170.49 34.61,170.21 33.47,168.72C32.33,167.24 32.61,165.11 34.1,163.98ZM181.16,164.6C182.29,163.12 184.42,162.84 185.9,163.98C187.39,165.11 187.67,167.24 186.53,168.72C185.39,170.21 183.26,170.49 181.78,169.35C180.3,168.21 180.02,166.08 181.16,164.6ZM65.05,164.34C65.81,163.35 67.23,163.16 68.22,163.92C69.21,164.68 69.39,166.1 68.63,167.08C67.88,168.07 66.46,168.26 65.47,167.5C64.48,166.74 64.3,165.33 65.05,164.34ZM151.32,163.92C152.31,163.16 153.73,163.35 154.48,164.34C155.24,165.33 155.06,166.74 154.07,167.5C153.08,168.26 151.66,168.07 150.9,167.08C150.15,166.1 150.33,164.68 151.32,163.92ZM16.39,158.84C18.55,157.59 21.31,158.33 22.55,160.49C23.8,162.65 23.06,165.4 20.9,166.65C18.74,167.9 15.98,167.16 14.74,165C13.49,162.84 14.23,160.08 16.39,158.84ZM197.45,160.49C198.69,158.33 201.45,157.59 203.61,158.84C205.77,160.08 206.51,162.84 205.26,165C204.02,167.16 201.26,167.9 199.1,166.65C196.94,165.4 196.2,162.65 197.45,160.49ZM52.45,150.9C53.44,150.15 54.86,150.33 55.62,151.32C56.38,152.31 56.19,153.73 55.2,154.48C54.21,155.24 52.8,155.06 52.04,154.07C51.28,153.08 51.47,151.66 52.45,150.9ZM163.92,151.32C164.68,150.33 166.1,150.15 167.08,150.9C168.07,151.66 168.26,153.08 167.5,154.07C166.74,155.06 165.33,155.24 164.34,154.48C163.35,153.73 163.16,152.31 163.92,151.32ZM37.47,147.97C39.09,147.03 41.16,147.59 42.09,149.21C43.03,150.82 42.47,152.89 40.86,153.83C39.24,154.76 37.17,154.21 36.23,152.59C35.3,150.97 35.85,148.9 37.47,147.97ZM177.9,149.21C178.84,147.59 180.91,147.03 182.53,147.97C184.15,148.9 184.7,150.97 183.77,152.59C182.83,154.21 180.76,154.76 179.15,153.83C177.53,152.89 176.97,150.82 177.9,149.21ZM192.87,144.32C193.58,142.6 195.56,141.78 197.29,142.49C199.01,143.21 199.83,145.19 199.12,146.91C198.4,148.64 196.42,149.46 194.7,148.75C192.97,148.03 192.15,146.05 192.87,144.32ZM22.71,142.49C24.44,141.78 26.42,142.6 27.13,144.32C27.85,146.05 27.03,148.03 25.3,148.75C23.58,149.46 21.6,148.64 20.88,146.91C20.17,145.19 20.99,143.21 22.71,142.49ZM6.94,132.94C9.35,132.3 11.82,133.73 12.47,136.13C13.11,138.54 11.68,141.02 9.28,141.66C6.87,142.31 4.39,140.88 3.75,138.47C3.1,136.06 4.53,133.59 6.94,132.94ZM207.53,136.13C208.18,133.73 210.65,132.3 213.06,132.94C215.47,133.59 216.9,136.06 216.25,138.47C215.61,140.88 213.13,142.31 210.73,141.66C208.32,141.02 206.89,138.54 207.53,136.13ZM43.76,134.67C44.91,134.19 46.23,134.74 46.71,135.89C47.19,137.04 46.64,138.36 45.49,138.84C44.34,139.32 43.02,138.77 42.54,137.62C42.06,136.47 42.61,135.15 43.76,134.67ZM172.83,135.89C173.31,134.74 174.63,134.19 175.78,134.67C176.93,135.15 177.48,136.47 177,137.62C176.52,138.77 175.2,139.32 174.05,138.84C172.9,138.36 172.35,137.04 172.83,135.89ZM30.12,127.9C31.92,127.42 33.78,128.49 34.26,130.29C34.75,132.1 33.67,133.96 31.87,134.44C30.06,134.92 28.21,133.85 27.72,132.05C27.24,130.24 28.31,128.38 30.12,127.9ZM185.74,130.29C186.22,128.49 188.08,127.42 189.88,127.9C191.69,128.38 192.76,130.24 192.28,132.05C191.79,133.85 189.94,134.92 188.13,134.44C186.33,133.96 185.26,132.1 185.74,130.29ZM17.28,118.79C19.13,118.55 20.83,119.85 21.08,121.71C21.32,123.56 20.01,125.26 18.16,125.5C16.31,125.75 14.61,124.44 14.36,122.59C14.12,120.74 15.42,119.04 17.28,118.79ZM198.93,121.71C199.17,119.85 200.87,118.55 202.72,118.79C204.58,119.04 205.88,120.74 205.64,122.59C205.42,124.21 204.1,125.41 202.52,125.53C202.41,125.53 202.3,125.54 202.18,125.53C202.07,125.53 201.96,125.52 201.84,125.5C199.99,125.26 198.68,123.56 198.93,121.71ZM39.57,116.74C40.8,116.57 41.93,117.44 42.1,118.68C42.26,119.91 41.39,121.05 40.15,121.21C38.92,121.37 37.78,120.5 37.62,119.27C37.46,118.03 38.33,116.9 39.57,116.74ZM179.97,116.74C181.21,116.9 182.08,118.03 181.92,119.27C181.75,120.5 180.62,121.37 179.38,121.21C178.15,121.05 177.28,119.91 177.44,118.68C177.6,117.44 178.74,116.57 179.97,116.74ZM4.51,105.49C7.01,105.49 9.03,107.51 9.03,110C9.03,112.49 7.01,114.51 4.51,114.51C2.02,114.51 0,112.49 0,110C0,107.51 2.02,105.49 4.51,105.49ZM215.49,105.49C217.98,105.49 220,107.51 220,110C220,112.49 217.98,114.51 215.49,114.51C212.99,114.51 210.98,112.49 210.98,110C210.98,107.51 212.99,105.49 215.49,105.49ZM28.21,106.61C30.07,106.61 31.59,108.13 31.59,110C31.59,111.87 30.07,113.39 28.21,113.39C26.34,113.39 24.82,111.87 24.82,110C24.82,108.13 26.34,106.61 28.21,106.61ZM191.79,106.61C193.66,106.61 195.18,108.13 195.18,110C195.18,111.87 193.66,113.39 191.79,113.39C189.93,113.39 188.41,111.87 188.41,110C188.41,108.13 189.93,106.61 191.79,106.61ZM40.15,98.33C41.39,98.49 42.26,99.62 42.1,100.86C41.93,102.1 40.8,102.96 39.57,102.8C38.33,102.64 37.46,101.51 37.62,100.27C37.79,99.04 38.92,98.17 40.15,98.33ZM179.38,98.33C180.62,98.17 181.75,99.04 181.92,100.27C182.08,101.51 181.21,102.64 179.97,102.8C178.74,102.96 177.6,102.1 177.44,100.86C177.28,99.62 178.15,98.49 179.38,98.33ZM17.65,94.47C17.82,94.46 17.99,94.47 18.16,94.5C18.22,94.5 18.28,94.51 18.33,94.52C18.45,94.54 18.56,94.57 18.67,94.6C18.88,94.66 19.09,94.75 19.29,94.85C19.39,94.9 19.48,94.96 19.57,95.02C19.66,95.08 19.75,95.14 19.84,95.21C19.92,95.28 20,95.35 20.08,95.43C20.82,96.15 21.22,97.19 21.08,98.29C20.97,99.1 20.58,99.81 20.03,100.33C19.95,100.4 19.87,100.47 19.78,100.54C19.26,100.93 18.64,101.18 17.96,101.23C17.85,101.24 17.74,101.24 17.62,101.23C17.51,101.23 17.39,101.22 17.28,101.21C17.16,101.19 17.05,101.17 16.94,101.14C16.21,100.97 15.59,100.57 15.14,100.04C15.07,99.96 15,99.87 14.94,99.78C14.48,99.11 14.25,98.28 14.36,97.41C14.41,97.06 14.51,96.73 14.65,96.43C14.67,96.38 14.69,96.33 14.72,96.28C15.26,95.25 16.3,94.56 17.48,94.47C17.53,94.47 17.59,94.47 17.65,94.47ZM201.84,94.5C203.69,94.25 205.39,95.56 205.64,97.41C205.88,99.26 204.58,100.96 202.72,101.21C200.87,101.45 199.17,100.15 198.93,98.29C198.68,96.44 199.99,94.74 201.84,94.5ZM27.72,87.95C28.21,86.15 30.06,85.08 31.87,85.56C33.67,86.04 34.75,87.9 34.26,89.71C33.78,91.51 31.92,92.58 30.12,92.1C28.31,91.61 27.24,89.76 27.72,87.95ZM188.13,85.56C189.94,85.08 191.79,86.15 192.28,87.95C192.76,89.76 191.69,91.61 189.88,92.1C188.08,92.58 186.22,91.51 185.74,89.71C185.25,87.9 186.33,86.04 188.13,85.56ZM3.75,81.53C4.39,79.12 6.87,77.69 9.28,78.34C11.68,78.98 13.11,81.46 12.47,83.87C11.82,86.27 9.35,87.7 6.94,87.06C4.53,86.41 3.1,83.94 3.75,81.53ZM210.73,78.34C213.13,77.69 215.61,79.12 216.25,81.53C216.9,83.94 215.47,86.41 213.06,87.06C210.65,87.7 208.18,86.27 207.53,83.87C206.89,81.46 208.32,78.98 210.73,78.34ZM42.54,81.92C43.02,80.77 44.34,80.22 45.49,80.7C46.64,81.18 47.19,82.5 46.71,83.65C46.23,84.8 44.91,85.35 43.76,84.87C42.61,84.39 42.06,83.07 42.54,81.92ZM174.05,80.7C175.2,80.22 176.52,80.77 177,81.92C177.48,83.07 176.93,84.39 175.78,84.87C174.63,85.35 173.31,84.8 172.83,83.65C172.35,82.5 172.9,81.18 174.05,80.7ZM20.88,73.09C21.6,71.36 23.58,70.54 25.3,71.25C27.03,71.97 27.85,73.95 27.13,75.68C26.42,77.4 24.44,78.22 22.71,77.51C20.99,76.79 20.17,74.81 20.88,73.09ZM194.7,71.25C196.42,70.54 198.4,71.36 199.12,73.09C199.83,74.81 199.01,76.79 197.29,77.51C195.56,78.22 193.58,77.4 192.87,75.68C192.15,73.95 192.97,71.97 194.7,71.25ZM36.23,67.41C37.17,65.79 39.24,65.24 40.86,66.17C42.48,67.11 43.03,69.18 42.09,70.79C41.16,72.41 39.09,72.97 37.47,72.03C35.85,71.1 35.3,69.03 36.23,67.41ZM179.15,66.17C180.76,65.24 182.83,65.79 183.77,67.41C184.7,69.03 184.15,71.1 182.53,72.03C180.91,72.97 178.84,72.41 177.9,70.79C176.97,69.18 177.53,67.11 179.15,66.17ZM52.04,65.47C52.8,64.48 54.21,64.3 55.2,65.05C56.19,65.81 56.38,67.23 55.62,68.22C54.86,69.21 53.44,69.39 52.45,68.63C51.47,67.88 51.28,66.46 52.04,65.47ZM164.34,65.05C165.33,64.3 166.74,64.48 167.5,65.47C168.26,66.46 168.07,67.88 167.08,68.63C166.1,69.39 164.68,69.21 163.92,68.22C163.16,67.23 163.35,65.81 164.34,65.05ZM14.74,55C15.98,52.84 18.74,52.1 20.9,53.35C23.06,54.59 23.8,57.35 22.55,59.51C21.31,61.67 18.55,62.41 16.39,61.17C14.23,59.92 13.49,57.16 14.74,55ZM199.1,53.35C201.26,52.1 204.02,52.84 205.26,55C206.51,57.16 205.77,59.92 203.61,61.16C201.45,62.41 198.69,61.67 197.45,59.51C196.2,57.35 196.94,54.59 199.1,53.35ZM33.47,51.28C34.61,49.8 36.73,49.52 38.22,50.65C39.7,51.79 39.98,53.92 38.84,55.4C37.7,56.88 35.58,57.16 34.1,56.02C32.61,54.89 32.33,52.76 33.47,51.28ZM181.78,50.65C183.26,49.52 185.39,49.79 186.53,51.28C187.67,52.76 187.39,54.89 185.9,56.02C184.42,57.16 182.3,56.88 181.16,55.4C180.02,53.92 180.3,51.79 181.78,50.65ZM65.47,52.04C66.46,51.28 67.88,51.47 68.63,52.45C69.39,53.44 69.21,54.86 68.22,55.62C67.23,56.38 65.81,56.19 65.05,55.2C64.3,54.21 64.48,52.8 65.47,52.04ZM150.9,52.45C151.66,51.47 153.08,51.28 154.07,52.04C155.06,52.8 155.24,54.21 154.48,55.2C153.73,56.19 152.31,56.38 151.32,55.62C150.33,54.86 150.15,53.44 150.9,52.45ZM49.77,49.77C51.09,48.45 53.23,48.45 54.56,49.77C55.88,51.09 55.88,53.23 54.56,54.56C53.23,55.88 51.09,55.88 49.77,54.56C48.45,53.23 48.45,51.09 49.77,49.77ZM165.44,49.77C166.77,48.45 168.91,48.45 170.23,49.77C171.55,51.09 171.55,53.23 170.23,54.56C168.91,55.88 166.77,55.88 165.44,54.56C164.12,53.23 164.12,51.09 165.44,49.77ZM81.92,42.54C83.07,42.06 84.39,42.61 84.87,43.76C85.35,44.91 84.8,46.23 83.65,46.71C82.5,47.19 81.18,46.64 80.7,45.49C80.22,44.34 80.77,43.02 81.92,42.54ZM134.67,43.76C135.15,42.61 136.47,42.06 137.62,42.54C138.77,43.02 139.32,44.34 138.84,45.49C138.36,46.64 137.04,47.18 135.89,46.71C134.74,46.23 134.19,44.91 134.67,43.76ZM67.41,36.23C69.03,35.3 71.1,35.85 72.03,37.47C72.97,39.09 72.41,41.16 70.79,42.09C69.18,43.03 67.11,42.47 66.17,40.86C65.24,39.24 65.79,37.17 67.41,36.23ZM147.97,37.47C148.9,35.85 150.97,35.3 152.59,36.23C154.21,37.17 154.76,39.24 153.83,40.86C152.89,42.47 150.82,43.03 149.21,42.09C147.59,41.16 147.03,39.09 147.97,37.47ZM100.27,37.62C101.51,37.46 102.64,38.33 102.8,39.57C102.96,40.8 102.1,41.93 100.86,42.1C99.62,42.26 98.49,41.39 98.33,40.15C98.17,38.92 99.04,37.79 100.27,37.62ZM119.27,37.62C120.5,37.79 121.37,38.92 121.21,40.15C121.05,41.39 119.91,42.26 118.68,42.1C117.44,41.93 116.57,40.8 116.74,39.57C116.9,38.33 118.03,37.46 119.27,37.62ZM32.22,32.22C33.98,30.46 36.84,30.46 38.6,32.22C40.36,33.98 40.36,36.84 38.6,38.6C36.84,40.36 33.98,40.36 32.22,38.6C30.46,36.84 30.46,33.98 32.22,32.22ZM181.4,32.22C183.16,30.46 186.02,30.46 187.78,32.22C189.54,33.98 189.54,36.84 187.78,38.6C186.02,40.36 183.16,40.36 181.4,38.6C179.64,36.84 179.64,33.98 181.4,32.22ZM51.28,33.47C52.76,32.33 54.89,32.61 56.02,34.1C57.16,35.58 56.88,37.7 55.4,38.84C53.92,39.98 51.79,39.7 50.65,38.22C49.52,36.73 49.8,34.61 51.28,33.47ZM163.98,34.1C165.11,32.61 167.24,32.33 168.72,33.47C170.21,34.61 170.49,36.73 169.35,38.22C168.21,39.7 166.08,39.98 164.6,38.84C163.12,37.7 162.84,35.58 163.98,34.1ZM87.95,27.72C89.76,27.24 91.62,28.31 92.1,30.12C92.58,31.92 91.51,33.78 89.71,34.26C87.9,34.75 86.04,33.67 85.56,31.87C85.08,30.06 86.15,28.21 87.95,27.72ZM127.9,30.12C128.38,28.31 130.24,27.24 132.05,27.72C133.85,28.21 134.92,30.06 134.44,31.87C133.96,33.67 132.1,34.75 130.29,34.26C128.49,33.78 127.42,31.92 127.9,30.12ZM110,24.82C111.87,24.82 113.39,26.34 113.39,28.21C113.39,30.07 111.87,31.59 110,31.59C108.13,31.59 106.61,30.07 106.61,28.21C106.61,26.34 108.13,24.82 110,24.82ZM73.09,20.88C74.81,20.17 76.79,20.99 77.51,22.71C78.22,24.44 77.4,26.42 75.68,27.13C73.95,27.85 71.97,27.03 71.25,25.3C70.54,23.58 71.36,21.6 73.09,20.88ZM142.49,22.71C143.21,20.99 145.19,20.17 146.91,20.88C148.64,21.6 149.46,23.58 148.75,25.3C148.03,27.03 146.05,27.85 144.32,27.13C142.6,26.42 141.78,24.44 142.49,22.71ZM55,14.74C57.16,13.49 59.92,14.23 61.17,16.39C62.41,18.55 61.67,21.31 59.51,22.55C57.35,23.8 54.59,23.06 53.35,20.9C52.1,18.74 52.84,15.98 55,14.74ZM158.84,16.39C160.08,14.23 162.84,13.49 165,14.74C167.16,15.98 167.9,18.74 166.65,20.9C165.4,23.06 162.65,23.8 160.49,22.55C158.33,21.31 157.59,18.55 158.84,16.39ZM97.41,14.36C99.26,14.12 100.96,15.42 101.21,17.28C101.45,19.13 100.15,20.83 98.29,21.08C96.44,21.32 94.74,20.01 94.5,18.16C94.25,16.31 95.56,14.61 97.41,14.36ZM118.79,17.28C119.04,15.42 120.74,14.12 122.59,14.36C124.44,14.61 125.75,16.31 125.5,18.16C125.26,20.01 123.56,21.32 121.71,21.08C119.85,20.83 118.55,19.13 118.79,17.28ZM81.53,3.75C83.94,3.1 86.41,4.53 87.06,6.94C87.7,9.35 86.27,11.82 83.87,12.47C81.46,13.11 78.98,11.68 78.34,9.28C77.69,6.87 79.12,4.39 81.53,3.75ZM132.94,6.94C133.59,4.53 136.06,3.1 138.47,3.75C140.88,4.39 142.31,6.87 141.66,9.28C141.02,11.68 138.54,13.11 136.13,12.47C133.73,11.82 132.3,9.35 132.94,6.94ZM110,0C112.49,0 114.51,2.02 114.51,4.51C114.51,7.01 112.49,9.03 110,9.03C107.51,9.03 105.49,7.01 105.49,4.51C105.49,2.02 107.51,0 110,0Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable-v24/dots.xml"
line="11"
column="27"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (3783 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M105.39,59.95s-0.06,-0.04 -0.09,-0.05c-0.15,-0.09 -0.31,-0.18 -0.46,-0.26 0,0 -0.02,0 -0.04,-0.02 -0.01,0 -0.02,0 -0.04,-0.02 -0.17,-0.09 -0.35,-0.18 -0.53,-0.25 -0.03,-0.02 -0.07,-0.04 -0.1,-0.05 -0.02,0 -0.05,-0.02 -0.07,-0.03 -0.1,-0.04 -0.2,-0.09 -0.3,-0.12 -0.05,-0.02 -0.1,-0.04 -0.15,-0.06 -0.18,-0.07 -0.38,-0.14 -0.56,-0.19 -0.01,0 -0.02,0 -0.04,-0.01 -0.1,-0.03 -0.2,-0.06 -0.3,-0.09 -0.02,0 -0.05,0 -0.07,-0.02 -0.26,-0.07 -0.54,-0.13 -0.81,-0.18 -0.17,-0.03 -0.34,-0.06 -0.51,-0.08 -0.12,-0.02 -0.25,-0.03 -0.38,-0.04 -0.06,0 -0.12,0 -0.17,0h-0.12c-0.2,-0.01 -0.41,-0.02 -0.62,-0.02s-0.41,0 -0.62,0c-0.22,0.01 -0.43,0.03 -0.65,0.06h-0.07c-0.08,0 -0.15,0.02 -0.23,0.04 -0.17,0.02 -0.33,0.05 -0.5,0.08 -0.08,0.01 -0.16,0.03 -0.24,0.05 -0.2,0.04 -0.4,0.09 -0.6,0.15 -0.07,0.02 -0.14,0.04 -0.2,0.06 -0.18,0.06 -0.36,0.12 -0.55,0.18 -0.07,0.03 -0.15,0.06 -0.23,0.09 -0.05,0.02 -0.1,0.04 -0.15,0.06 -0.19,0.07 -0.38,0.16 -0.57,0.25 0,0 -0.02,0 -0.02,0.01 -0.08,0.04 -0.15,0.07 -0.23,0.12 -0.09,0.05 -0.19,0.1 -0.28,0.15 -0.1,0.05 -0.19,0.1 -0.28,0.15 -0.08,0.05 -0.16,0.09 -0.24,0.14l-27.99,17.08c-0.09,0.06 -0.17,0.11 -0.26,0.17 -0.09,0.06 -0.18,0.12 -0.26,0.19 -0.04,0.02 -0.07,0.05 -0.1,0.07 0,0 -0.01,0 -0.02,0.01 -0.17,0.13 -0.34,0.27 -0.51,0.42 -0.02,0.02 -0.04,0.04 -0.07,0.06 -0.1,0.1 -0.22,0.2 -0.32,0.31 -0.06,0.05 -0.1,0.1 -0.16,0.15 -0.03,0.04 -0.06,0.07 -0.1,0.1 -0.02,0.02 -0.04,0.04 -0.06,0.06 -0.15,0.15 -0.3,0.31 -0.44,0.48 -0.03,0.04 -0.07,0.08 -0.1,0.12 0,0 0,0.01 0,0.02 -0.14,0.16 -0.26,0.31 -0.39,0.48 -0.02,0.02 -0.04,0.06 -0.06,0.08 0,0 -0.02,0.02 -0.02,0.03 -0.15,0.2 -0.3,0.41 -0.44,0.62 -0.03,0.04 -0.06,0.09 -0.09,0.14 -0.03,0.04 -0.06,0.09 -0.08,0.14 -0.1,0.15 -0.19,0.3 -0.28,0.45 -0.01,0 -0.02,0.03 -0.03,0.04 -0.02,0.04 -0.03,0.07 -0.05,0.1 -0.11,0.2 -0.22,0.39 -0.31,0.58 -0.02,0.04 -0.04,0.07 -0.06,0.11 -0.1,0.21 -0.18,0.42 -0.26,0.63 -0.02,0.04 -0.04,0.09 -0.05,0.13 -0.04,0.09 -0.07,0.18 -0.1,0.28 -0.04,0.12 -0.08,0.24 -0.1,0.35l-6.56,24.73c-0.1,0.38 -0.15,0.74 -0.15,1.11 0,0.11 0,0.22 0.01,0.32 0.08,1.08 0.57,2.06 1.35,2.76 0.12,0.1 0.24,0.2 0.37,0.29 0,0 0.01,0 0.02,0 0.07,0.05 0.14,0.09 0.2,0.13l-0.14,-0.08 -10.32,-6.21c-0.57,-0.34 -1.04,-0.82 -1.37,-1.38 -0.56,-0.94 -0.75,-2.1 -0.44,-3.26l6.56,-24.73c0.05,-0.2 0.12,-0.41 0.2,-0.63 0,-0.04 0.03,-0.09 0.04,-0.13 0.08,-0.21 0.17,-0.42 0.27,-0.63 0.02,-0.04 0.04,-0.07 0.06,-0.11 0.09,-0.19 0.2,-0.39 0.31,-0.58 0.02,-0.03 0.03,-0.06 0.05,-0.09 0.12,-0.22 0.25,-0.42 0.39,-0.63 0.03,-0.04 0.06,-0.09 0.09,-0.14 0.14,-0.21 0.28,-0.42 0.44,-0.62 0,-0.01 0.02,-0.02 0.02,-0.03 0.15,-0.2 0.3,-0.39 0.46,-0.57 0.03,-0.04 0.06,-0.08 0.1,-0.12 0.16,-0.18 0.33,-0.36 0.49,-0.54 0.03,-0.03 0.07,-0.06 0.1,-0.09 0.16,-0.16 0.32,-0.32 0.48,-0.46l0.05,-0.05s0.01,0 0.02,-0.01c0.17,-0.15 0.34,-0.29 0.51,-0.42 0.04,-0.03 0.08,-0.06 0.12,-0.09 0.18,-0.13 0.36,-0.25 0.53,-0.36l23.32,-14.23 4.68,-2.85s0.07,-0.04 0.11,-0.07c0.04,-0.02 0.09,-0.04 0.13,-0.07 0.18,-0.11 0.38,-0.21 0.57,-0.31 0.08,-0.04 0.15,-0.07 0.23,-0.11 0.12,-0.06 0.23,-0.1 0.35,-0.16 0.09,-0.04 0.17,-0.07 0.25,-0.1 0.04,0 0.08,-0.04 0.12,-0.05 0,0 0.02,0 0.03,0 0.26,-0.1 0.51,-0.18 0.77,-0.26 0.07,-0.02 0.14,-0.04 0.2,-0.06 0.2,-0.06 0.41,-0.1 0.61,-0.15 0.04,0 0.09,-0.02 0.13,-0.04l0.11,-0.02c0.17,-0.03 0.33,-0.06 0.49,-0.08 0.08,-0.01 0.15,-0.02 0.23,-0.03 0.24,-0.03 0.48,-0.06 0.72,-0.07 0.17,0 0.34,0 0.5,0h0.12c0.25,0 0.49,0 0.74,0.03h0.17c0.3,0.03 0.59,0.07 0.89,0.12 0.08,0 0.16,0.04 0.24,0.05 0.22,0.04 0.43,0.09 0.65,0.15 0.1,0.02 0.2,0.06 0.3,0.08 0.2,0.06 0.4,0.13 0.6,0.2 0.06,0.02 0.12,0.04 0.18,0.06 0.04,0.01 0.08,0.03 0.12,0.05 0.07,0.03 0.15,0.06 0.23,0.09 0.15,0.07 0.29,0.14 0.44,0.2 0.07,0.04 0.15,0.07 0.23,0.11 0.04,0.02 0.09,0.04 0.13,0.07 0.15,0.08 0.31,0.17 0.46,0.26l10.23,6.16 0.26,0.15h-0.06Z">"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable-night/ic_location_secure.xml"
line="24"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (4283 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M103.8,27.34c2.01,0 4.06,0.29 6.09,0.9 9.19,2.74 15.15,11.19 15.15,20.32 0,2.01 -0.29,4.06 -0.91,6.09l-6.94,23.23 0.46,0.8 7.41,12.91c1.13,2.07 1.57,5.53 0.98,7.81l-4.66,17.49 -1.43,6.43c-0.52,2.35 -2.6,3.93 -4.91,3.93 -0.4,0 -0.81,-0.05 -1.21,-0.15l-25.22,-6.23 -23.11,-5.7 -7.5,-1.92c-0.4,-0.1 -0.78,-0.27 -1.11,-0.46l-0.02,-0.02 -0.14,-0.08 -10.32,-6.21c-0.58,-0.35 -1.04,-0.82 -1.37,-1.38 -0.57,-0.93 -0.75,-2.09 -0.45,-3.26l6.57,-24.73c0.05,-0.2 0.12,-0.41 0.2,-0.62 0.02,-0.05 0.04,-0.09 0.05,-0.13 0.08,-0.21 0.17,-0.42 0.27,-0.63 0.02,-0.04 0.05,-0.07 0.06,-0.11 0.09,-0.19 0.19,-0.38 0.3,-0.59 0.02,-0.03 0.04,-0.06 0.05,-0.09 0.12,-0.22 0.25,-0.42 0.38,-0.63 0.03,-0.05 0.06,-0.09 0.09,-0.14 0.14,-0.21 0.28,-0.42 0.44,-0.62 0,0 0.02,-0.02 0.02,-0.03 0.16,-0.2 0.3,-0.39 0.47,-0.58 0.03,-0.05 0.06,-0.08 0.1,-0.12 0.16,-0.19 0.32,-0.37 0.48,-0.55 0.04,-0.03 0.07,-0.05 0.1,-0.09 0.16,-0.16 0.32,-0.32 0.48,-0.46l0.05,-0.05 0.02,-0.02c0.16,-0.16 0.34,-0.28 0.51,-0.42 0.05,-0.04 0.08,-0.05 0.12,-0.09 0.17,-0.13 0.36,-0.25 0.53,-0.36l23.32,-14.22 4.27,-14.1c2.76,-9.19 11.19,-15.14 20.31,-15.14M85.27,53.01c0.09,-0.04 0.17,-0.07 0.26,-0.1 0.05,0 0.08,-0.04 0.12,-0.05 0,0 0.02,0 0.04,-0.02 0.26,-0.1 0.51,-0.18 0.77,-0.26 0.06,-0.03 0.14,-0.04 0.19,-0.05 0.21,-0.05 0.41,-0.11 0.61,-0.15 0.05,-0.02 0.08,-0.03 0.13,-0.04l0.11,-0.02c0.16,-0.04 0.34,-0.05 0.49,-0.08 0.08,0 0.16,-0.03 0.24,-0.03 0.24,-0.04 0.48,-0.05 0.71,-0.07h0.62c0.25,0 0.49,0 0.74,0.03h0.17c0.29,0.03 0.59,0.07 0.89,0.12 0.07,0 0.16,0.04 0.24,0.05 0.21,0.05 0.43,0.09 0.65,0.16 0.09,0.03 0.19,0.05 0.29,0.08 0.19,0.06 0.4,0.13 0.59,0.2 0.05,0.03 0.12,0.04 0.18,0.06 0.04,0 0.07,0.03 0.11,0.05 0.07,0.04 0.16,0.06 0.23,0.09 0.15,0.07 0.29,0.14 0.44,0.21 0.07,0.04 0.15,0.07 0.23,0.11 0.05,0.02 0.08,0.04 0.13,0.06 0.16,0.08 0.31,0.16 0.46,0.26l10.21,6.15h0.02s0.02,0.02 0.03,0.02l0.22,0.14c1.45,0.88 2.71,2.13 3.61,3.71l4.94,8.58 5.36,-17.93c0.48,-1.58 0.7,-3.17 0.7,-4.74 0,-7.1 -4.62,-13.65 -11.76,-15.79 -1.58,-0.47 -3.17,-0.7 -4.74,-0.7 -7.1,0 -13.65,4.62 -15.79,11.77l-2.44,8.16M103.8,25.34c-10.16,0 -19.3,6.81 -22.23,16.57l-4.05,13.37 -22.66,13.83c-0.24,0.15 -0.46,0.3 -0.68,0.45 -0.03,0.02 -0.06,0.04 -0.08,0.06 -0.03,0.02 -0.07,0.05 -0.1,0.08l-0.09,0.07c-0.16,0.12 -0.35,0.27 -0.55,0.46 -0.01,0 -0.03,0.03 -0.04,0.04h0c-0.12,0.12 -0.24,0.23 -0.36,0.35l-0.13,0.13s-0.02,0.02 -0.03,0.03c-0.07,0.06 -0.13,0.12 -0.18,0.18l-0.11,0.12c-0.13,0.14 -0.26,0.28 -0.38,0.43 -0.05,0.05 -0.11,0.12 -0.18,0.21 -0.15,0.18 -0.3,0.36 -0.45,0.56l-0.03,0.04s-0.04,0.05 -0.06,0.08c-0.16,0.21 -0.32,0.44 -0.49,0.7 0,0 0,0.01 0,0.02 -0.03,0.05 -0.06,0.09 -0.09,0.14 -0.13,0.2 -0.28,0.44 -0.43,0.71 0,0.01 -0.02,0.03 -0.03,0.04 -0.02,0.03 -0.04,0.06 -0.05,0.09 -0.11,0.2 -0.21,0.4 -0.31,0.6 -0.03,0.05 -0.06,0.11 -0.09,0.16 -0.02,0.03 -0.03,0.07 -0.05,0.1 -0.1,0.23 -0.2,0.47 -0.29,0.7 -0.02,0.04 -0.03,0.08 -0.04,0.13 -0.13,0.34 -0.22,0.61 -0.28,0.87l-6.56,24.7c-0.44,1.68 -0.2,3.38 0.67,4.81 0.49,0.82 1.2,1.54 2.05,2.06l10.32,6.21 0.04,0.02s0.09,0.06 0.14,0.09c0.52,0.31 1.07,0.53 1.63,0.67l7.49,1.92 23.13,5.7 25.22,6.23c0.56,0.14 1.12,0.21 1.69,0.21 3.27,0 6.15,-2.31 6.86,-5.5l1.42,-6.39 4.65,-17.45c0.72,-2.76 0.22,-6.75 -1.15,-9.28l-7.43,-12.95 -0.03,-0.05 6.7,-22.42c0.66,-2.17 0.99,-4.42 0.99,-6.66 0,-10.18 -6.82,-19.32 -16.58,-22.23 -2.17,-0.65 -4.42,-0.98 -6.67,-0.98l-0.02,-0.03ZM88.19,50.21l1.43,-4.79c1.83,-6.09 7.53,-10.34 13.87,-10.34 1.4,0 2.8,0.21 4.16,0.61 6.09,1.82 10.34,7.53 10.34,13.87 0,1.41 -0.21,2.81 -0.61,4.16l-4.03,13.48 -2.62,-4.55c-1.04,-1.82 -2.53,-3.35 -4.31,-4.43 -0.03,-0.02 -0.06,-0.04 -0.09,-0.05l-0.09,-0.05s-0.09,-0.06 -0.14,-0.08l-10.16,-6.12c-0.15,-0.09 -0.33,-0.19 -0.52,-0.29 -0.1,-0.06 -0.2,-0.11 -0.31,-0.15 -0.04,-0.02 -0.09,-0.04 -0.13,-0.06 -0.09,-0.04 -0.18,-0.09 -0.27,-0.13l-0.17,-0.08c-0.06,-0.03 -0.13,-0.06 -0.19,-0.08l-0.06,-0.02c-0.06,-0.03 -0.18,-0.09 -0.33,-0.14 -0.04,-0.01 -0.08,-0.03 -0.12,-0.04 -0.17,-0.06 -0.35,-0.12 -0.52,-0.18l-0.15,-0.05s-0.07,-0.02 -0.11,-0.03c-0.08,-0.02 -0.17,-0.05 -0.24,-0.07 -0.26,-0.08 -0.5,-0.13 -0.74,-0.18h-0.06s-0.08,-0.03 -0.12,-0.04c-0.09,-0.02 -0.18,-0.04 -0.26,-0.05h-0.05c-0.3,-0.05 -0.6,-0.1 -0.9,-0.13 -0.11,-0.01 -0.22,-0.02 -0.32,-0.02 -0.24,-0.02 -0.49,-0.03 -0.73,-0.03h-0.87c-0.2,0.02 -0.39,0.03 -0.59,0.05h0.01Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/ic_location_secure.xml"
line="24"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (3783 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M105.39,59.95s-0.06,-0.04 -0.09,-0.05c-0.15,-0.09 -0.31,-0.18 -0.46,-0.26 0,0 -0.02,0 -0.04,-0.02 -0.01,0 -0.02,0 -0.04,-0.02 -0.17,-0.09 -0.35,-0.18 -0.53,-0.25 -0.03,-0.02 -0.07,-0.04 -0.1,-0.05 -0.02,0 -0.05,-0.02 -0.07,-0.03 -0.1,-0.04 -0.2,-0.09 -0.3,-0.12 -0.05,-0.02 -0.1,-0.04 -0.15,-0.06 -0.18,-0.07 -0.38,-0.14 -0.56,-0.19 -0.01,0 -0.02,0 -0.04,-0.01 -0.1,-0.03 -0.2,-0.06 -0.3,-0.09 -0.02,0 -0.05,0 -0.07,-0.02 -0.26,-0.07 -0.54,-0.13 -0.81,-0.18 -0.17,-0.03 -0.34,-0.06 -0.51,-0.08 -0.12,-0.02 -0.25,-0.03 -0.38,-0.04 -0.06,0 -0.12,0 -0.17,0h-0.12c-0.2,-0.01 -0.41,-0.02 -0.62,-0.02s-0.41,0 -0.62,0c-0.22,0.01 -0.43,0.03 -0.65,0.06h-0.07c-0.08,0 -0.15,0.02 -0.23,0.04 -0.17,0.02 -0.33,0.05 -0.5,0.08 -0.08,0.01 -0.16,0.03 -0.24,0.05 -0.2,0.04 -0.4,0.09 -0.6,0.15 -0.07,0.02 -0.14,0.04 -0.2,0.06 -0.18,0.06 -0.36,0.12 -0.55,0.18 -0.07,0.03 -0.15,0.06 -0.23,0.09 -0.05,0.02 -0.1,0.04 -0.15,0.06 -0.19,0.07 -0.38,0.16 -0.57,0.25 0,0 -0.02,0 -0.02,0.01 -0.08,0.04 -0.15,0.07 -0.23,0.12 -0.09,0.05 -0.19,0.1 -0.28,0.15 -0.1,0.05 -0.19,0.1 -0.28,0.15 -0.08,0.05 -0.16,0.09 -0.24,0.14l-27.99,17.08c-0.09,0.06 -0.17,0.11 -0.26,0.17 -0.09,0.06 -0.18,0.12 -0.26,0.19 -0.04,0.02 -0.07,0.05 -0.1,0.07 0,0 -0.01,0 -0.02,0.01 -0.17,0.13 -0.34,0.27 -0.51,0.42 -0.02,0.02 -0.04,0.04 -0.07,0.06 -0.1,0.1 -0.22,0.2 -0.32,0.31 -0.06,0.05 -0.1,0.1 -0.16,0.15 -0.03,0.04 -0.06,0.07 -0.1,0.1 -0.02,0.02 -0.04,0.04 -0.06,0.06 -0.15,0.15 -0.3,0.31 -0.44,0.48 -0.03,0.04 -0.07,0.08 -0.1,0.12 0,0 0,0.01 0,0.02 -0.14,0.16 -0.26,0.31 -0.39,0.48 -0.02,0.02 -0.04,0.06 -0.06,0.08 0,0 -0.02,0.02 -0.02,0.03 -0.15,0.2 -0.3,0.41 -0.44,0.62 -0.03,0.04 -0.06,0.09 -0.09,0.14 -0.03,0.04 -0.06,0.09 -0.08,0.14 -0.1,0.15 -0.19,0.3 -0.28,0.45 -0.01,0 -0.02,0.03 -0.03,0.04 -0.02,0.04 -0.03,0.07 -0.05,0.1 -0.11,0.2 -0.22,0.39 -0.31,0.58 -0.02,0.04 -0.04,0.07 -0.06,0.11 -0.1,0.21 -0.18,0.42 -0.26,0.63 -0.02,0.04 -0.04,0.09 -0.05,0.13 -0.04,0.09 -0.07,0.18 -0.1,0.28 -0.04,0.12 -0.08,0.24 -0.1,0.35l-6.56,24.73c-0.1,0.38 -0.15,0.74 -0.15,1.11 0,0.11 0,0.22 0.01,0.32 0.08,1.08 0.57,2.06 1.35,2.76 0.12,0.1 0.24,0.2 0.37,0.29 0,0 0.01,0 0.02,0 0.07,0.05 0.14,0.09 0.2,0.13l-0.14,-0.08 -10.32,-6.21c-0.57,-0.34 -1.04,-0.82 -1.37,-1.38 -0.56,-0.94 -0.75,-2.1 -0.44,-3.26l6.56,-24.73c0.05,-0.2 0.12,-0.41 0.2,-0.63 0,-0.04 0.03,-0.09 0.04,-0.13 0.08,-0.21 0.17,-0.42 0.27,-0.63 0.02,-0.04 0.04,-0.07 0.06,-0.11 0.09,-0.19 0.2,-0.39 0.31,-0.58 0.02,-0.03 0.03,-0.06 0.05,-0.09 0.12,-0.22 0.25,-0.42 0.39,-0.63 0.03,-0.04 0.06,-0.09 0.09,-0.14 0.14,-0.21 0.28,-0.42 0.44,-0.62 0,-0.01 0.02,-0.02 0.02,-0.03 0.15,-0.2 0.3,-0.39 0.46,-0.57 0.03,-0.04 0.06,-0.08 0.1,-0.12 0.16,-0.18 0.33,-0.36 0.49,-0.54 0.03,-0.03 0.07,-0.06 0.1,-0.09 0.16,-0.16 0.32,-0.32 0.48,-0.46l0.05,-0.05s0.01,0 0.02,-0.01c0.17,-0.15 0.34,-0.29 0.51,-0.42 0.04,-0.03 0.08,-0.06 0.12,-0.09 0.18,-0.13 0.36,-0.25 0.53,-0.36l23.32,-14.23 4.68,-2.85s0.07,-0.04 0.11,-0.07c0.04,-0.02 0.09,-0.04 0.13,-0.07 0.18,-0.11 0.38,-0.21 0.57,-0.31 0.08,-0.04 0.15,-0.07 0.23,-0.11 0.12,-0.06 0.23,-0.1 0.35,-0.16 0.09,-0.04 0.17,-0.07 0.25,-0.1 0.04,0 0.08,-0.04 0.12,-0.05 0,0 0.02,0 0.03,0 0.26,-0.1 0.51,-0.18 0.77,-0.26 0.07,-0.02 0.14,-0.04 0.2,-0.06 0.2,-0.06 0.41,-0.1 0.61,-0.15 0.04,0 0.09,-0.02 0.13,-0.04l0.11,-0.02c0.17,-0.03 0.33,-0.06 0.49,-0.08 0.08,-0.01 0.15,-0.02 0.23,-0.03 0.24,-0.03 0.48,-0.06 0.72,-0.07 0.17,0 0.34,0 0.5,0h0.12c0.25,0 0.49,0 0.74,0.03h0.17c0.3,0.03 0.59,0.07 0.89,0.12 0.08,0 0.16,0.04 0.24,0.05 0.22,0.04 0.43,0.09 0.65,0.15 0.1,0.02 0.2,0.06 0.3,0.08 0.2,0.06 0.4,0.13 0.6,0.2 0.06,0.02 0.12,0.04 0.18,0.06 0.04,0.01 0.08,0.03 0.12,0.05 0.07,0.03 0.15,0.06 0.23,0.09 0.15,0.07 0.29,0.14 0.44,0.2 0.07,0.04 0.15,0.07 0.23,0.11 0.04,0.02 0.09,0.04 0.13,0.07 0.15,0.08 0.31,0.17 0.46,0.26l10.23,6.16 0.26,0.15h-0.06Z">"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/ic_location_secure.xml"
line="27"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (4006 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M125.05,91.59l-7.87,-13.71 -3.24,-5.65 -4.93,-8.58c-0.91,-1.58 -2.16,-2.83 -3.62,-3.71 -0.03,-0.02 -0.06,-0.03 -0.09,-0.04 -0.06,-0.04 -0.11,-0.07 -0.17,-0.11 -0.1,-0.04 -0.2,-0.1 -0.3,-0.15 -0.01,0 -0.03,0 -0.03,-0.02 -0.01,0 -0.03,0 -0.04,-0.02 -0.06,-0.03 -0.13,-0.06 -0.19,-0.09 -0.11,-0.06 -0.22,-0.11 -0.34,-0.15 -0.03,-0.02 -0.07,-0.04 -0.1,-0.05 -0.02,-0.01 -0.04,-0.02 -0.07,-0.03 -0.05,-0.02 -0.1,-0.04 -0.15,-0.06 -0.05,-0.03 -0.1,-0.04 -0.15,-0.06 -0.05,-0.02 -0.1,-0.04 -0.15,-0.06 -0.19,-0.06 -0.38,-0.13 -0.56,-0.19 -0.01,0 -0.03,0 -0.04,0 -0.1,-0.03 -0.2,-0.05 -0.29,-0.08 -0.03,0 -0.05,0 -0.08,-0.02 -0.19,-0.05 -0.38,-0.09 -0.57,-0.13 -0.08,-0.02 -0.16,-0.04 -0.24,-0.05 -0.17,-0.03 -0.34,-0.06 -0.51,-0.08 -0.22,-0.03 -0.45,-0.05 -0.67,-0.06 -0.2,-0.02 -0.41,-0.03 -0.61,-0.03s-0.41,0 -0.63,0c-0.22,0.01 -0.43,0.03 -0.64,0.06 -0.1,0 -0.2,0.02 -0.3,0.04 -0.17,0.03 -0.33,0.05 -0.5,0.08 -0.08,0.01 -0.16,0.03 -0.24,0.05 -0.2,0.04 -0.4,0.09 -0.59,0.15 -0.07,0.02 -0.14,0.04 -0.2,0.06 -0.19,0.05 -0.36,0.11 -0.55,0.17 -0.08,0.03 -0.15,0.06 -0.23,0.09 -0.04,0.02 -0.1,0.04 -0.15,0.06 -0.19,0.07 -0.38,0.16 -0.57,0.24 0,0 -0.02,0 -0.03,0.01 -0.08,0.04 -0.15,0.08 -0.24,0.11 -0.09,0.05 -0.19,0.1 -0.28,0.15 -0.1,0.04 -0.19,0.1 -0.28,0.15 -0.08,0.04 -0.17,0.09 -0.24,0.14l-28,17.08c-0.08,0.06 -0.17,0.11 -0.26,0.17 -0.12,0.08 -0.25,0.17 -0.37,0.27 0,0 0,0 -0.02,0.01 -0.17,0.13 -0.34,0.27 -0.51,0.42 -0.03,0.02 -0.04,0.04 -0.06,0.06 -0.11,0.1 -0.22,0.2 -0.32,0.31 -0.11,0.1 -0.21,0.21 -0.32,0.31 -0.15,0.15 -0.29,0.31 -0.43,0.48 -0.03,0.04 -0.07,0.08 -0.1,0.12 0,0 0,0.01 0,0.02 -0.14,0.16 -0.27,0.31 -0.39,0.48 -0.02,0.03 -0.04,0.05 -0.06,0.08 0,0 -0.02,0.02 -0.03,0.03 -0.15,0.2 -0.29,0.41 -0.43,0.63 -0.06,0.08 -0.11,0.17 -0.17,0.27 -0.1,0.15 -0.19,0.3 -0.27,0.45 -0.03,0.04 -0.06,0.1 -0.08,0.14 -0.11,0.2 -0.22,0.39 -0.31,0.59 -0.02,0.04 -0.04,0.08 -0.06,0.11 -0.1,0.21 -0.19,0.42 -0.26,0.63 -0.02,0.04 -0.04,0.08 -0.05,0.13 -0.04,0.09 -0.07,0.19 -0.1,0.27 -0.04,0.12 -0.08,0.24 -0.11,0.35l-6.56,24.73c-0.1,0.38 -0.15,0.74 -0.15,1.11 0,0.11 0,0.22 0.01,0.32 0.08,1.08 0.57,2.06 1.35,2.76 0.11,0.11 0.24,0.2 0.37,0.29h0.01s0.04,0.03 0.06,0.05l0.14,0.08h0c0.33,0.21 0.71,0.37 1.11,0.47l7.49,1.92 23.12,5.7 25.23,6.23c2.74,0.68 5.5,-1.03 6.12,-3.79l1.43,-6.43 4.65,-17.49c0.6,-2.27 0.15,-5.74 -0.98,-7.81v0.02ZM100.08,94.22c0,0.27 -0.02,0.54 -0.05,0.81v0.07c-0.04,0.31 -0.1,0.61 -0.18,0.92 -0.02,0.08 -0.04,0.15 -0.07,0.23 -0.03,0.09 -0.06,0.19 -0.08,0.28 -0.06,0.15 -0.11,0.3 -0.17,0.45 0,0 -0.01,0.03 -0.02,0.04 -0.06,0.15 -0.13,0.3 -0.21,0.45 0,0 0,0.02 -0.01,0.03 -0.08,0.16 -0.17,0.32 -0.26,0.47 -0.16,0.25 -0.33,0.5 -0.51,0.73 -0.04,0.04 -0.07,0.09 -0.11,0.13 -0.08,0.1 -0.17,0.19 -0.25,0.28 0,0.01 -0.02,0.03 -0.03,0.04 -0.11,0.12 -0.23,0.24 -0.35,0.35 -0.02,0.02 -0.03,0.03 -0.05,0.04 -0.01,0.01 -0.03,0.02 -0.04,0.03 -0.04,0.04 -0.08,0.08 -0.12,0.11 -0.06,0.04 -0.11,0.09 -0.17,0.13 -0.1,0.08 -0.21,0.17 -0.32,0.24 -0.06,0.05 -0.11,0.09 -0.18,0.13 -0.13,0.09 -0.26,0.18 -0.4,0.26 -0.24,0.15 -0.49,0.28 -0.75,0.39 -0.04,0.03 -0.09,0.04 -0.13,0.06 -0.09,0.04 -0.18,0.08 -0.27,0.11 -0.06,0.03 -0.12,0.05 -0.19,0.06 -0.27,0.1 -0.56,0.19 -0.86,0.24l-2.48,9.36 -5.8,-1.42 0.47,-1.77 2.01,-7.59c-1.05,-0.88 -1.81,-2.06 -2.2,-3.39 -0.22,-0.76 -0.31,-1.55 -0.27,-2.38 0.03,-0.48 0.1,-0.96 0.23,-1.44 0.51,-1.93 1.75,-3.49 3.33,-4.44 0.99,-0.59 2.11,-0.95 3.29,-1.01 0.66,-0.03 1.33,0.03 2.01,0.19 0.71,0.18 1.39,0.46 1.97,0.84 0.01,0 0.03,0.01 0.04,0.02 0.07,0.04 0.13,0.08 0.2,0.13 0.01,0 0.03,0.02 0.04,0.03 0.1,0.07 0.19,0.14 0.28,0.22 0.04,0.03 0.07,0.04 0.1,0.08 0.11,0.1 0.21,0.18 0.31,0.29 0.04,0.02 0.08,0.05 0.11,0.09 0.12,0.11 0.23,0.24 0.34,0.36 0.09,0.1 0.17,0.19 0.24,0.29 0.15,0.2 0.31,0.39 0.44,0.61 0.15,0.23 0.29,0.48 0.4,0.73 0.04,0.09 0.08,0.17 0.12,0.26 0.03,0.08 0.06,0.16 0.1,0.24 0.03,0.08 0.07,0.17 0.09,0.26 0.03,0.07 0.05,0.15 0.08,0.23 0.06,0.16 0.1,0.33 0.13,0.49 0.04,0.17 0.08,0.34 0.1,0.51 0.03,0.19 0.04,0.38 0.06,0.57 0,0.12 0.01,0.24 0.01,0.37v0.21l0.03,-0.02Z">"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable-night/ic_location_secure.xml"
line="80"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (4006 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M125.05,91.59l-7.87,-13.71 -3.24,-5.65 -4.93,-8.58c-0.91,-1.58 -2.16,-2.83 -3.62,-3.71 -0.03,-0.02 -0.06,-0.03 -0.09,-0.04 -0.06,-0.04 -0.11,-0.07 -0.17,-0.11 -0.1,-0.04 -0.2,-0.1 -0.3,-0.15 -0.01,0 -0.03,0 -0.03,-0.02 -0.01,0 -0.03,0 -0.04,-0.02 -0.06,-0.03 -0.13,-0.06 -0.19,-0.09 -0.11,-0.06 -0.22,-0.11 -0.34,-0.15 -0.03,-0.02 -0.07,-0.04 -0.1,-0.05 -0.02,-0.01 -0.04,-0.02 -0.07,-0.03 -0.05,-0.02 -0.1,-0.04 -0.15,-0.06 -0.05,-0.03 -0.1,-0.04 -0.15,-0.06 -0.05,-0.02 -0.1,-0.04 -0.15,-0.06 -0.19,-0.06 -0.38,-0.13 -0.56,-0.19 -0.01,0 -0.03,0 -0.04,0 -0.1,-0.03 -0.2,-0.05 -0.29,-0.08 -0.03,0 -0.05,0 -0.08,-0.02 -0.19,-0.05 -0.38,-0.09 -0.57,-0.13 -0.08,-0.02 -0.16,-0.04 -0.24,-0.05 -0.17,-0.03 -0.34,-0.06 -0.51,-0.08 -0.22,-0.03 -0.45,-0.05 -0.67,-0.06 -0.2,-0.02 -0.41,-0.03 -0.61,-0.03s-0.41,0 -0.63,0c-0.22,0.01 -0.43,0.03 -0.64,0.06 -0.1,0 -0.2,0.02 -0.3,0.04 -0.17,0.03 -0.33,0.05 -0.5,0.08 -0.08,0.01 -0.16,0.03 -0.24,0.05 -0.2,0.04 -0.4,0.09 -0.59,0.15 -0.07,0.02 -0.14,0.04 -0.2,0.06 -0.19,0.05 -0.36,0.11 -0.55,0.17 -0.08,0.03 -0.15,0.06 -0.23,0.09 -0.04,0.02 -0.1,0.04 -0.15,0.06 -0.19,0.07 -0.38,0.16 -0.57,0.24 0,0 -0.02,0 -0.03,0.01 -0.08,0.04 -0.15,0.08 -0.24,0.11 -0.09,0.05 -0.19,0.1 -0.28,0.15 -0.1,0.04 -0.19,0.1 -0.28,0.15 -0.08,0.04 -0.17,0.09 -0.24,0.14l-28,17.08c-0.08,0.06 -0.17,0.11 -0.26,0.17 -0.12,0.08 -0.25,0.17 -0.37,0.27 0,0 0,0 -0.02,0.01 -0.17,0.13 -0.34,0.27 -0.51,0.42 -0.03,0.02 -0.04,0.04 -0.06,0.06 -0.11,0.1 -0.22,0.2 -0.32,0.31 -0.11,0.1 -0.21,0.21 -0.32,0.31 -0.15,0.15 -0.29,0.31 -0.43,0.48 -0.03,0.04 -0.07,0.08 -0.1,0.12 0,0 0,0.01 0,0.02 -0.14,0.16 -0.27,0.31 -0.39,0.48 -0.02,0.03 -0.04,0.05 -0.06,0.08 0,0 -0.02,0.02 -0.03,0.03 -0.15,0.2 -0.29,0.41 -0.43,0.63 -0.06,0.08 -0.11,0.17 -0.17,0.27 -0.1,0.15 -0.19,0.3 -0.27,0.45 -0.03,0.04 -0.06,0.1 -0.08,0.14 -0.11,0.2 -0.22,0.39 -0.31,0.59 -0.02,0.04 -0.04,0.08 -0.06,0.11 -0.1,0.21 -0.19,0.42 -0.26,0.63 -0.02,0.04 -0.04,0.08 -0.05,0.13 -0.04,0.09 -0.07,0.19 -0.1,0.27 -0.04,0.12 -0.08,0.24 -0.11,0.35l-6.56,24.73c-0.1,0.38 -0.15,0.74 -0.15,1.11 0,0.11 0,0.22 0.01,0.32 0.08,1.08 0.57,2.06 1.35,2.76 0.11,0.11 0.24,0.2 0.37,0.29h0.01s0.04,0.03 0.06,0.05l0.14,0.08h0c0.33,0.21 0.71,0.37 1.11,0.47l7.49,1.92 23.12,5.7 25.23,6.23c2.74,0.68 5.5,-1.03 6.12,-3.79l1.43,-6.43 4.65,-17.49c0.6,-2.27 0.15,-5.74 -0.98,-7.81v0.02ZM100.08,94.22c0,0.27 -0.02,0.54 -0.05,0.81v0.07c-0.04,0.31 -0.1,0.61 -0.18,0.92 -0.02,0.08 -0.04,0.15 -0.07,0.23 -0.03,0.09 -0.06,0.19 -0.08,0.28 -0.06,0.15 -0.11,0.3 -0.17,0.45 0,0 -0.01,0.03 -0.02,0.04 -0.06,0.15 -0.13,0.3 -0.21,0.45 0,0 0,0.02 -0.01,0.03 -0.08,0.16 -0.17,0.32 -0.26,0.47 -0.16,0.25 -0.33,0.5 -0.51,0.73 -0.04,0.04 -0.07,0.09 -0.11,0.13 -0.08,0.1 -0.17,0.19 -0.25,0.28 0,0.01 -0.02,0.03 -0.03,0.04 -0.11,0.12 -0.23,0.24 -0.35,0.35 -0.02,0.02 -0.03,0.03 -0.05,0.04 -0.01,0.01 -0.03,0.02 -0.04,0.03 -0.04,0.04 -0.08,0.08 -0.12,0.11 -0.06,0.04 -0.11,0.09 -0.17,0.13 -0.1,0.08 -0.21,0.17 -0.32,0.24 -0.06,0.05 -0.11,0.09 -0.18,0.13 -0.13,0.09 -0.26,0.18 -0.4,0.26 -0.24,0.15 -0.49,0.28 -0.75,0.39 -0.04,0.03 -0.09,0.04 -0.13,0.06 -0.09,0.04 -0.18,0.08 -0.27,0.11 -0.06,0.03 -0.12,0.05 -0.19,0.06 -0.27,0.1 -0.56,0.19 -0.86,0.24l-2.48,9.36 -5.8,-1.42 0.47,-1.77 2.01,-7.59c-1.05,-0.88 -1.81,-2.06 -2.2,-3.39 -0.22,-0.76 -0.31,-1.55 -0.27,-2.38 0.03,-0.48 0.1,-0.96 0.23,-1.44 0.51,-1.93 1.75,-3.49 3.33,-4.44 0.99,-0.59 2.11,-0.95 3.29,-1.01 0.66,-0.03 1.33,0.03 2.01,0.19 0.71,0.18 1.39,0.46 1.97,0.84 0.01,0 0.03,0.01 0.04,0.02 0.07,0.04 0.13,0.08 0.2,0.13 0.01,0 0.03,0.02 0.04,0.03 0.1,0.07 0.19,0.14 0.28,0.22 0.04,0.03 0.07,0.04 0.1,0.08 0.11,0.1 0.21,0.18 0.31,0.29 0.04,0.02 0.08,0.05 0.11,0.09 0.12,0.11 0.23,0.24 0.34,0.36 0.09,0.1 0.17,0.19 0.24,0.29 0.15,0.2 0.31,0.39 0.44,0.61 0.15,0.23 0.29,0.48 0.4,0.73 0.04,0.09 0.08,0.17 0.12,0.26 0.03,0.08 0.06,0.16 0.1,0.24 0.03,0.08 0.07,0.17 0.09,0.26 0.03,0.07 0.05,0.15 0.08,0.23 0.06,0.16 0.1,0.33 0.13,0.49 0.04,0.17 0.08,0.34 0.1,0.51 0.03,0.19 0.04,0.38 0.06,0.57 0,0.12 0.01,0.24 0.01,0.37v0.21l0.03,-0.02Z">"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/ic_location_secure.xml"
line="83"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (3857 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M126.02,91.07l-7.42,-12.93 -0.22,-0.39 6.81,-22.78c0.63,-2.09 0.95,-4.25 0.95,-6.41 0,-9.78 -6.55,-18.57 -15.93,-21.37 -2.09,-0.63 -4.25,-0.94 -6.41,-0.95 -9.77,0 -18.56,6.55 -21.37,15.92 0,0 -4.15,13.7 -4.15,13.7 -0.23,0.14 -0.46,0.28 -0.68,0.42 -0.62,0.38 -1.23,0.75 -1.85,1.13 -0.9,0.55 -1.81,1.1 -2.71,1.65l-3.27,1.99c-1.17,0.72 -2.35,1.43 -3.52,2.15 -1.16,0.71 -2.32,1.41 -3.48,2.12 -1.04,0.64 -2.08,1.27 -3.13,1.91 -0.82,0.5 -1.65,1.01 -2.47,1.51 -0.51,0.31 -1.01,0.62 -1.52,0.93 -1.33,0.81 -2.49,1.89 -3.44,3.13 -0.69,0.91 -1.27,1.91 -1.71,2.97 -0.33,0.79 -0.53,1.6 -0.75,2.42 -0.24,0.92 -0.49,1.84 -0.73,2.76 -0.33,1.25 -0.67,2.51 -1,3.76 -0.38,1.43 -0.76,2.85 -1.14,4.28 -0.38,1.43 -0.76,2.87 -1.14,4.3 -0.34,1.28 -0.68,2.56 -1.02,3.84 -0.26,0.96 -0.51,1.93 -0.77,2.89 -0.13,0.49 -0.26,0.97 -0.39,1.46 0,0.03 -0.02,0.06 -0.02,0.08 -0.37,1.43 -0.17,2.89 0.57,4.11 0.42,0.71 1.02,1.32 1.74,1.75l10.32,6.21 0.07,0.04s0.07,0.05 0.1,0.07c0.45,0.26 0.92,0.46 1.39,0.57l7.49,1.92 23.12,5.7 25.22,6.23c0.48,0.12 0.98,0.18 1.48,0.18 2.85,0 5.36,-2.02 5.98,-4.8l1.43,-6.43 4.65,-17.44c0.66,-2.52 0.18,-6.3 -1.08,-8.62ZM52.72,110.06c-0.43,-0.34 -0.94,-0.62 -1.44,-0.89 -0.24,-0.13 -0.48,-0.26 -0.7,-0.39l-2.25,-1.35c-0.2,-0.12 -0.4,-0.24 -0.61,-0.35 -0.95,-0.54 -1.94,-1.11 -2.51,-2.04 -0.64,-1.05 -0.56,-2.3 -0.39,-3.16 0.16,-0.8 0.4,-1.6 0.62,-2.39 0.12,-0.42 0.24,-0.84 0.35,-1.25l4.42,-16.65c0.1,-0.38 0.2,-0.75 0.29,-1.13 0.66,-2.6 1.29,-5.05 2.99,-7.13 1.4,-1.7 3.33,-2.85 5.2,-3.96 0.38,-0.22 0.75,-0.44 1.12,-0.67l19,-11.59 0.03,-0.02c-1.21,4.01 -1.87,6.18 -2.23,7.37l-0.42,1.39s0,0.02 0,0.03l-0.07,0.22s0,0.04 0,0.06c0,0.08 0,0.16 0.03,0.24 0.28,0.75 1.91,0.6 3.37,0.08 1.21,-0.44 2.51,-1.25 2.55,-2.01l3.36,-11.25c1.81,-0.79 3.94,-1.02 6.01,-0.65 1.78,0.32 3.21,1.12 4.89,2.14l6.6,3.98c-0.06,-0.02 -0.11,-0.03 -0.17,-0.05 -0.97,-0.26 -1.97,-0.38 -2.97,-0.37 -2.71,0.05 -4.86,1.23 -7.19,2.65l-24.25,14.8c-0.2,0.12 -0.4,0.24 -0.6,0.36 -0.95,0.57 -1.94,1.16 -2.8,1.94 -1.01,0.92 -1.87,1.99 -2.54,3.19 -0.74,1.33 -1.12,2.79 -1.49,4.19l-4.29,16.17c-0.08,0.31 -0.15,0.61 -0.23,0.92 -0.23,0.94 -0.46,1.91 -0.76,2.84l-0.12,0.39c-0.36,1.14 -0.74,2.32 -0.74,3.56 0,0.8 0.16,1.51 0.46,2.13 0.05,0.1 0.11,0.2 0.17,0.29l-2.71,-1.63ZM105.53,58.71c-1.65,-1.02 -3.33,-1.99 -4.99,-2.99l-2.46,-1.48 -1.88,-1.13c-1.01,-0.61 -2.02,-1.16 -3.15,-1.51 -1.45,-0.46 -2.98,-0.64 -4.5,-0.52 -0.4,0.03 -0.8,0.09 -1.2,0.16 -0.14,0.02 -0.3,0.09 -0.44,0.11l1.85,-6.17c1.94,-6.47 8,-10.98 14.74,-10.98 1.49,0 2.98,0.22 4.42,0.65 6.46,1.94 10.98,8 10.98,14.73 0,1.5 -0.22,2.99 -0.65,4.42l-4.63,15.48s-3.66,-6.37 -3.66,-6.37c-1.07,-1.87 -2.62,-3.26 -4.44,-4.38ZM119.49,54.36c0.47,-1.58 0.71,-3.2 0.71,-4.8 0,-7.32 -4.89,-13.88 -11.9,-15.97 -4.27,-1.28 -8.78,-0.82 -12.7,1.3 -3.92,2.12 -6.79,5.63 -8.07,9.91l-5.85,19.57s0,0.04 0,0.06c0,0.4 -0.87,1.15 -2.29,1.66 -1.59,0.57 -2.73,0.48 -2.86,0.15 0,-0.01 0,-0.04 0,-0.07l0.06,-0.21s0,0 0,0c0.01,-0.05 0.21,-0.69 0.48,-1.6l6.61,-21.81c3.32,-11.1 15.07,-17.43 26.16,-14.11 8.81,2.64 14.97,10.88 15,20.06 0,0.02 0,0.04 0,0.06 0,2.03 -0.3,4.06 -0.89,6.03l-6.67,22.31 -2.96,-5.17 5.19,-17.37ZM126.04,99.4l-4.66,17.49 -1.43,6.43c-0.52,2.35 -2.6,3.93 -4.91,3.93 -0.4,0 -0.81,-0.05 -1.21,-0.15l-25.22,-6.23 -23.11,-5.7 -7.5,-1.92c-0.36,-0.09 -0.69,-0.24 -1,-0.43 0.04,-0.09 0,-0.2 -0.08,-0.25 -0.58,-0.33 -1.01,-0.79 -1.29,-1.35 -0.28,-0.56 -0.42,-1.22 -0.42,-1.95 0,-1.17 0.36,-2.33 0.72,-3.44l0.12,-0.39c0.29,-0.95 0.53,-1.92 0.76,-2.87 0.07,-0.31 0.15,-0.61 0.23,-0.92l4.29,-16.17c0.38,-1.45 0.73,-2.81 1.45,-4.1 0.65,-1.16 1.47,-2.2 2.46,-3.09 0.83,-0.76 1.76,-1.31 2.74,-1.9 0.2,-0.12 0.4,-0.24 0.6,-0.36l24.25,-14.8c1.3,-0.79 2.62,-1.57 4.07,-2.06s3.07,-0.64 4.62,-0.41c0.34,0.05 0.67,0.15 1.01,0.21 2.8,0.5 5.66,3.25 6.43,4.59 0.02,0.03 0.03,0.05 0.05,0.08l4.8,8.35s3.45,6.07 3.48,6.06l0.37,0.64 7.41,12.91c1.13,2.07 1.57,5.53 0.98,7.81Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable-night/ic_location_secure.xml"
line="108"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (3857 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M126.02,91.07l-7.42,-12.93 -0.22,-0.39 6.81,-22.78c0.63,-2.09 0.95,-4.25 0.95,-6.41 0,-9.78 -6.55,-18.57 -15.93,-21.37 -2.09,-0.63 -4.25,-0.94 -6.41,-0.95 -9.77,0 -18.56,6.55 -21.37,15.92 0,0 -4.15,13.7 -4.15,13.7 -0.23,0.14 -0.46,0.28 -0.68,0.42 -0.62,0.38 -1.23,0.75 -1.85,1.13 -0.9,0.55 -1.81,1.1 -2.71,1.65l-3.27,1.99c-1.17,0.72 -2.35,1.43 -3.52,2.15 -1.16,0.71 -2.32,1.41 -3.48,2.12 -1.04,0.64 -2.08,1.27 -3.13,1.91 -0.82,0.5 -1.65,1.01 -2.47,1.51 -0.51,0.31 -1.01,0.62 -1.52,0.93 -1.33,0.81 -2.49,1.89 -3.44,3.13 -0.69,0.91 -1.27,1.91 -1.71,2.97 -0.33,0.79 -0.53,1.6 -0.75,2.42 -0.24,0.92 -0.49,1.84 -0.73,2.76 -0.33,1.25 -0.67,2.51 -1,3.76 -0.38,1.43 -0.76,2.85 -1.14,4.28 -0.38,1.43 -0.76,2.87 -1.14,4.3 -0.34,1.28 -0.68,2.56 -1.02,3.84 -0.26,0.96 -0.51,1.93 -0.77,2.89 -0.13,0.49 -0.26,0.97 -0.39,1.46 0,0.03 -0.02,0.06 -0.02,0.08 -0.37,1.43 -0.17,2.89 0.57,4.11 0.42,0.71 1.02,1.32 1.74,1.75l10.32,6.21 0.07,0.04s0.07,0.05 0.1,0.07c0.45,0.26 0.92,0.46 1.39,0.57l7.49,1.92 23.12,5.7 25.22,6.23c0.48,0.12 0.98,0.18 1.48,0.18 2.85,0 5.36,-2.02 5.98,-4.8l1.43,-6.43 4.65,-17.44c0.66,-2.52 0.18,-6.3 -1.08,-8.62ZM52.72,110.06c-0.43,-0.34 -0.94,-0.62 -1.44,-0.89 -0.24,-0.13 -0.48,-0.26 -0.7,-0.39l-2.25,-1.35c-0.2,-0.12 -0.4,-0.24 -0.61,-0.35 -0.95,-0.54 -1.94,-1.11 -2.51,-2.04 -0.64,-1.05 -0.56,-2.3 -0.39,-3.16 0.16,-0.8 0.4,-1.6 0.62,-2.39 0.12,-0.42 0.24,-0.84 0.35,-1.25l4.42,-16.65c0.1,-0.38 0.2,-0.75 0.29,-1.13 0.66,-2.6 1.29,-5.05 2.99,-7.13 1.4,-1.7 3.33,-2.85 5.2,-3.96 0.38,-0.22 0.75,-0.44 1.12,-0.67l19,-11.59 0.03,-0.02c-1.21,4.01 -1.87,6.18 -2.23,7.37l-0.42,1.39s0,0.02 0,0.03l-0.07,0.22s0,0.04 0,0.06c0,0.08 0,0.16 0.03,0.24 0.28,0.75 1.91,0.6 3.37,0.08 1.21,-0.44 2.51,-1.25 2.55,-2.01l3.36,-11.25c1.81,-0.79 3.94,-1.02 6.01,-0.65 1.78,0.32 3.21,1.12 4.89,2.14l6.6,3.98c-0.06,-0.02 -0.11,-0.03 -0.17,-0.05 -0.97,-0.26 -1.97,-0.38 -2.97,-0.37 -2.71,0.05 -4.86,1.23 -7.19,2.65l-24.25,14.8c-0.2,0.12 -0.4,0.24 -0.6,0.36 -0.95,0.57 -1.94,1.16 -2.8,1.94 -1.01,0.92 -1.87,1.99 -2.54,3.19 -0.74,1.33 -1.12,2.79 -1.49,4.19l-4.29,16.17c-0.08,0.31 -0.15,0.61 -0.23,0.92 -0.23,0.94 -0.46,1.91 -0.76,2.84l-0.12,0.39c-0.36,1.14 -0.74,2.32 -0.74,3.56 0,0.8 0.16,1.51 0.46,2.13 0.05,0.1 0.11,0.2 0.17,0.29l-2.71,-1.63ZM105.53,58.71c-1.65,-1.02 -3.33,-1.99 -4.99,-2.99l-2.46,-1.48 -1.88,-1.13c-1.01,-0.61 -2.02,-1.16 -3.15,-1.51 -1.45,-0.46 -2.98,-0.64 -4.5,-0.52 -0.4,0.03 -0.8,0.09 -1.2,0.16 -0.14,0.02 -0.3,0.09 -0.44,0.11l1.85,-6.17c1.94,-6.47 8,-10.98 14.74,-10.98 1.49,0 2.98,0.22 4.42,0.65 6.46,1.94 10.98,8 10.98,14.73 0,1.5 -0.22,2.99 -0.65,4.42l-4.63,15.48s-3.66,-6.37 -3.66,-6.37c-1.07,-1.87 -2.62,-3.26 -4.44,-4.38ZM119.49,54.36c0.47,-1.58 0.71,-3.2 0.71,-4.8 0,-7.32 -4.89,-13.88 -11.9,-15.97 -4.27,-1.28 -8.78,-0.82 -12.7,1.3 -3.92,2.12 -6.79,5.63 -8.07,9.91l-5.85,19.57s0,0.04 0,0.06c0,0.4 -0.87,1.15 -2.29,1.66 -1.59,0.57 -2.73,0.48 -2.86,0.15 0,-0.01 0,-0.04 0,-0.07l0.06,-0.21s0,0 0,0c0.01,-0.05 0.21,-0.69 0.48,-1.6l6.61,-21.81c3.32,-11.1 15.07,-17.43 26.16,-14.11 8.81,2.64 14.97,10.88 15,20.06 0,0.02 0,0.04 0,0.06 0,2.03 -0.3,4.06 -0.89,6.03l-6.67,22.31 -2.96,-5.17 5.19,-17.37ZM126.04,99.4l-4.66,17.49 -1.43,6.43c-0.52,2.35 -2.6,3.93 -4.91,3.93 -0.4,0 -0.81,-0.05 -1.21,-0.15l-25.22,-6.23 -23.11,-5.7 -7.5,-1.92c-0.36,-0.09 -0.69,-0.24 -1,-0.43 0.04,-0.09 0,-0.2 -0.08,-0.25 -0.58,-0.33 -1.01,-0.79 -1.29,-1.35 -0.28,-0.56 -0.42,-1.22 -0.42,-1.95 0,-1.17 0.36,-2.33 0.72,-3.44l0.12,-0.39c0.29,-0.95 0.53,-1.92 0.76,-2.87 0.07,-0.31 0.15,-0.61 0.23,-0.92l4.29,-16.17c0.38,-1.45 0.73,-2.81 1.45,-4.1 0.65,-1.16 1.47,-2.2 2.46,-3.09 0.83,-0.76 1.76,-1.31 2.74,-1.9 0.2,-0.12 0.4,-0.24 0.6,-0.36l24.25,-14.8c1.3,-0.79 2.62,-1.57 4.07,-2.06s3.07,-0.64 4.62,-0.41c0.34,0.05 0.67,0.15 1.01,0.21 2.8,0.5 5.66,3.25 6.43,4.59 0.02,0.03 0.03,0.05 0.05,0.08l4.8,8.35s3.45,6.07 3.48,6.06l0.37,0.64 7.41,12.91c1.13,2.07 1.57,5.53 0.98,7.81Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/ic_location_secure.xml"
line="111"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (5726 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M100.28,93.65l-0.09,-0.78c0,-0.05 -0.02,-0.1 -0.03,-0.15 -0.01,-0.06 -0.03,-0.12 -0.04,-0.2l-0.03,-0.12s-0.03,-0.09 -0.04,-0.14c-0.02,-0.08 -0.04,-0.16 -0.06,-0.23 -0.01,-0.05 -0.03,-0.11 -0.05,-0.16l-0.02,-0.07c-0.02,-0.07 -0.04,-0.14 -0.07,-0.21l-0.02,-0.06s-0.03,-0.08 -0.05,-0.12c-0.02,-0.04 -0.03,-0.08 -0.05,-0.13l-0.26,-0.52c-0.09,-0.17 -0.19,-0.34 -0.29,-0.5 -0.13,-0.21 -0.28,-0.4 -0.43,-0.59 -0.02,-0.03 -0.04,-0.06 -0.06,-0.08 -0.02,-0.03 -0.04,-0.06 -0.06,-0.08 -0.05,-0.06 -0.09,-0.1 -0.15,-0.16 -0.12,-0.14 -0.23,-0.26 -0.37,-0.39 -0.02,-0.03 -0.06,-0.06 -0.1,-0.09 -0.1,-0.1 -0.2,-0.19 -0.29,-0.26 -0.03,-0.03 -0.07,-0.07 -0.13,-0.1 -0.09,-0.08 -0.18,-0.15 -0.28,-0.22 -0.01,0 -0.03,-0.02 -0.04,-0.02 0,0 -0.01,0 -0.02,0h0s-0.05,-0.04 -0.09,-0.06c-0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.02,-0.02 -0.04,-0.04 -0.08,-0.05 -0.02,0 -0.04,-0.02 -0.06,-0.03 0,0 0,0 -0.01,0 -0.57,-0.37 -1.27,-0.67 -2.03,-0.86 -0.68,-0.16 -1.38,-0.23 -2.07,-0.2 -1.16,0.06 -2.32,0.41 -3.34,1.02 0,0 -0.01,0.02 -0.02,0.03 0,0 0,0 0,0 -1.7,1.02 -2.91,2.64 -3.42,4.56 -0.12,0.45 -0.2,0.96 -0.24,1.49 0,0 0,0 0,0 0,0.01 -0.01,0.02 -0.01,0.03 -0.04,0.79 0.05,1.59 0.27,2.37 0,0.01 0,0.01 0.01,0.02 0,0.01 0,0.02 0,0.03 0.39,1.31 1.13,2.48 2.15,3.37l-1.98,7.47 -0.47,1.77c-0.01,0.05 0,0.11 0.02,0.15s0.07,0.08 0.12,0.09l5.7,1.4 0.02,0.02s0.07,0.03 0.11,0.03c0.02,0 0.03,0 0.05,0 0.05,-0.01 0.1,-0.05 0.13,-0.1 0,-0.01 0.02,-0.05 0.03,-0.06l2.44,-9.2c0.31,-0.08 0.57,-0.15 0.81,-0.24l0.06,-0.02s0.05,-0.02 0.07,-0.03c0.01,0 0.02,0 0.04,0 0.1,-0.03 0.19,-0.07 0.3,-0.12l0.14,-0.06c0.05,-0.03 0.11,-0.05 0.16,-0.08 0.06,-0.03 0.12,-0.06 0.19,-0.09l0.15,-0.09s0.08,-0.04 0.11,-0.06c0.05,-0.02 0.09,-0.05 0.13,-0.08 0.12,-0.08 0.25,-0.16 0.38,-0.25 0.07,-0.04 0.14,-0.08 0.21,-0.14 0.12,-0.08 0.23,-0.17 0.33,-0.26l0.2,-0.17s0.01,-0.01 0.03,-0.02c0.04,-0.03 0.08,-0.06 0.1,-0.1 0.02,-0.02 0.04,-0.03 0.05,-0.05 0.12,-0.11 0.25,-0.24 0.37,-0.38 0,0 0.02,-0.02 0.03,-0.03l0.07,-0.08c0.06,-0.06 0.12,-0.13 0.19,-0.22 0.03,-0.04 0.05,-0.08 0.08,-0.12 0.09,-0.11 0.18,-0.23 0.28,-0.36 0,-0.01 0.02,-0.03 0.03,-0.05l0.22,-0.35c0.09,-0.15 0.19,-0.32 0.27,-0.48h0s0,-0.01 0.01,-0.02l0.09,-0.17c0.04,-0.08 0.08,-0.17 0.12,-0.26 0.02,-0.03 0.03,-0.06 0.03,-0.08 0,0 0,0 0,-0.01 0.03,-0.07 0.06,-0.15 0.08,-0.22 0.03,-0.07 0.05,-0.15 0.09,-0.26 0,-0.02 0.01,-0.04 0.04,-0.11 0.02,-0.06 0.04,-0.11 0.04,-0.14 0.03,-0.07 0.05,-0.14 0.07,-0.24 0.1,-0.33 0.15,-0.65 0.18,-0.94 0.01,-0.02 0.02,-0.05 0.02,-0.07 0.04,-0.33 0.05,-0.58 0.05,-0.83v-0.21s0,-0.01 0,-0.02c0,-0.11 -0.02,-0.24 -0.02,-0.35ZM86.46,92.73c0.45,-1.69 1.47,-3.14 2.91,-4.11 -0.04,0.33 -0.1,0.67 -0.19,1.03 -0.09,0.32 -0.19,0.63 -0.32,0.94 0,0.02 -0.02,0.04 -0.02,0.06 -0.1,0.25 -0.23,0.51 -0.39,0.78 -0.03,0.03 -0.05,0.07 -0.08,0.11 -0.18,0.29 -0.34,0.52 -0.52,0.74 -0.02,0.03 -0.03,0.04 -0.06,0.07 -0.16,0.2 -0.34,0.39 -0.59,0.64l-0.08,0.08c-0.19,0.17 -0.41,0.35 -0.69,0.56 -0.02,0.02 -0.04,0.03 -0.06,0.04 -0.03,0.02 -0.05,0.03 -0.08,0.05 0,0 -0.02,0.01 -0.03,0.02 0.04,-0.36 0.1,-0.7 0.19,-1.02ZM86.62,107.78l3.9,2.36 -4.25,-1.04 0.35,-1.32ZM91.69,110.38l-4.97,-3 1.97,-7.44c0.02,-0.07 0,-0.15 -0.06,-0.2 -0.87,-0.74 -1.54,-1.69 -1.95,-2.76l7.39,4.45 -2.38,8.96ZM99.9,94.23c0,0.21 -0.01,0.43 -0.04,0.69 -0.02,0.03 -0.03,0.07 -0.03,0.11v0.04c-0.03,0.26 -0.08,0.57 -0.18,0.93 -0.02,0.06 -0.03,0.12 -0.06,0.2 0,0.04 -0.02,0.07 -0.04,0.13 -0.02,0.04 -0.04,0.09 -0.04,0.12 -0.03,0.08 -0.06,0.15 -0.09,0.23 -0.03,0.07 -0.05,0.15 -0.08,0.22 0,0.01 0,0.03 -0.01,0.04 0,0 0,0 0,0.01h0c-0.04,0.09 -0.08,0.17 -0.12,0.25l-0.09,0.17s0,0.01 0,0.02c0,0 0,0 0,0 -0.08,0.16 -0.17,0.31 -0.25,0.45l-0.24,0.37s-0.01,0.02 -0.02,0.03c-0.08,0.11 -0.16,0.22 -0.24,0.32 -0.05,0.06 -0.08,0.1 -0.1,0.14 -0.05,0.06 -0.1,0.12 -0.16,0.18l-0.09,0.09s-0.01,0.02 -0.02,0.03c0,0 0,0 -0.01,0.01 -0.11,0.11 -0.22,0.23 -0.34,0.34 -0.02,0 -0.03,0.02 -0.04,0.03l-0.05,0.05s-0.01,0.02 -0.02,0.03c-0.01,0 -0.02,0.02 -0.03,0.02l0.14,0.14 -0.19,-0.1 -0.17,0.15c-0.1,0.08 -0.2,0.16 -0.31,0.24 -0.05,0.04 -0.1,0.07 -0.14,0.1 0,0 -0.04,0.03 -0.05,0.03 -0.12,0.08 -0.24,0.16 -0.36,0.24 -0.04,0.02 -0.07,0.04 -0.11,0.06 -0.05,0.03 -0.09,0.05 -0.14,0.08l-0.14,0.09c-0.05,0.03 -0.11,0.05 -0.16,0.08 -0.06,0.03 -0.12,0.06 -0.17,0.09l-0.12,0.06c-0.08,0.04 -0.16,0.07 -0.24,0.1 -0.02,0 -0.04,0.01 -0.06,0.02h0s-0.06,0.02 -0.06,0.02c-0.03,0 -0.05,0.02 -0.07,0.03 -0.22,0.08 -0.46,0.15 -0.75,0.22l-7.9,-4.76c-0.19,-0.69 -0.27,-1.37 -0.25,-2.07 0.11,-0.06 0.22,-0.14 0.35,-0.22 0.03,-0.02 0.07,-0.05 0.13,-0.09 0.23,-0.16 0.47,-0.35 0.7,-0.57 0.04,-0.03 0.07,-0.06 0.12,-0.11 0.2,-0.19 0.41,-0.42 0.63,-0.69 0.02,-0.02 0.03,-0.04 0.06,-0.07 0.2,-0.24 0.37,-0.51 0.51,-0.73 0.03,-0.03 0.05,-0.07 0.05,-0.08 0.01,-0.01 0.02,-0.03 0.03,-0.04 0.19,-0.32 0.33,-0.6 0.44,-0.87 0.01,-0.02 0.03,-0.05 0.03,-0.09 0.13,-0.3 0.24,-0.63 0.33,-0.96 0.13,-0.49 0.21,-0.95 0.23,-1.45 0.94,-0.54 2,-0.85 3.06,-0.91 0.65,-0.03 1.31,0.03 1.95,0.18 0.71,0.18 1.37,0.46 1.91,0.81 0.01,0 0.03,0.02 0.04,0.02 0.02,0.01 0.04,0.02 0.06,0.02h0s0.03,0.03 0.05,0.04c0.02,0.02 0.04,0.04 0.07,0.05l0.06,0.04s0.01,0 0.02,0.01c0,0 0.02,0.01 0.03,0.01 0.09,0.06 0.17,0.12 0.25,0.2 0.01,0.01 0.03,0.02 0.04,0.03 0.01,0 0.03,0.03 0.06,0.06 0.1,0.09 0.2,0.17 0.29,0.27 0.01,0.02 0.03,0.02 0.05,0.03l0.06,0.06c0.11,0.1 0.22,0.22 0.35,0.37 0.05,0.05 0.08,0.08 0.12,0.13 0,0 0.03,0.04 0.04,0.05 0.01,0.02 0.03,0.04 0.04,0.06 0,0.02 0.02,0.03 0.03,0.04 0.15,0.19 0.28,0.36 0.41,0.56 0.1,0.16 0.19,0.31 0.27,0.47l0.24,0.49s0.04,0.09 0.06,0.14c0.02,0.04 0.03,0.07 0.04,0.11l0.03,0.07c0.02,0.05 0.04,0.11 0.06,0.17l0.03,0.09s0.03,0.09 0.04,0.14c0.02,0.07 0.04,0.15 0.06,0.22 0.01,0.05 0.03,0.11 0.04,0.16l0.03,0.09c0.01,0.07 0.03,0.14 0.04,0.2l0.12,0.76v0.08c0,0.12 0,0.25 0.02,0.38v0.2Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable-night/ic_location_secure.xml"
line="111"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (5726 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M100.28,93.65l-0.09,-0.78c0,-0.05 -0.02,-0.1 -0.03,-0.15 -0.01,-0.06 -0.03,-0.12 -0.04,-0.2l-0.03,-0.12s-0.03,-0.09 -0.04,-0.14c-0.02,-0.08 -0.04,-0.16 -0.06,-0.23 -0.01,-0.05 -0.03,-0.11 -0.05,-0.16l-0.02,-0.07c-0.02,-0.07 -0.04,-0.14 -0.07,-0.21l-0.02,-0.06s-0.03,-0.08 -0.05,-0.12c-0.02,-0.04 -0.03,-0.08 -0.05,-0.13l-0.26,-0.52c-0.09,-0.17 -0.19,-0.34 -0.29,-0.5 -0.13,-0.21 -0.28,-0.4 -0.43,-0.59 -0.02,-0.03 -0.04,-0.06 -0.06,-0.08 -0.02,-0.03 -0.04,-0.06 -0.06,-0.08 -0.05,-0.06 -0.09,-0.1 -0.15,-0.16 -0.12,-0.14 -0.23,-0.26 -0.37,-0.39 -0.02,-0.03 -0.06,-0.06 -0.1,-0.09 -0.1,-0.1 -0.2,-0.19 -0.29,-0.26 -0.03,-0.03 -0.07,-0.07 -0.13,-0.1 -0.09,-0.08 -0.18,-0.15 -0.28,-0.22 -0.01,0 -0.03,-0.02 -0.04,-0.02 0,0 -0.01,0 -0.02,0h0s-0.05,-0.04 -0.09,-0.06c-0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.02,-0.02 -0.04,-0.04 -0.08,-0.05 -0.02,0 -0.04,-0.02 -0.06,-0.03 0,0 0,0 -0.01,0 -0.57,-0.37 -1.27,-0.67 -2.03,-0.86 -0.68,-0.16 -1.38,-0.23 -2.07,-0.2 -1.16,0.06 -2.32,0.41 -3.34,1.02 0,0 -0.01,0.02 -0.02,0.03 0,0 0,0 0,0 -1.7,1.02 -2.91,2.64 -3.42,4.56 -0.12,0.45 -0.2,0.96 -0.24,1.49 0,0 0,0 0,0 0,0.01 -0.01,0.02 -0.01,0.03 -0.04,0.79 0.05,1.59 0.27,2.37 0,0.01 0,0.01 0.01,0.02 0,0.01 0,0.02 0,0.03 0.39,1.31 1.13,2.48 2.15,3.37l-1.98,7.47 -0.47,1.77c-0.01,0.05 0,0.11 0.02,0.15s0.07,0.08 0.12,0.09l5.7,1.4 0.02,0.02s0.07,0.03 0.11,0.03c0.02,0 0.03,0 0.05,0 0.05,-0.01 0.1,-0.05 0.13,-0.1 0,-0.01 0.02,-0.05 0.03,-0.06l2.44,-9.2c0.31,-0.08 0.57,-0.15 0.81,-0.24l0.06,-0.02s0.05,-0.02 0.07,-0.03c0.01,0 0.02,0 0.04,0 0.1,-0.03 0.19,-0.07 0.3,-0.12l0.14,-0.06c0.05,-0.03 0.11,-0.05 0.16,-0.08 0.06,-0.03 0.12,-0.06 0.19,-0.09l0.15,-0.09s0.08,-0.04 0.11,-0.06c0.05,-0.02 0.09,-0.05 0.13,-0.08 0.12,-0.08 0.25,-0.16 0.38,-0.25 0.07,-0.04 0.14,-0.08 0.21,-0.14 0.12,-0.08 0.23,-0.17 0.33,-0.26l0.2,-0.17s0.01,-0.01 0.03,-0.02c0.04,-0.03 0.08,-0.06 0.1,-0.1 0.02,-0.02 0.04,-0.03 0.05,-0.05 0.12,-0.11 0.25,-0.24 0.37,-0.38 0,0 0.02,-0.02 0.03,-0.03l0.07,-0.08c0.06,-0.06 0.12,-0.13 0.19,-0.22 0.03,-0.04 0.05,-0.08 0.08,-0.12 0.09,-0.11 0.18,-0.23 0.28,-0.36 0,-0.01 0.02,-0.03 0.03,-0.05l0.22,-0.35c0.09,-0.15 0.19,-0.32 0.27,-0.48h0s0,-0.01 0.01,-0.02l0.09,-0.17c0.04,-0.08 0.08,-0.17 0.12,-0.26 0.02,-0.03 0.03,-0.06 0.03,-0.08 0,0 0,0 0,-0.01 0.03,-0.07 0.06,-0.15 0.08,-0.22 0.03,-0.07 0.05,-0.15 0.09,-0.26 0,-0.02 0.01,-0.04 0.04,-0.11 0.02,-0.06 0.04,-0.11 0.04,-0.14 0.03,-0.07 0.05,-0.14 0.07,-0.24 0.1,-0.33 0.15,-0.65 0.18,-0.94 0.01,-0.02 0.02,-0.05 0.02,-0.07 0.04,-0.33 0.05,-0.58 0.05,-0.83v-0.21s0,-0.01 0,-0.02c0,-0.11 -0.02,-0.24 -0.02,-0.35ZM86.46,92.73c0.45,-1.69 1.47,-3.14 2.91,-4.11 -0.04,0.33 -0.1,0.67 -0.19,1.03 -0.09,0.32 -0.19,0.63 -0.32,0.94 0,0.02 -0.02,0.04 -0.02,0.06 -0.1,0.25 -0.23,0.51 -0.39,0.78 -0.03,0.03 -0.05,0.07 -0.08,0.11 -0.18,0.29 -0.34,0.52 -0.52,0.74 -0.02,0.03 -0.03,0.04 -0.06,0.07 -0.16,0.2 -0.34,0.39 -0.59,0.64l-0.08,0.08c-0.19,0.17 -0.41,0.35 -0.69,0.56 -0.02,0.02 -0.04,0.03 -0.06,0.04 -0.03,0.02 -0.05,0.03 -0.08,0.05 0,0 -0.02,0.01 -0.03,0.02 0.04,-0.36 0.1,-0.7 0.19,-1.02ZM86.62,107.78l3.9,2.36 -4.25,-1.04 0.35,-1.32ZM91.69,110.38l-4.97,-3 1.97,-7.44c0.02,-0.07 0,-0.15 -0.06,-0.2 -0.87,-0.74 -1.54,-1.69 -1.95,-2.76l7.39,4.45 -2.38,8.96ZM99.9,94.23c0,0.21 -0.01,0.43 -0.04,0.69 -0.02,0.03 -0.03,0.07 -0.03,0.11v0.04c-0.03,0.26 -0.08,0.57 -0.18,0.93 -0.02,0.06 -0.03,0.12 -0.06,0.2 0,0.04 -0.02,0.07 -0.04,0.13 -0.02,0.04 -0.04,0.09 -0.04,0.12 -0.03,0.08 -0.06,0.15 -0.09,0.23 -0.03,0.07 -0.05,0.15 -0.08,0.22 0,0.01 0,0.03 -0.01,0.04 0,0 0,0 0,0.01h0c-0.04,0.09 -0.08,0.17 -0.12,0.25l-0.09,0.17s0,0.01 0,0.02c0,0 0,0 0,0 -0.08,0.16 -0.17,0.31 -0.25,0.45l-0.24,0.37s-0.01,0.02 -0.02,0.03c-0.08,0.11 -0.16,0.22 -0.24,0.32 -0.05,0.06 -0.08,0.1 -0.1,0.14 -0.05,0.06 -0.1,0.12 -0.16,0.18l-0.09,0.09s-0.01,0.02 -0.02,0.03c0,0 0,0 -0.01,0.01 -0.11,0.11 -0.22,0.23 -0.34,0.34 -0.02,0 -0.03,0.02 -0.04,0.03l-0.05,0.05s-0.01,0.02 -0.02,0.03c-0.01,0 -0.02,0.02 -0.03,0.02l0.14,0.14 -0.19,-0.1 -0.17,0.15c-0.1,0.08 -0.2,0.16 -0.31,0.24 -0.05,0.04 -0.1,0.07 -0.14,0.1 0,0 -0.04,0.03 -0.05,0.03 -0.12,0.08 -0.24,0.16 -0.36,0.24 -0.04,0.02 -0.07,0.04 -0.11,0.06 -0.05,0.03 -0.09,0.05 -0.14,0.08l-0.14,0.09c-0.05,0.03 -0.11,0.05 -0.16,0.08 -0.06,0.03 -0.12,0.06 -0.17,0.09l-0.12,0.06c-0.08,0.04 -0.16,0.07 -0.24,0.1 -0.02,0 -0.04,0.01 -0.06,0.02h0s-0.06,0.02 -0.06,0.02c-0.03,0 -0.05,0.02 -0.07,0.03 -0.22,0.08 -0.46,0.15 -0.75,0.22l-7.9,-4.76c-0.19,-0.69 -0.27,-1.37 -0.25,-2.07 0.11,-0.06 0.22,-0.14 0.35,-0.22 0.03,-0.02 0.07,-0.05 0.13,-0.09 0.23,-0.16 0.47,-0.35 0.7,-0.57 0.04,-0.03 0.07,-0.06 0.12,-0.11 0.2,-0.19 0.41,-0.42 0.63,-0.69 0.02,-0.02 0.03,-0.04 0.06,-0.07 0.2,-0.24 0.37,-0.51 0.51,-0.73 0.03,-0.03 0.05,-0.07 0.05,-0.08 0.01,-0.01 0.02,-0.03 0.03,-0.04 0.19,-0.32 0.33,-0.6 0.44,-0.87 0.01,-0.02 0.03,-0.05 0.03,-0.09 0.13,-0.3 0.24,-0.63 0.33,-0.96 0.13,-0.49 0.21,-0.95 0.23,-1.45 0.94,-0.54 2,-0.85 3.06,-0.91 0.65,-0.03 1.31,0.03 1.95,0.18 0.71,0.18 1.37,0.46 1.91,0.81 0.01,0 0.03,0.02 0.04,0.02 0.02,0.01 0.04,0.02 0.06,0.02h0s0.03,0.03 0.05,0.04c0.02,0.02 0.04,0.04 0.07,0.05l0.06,0.04s0.01,0 0.02,0.01c0,0 0.02,0.01 0.03,0.01 0.09,0.06 0.17,0.12 0.25,0.2 0.01,0.01 0.03,0.02 0.04,0.03 0.01,0 0.03,0.03 0.06,0.06 0.1,0.09 0.2,0.17 0.29,0.27 0.01,0.02 0.03,0.02 0.05,0.03l0.06,0.06c0.11,0.1 0.22,0.22 0.35,0.37 0.05,0.05 0.08,0.08 0.12,0.13 0,0 0.03,0.04 0.04,0.05 0.01,0.02 0.03,0.04 0.04,0.06 0,0.02 0.02,0.03 0.03,0.04 0.15,0.19 0.28,0.36 0.41,0.56 0.1,0.16 0.19,0.31 0.27,0.47l0.24,0.49s0.04,0.09 0.06,0.14c0.02,0.04 0.03,0.07 0.04,0.11l0.03,0.07c0.02,0.05 0.04,0.11 0.06,0.17l0.03,0.09s0.03,0.09 0.04,0.14c0.02,0.07 0.04,0.15 0.06,0.22 0.01,0.05 0.03,0.11 0.04,0.16l0.03,0.09c0.01,0.07 0.03,0.14 0.04,0.2l0.12,0.76v0.08c0,0.12 0,0.25 0.02,0.38v0.2Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/ic_location_secure.xml"
line="114"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (7612 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M129.64,125.06l-8.49,-67.82c-0.05,-0.37 -0.29,-0.68 -0.64,-0.81 -0.12,-0.04 -0.24,-0.07 -0.35,-0.07 -0.24,0 -0.47,0.09 -0.66,0.25l-4.98,4.37c-0.44,-1.19 -0.93,-2.36 -1.47,-3.51 -5.12,-10.88 -14.13,-19.25 -25.38,-23.58 -5.18,-1.99 -10.61,-3.03 -16.15,-3.09 -2.07,-8.03 -9.33,-13.72 -17.7,-13.72 -1.14,0 -2.29,0.11 -3.42,0.32 -4.81,0.91 -8.99,3.63 -11.75,7.68 -2.76,4.05 -3.79,8.92 -2.88,13.74 0.38,2.06 1.13,4.04 2.18,5.84 -3.3,3.33 -6.12,7.19 -8.31,11.46 -4.44,8.69 -6.02,18.4 -4.56,28.08 1.71,11.3 7.49,21.53 16.27,28.81 8.33,6.91 18.84,10.72 29.61,10.72 2.32,0 4.68,-0.18 6.99,-0.53 2.47,-0.37 4.88,-0.93 7.21,-1.67l3.99,6.88c0.18,0.31 0.51,0.5 0.87,0.5h0.09c0.39,-0.04 0.72,-0.3 0.85,-0.67l3.68,-10.55 33.77,8.46c0.08,0.02 0.16,0.03 0.24,0.03 0.24,0 0.48,-0.09 0.66,-0.25 0.25,-0.22 0.37,-0.55 0.33,-0.87ZM71.8,32.03h0c5.27,0.08 10.49,1.08 15.41,2.98 0.26,5.11 1.66,8.61 4.18,10.37 0.6,0.42 1.23,0.73 1.79,1 1.09,0.53 1.94,0.95 2.18,1.9 0.27,1.1 -0.37,2.61 -1.66,3.95 -1.36,1.42 -3.03,2.17 -4.23,1.93 -0.34,-0.07 -0.49,-0.18 -0.8,-0.43 -0.23,-0.18 -0.54,-0.42 -1.06,-0.74 -2.08,-1.3 -5.48,-2.61 -6.54,-1.49 -0.62,0.66 -0.38,2.03 0.25,2.81 0.89,1.12 2.59,1.1 3.3,1.1h0.11c3,0 6.45,2.25 13.31,6.72l0.1,0.07c2.41,1.57 3.74,2.98 4.72,4 0.99,1.04 1.63,1.71 2.62,1.71 0.11,0 0.21,0 0.33,-0.02 2.1,-0.29 3.17,-2.67 4.51,-5.69 0.27,-0.61 0.55,-1.24 0.86,-1.89 0.31,-0.66 0.63,-1.3 0.96,-1.92 0,0 0,0 0,0 0.53,1.12 1,2.27 1.41,3.43l-33.48,29.37c-0.06,-0.54 -0.12,-0.95 -0.16,-1.21 0,0 -0.03,-0.2 -0.08,-0.4 -0.06,-0.24 -1.18,-4.36 -1.67,-5.56 -0.88,-2.11 -3.01,-3.13 -5.08,-4.12 -1.93,-0.92 -3.76,-1.8 -4.06,-3.49 -0.18,-0.99 0.24,-1.76 0.72,-2.66 0.57,-1.06 1.22,-2.26 0.99,-4.07 -0.07,-0.56 -0.39,-2.45 -1.81,-3.64 -0.11,-0.08 -0.21,-0.15 -0.33,-0.21 -3.28,-1.62 -10.81,3.66 -15.52,9.41 -0.15,0.18 -0.3,0.37 -0.45,0.55 -1.21,1.51 -2.46,3.07 -4.4,3.29 -1.12,0.13 -1.93,-0.25 -2.72,-0.61 -0.86,-0.41 -1.68,-0.79 -2.76,-0.42 -0.99,0.34 -1.47,1.06 -1.97,1.82 -0.55,0.83 -1.17,1.77 -2.6,2.5 -0.68,0.36 -1.82,0.95 -2.68,0.53 -0.71,-0.34 -0.87,-1.21 -1.28,-3.53 -0.07,-0.41 -0.15,-0.86 -0.24,-1.37 -0.35,-1.9 -0.6,-3.02 -0.77,-3.76 -0.23,-1.04 -0.27,-1.23 -0.16,-1.77 0.44,-2.21 2.36,-4.8 4.69,-5.12 1.81,-0.25 3.17,0.94 4.61,2.2 1.47,1.27 2.98,2.59 4.97,2.2 1.93,-0.39 3.72,-2.28 3.69,-3.89 -0.02,-0.87 -0.53,-1.43 -1.12,-2.08 -0.1,-0.11 -0.2,-0.22 -0.3,-0.34 -1.38,-1.57 -1.69,-2.63 -2.02,-3.75 -0.3,-1.02 -0.6,-2.06 -1.71,-3.5 -0.03,-0.04 -2.87,-3.65 -8.05,-4.8 -0.39,-0.08 -0.76,-0.06 -0.77,-0.06 -0.66,0.04 -0.99,0.26 -1.6,0.65 -0.37,0.25 -0.85,0.56 -1.58,0.95 -0.94,0.5 -1.89,0.92 -2.9,1.28 2.05,-3.9 4.63,-7.43 7.65,-10.52 0.98,1.45 2.17,2.76 3.53,3.88l15.94,12.65c0.18,0.14 0.4,0.22 0.62,0.22 0.06,0 0.12,0 0.19,-0.02 0.29,-0.05 0.53,-0.23 0.68,-0.48l10.23,-17.57c1.04,-1.85 1.74,-3.83 2.08,-5.9 0.36,-2.11 0.34,-4.28 -0.07,-6.45ZM85.9,120.02l-3.82,-6.59 35.96,-52.28 -24.43,55.22 -0.06,0.18 -0.19,0.54 -3.44,9.87 -3.82,-6.59 -0.2,-0.35ZM30.68,56.74c1.18,-0.39 2.27,-0.87 3.35,-1.44 0.76,-0.41 1.26,-0.73 1.62,-0.97 0.59,-0.38 0.85,-0.56 1.4,-0.59 0,0 0.33,-0.02 0.67,0.05 5.03,1.12 7.78,4.62 7.81,4.65 1.07,1.38 1.36,2.39 1.65,3.37 0.32,1.11 0.66,2.27 2.1,3.9 0.1,0.12 0.21,0.23 0.31,0.34 0.55,0.62 0.99,1.11 1.01,1.82 0.03,1.44 -1.61,3.14 -3.37,3.49 -1.8,0.36 -3.17,-0.84 -4.63,-2.1 -1.44,-1.27 -2.95,-2.58 -4.93,-2.3 -2.5,0.35 -4.56,3.1 -5.03,5.44 -0.12,0.62 -0.07,0.88 0.17,1.94 0.17,0.74 0.42,1.85 0.76,3.75 0.1,0.5 0.18,0.95 0.25,1.36 0.42,2.4 0.6,3.39 1.49,3.82 1.04,0.51 2.3,-0.15 3.04,-0.53 1.53,-0.78 2.18,-1.77 2.75,-2.64 0.51,-0.77 0.91,-1.37 1.76,-1.66 0.94,-0.31 1.65,0.02 2.48,0.4 0.79,0.37 1.69,0.79 2.92,0.65 2.11,-0.24 3.41,-1.87 4.67,-3.44 0.15,-0.18 0.3,-0.36 0.45,-0.54 4.6,-5.63 12.01,-10.81 15.03,-9.31 0.1,0.05 0.18,0.1 0.26,0.16 1.3,1.09 1.6,2.86 1.66,3.38 0.22,1.68 -0.37,2.78 -0.94,3.83 -0.5,0.93 -0.97,1.8 -0.77,2.93 0.35,1.88 2.26,2.8 4.29,3.77 2,0.95 4.06,1.94 4.88,3.92 0.49,1.18 1.61,5.34 1.65,5.49 0.04,0.19 0.07,0.37 0.07,0.39 0.03,0.2 0.12,0.73 0.19,1.46l-11.51,10.1c-1.54,-0.51 -2.99,-1.14 -4.1,-1.79l-0.16,-0.1c-0.75,-0.43 -2.01,-1.16 -3.37,-0.8 -0.82,0.21 -1.25,0.7 -1.7,1.23 -0.45,0.51 -0.91,1.04 -1.83,1.44 -0.01,0.01 -1.65,0.77 -3.53,0.27 -0.64,-0.18 -0.94,-0.4 -1.32,-0.68 -0.39,-0.29 -0.84,-0.63 -1.79,-0.98 -1.33,-0.5 -2.51,-0.59 -3.21,-0.65 -0.92,-0.07 -1.47,-0.03 -1.91,0 -0.29,0.02 -0.52,0.04 -0.78,0.02 -1.81,-0.11 -2.98,-1.92 -4.01,-3.51 -0.88,-1.36 -1.63,-2.54 -2.67,-2.44 -0.46,0.04 -0.91,0.34 -1.32,0.85 -0.85,1.08 -1.29,2.84 -1.08,4.28 0.5,3.49 5.75,4.93 7.99,5.55l0.21,0.05c2.09,0.58 3.78,0.7 5.02,0.79 1.33,0.09 2.12,0.15 2.31,0.66 0.45,1.16 -2.25,3.62 -4.86,4.95 -0.02,0.01 -1.62,0.82 -4.04,1.26 -1.73,-1.44 -3.34,-3 -4.82,-4.66 -0.3,-0.34 -0.6,-0.68 -0.89,-1.03 -2.69,-3.2 -4.92,-6.76 -6.62,-10.56 -0.2,-0.45 -0.4,-0.9 -0.58,-1.35 -0.17,-0.41 -0.33,-0.82 -0.48,-1.23 -0.04,-0.1 -0.08,-0.21 -0.11,-0.31 -0.16,-0.41 -0.31,-0.82 -0.44,-1.23 -0.15,-0.46 -0.3,-0.93 -0.44,-1.41 -0.15,-0.47 -0.28,-0.94 -0.4,-1.42 -0.16,-0.58 -0.3,-1.16 -0.43,-1.75 -0.15,-0.67 -0.29,-1.35 -0.4,-2.03 -0.06,-0.34 -0.12,-0.69 -0.17,-1.03 -0.35,-2.29 -0.52,-4.59 -0.52,-6.86 0,-0.58 0.01,-1.17 0.04,-1.75 -0.01,-0.05 0,-0.09 0,-0.13 0.01,-0.38 0.03,-0.77 0.06,-1.15 0.01,-0.32 0.04,-0.63 0.07,-0.94 0.05,-0.62 0.12,-1.23 0.2,-1.84 0.05,-0.42 0.12,-0.83 0.19,-1.25 0.1,-0.72 0.23,-1.43 0.38,-2.13 0.18,-0.86 0.39,-1.72 0.62,-2.57 0.24,-0.87 0.5,-1.73 0.79,-2.58 0.14,-0.42 0.29,-0.84 0.45,-1.26 0.15,-0.41 0.31,-0.82 0.47,-1.22 0.17,-0.41 0.34,-0.81 0.52,-1.22 0.35,-0.8 0.73,-1.6 1.13,-2.39h0.01ZM118,59.79l-36.57,53.17 -18.68,-4.69 6.69,-5.87 0.35,-0.31 10.04,-8.8h0s0.4,-0.35 0.4,-0.35l37.77,-33.15ZM42.44,112.37c2.28,-0.45 3.75,-1.2 3.82,-1.23 2.5,-1.28 5.65,-3.89 5.06,-5.45 -0.28,-0.75 -1.18,-0.81 -2.66,-0.92 -1.22,-0.09 -2.9,-0.2 -4.95,-0.77l-0.2,-0.06c-2.17,-0.6 -7.24,-1.99 -7.7,-5.22 -0.2,-1.31 0.22,-2.98 1,-3.97 0.33,-0.43 0.69,-0.67 1.04,-0.7 0.78,-0.09 1.49,1.01 2.3,2.26 1.08,1.67 2.3,3.56 4.32,3.69 0.29,0.02 0.54,0 0.83,-0.02 0.43,-0.04 0.96,-0.08 1.84,-0.01 0.69,0.05 1.83,0.15 3.11,0.63 0.89,0.33 1.32,0.64 1.69,0.92 0.38,0.28 0.74,0.55 1.46,0.74 2.01,0.54 3.79,-0.28 3.8,-0.29 0.99,-0.43 1.51,-1.02 1.96,-1.54 0.43,-0.5 0.8,-0.92 1.5,-1.11 1.21,-0.31 2.33,0.34 3.07,0.77l0.16,0.09c1.08,0.63 2.46,1.24 3.96,1.74l-6.6,5.8c-0.28,0.25 -0.4,0.63 -0.31,0.99 0.09,0.36 0.37,0.64 0.73,0.73l19.29,4.83 3.59,6.19c-2.19,0.69 -4.46,1.21 -6.78,1.56 -12.6,1.91 -25.45,-1.61 -35.33,-9.65ZM94.55,116.23l0.17,-0.38 20.77,-46.93 0.28,-0.63 4.17,-9.44 8.24,65.81 -33.44,-8.38 -0.19,-0.05ZM95.74,48.19c-0.28,-1.14 -1.26,-1.62 -2.39,-2.17 -0.57,-0.28 -1.16,-0.57 -1.74,-0.97 -2.38,-1.67 -3.72,-5 -4,-9.88 10.76,4.24 19.38,12.31 24.31,22.76 0,0 0,0 0,0 -0.38,0.71 -0.75,1.45 -1.11,2.22 -0.31,0.65 -0.59,1.29 -0.86,1.9 -1.3,2.91 -2.32,5.2 -4.2,5.46 -1,0.14 -1.56,-0.47 -2.61,-1.57 -0.99,-1.04 -2.34,-2.46 -4.79,-4.06l-0.1,-0.07c-6.93,-4.52 -10.4,-6.79 -13.53,-6.79h-0.11c-0.67,0 -2.21,0.01 -2.99,-0.96 -0.57,-0.7 -0.7,-1.83 -0.27,-2.29 0.79,-0.83 3.76,0.13 6.04,1.55 0.5,0.31 0.79,0.54 1.02,0.72 0.32,0.25 0.53,0.42 0.97,0.51 1.34,0.28 3.14,-0.53 4.6,-2.04 1.38,-1.44 2.05,-3.09 1.76,-4.32ZM36.76,38.63c-1.78,-9.41 4.42,-18.47 13.83,-20.24 1.09,-0.21 2.17,-0.3 3.24,-0.3h-0.01c7.7,-0.01 14.61,5.15 16.68,12.72 0.08,0.26 0.15,0.53 0.21,0.81 0,0.06 0.03,0.13 0.04,0.19 0.01,0.07 0.03,0.13 0.04,0.2 0.01,0.06 0.03,0.13 0.04,0.2 0.39,2.08 0.4,4.14 0.06,6.1 -0.33,1.97 -1,3.85 -1.96,5.56l-10.23,17.57 -15.93,-12.64c-1.33,-1.09 -2.49,-2.38 -3.44,-3.84 -0.05,-0.06 -0.08,-0.11 -0.12,-0.17 -0.04,-0.05 -0.07,-0.11 -0.11,-0.16 -0.14,-0.23 -0.28,-0.46 -0.42,-0.7 -0.9,-1.6 -1.56,-3.38 -1.92,-5.3Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/ic_location_tracking.xml"
line="92"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (7612 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M129.64,125.06l-8.49,-67.82c-0.05,-0.37 -0.29,-0.68 -0.64,-0.81 -0.12,-0.04 -0.24,-0.07 -0.35,-0.07 -0.24,0 -0.47,0.09 -0.66,0.25l-4.98,4.37c-0.44,-1.19 -0.93,-2.36 -1.47,-3.51 -5.12,-10.88 -14.13,-19.25 -25.38,-23.58 -5.18,-1.99 -10.61,-3.03 -16.15,-3.09 -2.07,-8.03 -9.33,-13.72 -17.7,-13.72 -1.14,0 -2.29,0.11 -3.42,0.32 -4.81,0.91 -8.99,3.63 -11.75,7.68 -2.76,4.05 -3.79,8.92 -2.88,13.74 0.38,2.06 1.13,4.04 2.18,5.84 -3.3,3.33 -6.12,7.19 -8.31,11.46 -4.44,8.69 -6.02,18.4 -4.56,28.08 1.71,11.3 7.49,21.53 16.27,28.81 8.33,6.91 18.84,10.72 29.61,10.72 2.32,0 4.68,-0.18 6.99,-0.53 2.47,-0.37 4.88,-0.93 7.21,-1.67l3.99,6.88c0.18,0.31 0.51,0.5 0.87,0.5h0.09c0.39,-0.04 0.72,-0.3 0.85,-0.67l3.68,-10.55 33.77,8.46c0.08,0.02 0.16,0.03 0.24,0.03 0.24,0 0.48,-0.09 0.66,-0.25 0.25,-0.22 0.37,-0.55 0.33,-0.87ZM71.8,32.03h0c5.27,0.08 10.49,1.08 15.41,2.98 0.26,5.11 1.66,8.61 4.18,10.37 0.6,0.42 1.23,0.73 1.79,1 1.09,0.53 1.94,0.95 2.18,1.9 0.27,1.1 -0.37,2.61 -1.66,3.95 -1.36,1.42 -3.03,2.17 -4.23,1.93 -0.34,-0.07 -0.49,-0.18 -0.8,-0.43 -0.23,-0.18 -0.54,-0.42 -1.06,-0.74 -2.08,-1.3 -5.48,-2.61 -6.54,-1.49 -0.62,0.66 -0.38,2.03 0.25,2.81 0.89,1.12 2.59,1.1 3.3,1.1h0.11c3,0 6.45,2.25 13.31,6.72l0.1,0.07c2.41,1.57 3.74,2.98 4.72,4 0.99,1.04 1.63,1.71 2.62,1.71 0.11,0 0.21,0 0.33,-0.02 2.1,-0.29 3.17,-2.67 4.51,-5.69 0.27,-0.61 0.55,-1.24 0.86,-1.89 0.31,-0.66 0.63,-1.3 0.96,-1.92 0,0 0,0 0,0 0.53,1.12 1,2.27 1.41,3.43l-33.48,29.37c-0.06,-0.54 -0.12,-0.95 -0.16,-1.21 0,0 -0.03,-0.2 -0.08,-0.4 -0.06,-0.24 -1.18,-4.36 -1.67,-5.56 -0.88,-2.11 -3.01,-3.13 -5.08,-4.12 -1.93,-0.92 -3.76,-1.8 -4.06,-3.49 -0.18,-0.99 0.24,-1.76 0.72,-2.66 0.57,-1.06 1.22,-2.26 0.99,-4.07 -0.07,-0.56 -0.39,-2.45 -1.81,-3.64 -0.11,-0.08 -0.21,-0.15 -0.33,-0.21 -3.28,-1.62 -10.81,3.66 -15.52,9.41 -0.15,0.18 -0.3,0.37 -0.45,0.55 -1.21,1.51 -2.46,3.07 -4.4,3.29 -1.12,0.13 -1.93,-0.25 -2.72,-0.61 -0.86,-0.41 -1.68,-0.79 -2.76,-0.42 -0.99,0.34 -1.47,1.06 -1.97,1.82 -0.55,0.83 -1.17,1.77 -2.6,2.5 -0.68,0.36 -1.82,0.95 -2.68,0.53 -0.71,-0.34 -0.87,-1.21 -1.28,-3.53 -0.07,-0.41 -0.15,-0.86 -0.24,-1.37 -0.35,-1.9 -0.6,-3.02 -0.77,-3.76 -0.23,-1.04 -0.27,-1.23 -0.16,-1.77 0.44,-2.21 2.36,-4.8 4.69,-5.12 1.81,-0.25 3.17,0.94 4.61,2.2 1.47,1.27 2.98,2.59 4.97,2.2 1.93,-0.39 3.72,-2.28 3.69,-3.89 -0.02,-0.87 -0.53,-1.43 -1.12,-2.08 -0.1,-0.11 -0.2,-0.22 -0.3,-0.34 -1.38,-1.57 -1.69,-2.63 -2.02,-3.75 -0.3,-1.02 -0.6,-2.06 -1.71,-3.5 -0.03,-0.04 -2.87,-3.65 -8.05,-4.8 -0.39,-0.08 -0.76,-0.06 -0.77,-0.06 -0.66,0.04 -0.99,0.26 -1.6,0.65 -0.37,0.25 -0.85,0.56 -1.58,0.95 -0.94,0.5 -1.89,0.92 -2.9,1.28 2.05,-3.9 4.63,-7.43 7.65,-10.52 0.98,1.45 2.17,2.76 3.53,3.88l15.94,12.65c0.18,0.14 0.4,0.22 0.62,0.22 0.06,0 0.12,0 0.19,-0.02 0.29,-0.05 0.53,-0.23 0.68,-0.48l10.23,-17.57c1.04,-1.85 1.74,-3.83 2.08,-5.9 0.36,-2.11 0.34,-4.28 -0.07,-6.45ZM85.9,120.02l-3.82,-6.59 35.96,-52.28 -24.43,55.22 -0.06,0.18 -0.19,0.54 -3.44,9.87 -3.82,-6.59 -0.2,-0.35ZM30.68,56.74c1.18,-0.39 2.27,-0.87 3.35,-1.44 0.76,-0.41 1.26,-0.73 1.62,-0.97 0.59,-0.38 0.85,-0.56 1.4,-0.59 0,0 0.33,-0.02 0.67,0.05 5.03,1.12 7.78,4.62 7.81,4.65 1.07,1.38 1.36,2.39 1.65,3.37 0.32,1.11 0.66,2.27 2.1,3.9 0.1,0.12 0.21,0.23 0.31,0.34 0.55,0.62 0.99,1.11 1.01,1.82 0.03,1.44 -1.61,3.14 -3.37,3.49 -1.8,0.36 -3.17,-0.84 -4.63,-2.1 -1.44,-1.27 -2.95,-2.58 -4.93,-2.3 -2.5,0.35 -4.56,3.1 -5.03,5.44 -0.12,0.62 -0.07,0.88 0.17,1.94 0.17,0.74 0.42,1.85 0.76,3.75 0.1,0.5 0.18,0.95 0.25,1.36 0.42,2.4 0.6,3.39 1.49,3.82 1.04,0.51 2.3,-0.15 3.04,-0.53 1.53,-0.78 2.18,-1.77 2.75,-2.64 0.51,-0.77 0.91,-1.37 1.76,-1.66 0.94,-0.31 1.65,0.02 2.48,0.4 0.79,0.37 1.69,0.79 2.92,0.65 2.11,-0.24 3.41,-1.87 4.67,-3.44 0.15,-0.18 0.3,-0.36 0.45,-0.54 4.6,-5.63 12.01,-10.81 15.03,-9.31 0.1,0.05 0.18,0.1 0.26,0.16 1.3,1.09 1.6,2.86 1.66,3.38 0.22,1.68 -0.37,2.78 -0.94,3.83 -0.5,0.93 -0.97,1.8 -0.77,2.93 0.35,1.88 2.26,2.8 4.29,3.77 2,0.95 4.06,1.94 4.88,3.92 0.49,1.18 1.61,5.34 1.65,5.49 0.04,0.19 0.07,0.37 0.07,0.39 0.03,0.2 0.12,0.73 0.19,1.46l-11.51,10.1c-1.54,-0.51 -2.99,-1.14 -4.1,-1.79l-0.16,-0.1c-0.75,-0.43 -2.01,-1.16 -3.37,-0.8 -0.82,0.21 -1.25,0.7 -1.7,1.23 -0.45,0.51 -0.91,1.04 -1.83,1.44 -0.01,0.01 -1.65,0.77 -3.53,0.27 -0.64,-0.18 -0.94,-0.4 -1.32,-0.68 -0.39,-0.29 -0.84,-0.63 -1.79,-0.98 -1.33,-0.5 -2.51,-0.59 -3.21,-0.65 -0.92,-0.07 -1.47,-0.03 -1.91,0 -0.29,0.02 -0.52,0.04 -0.78,0.02 -1.81,-0.11 -2.98,-1.92 -4.01,-3.51 -0.88,-1.36 -1.63,-2.54 -2.67,-2.44 -0.46,0.04 -0.91,0.34 -1.32,0.85 -0.85,1.08 -1.29,2.84 -1.08,4.28 0.5,3.49 5.75,4.93 7.99,5.55l0.21,0.05c2.09,0.58 3.78,0.7 5.02,0.79 1.33,0.09 2.12,0.15 2.31,0.66 0.45,1.16 -2.25,3.62 -4.86,4.95 -0.02,0.01 -1.62,0.82 -4.04,1.26 -1.73,-1.44 -3.34,-3 -4.82,-4.66 -0.3,-0.34 -0.6,-0.68 -0.89,-1.03 -2.69,-3.2 -4.92,-6.76 -6.62,-10.56 -0.2,-0.45 -0.4,-0.9 -0.58,-1.35 -0.17,-0.41 -0.33,-0.82 -0.48,-1.23 -0.04,-0.1 -0.08,-0.21 -0.11,-0.31 -0.16,-0.41 -0.31,-0.82 -0.44,-1.23 -0.15,-0.46 -0.3,-0.93 -0.44,-1.41 -0.15,-0.47 -0.28,-0.94 -0.4,-1.42 -0.16,-0.58 -0.3,-1.16 -0.43,-1.75 -0.15,-0.67 -0.29,-1.35 -0.4,-2.03 -0.06,-0.34 -0.12,-0.69 -0.17,-1.03 -0.35,-2.29 -0.52,-4.59 -0.52,-6.86 0,-0.58 0.01,-1.17 0.04,-1.75 -0.01,-0.05 0,-0.09 0,-0.13 0.01,-0.38 0.03,-0.77 0.06,-1.15 0.01,-0.32 0.04,-0.63 0.07,-0.94 0.05,-0.62 0.12,-1.23 0.2,-1.84 0.05,-0.42 0.12,-0.83 0.19,-1.25 0.1,-0.72 0.23,-1.43 0.38,-2.13 0.18,-0.86 0.39,-1.72 0.62,-2.57 0.24,-0.87 0.5,-1.73 0.79,-2.58 0.14,-0.42 0.29,-0.84 0.45,-1.26 0.15,-0.41 0.31,-0.82 0.47,-1.22 0.17,-0.41 0.34,-0.81 0.52,-1.22 0.35,-0.8 0.73,-1.6 1.13,-2.39h0.01ZM118,59.79l-36.57,53.17 -18.68,-4.69 6.69,-5.87 0.35,-0.31 10.04,-8.8h0s0.4,-0.35 0.4,-0.35l37.77,-33.15ZM42.44,112.37c2.28,-0.45 3.75,-1.2 3.82,-1.23 2.5,-1.28 5.65,-3.89 5.06,-5.45 -0.28,-0.75 -1.18,-0.81 -2.66,-0.92 -1.22,-0.09 -2.9,-0.2 -4.95,-0.77l-0.2,-0.06c-2.17,-0.6 -7.24,-1.99 -7.7,-5.22 -0.2,-1.31 0.22,-2.98 1,-3.97 0.33,-0.43 0.69,-0.67 1.04,-0.7 0.78,-0.09 1.49,1.01 2.3,2.26 1.08,1.67 2.3,3.56 4.32,3.69 0.29,0.02 0.54,0 0.83,-0.02 0.43,-0.04 0.96,-0.08 1.84,-0.01 0.69,0.05 1.83,0.15 3.11,0.63 0.89,0.33 1.32,0.64 1.69,0.92 0.38,0.28 0.74,0.55 1.46,0.74 2.01,0.54 3.79,-0.28 3.8,-0.29 0.99,-0.43 1.51,-1.02 1.96,-1.54 0.43,-0.5 0.8,-0.92 1.5,-1.11 1.21,-0.31 2.33,0.34 3.07,0.77l0.16,0.09c1.08,0.63 2.46,1.24 3.96,1.74l-6.6,5.8c-0.28,0.25 -0.4,0.63 -0.31,0.99 0.09,0.36 0.37,0.64 0.73,0.73l19.29,4.83 3.59,6.19c-2.19,0.69 -4.46,1.21 -6.78,1.56 -12.6,1.91 -25.45,-1.61 -35.33,-9.65ZM94.55,116.23l0.17,-0.38 20.77,-46.93 0.28,-0.63 4.17,-9.44 8.24,65.81 -33.44,-8.38 -0.19,-0.05ZM95.74,48.19c-0.28,-1.14 -1.26,-1.62 -2.39,-2.17 -0.57,-0.28 -1.16,-0.57 -1.74,-0.97 -2.38,-1.67 -3.72,-5 -4,-9.88 10.76,4.24 19.38,12.31 24.31,22.76 0,0 0,0 0,0 -0.38,0.71 -0.75,1.45 -1.11,2.22 -0.31,0.65 -0.59,1.29 -0.86,1.9 -1.3,2.91 -2.32,5.2 -4.2,5.46 -1,0.14 -1.56,-0.47 -2.61,-1.57 -0.99,-1.04 -2.34,-2.46 -4.79,-4.06l-0.1,-0.07c-6.93,-4.52 -10.4,-6.79 -13.53,-6.79h-0.11c-0.67,0 -2.21,0.01 -2.99,-0.96 -0.57,-0.7 -0.7,-1.83 -0.27,-2.29 0.79,-0.83 3.76,0.13 6.04,1.55 0.5,0.31 0.79,0.54 1.02,0.72 0.32,0.25 0.53,0.42 0.97,0.51 1.34,0.28 3.14,-0.53 4.6,-2.04 1.38,-1.44 2.05,-3.09 1.76,-4.32ZM36.76,38.63c-1.78,-9.41 4.42,-18.47 13.83,-20.24 1.09,-0.21 2.17,-0.3 3.24,-0.3h-0.01c7.7,-0.01 14.61,5.15 16.68,12.72 0.08,0.26 0.15,0.53 0.21,0.81 0,0.06 0.03,0.13 0.04,0.19 0.01,0.07 0.03,0.13 0.04,0.2 0.01,0.06 0.03,0.13 0.04,0.2 0.39,2.08 0.4,4.14 0.06,6.1 -0.33,1.97 -1,3.85 -1.96,5.56l-10.23,17.57 -15.93,-12.64c-1.33,-1.09 -2.49,-2.38 -3.44,-3.84 -0.05,-0.06 -0.08,-0.11 -0.12,-0.17 -0.04,-0.05 -0.07,-0.11 -0.11,-0.16 -0.14,-0.23 -0.28,-0.46 -0.42,-0.7 -0.9,-1.6 -1.56,-3.38 -1.92,-5.3Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable-night/ic_location_tracking.xml"
line="101"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (3830 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M116.59,84.32c0.01,-3.59 -1.49,-6.8 -3.98,-8.94 -0.09,-0.08 -0.17,-0.15 -0.26,-0.23 -0.08,-0.06 -0.16,-0.12 -0.24,-0.18 -0.31,-0.24 -0.65,-0.47 -1,-0.68 -0.11,-0.06 -0.21,-0.13 -0.32,-0.19 -0.17,-0.09 -0.34,-0.18 -0.51,-0.27 -0.3,-0.15 -0.6,-0.28 -0.92,-0.4h-0.03s-0.03,-0.01 -0.05,-0.02c-6.08,-2.51 -13.72,-0.56 -19.96,5.09 -6.51,5.9 -9.48,13.78 -7.56,20.14 0,0.03 0,0.05 0.02,0.07 0,0 0,0 0,0 0.1,0.24 0.22,0.47 0.33,0.7 1.68,3.7 4.32,6.09 7.72,7.04 0.03,0 0.05,0.01 0.08,0.02 0.27,0.07 0.54,0.16 0.82,0.22 0.27,0.06 0.54,0.11 0.82,0.15 0.02,0 0.05,0 0.07,0 0.64,0.09 1.3,0.14 1.98,0.14 1.34,0 2.76,-0.18 4.23,-0.56 2.16,-0.55 4.37,-1.51 6.48,-2.79 0.09,-0.05 0.18,-0.1 0.27,-0.15 0.08,-0.05 0.16,-0.1 0.24,-0.15 0.04,-0.03 0.09,-0.06 0.13,-0.08 4.71,-2.92 8.65,-7.24 10.35,-11.67 0.01,-0.03 0.02,-0.06 0.04,-0.09 0.01,-0.03 0.02,-0.06 0.03,-0.1 0.95,-2.29 1.41,-4.66 1.21,-7 0.01,-0.03 0.02,-0.06 0.02,-0.09ZM103.04,103.94c-2.45,1.3 -5.05,2.2 -7.62,2.51 -1.01,0.13 -1.99,0.16 -2.91,0.1 -0.08,0 -0.15,-0.02 -0.23,-0.02 -0.18,-0.02 -0.35,-0.03 -0.53,-0.05 -0.27,-0.03 -0.52,-0.1 -0.78,-0.14 -3.73,-0.77 -6.71,-3.23 -8.58,-7.21 -0.02,-0.04 -0.04,-0.08 -0.06,-0.12 4.72,1.66 10.29,0.99 14.98,-1.83 0.6,-0.36 1.21,-0.75 1.81,-1.18 6.25,-4.47 12.7,-12.89 10.48,-22.02 0,0 0,0 0,0 5.76,2.42 7.46,9.13 6.09,14.36v0.1c-0.13,0.99 -0.4,1.98 -0.77,2.97 0,0 0,0.02 -0.01,0.02 -2.17,5.09 -6.81,9.74 -11.89,12.5ZM108.84,78.25c-0.02,0.32 -0.05,0.71 -0.11,1.26 -0.03,0.2 -0.05,0.41 -0.1,0.64 -0.04,0.25 -0.09,0.46 -0.13,0.67 -0.01,0.06 -0.02,0.11 -0.03,0.16 -0.02,0.07 -0.04,0.15 -0.05,0.22 0,0.03 -0.02,0.06 -0.02,0.09l-0.02,0.08s-0.01,0.04 -0.02,0.07c-0.01,0.04 -0.03,0.1 -0.05,0.16 -0.02,0.08 -0.05,0.15 -0.07,0.23 -0.06,0.27 -0.16,0.55 -0.25,0.84 -0.2,0.62 -0.41,1.18 -0.65,1.71 -0.11,0.27 -0.24,0.57 -0.38,0.85 -0.15,0.31 -0.27,0.55 -0.4,0.77 -0.02,0.04 -0.04,0.07 -0.06,0.12 -0.03,0.04 -0.05,0.09 -0.07,0.13 -0.07,0.16 -0.17,0.32 -0.28,0.51 -0.22,0.37 -0.43,0.73 -0.66,1.07 -0.34,0.52 -0.73,1.05 -1.17,1.63 -0.2,0.25 -0.4,0.5 -0.6,0.74 -0.17,0.2 -0.32,0.38 -0.48,0.55 -0.3,0.34 -0.58,0.65 -0.89,0.95 -0.24,0.25 -0.46,0.48 -0.7,0.7 -0.24,0.23 -0.48,0.47 -0.74,0.68 -0.29,0.26 -0.55,0.49 -0.82,0.71 -0.6,0.49 -1.13,0.9 -1.64,1.27 -0.04,0.03 -0.08,0.06 -0.11,0.08 -0.08,0.06 -0.19,0.13 -0.27,0.18 -0.02,0.01 -0.03,0.03 -0.06,0.04 -0.12,0.08 -0.24,0.16 -0.35,0.24 -0.06,0.04 -0.14,0.08 -0.21,0.13 -0.03,0.03 -0.08,0.05 -0.12,0.07 -0.22,0.15 -0.4,0.25 -0.57,0.36 -0.02,0 -0.03,0.02 -0.04,0.02 -0.03,0.01 -0.02,0.01 -0.04,0.03 -0.11,0.07 -0.23,0.13 -0.34,0.19 -0.15,0.09 -0.3,0.16 -0.43,0.24 -0.02,0.01 -0.05,0.03 -0.07,0.04 -0.05,0.02 -0.08,0.04 -0.11,0.05 -0.02,0 -0.03,0.02 -0.05,0.03 -0.04,0.02 -0.12,0.04 -0.17,0.07 -0.27,0.15 -0.56,0.28 -0.83,0.42 -0.87,0.38 -1.72,0.69 -2.57,0.92 -0.7,0.2 -1.42,0.35 -2.13,0.43 -0.31,0.05 -0.61,0.08 -0.99,0.1h-0.27c-0.37,0.02 -0.74,0.04 -1.09,0.04s-0.69,-0.01 -1.03,-0.04c-0.52,-0.04 -1.04,-0.1 -1.55,-0.18 -0.17,-0.03 -0.32,-0.05 -0.47,-0.09 -0.39,-0.08 -0.68,-0.14 -0.93,-0.22 -0.02,0 -0.04,-0.01 -0.06,-0.02 -0.2,-0.05 -0.39,-0.11 -0.59,-0.17 -0.03,-0.01 -0.07,-0.02 -0.1,-0.03 -0.06,-0.01 -0.11,-0.04 -0.16,-0.06 -1.17,-4.44 0.23,-9.86 3.79,-14.64 0.07,-0.06 0.12,-0.14 0.16,-0.23h0.01c0.05,-0.07 0.11,-0.13 0.17,-0.2 0,-0.01 0.04,-0.05 0.05,-0.07 0.25,-0.33 0.56,-0.7 0.96,-1.15 0.01,-0.01 0.03,-0.03 0.04,-0.05l0.05,-0.07s0.03,-0.03 0.04,-0.05l0.1,-0.11s0.07,-0.09 0.1,-0.13c0.03,-0.02 0.05,-0.04 0.07,-0.06 0.2,-0.23 0.43,-0.48 0.69,-0.73 0.57,-0.58 1.05,-1.03 1.53,-1.43 0.72,-0.64 1.46,-1.23 2.27,-1.81 3.03,-2.19 6.48,-3.48 9.72,-3.64 0.3,-0.01 0.59,-0.02 0.88,-0.02 1.52,0 2.93,0.18 4.21,0.53 0.32,0.09 0.61,0.18 0.88,0.27 0.08,0.28 0.14,0.6 0.21,0.95 0,0.03 0,0.06 0.01,0.09 0.02,0.13 0.05,0.25 0.06,0.38 0,0.05 0.01,0.09 0.02,0.14 0,0.07 0,0.11 0.01,0.16 0.03,0.28 0.06,0.63 0.07,0.97v1.22Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable-night/ic_manual_server.xml"
line="236"
column="27"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (17010 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M136.84,75.71c-0.02,-0.2 -0.11,-0.39 -0.23,-0.54l-6.44,-7.27c-0.18,-0.21 -0.45,-0.32 -0.72,-0.32 -0.12,0 -0.24,0.02 -0.34,0.06l-0.64,0.24 3.89,-3.03c0.4,-0.3 0.49,-0.87 0.2,-1.29 -0.72,-1.08 -1.55,-2.09 -2.44,-3.02 -0.02,-0.02 -0.03,-0.04 -0.05,-0.05l-5.17,-5.85c-0.3,-0.35 -0.63,-0.73 -0.96,-1.11l-0.22,-0.24c-0.16,-0.17 -0.3,-0.32 -0.47,-0.47 -0.26,-0.25 -0.5,-0.49 -0.75,-0.71 -0.09,-0.08 -0.2,-0.18 -0.29,-0.27 -0.19,-0.16 -0.38,-0.32 -0.56,-0.48l-0.11,-0.08c-0.08,-0.07 -0.15,-0.13 -0.24,-0.2 -0.19,-0.15 -0.4,-0.31 -0.63,-0.48 -0.23,-0.18 -0.49,-0.34 -0.73,-0.52l-0.14,-0.09c-0.14,-0.1 -0.27,-0.19 -0.41,-0.27 -0.23,-0.16 -0.49,-0.32 -0.76,-0.48 -0.28,-0.17 -0.62,-0.37 -0.97,-0.55 -0.32,-0.18 -0.68,-0.37 -1.05,-0.54 -0.13,-0.06 -0.27,-0.1 -0.41,-0.1 -0.31,0 -0.6,0.15 -0.8,0.41l-5.18,7.24 0.58,-1.89c0.03,-0.09 0.04,-0.19 0.04,-0.28 0,-0.23 -0.09,-0.47 -0.24,-0.65l-6.43,-7.25c-0.23,-0.28 -0.71,-0.29 -0.71,-0.29 -4.8,0 -9.77,0.96 -14.77,2.82 -0.42,0.15 -0.67,0.57 -0.62,1l0.82,8.1c-2.83,1.13 -5.58,2.62 -8.2,4.46l-4.61,-5.22c0.01,-0.11 0.03,-0.25 0.04,-0.39 0.03,-0.33 0.06,-0.69 0.07,-0.94 0.63,-10 -2.14,-18.95 -7.83,-25.22 -4.32,-4.75 -9.95,-7.5 -15.86,-7.72l-7,-0.26h-0.13c-0.08,0 -0.16,0 -0.24,0 -0.05,0 -0.1,-0.01 -0.17,-0.01 -0.22,0 -0.47,-0.01 -0.75,0.01 -0.38,0 -0.74,0 -1.1,0.04 -2.74,0.14 -5.46,0.83 -8.07,2.07 -3.18,1.49 -6.16,3.77 -8.84,6.77l-0.12,0.14c-0.34,0.4 -0.69,0.81 -1.04,1.24 -3.46,4.34 -5.59,10.01 -5.98,15.96 -0.34,5.4 0.29,10.48 1.9,15.08 0.14,0.39 0.3,0.83 0.5,1.33 0.61,1.54 1.33,3.02 2.15,4.37 0.22,0.37 0.46,0.74 0.71,1.12 0.1,0.15 0.19,0.31 0.3,0.46l0.08,0.11 0.1,0.14c0.23,0.31 0.45,0.62 0.69,0.93 0.42,0.55 0.82,1.04 1.24,1.51 2.48,2.76 5.38,4.86 8.62,6.2l0.19,0.09c0.27,0.11 0.54,0.21 0.79,0.3 0.32,0.12 0.7,0.26 1.16,0.39 0.35,0.11 0.74,0.22 1.15,0.32 0.08,0.02 0.17,0.05 0.28,0.07 0.09,0.02 0.17,0.04 0.25,0.06 0.14,0.02 0.24,0.05 0.35,0.06l0.09,0.02c0.26,0.05 0.51,0.11 0.76,0.15h0.08c0.49,0.06 1.04,0.12 1.65,0.18 0.2,0.01 0.38,0.02 0.57,0.03h0.05l0.27,0.02h0.07l7.17,0.26c0.27,0.01 0.55,0.02 0.83,0.02 0.69,0 1.39,-0.04 2.09,-0.11l1.73,5.47c-0.12,0.63 -0.23,1.34 -0.32,2.08v0.03c-0.02,0.06 -0.03,0.12 -0.04,0.18 -0.09,0.74 -0.15,1.49 -0.19,2.3 -0.01,0.15 -0.01,0.33 -0.01,0.49 -0.02,0.61 -0.03,1.15 -0.02,1.66 0,0.24 0,0.48 0.01,0.73 0.03,0.59 0.05,1.2 0.11,1.82v0.09c0,0.06 0.02,0.12 0.02,0.17 0.02,0.2 0.11,0.38 0.23,0.52l5.3,5.99 0.9,2.82 -1.96,1.52c-0.39,0.31 -0.49,0.88 -0.2,1.3 0.44,0.64 0.85,1.19 1.27,1.68l0.04,0.06c0.08,0.12 0.17,0.23 0.27,0.34 0.35,0.41 0.69,0.79 1.02,1.11l2.22,2.4 6.02,18.99c0.02,0.07 0.06,0.14 0.09,0.2l0.06,0.1c0.07,0.11 0.16,0.21 0.26,0.27l0.11,0.08s0.11,0.07 0.15,0.1l0.15,0.06c0.05,0.03 0.11,0.05 0.16,0.06l0.19,0.05s0.1,0.02 0.13,0.03h0.11l0.14,0.03h0.75l0.34,-0.03c0.06,0 0.13,-0.01 0.2,-0.02 0.05,0 0.11,0 0.17,-0.02h0.07l0.19,-0.03 0.2,-0.03c0.16,-0.03 0.25,-0.04 0.35,-0.05h0.06s0.07,-0.02 0.1,-0.03c0.13,-0.03 0.26,-0.06 0.38,-0.09 0.09,-0.02 0.19,-0.04 0.28,-0.06 0.06,0 0.12,-0.03 0.17,-0.04 0.13,-0.02 0.22,-0.05 0.31,-0.08 0.06,-0.02 0.12,-0.04 0.19,-0.06l0.1,-0.03c0.13,-0.04 0.27,-0.07 0.4,-0.11 0.16,-0.05 0.3,-0.1 0.46,-0.15 0.16,-0.06 0.31,-0.09 0.45,-0.14 0.02,0 0.04,-0.01 0.06,-0.02l0.44,-0.17 0.43,-0.16 0.45,-0.19 0.4,-0.18s0.03,-0.01 0.05,-0.01l0.7,-0.35 0.35,-0.19s0.04,-0.03 0.05,-0.04l0.27,-0.18 0.25,-0.18s0.06,-0.05 0.08,-0.07l0.19,-0.16 0.04,-0.04 0.15,-0.15s0.07,-0.08 0.11,-0.13l0.1,-0.13c0.03,-0.06 0.07,-0.12 0.1,-0.19l0.06,-0.13c0.04,-0.09 0.07,-0.18 0.08,-0.28v-0.09s0.02,-0.07 0.02,-0.1c0,-0.09 -0.01,-0.19 -0.04,-0.27l-0.03,-0.11s-0.03,-0.09 -0.05,-0.13l-2.72,-8.56 3.23,-4.51 -0.57,1.86c-0.09,0.31 -0.02,0.66 0.21,0.91l6.43,7.26c0.18,0.21 0.45,0.32 0.73,0.32h0.07c4.78,0 9.73,-0.95 14.7,-2.81 0.41,-0.16 0.67,-0.57 0.62,-1.01l-0.83,-8.08c1.21,-0.48 2.47,-1.06 3.72,-1.72 0.15,-0.07 0.29,-0.15 0.42,-0.22 0.46,-0.23 0.98,-0.53 1.51,-0.86 0.12,-0.07 0.22,-0.13 0.33,-0.19l0.28,-0.18c0.22,-0.13 0.45,-0.27 0.66,-0.42 0.21,-0.14 0.42,-0.28 0.64,-0.43 0.16,-0.12 0.34,-0.23 0.52,-0.36l4.98,5.39s0.03,0.03 0.04,0.04c0.19,0.18 0.44,0.28 0.69,0.28 0.21,0 0.42,-0.07 0.6,-0.21 0.09,-0.07 0.17,-0.14 0.26,-0.21 3.23,-2.54 6.15,-5.39 8.72,-8.5 0.63,-0.74 1.26,-1.54 1.97,-2.53 0.13,-0.16 0.25,-0.35 0.39,-0.53l0.11,-0.15c0.26,-0.36 0.22,-0.86 -0.09,-1.2 0,0 -3.38,-3.64 -5.35,-5.78 1.19,-2.08 2.15,-4.23 2.87,-6.41h8.69c0.43,0 0.8,-0.29 0.93,-0.7 1.5,-4.88 2.02,-9.66 1.55,-14.18ZM129.46,68.57l6.31,7.11 -0.67,0.24c-2.32,0.87 -6.95,2.59 -8.84,3.3 -0.36,-3.08 -1.34,-5.86 -2.93,-8.28l0.2,-0.16h0.01l5.92,-2.21ZM126.86,58.6s0.07,0.09 0.11,0.13c-1.3,-1 -2.72,-1.87 -4.21,-2.58l-5.77,-6.52c3.76,1.9 6.99,5.64 9.87,8.97ZM109.94,57.82l6.15,-8.59 6.3,7.1c-1.44,2.01 -4.65,6.48 -6.09,8.49 -0.27,-0.28 -0.77,-0.87 -1.34,-1.54 -2.33,-2.71 -3.96,-4.54 -5.02,-5.45h0ZM115.54,64.57c-0.07,-0.03 -0.14,-0.04 -0.21,-0.07 -0.04,-0.02 -0.07,-0.04 -0.11,-0.05 -0.35,-0.14 -0.71,-0.27 -1.07,-0.39 -0.06,-0.02 -0.12,-0.03 -0.18,-0.05 -0.34,-0.11 -0.69,-0.21 -1.04,-0.3 -0.26,-0.07 -0.53,-0.14 -0.8,-0.2 -0.34,-0.08 -0.68,-0.15 -1.02,-0.21 -0.1,-0.02 -0.2,-0.04 -0.3,-0.06 -0.39,-0.06 -0.78,-0.11 -1.17,-0.16 -0.03,0 -0.06,0 -0.08,-0.01 -0.12,-0.01 -0.23,-0.02 -0.35,-0.03 -0.25,-0.02 -0.5,-0.04 -0.76,-0.06 -0.4,-0.02 -0.8,-0.03 -1.2,-0.04l1.64,-5.38c0.83,0.22 4.26,4.23 5.76,5.98 0.36,0.42 0.65,0.76 0.89,1.03ZM103.36,46.49l6.09,6.88c-0.47,0 -0.94,0.02 -1.42,0.05h-0.03c-4.03,0.21 -8.3,1.12 -12.49,2.66l-6.15,-6.94c4.75,-1.74 9.46,-2.63 14,-2.65ZM95.25,56.4l0.85,8.16 -6.02,-6.8s-0.11,-0.06 -0.17,-0.05h0s-0.84,-8.29 -0.84,-8.29l6.18,6.98ZM89.87,58.13l6.15,6.95c-0.15,0.06 -0.3,0.13 -0.46,0.19 -0.24,0.1 -0.49,0.19 -0.73,0.29 -0.03,0.02 -0.06,0.03 -0.1,0.04 -0.18,0.08 -0.36,0.17 -0.54,0.25 -0.51,0.23 -1.02,0.48 -1.53,0.73 -0.3,0.15 -0.6,0.3 -0.89,0.46 -0.5,0.26 -0.99,0.54 -1.48,0.83 -0.18,0.1 -0.36,0.19 -0.53,0.29t-0.02,0.01c-0.34,0.21 -0.69,0.43 -1.03,0.65 -0.04,0.03 -0.08,0.05 -0.12,0.08 -0.06,0.04 -0.11,0.08 -0.17,0.12 -0.11,0.07 -0.22,0.15 -0.33,0.22 -0.07,0.04 -0.13,0.09 -0.2,0.13 -0.07,0.05 -0.13,0.09 -0.2,0.14 -0.13,0.09 -0.27,0.19 -0.4,0.29 -0.37,0.25 -0.72,0.52 -1.08,0.79 -0.01,0 -0.02,0 -0.03,0.02 -0.19,-0.27 -0.51,-0.74 -0.89,-1.32 -0.91,-1.35 -1.82,-2.69 -2.59,-3.8l-0.04,-0.06 -0.29,-0.41 -0.27,-0.39 -0.39,-0.59s-0.03,-0.04 -0.05,-0.05c-0.05,-0.06 -0.14,-0.16 -0.25,-0.28 -0.21,-0.28 -0.41,-0.52 -0.55,-0.67 2.84,-2.07 5.87,-3.72 9.01,-4.91ZM81.15,64.02s0.05,0.07 0.08,0.11c-4.2,3.28 -7.88,7.11 -10.96,11.38 -0.04,-0.03 -0.09,-0.06 -0.13,-0.09l-2.42,-2.74 -3.63,-4.1c2.08,-2.9 4.46,-5.61 7.09,-8.08 0.28,-0.26 0.55,-0.52 0.83,-0.77 0.07,-0.07 0.15,-0.13 0.22,-0.19 0.92,-0.83 1.87,-1.62 2.85,-2.39l0.19,0.22 0.3,0.34c1.43,1.62 4.62,5.23 5.58,6.31ZM71.27,100.21c0.07,-0.03 0.14,-0.06 0.2,-0.08 0.05,0.47 0.12,0.93 0.21,1.39l-0.41,-1.31ZM73.16,106.16c0.1,0.24 0.22,0.47 0.35,0.7l-0.2,-0.21 -0.15,-0.49ZM73.6,107.55l0.8,0.87c-0.12,0.1 -0.27,0.21 -0.42,0.33l-0.38,-1.2ZM71.14,132.85c-0.21,-0.02 -0.37,-0.07 -0.48,-0.15 0.02,-0.07 0.06,-0.15 0.14,-0.24 0.53,-0.66 2.53,-1.62 4.79,-2.23 2.28,-0.62 3.56,-0.56 3.82,-0.23 -0.01,0.03 -0.03,0.05 -0.05,0.08 -0.03,0.05 -0.07,0.1 -0.11,0.14 -0.33,0.39 -1.09,0.85 -2.08,1.28 -0.2,0.09 -0.4,0.18 -0.62,0.26 -0.1,0.04 -0.2,0.07 -0.3,0.11 -0.1,0.03 -0.21,0.07 -0.31,0.11 -0.11,0.03 -0.22,0.06 -0.32,0.1 -0.04,0.01 -0.09,0.03 -0.14,0.04 -0.57,0.17 -1.14,0.32 -1.72,0.44 -0.85,0.19 -1.69,0.34 -2.57,0.3 -0.02,0.01 -0.03,0 -0.05,-0.01ZM75.48,129.85c-1.67,0.45 -4.68,1.48 -5.13,2.6 -0.95,-2.24 -2.8,-9.11 -5.16,-16.62 -0.23,-0.7 -0.45,-1.41 -0.68,-2.15t-0.01,-0.02c-0.79,-2.54 -1.61,-5.16 -2.4,-7.73 -0.01,-0.04 -0.03,-0.08 -0.04,-0.11 -0.09,-0.3 -0.18,-0.6 -0.28,-0.89 -0.05,-0.18 -0.1,-0.35 -0.15,-0.52 -0.19,-0.61 -0.38,-1.21 -0.56,-1.81 -0.02,-0.06 -0.04,-0.11 -0.06,-0.17 -0.61,-2 -1.2,-3.93 -1.76,-5.75 -0.04,-0.12 -0.07,-0.23 -0.1,-0.34 -1.37,-4.42 -2.39,-7.74 -3.17,-10.23 -0.21,-0.67 -0.4,-1.29 -0.58,-1.85 -1.06,-3.38 -1.5,-4.69 -1.71,-5.11 0.13,-0.3 0.49,-0.63 1.04,-0.98 0.09,-0.06 0.19,-0.11 0.3,-0.17 0.16,-0.08 0.33,-0.17 0.51,-0.26 0.17,-0.08 0.36,-0.16 0.54,-0.25 0.03,0 0.06,-0.01 0.08,-0.03 0.36,-0.16 0.74,-0.3 1.13,-0.43 0.14,-0.05 0.29,-0.1 0.43,-0.14 1.33,-0.41 2.71,-0.68 3.66,-0.72h0.09c0.38,0.01 0.68,0.07 0.87,0.19 0.23,0.53 0.86,2.38 1.74,5.08 0.04,0.12 0.08,0.25 0.12,0.38 0.05,0.13 0.09,0.26 0.13,0.4 0.02,0.06 0.05,0.13 0.07,0.2l0.07,0.2s1.79,5.25 2.25,6.56l0.1,0.3h0s0.13,0.4 0.13,0.4h0s3.26,10.27 3.26,10.27v0.03s0.12,0.35 0.12,0.35v0.02s1.4,4.39 1.4,4.39l0.28,0.89 1.13,3.57h0s0.13,0.41 0.13,0.41l3.4,10.7 0.07,0.22 0.08,0.25 0.27,0.87 2.46,7.76c-0.82,-0.55 -3.06,-0.04 -4.07,0.24ZM27.44,72.57c-0.41,-0.46 -0.81,-0.95 -1.19,-1.45 -0.26,-0.34 -0.5,-0.67 -0.75,-1.02 -0.13,-0.18 -0.25,-0.36 -0.36,-0.54 -0.24,-0.36 -0.47,-0.73 -0.7,-1.1 -0.79,-1.31 -1.49,-2.72 -2.08,-4.22 -0.17,-0.43 -0.33,-0.87 -0.48,-1.3 -1.5,-4.28 -2.21,-9.23 -1.85,-14.71 0.38,-5.75 2.43,-11.23 5.78,-15.42 0.38,-0.46 0.75,-0.91 1.12,-1.34 2.67,-2.99 5.56,-5.15 8.54,-6.54 2.53,-1.21 5.14,-1.85 7.71,-1.98 0.35,-0.02 0.69,-0.03 1.03,-0.03 0.25,0 0.49,0 0.73,0.01h0.08c0.26,0.01 0.51,0.03 0.76,0.05 -0.03,0 -0.08,-0.01 -0.12,-0.02l0.61,0.02c0.69,0.07 1.42,0.2 2.25,0.37 14.96,3.67 20.14,19.33 18.63,32.11 -0.51,4.27 -1.82,8.57 -3.94,12.36 -0.06,0.07 -0.27,0.4 -0.3,0.51 -3.96,6.75 -10.56,11.77 -19.82,11.81 -0.01,0 -0.03,0 -0.04,0.01h-0.02s-0.02,0 -0.03,0.02l-0.21,-0.02c-0.2,-0.01 -0.4,-0.01 -0.6,-0.03 -0.55,-0.05 -1.1,-0.11 -1.64,-0.19h0c-0.29,-0.04 -0.57,-0.1 -0.86,-0.16 -0.09,-0.01 -0.18,-0.03 -0.27,-0.05 -0.18,-0.05 -0.36,-0.08 -0.55,-0.13 -0.36,-0.09 -0.73,-0.19 -1.09,-0.3 -0.38,-0.12 -0.76,-0.24 -1.12,-0.39 -0.25,-0.08 -0.49,-0.18 -0.73,-0.27 -0.07,-0.03 -0.13,-0.06 -0.2,-0.09 -3.06,-1.28 -5.89,-3.3 -8.28,-5.97ZM49.05,23.08l3.39,0.12c0.48,0.02 0.96,0.05 1.44,0.12 4.94,0.99 9.33,3.3 12.78,6.61 5.96,5.74 8.85,14.45 8.34,25.19 -0.02,0.22 -0.04,0.51 -0.06,0.79 -0.15,0.03 -0.29,0.1 -0.43,0.2 -1.9,1.48 -3.74,3.1 -5.47,4.83 -0.48,0.48 -0.98,1.01 -1.5,1.57 -1.04,1.12 -2.05,2.31 -3.01,3.55 1.59,-3.32 2.59,-6.94 3.02,-10.56 1.52,-12.81 -3.64,-28.51 -18.5,-32.42ZM62.96,68.96c0.03,0.09 0.09,0.18 0.16,0.26l3.59,4.04c-1.24,1.22 -2.52,2.28 -3.81,3.16 0,-0.02 -0.09,-0.16 -0.1,-0.17 -0.04,-0.06 -0.09,-0.11 -0.14,-0.16 -0.11,-0.09 -0.25,-0.15 -0.38,-0.2 -0.05,-0.01 -0.1,-0.03 -0.16,-0.04 -0.15,-0.04 -0.31,-0.05 -0.48,-0.07 -0.15,-0.01 -0.3,0 -0.47,0 -0.82,0.02 -1.84,0.21 -2.87,0.51 -0.17,0.05 -0.35,0.1 -0.52,0.15 -0.2,0.06 -0.4,0.12 -0.59,0.19 -0.18,0.06 -0.36,0.13 -0.53,0.19 -0.25,0.1 -0.49,0.19 -0.72,0.29 -0.4,0.17 -0.77,0.35 -1.1,0.52 -0.15,0.08 -0.29,0.16 -0.41,0.24 -0.08,0.05 -0.16,0.09 -0.23,0.15 -0.63,0.4 -0.95,0.78 -0.96,1.11 0,0.04 0.01,0.09 0.03,0.12 0.04,0.09 0.16,0.48 0.22,0.7 0.02,0.04 0.03,0.09 0.04,0.12 -1.58,0.24 -4.41,0.13 -6.89,0.02 7.37,-1.09 12.81,-5.44 16.32,-11.14ZM68.41,75.18c-1.17,2.03 -2.09,4.13 -2.79,6.26h-0.31l-1.37,-4.33c1.21,-0.85 2.39,-1.85 3.54,-2.98l0.93,1.05ZM65.69,82.62h0.54l6.08,6.85h-4.45s-2.17,-6.85 -2.17,-6.85ZM72.27,88.82l-5.73,-6.46c0.72,-2.33 1.74,-4.64 3.04,-6.89 0.07,0.07 0.16,0.14 0.26,0.22l0.26,0.29s0,0.02 0,0.02h0.01s0.04,0.05 0.07,0.06l1.93,0.94c0.12,0.06 0.24,0.12 0.37,0.19l0.06,0.03 0.33,0.16c0.38,0.19 0.81,0.4 1.27,0.63l0.6,0.29 0.67,0.32s0.08,0.03 0.12,0.05l0.22,0.11 1.75,0.86c-0.32,0.46 -0.62,0.94 -0.92,1.41 -0.08,0.13 -0.17,0.25 -0.25,0.38 -0.03,0.04 -0.05,0.08 -0.08,0.13 -0.13,0.21 -0.27,0.42 -0.39,0.64 -0.03,0.05 -0.06,0.09 -0.09,0.14 -0.18,0.31 -0.35,0.61 -0.52,0.92 -0.12,0.22 -0.23,0.44 -0.35,0.66 -0.13,0.26 -0.26,0.52 -0.39,0.77 -0.16,0.35 -0.33,0.69 -0.49,1.03 -0.12,0.28 -0.24,0.57 -0.36,0.85 -0.05,0.11 -0.1,0.21 -0.14,0.32 -0.01,0.02 -0.02,0.05 -0.03,0.07 0,0 0,0.02 -0.01,0.03 -0.03,0.09 -0.07,0.17 -0.1,0.26 -0.02,0.05 -0.04,0.11 -0.06,0.16 -0.09,0.24 -0.18,0.48 -0.27,0.72 -0.07,0.2 -0.14,0.41 -0.2,0.61 -0.06,0.18 -0.14,0.35 -0.19,0.53l-0.4,-0.45ZM55.61,96.13c-0.22,-2.19 -0.2,-4.47 0.08,-6.82l3.42,10.77 -3.5,-3.95ZM59.8,107.97l1.45,-1.12 1.46,4.6c-1.05,-1.13 -2.14,-2.35 -2.91,-3.48ZM87.71,125.57l-6.29,-7.08 1.09,-3.56c2.42,0.97 5.05,1.47 7.99,1.5 -0.31,1.04 -1.5,4.91 -2.23,7.33l-0.56,1.81ZM110.78,109.31c0.27,-0.19 0.53,-0.38 0.79,-0.58 0.89,1.32 2.49,3.67 3.63,5.36l-4.42,-4.78ZM127.14,103.09l-6.93,-3.37c0.56,-0.79 1.08,-1.6 1.57,-2.43 1.57,1.69 4.41,4.77 5.36,5.8ZM134.24,89.45h-9.24c-0.09,0 -0.17,0.06 -0.2,0.15 -1.02,3.37 -2.82,6.95 -5.06,10.08 -0.03,0.05 -0.04,0.11 -0.03,0.17 0.02,0.05 0.05,0.1 0.11,0.13l7.34,3.57c-2.93,4.13 -6.7,8.05 -10.91,11.36 -1.13,-1.66 -3.41,-5.02 -4.47,-6.58 -0.03,-0.05 -0.08,-0.08 -0.14,-0.09 -0.05,-0.01 -0.11,0.01 -0.15,0.04 -3.26,2.51 -6.69,4.44 -10.19,5.74 -0.08,0.03 -0.13,0.11 -0.13,0.2l0.91,8.67c-4.7,1.75 -9.39,2.66 -13.95,2.69l0.52,-1.71c0.83,-2.72 2.23,-7.29 2.31,-7.58 0.02,-0.06 0.01,-0.13 -0.03,-0.18 -0.04,-0.05 -0.1,-0.08 -0.16,-0.08 -3.47,0 -6.51,-0.66 -9.27,-1.99 -0.03,0 -0.06,-0.02 -0.09,-0.02 -0.06,0 -0.12,0.03 -0.16,0.09l-3.86,5.39 -3.28,-10.34c0.26,-0.21 0.5,-0.39 0.68,-0.53 0.03,-0.02 0.04,-0.05 0.05,-0.07 0,-0.01 0.01,-0.01 0,-0.02 0.05,-0.07 0.06,-0.15 0.01,-0.22 -1.65,-2.48 -2.6,-5.23 -2.9,-8.41 0,-0.04 -0.02,-0.09 -0.06,-0.12l-0.1,-0.11c-0.06,-0.05 -0.14,-0.07 -0.21,-0.04l-0.44,0.16 -3.15,-9.91h4.77c0.09,0 0.17,-0.06 0.19,-0.14 0.13,-0.43 0.27,-0.86 0.42,-1.29 0.26,-0.73 0.54,-1.46 0.86,-2.19 0,-0.03 0.03,-0.06 0.04,-0.09 0.12,-0.27 0.24,-0.54 0.37,-0.81 0.01,-0.03 0.03,-0.06 0.04,-0.09 0.02,-0.05 0.05,-0.1 0.07,-0.15 0.02,-0.05 0.04,-0.09 0.07,-0.14 0.02,-0.04 0.04,-0.08 0.06,-0.12 0.14,-0.29 0.29,-0.58 0.44,-0.86 0.19,-0.37 0.39,-0.74 0.6,-1.1 0.63,-1.09 1.32,-2.17 2.07,-3.23 0.04,-0.05 0.05,-0.11 0.03,-0.17 0,-0.02 -0.02,-0.02 -0.03,-0.04 -0.02,-0.03 -0.03,-0.07 -0.06,-0.09 -0.12,-0.07 -0.54,-0.27 -1.32,-0.64l-0.14,-0.07 -0.78,-0.37 -2.58,-1.25 -0.3,-0.15c-0.83,-0.42 -1.62,-0.83 -2.18,-1.17 0.73,-1.01 1.49,-2 2.27,-2.95 0.07,-0.1 0.15,-0.19 0.24,-0.28 0.38,-0.46 0.77,-0.91 1.17,-1.35 0.88,-0.98 1.8,-1.93 2.74,-2.85 0.58,-0.56 1.17,-1.11 1.78,-1.64 0.4,-0.37 0.82,-0.73 1.24,-1.07 0.33,-0.28 0.67,-0.55 1.01,-0.82 0.09,-0.07 0.18,-0.15 0.27,-0.22 0.03,-0.03 0.07,-0.07 0.12,-0.09h0.01c0.14,0.19 0.29,0.41 0.45,0.63l0.1,0.15 0.16,0.23 0.51,0.73 0.3,0.44c0.11,0.14 0.21,0.29 0.31,0.44 0.03,0.04 0.05,0.08 0.08,0.12 0.06,0.08 0.12,0.17 0.18,0.26 0.04,0.06 0.08,0.11 0.11,0.17 0.08,0.11 0.15,0.22 0.22,0.32 0.13,0.19 0.25,0.37 0.37,0.55 0.05,0.08 0.1,0.15 0.15,0.22 0.09,0.14 0.18,0.27 0.26,0.39l0.14,0.21s0.05,0.07 0.08,0.11c0.01,0.03 0.04,0.06 0.06,0.09 0.03,0.05 0.06,0.1 0.1,0.15 0.02,0.03 0.05,0.08 0.07,0.11 0.06,0.09 0.12,0.17 0.17,0.25l0.28,0.42 0.32,0.47 0.06,0.1s0.08,0.08 0.13,0.08h0.04s0.05,0 0.07,0c0.02,0 0.03,-0.01 0.05,-0.02 0.04,-0.03 0.07,-0.05 0.1,-0.08 0,0 0.02,-0.01 0.02,-0.02 0.74,-0.57 1.5,-1.11 2.26,-1.62 0.02,0 0.03,-0.02 0.05,-0.03 0.02,-0.01 0.04,-0.03 0.06,-0.04 0.73,-0.48 1.48,-0.93 2.23,-1.36 0.01,-0.01 0.03,-0.02 0.05,-0.03 0.17,-0.1 0.34,-0.19 0.51,-0.28 0.66,-0.36 1.32,-0.7 1.99,-1.02 0.14,-0.06 0.29,-0.13 0.43,-0.2 0.69,-0.32 1.4,-0.61 2.1,-0.88 0.13,-0.05 0.25,-0.1 0.38,-0.15 0.01,-0.01 0.03,-0.01 0.04,-0.03 0.02,-0.01 0.04,-0.02 0.05,-0.05 0.02,-0.02 0.02,-0.04 0.02,-0.05s0,-0.01 0.02,-0.02h-0.01s0.01,-0.02 0.01,-0.03v-0.08s-0.89,-8.63 -0.89,-8.63c4.13,-1.53 8.33,-2.43 12.26,-2.65h0.01c0.54,-0.03 1.07,-0.04 1.6,-0.05h0.07c-0.44,1.45 -1.16,3.81 -1.79,5.92 -0.09,0.3 -0.18,0.59 -0.27,0.88 -0.03,0.09 -0.05,0.17 -0.08,0.26l-0.35,1.14 -0.06,0.21c-0.05,0.16 -0.1,0.31 -0.14,0.46 -0.02,0.08 -0.05,0.16 -0.07,0.23 -0.03,0.07 -0.05,0.14 -0.07,0.21 -0.02,0.06 -0.01,0.13 0.03,0.18h0.01s0.05,0.03 0.08,0.04c0.02,0.01 0.04,0.04 0.07,0.04h0.04c0.41,0 0.81,0 1.21,0.03 0.15,0.01 0.29,0.02 0.43,0.03 0.25,0 0.49,0.03 0.73,0.06 0.33,0.04 0.65,0.07 0.97,0.12 0.35,0.05 0.68,0.1 1.02,0.17h0.01s0.07,0.01 0.1,0.02c0.02,0.01 0.05,0.01 0.07,0.01 0.06,0 0.12,0.02 0.17,0.03t0.02,0.01s0.04,0 0.05,0.01c0.05,0.01 0.1,0.01 0.15,0.03 0.05,0.01 0.1,0.02 0.15,0.04 0.09,0.02 0.18,0.04 0.27,0.06 0.04,0 0.08,0.02 0.13,0.03 0.03,0.01 0.06,0.02 0.09,0.03 0.03,0 0.06,0.01 0.09,0.02h0.02s0.02,0 0.02,0.01c0.06,0.01 0.11,0.01 0.15,0.04 0.02,0 0.04,0 0.06,0.02 0.07,0.02 0.14,0.04 0.21,0.05 0.04,0.02 0.08,0.03 0.13,0.04 0.01,0 0.03,0.01 0.04,0.01 0.02,0 0.03,0.02 0.05,0.02 0,0 0.02,0.01 0.03,0.01h0.01s0.01,0 0.02,0.01h0.03s0.01,0.01 0.02,0.01 0.02,0 0.02,0.01c0.02,0 0.04,0.01 0.06,0.02 0.14,0.03 0.28,0.08 0.42,0.12 0.02,0.01 0.05,0.02 0.07,0.03 0.03,0 0.05,0.01 0.07,0.02 0.03,0 0.05,0 0.07,0.02 0,0.01 0.02,0.01 0.04,0.01 0,0.01 0.01,0.01 0.02,0.02 0.02,0 0.04,0.01 0.05,0.01 0.34,0.12 0.67,0.24 0.99,0.38 0.01,0 0.02,0 0.03,0 0.27,0.11 0.53,0.23 0.8,0.35 0.04,0.02 0.09,0.04 0.14,0.06 0.02,0.02 0.06,0.02 0.09,0.02 0.09,0 0.16,-0.05 0.19,-0.13h0c1.38,-1.93 4.69,-6.57 6.18,-8.63 0.46,0.22 0.91,0.46 1.35,0.71 0.39,0.23 0.78,0.47 1.16,0.71 0.05,0.04 0.1,0.07 0.15,0.1 1.17,0.78 2.25,1.65 3.24,2.6 0.06,0.05 0.12,0.1 0.17,0.16 1.02,0.99 1.93,2.07 2.73,3.23l-8.56,6.65c-0.09,0.06 -0.11,0.18 -0.05,0.27 1.66,2.46 2.67,5.33 3,8.51 0.01,0.06 0.04,0.12 0.09,0.15 0.05,0.03 0.12,0.04 0.18,0.02 1.71,-0.64 6.65,-2.48 9.08,-3.39l0.48,-0.18c0.41,4.23 -0.08,8.71 -1.48,13.33Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable-night/ic_manual_server.xml"
line="239"
column="27"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (3830 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M116.59,84.32c0.01,-3.59 -1.49,-6.8 -3.98,-8.94 -0.09,-0.08 -0.17,-0.15 -0.26,-0.23 -0.08,-0.06 -0.16,-0.12 -0.24,-0.18 -0.31,-0.24 -0.65,-0.47 -1,-0.68 -0.11,-0.06 -0.21,-0.13 -0.32,-0.19 -0.17,-0.09 -0.34,-0.18 -0.51,-0.27 -0.3,-0.15 -0.6,-0.28 -0.92,-0.4h-0.03s-0.03,-0.01 -0.05,-0.02c-6.08,-2.51 -13.72,-0.56 -19.96,5.09 -6.51,5.9 -9.48,13.78 -7.56,20.14 0,0.03 0,0.05 0.02,0.07 0,0 0,0 0,0 0.1,0.24 0.22,0.47 0.33,0.7 1.68,3.7 4.32,6.09 7.72,7.04 0.03,0 0.05,0.01 0.08,0.02 0.27,0.07 0.54,0.16 0.82,0.22 0.27,0.06 0.54,0.11 0.82,0.15 0.02,0 0.05,0 0.07,0 0.64,0.09 1.3,0.14 1.98,0.14 1.34,0 2.76,-0.18 4.23,-0.56 2.16,-0.55 4.37,-1.51 6.48,-2.79 0.09,-0.05 0.18,-0.1 0.27,-0.15 0.08,-0.05 0.16,-0.1 0.24,-0.15 0.04,-0.03 0.09,-0.06 0.13,-0.08 4.71,-2.92 8.65,-7.24 10.35,-11.67 0.01,-0.03 0.02,-0.06 0.04,-0.09 0.01,-0.03 0.02,-0.06 0.03,-0.1 0.95,-2.29 1.41,-4.66 1.21,-7 0.01,-0.03 0.02,-0.06 0.02,-0.09ZM103.04,103.94c-2.45,1.3 -5.05,2.2 -7.62,2.51 -1.01,0.13 -1.99,0.16 -2.91,0.1 -0.08,0 -0.15,-0.02 -0.23,-0.02 -0.18,-0.02 -0.35,-0.03 -0.53,-0.05 -0.27,-0.03 -0.52,-0.1 -0.78,-0.14 -3.73,-0.77 -6.71,-3.23 -8.58,-7.21 -0.02,-0.04 -0.04,-0.08 -0.06,-0.12 4.72,1.66 10.29,0.99 14.98,-1.83 0.6,-0.36 1.21,-0.75 1.81,-1.18 6.25,-4.47 12.7,-12.89 10.48,-22.02 0,0 0,0 0,0 5.76,2.42 7.46,9.13 6.09,14.36v0.1c-0.13,0.99 -0.4,1.98 -0.77,2.97 0,0 0,0.02 -0.01,0.02 -2.17,5.09 -6.81,9.74 -11.89,12.5ZM108.84,78.25c-0.02,0.32 -0.05,0.71 -0.11,1.26 -0.03,0.2 -0.05,0.41 -0.1,0.64 -0.04,0.25 -0.09,0.46 -0.13,0.67 -0.01,0.06 -0.02,0.11 -0.03,0.16 -0.02,0.07 -0.04,0.15 -0.05,0.22 0,0.03 -0.02,0.06 -0.02,0.09l-0.02,0.08s-0.01,0.04 -0.02,0.07c-0.01,0.04 -0.03,0.1 -0.05,0.16 -0.02,0.08 -0.05,0.15 -0.07,0.23 -0.06,0.27 -0.16,0.55 -0.25,0.84 -0.2,0.62 -0.41,1.18 -0.65,1.71 -0.11,0.27 -0.24,0.57 -0.38,0.85 -0.15,0.31 -0.27,0.55 -0.4,0.77 -0.02,0.04 -0.04,0.07 -0.06,0.12 -0.03,0.04 -0.05,0.09 -0.07,0.13 -0.07,0.16 -0.17,0.32 -0.28,0.51 -0.22,0.37 -0.43,0.73 -0.66,1.07 -0.34,0.52 -0.73,1.05 -1.17,1.63 -0.2,0.25 -0.4,0.5 -0.6,0.74 -0.17,0.2 -0.32,0.38 -0.48,0.55 -0.3,0.34 -0.58,0.65 -0.89,0.95 -0.24,0.25 -0.46,0.48 -0.7,0.7 -0.24,0.23 -0.48,0.47 -0.74,0.68 -0.29,0.26 -0.55,0.49 -0.82,0.71 -0.6,0.49 -1.13,0.9 -1.64,1.27 -0.04,0.03 -0.08,0.06 -0.11,0.08 -0.08,0.06 -0.19,0.13 -0.27,0.18 -0.02,0.01 -0.03,0.03 -0.06,0.04 -0.12,0.08 -0.24,0.16 -0.35,0.24 -0.06,0.04 -0.14,0.08 -0.21,0.13 -0.03,0.03 -0.08,0.05 -0.12,0.07 -0.22,0.15 -0.4,0.25 -0.57,0.36 -0.02,0 -0.03,0.02 -0.04,0.02 -0.03,0.01 -0.02,0.01 -0.04,0.03 -0.11,0.07 -0.23,0.13 -0.34,0.19 -0.15,0.09 -0.3,0.16 -0.43,0.24 -0.02,0.01 -0.05,0.03 -0.07,0.04 -0.05,0.02 -0.08,0.04 -0.11,0.05 -0.02,0 -0.03,0.02 -0.05,0.03 -0.04,0.02 -0.12,0.04 -0.17,0.07 -0.27,0.15 -0.56,0.28 -0.83,0.42 -0.87,0.38 -1.72,0.69 -2.57,0.92 -0.7,0.2 -1.42,0.35 -2.13,0.43 -0.31,0.05 -0.61,0.08 -0.99,0.1h-0.27c-0.37,0.02 -0.74,0.04 -1.09,0.04s-0.69,-0.01 -1.03,-0.04c-0.52,-0.04 -1.04,-0.1 -1.55,-0.18 -0.17,-0.03 -0.32,-0.05 -0.47,-0.09 -0.39,-0.08 -0.68,-0.14 -0.93,-0.22 -0.02,0 -0.04,-0.01 -0.06,-0.02 -0.2,-0.05 -0.39,-0.11 -0.59,-0.17 -0.03,-0.01 -0.07,-0.02 -0.1,-0.03 -0.06,-0.01 -0.11,-0.04 -0.16,-0.06 -1.17,-4.44 0.23,-9.86 3.79,-14.64 0.07,-0.06 0.12,-0.14 0.16,-0.23h0.01c0.05,-0.07 0.11,-0.13 0.17,-0.2 0,-0.01 0.04,-0.05 0.05,-0.07 0.25,-0.33 0.56,-0.7 0.96,-1.15 0.01,-0.01 0.03,-0.03 0.04,-0.05l0.05,-0.07s0.03,-0.03 0.04,-0.05l0.1,-0.11s0.07,-0.09 0.1,-0.13c0.03,-0.02 0.05,-0.04 0.07,-0.06 0.2,-0.23 0.43,-0.48 0.69,-0.73 0.57,-0.58 1.05,-1.03 1.53,-1.43 0.72,-0.64 1.46,-1.23 2.27,-1.81 3.03,-2.19 6.48,-3.48 9.72,-3.64 0.3,-0.01 0.59,-0.02 0.88,-0.02 1.52,0 2.93,0.18 4.21,0.53 0.32,0.09 0.61,0.18 0.88,0.27 0.08,0.28 0.14,0.6 0.21,0.95 0,0.03 0,0.06 0.01,0.09 0.02,0.13 0.05,0.25 0.06,0.38 0,0.05 0.01,0.09 0.02,0.14 0,0.07 0,0.11 0.01,0.16 0.03,0.28 0.06,0.63 0.07,0.97v1.22Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/ic_manual_server.xml"
line="248"
column="27"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (17010 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M136.84,75.71c-0.02,-0.2 -0.11,-0.39 -0.23,-0.54l-6.44,-7.27c-0.18,-0.21 -0.45,-0.32 -0.72,-0.32 -0.12,0 -0.24,0.02 -0.34,0.06l-0.64,0.24 3.89,-3.03c0.4,-0.3 0.49,-0.87 0.2,-1.29 -0.72,-1.08 -1.55,-2.09 -2.44,-3.02 -0.02,-0.02 -0.03,-0.04 -0.05,-0.05l-5.17,-5.85c-0.3,-0.35 -0.63,-0.73 -0.96,-1.11l-0.22,-0.24c-0.16,-0.17 -0.3,-0.32 -0.47,-0.47 -0.26,-0.25 -0.5,-0.49 -0.75,-0.71 -0.09,-0.08 -0.2,-0.18 -0.29,-0.27 -0.19,-0.16 -0.38,-0.32 -0.56,-0.48l-0.11,-0.08c-0.08,-0.07 -0.15,-0.13 -0.24,-0.2 -0.19,-0.15 -0.4,-0.31 -0.63,-0.48 -0.23,-0.18 -0.49,-0.34 -0.73,-0.52l-0.14,-0.09c-0.14,-0.1 -0.27,-0.19 -0.41,-0.27 -0.23,-0.16 -0.49,-0.32 -0.76,-0.48 -0.28,-0.17 -0.62,-0.37 -0.97,-0.55 -0.32,-0.18 -0.68,-0.37 -1.05,-0.54 -0.13,-0.06 -0.27,-0.1 -0.41,-0.1 -0.31,0 -0.6,0.15 -0.8,0.41l-5.18,7.24 0.58,-1.89c0.03,-0.09 0.04,-0.19 0.04,-0.28 0,-0.23 -0.09,-0.47 -0.24,-0.65l-6.43,-7.25c-0.23,-0.28 -0.71,-0.29 -0.71,-0.29 -4.8,0 -9.77,0.96 -14.77,2.82 -0.42,0.15 -0.67,0.57 -0.62,1l0.82,8.1c-2.83,1.13 -5.58,2.62 -8.2,4.46l-4.61,-5.22c0.01,-0.11 0.03,-0.25 0.04,-0.39 0.03,-0.33 0.06,-0.69 0.07,-0.94 0.63,-10 -2.14,-18.95 -7.83,-25.22 -4.32,-4.75 -9.95,-7.5 -15.86,-7.72l-7,-0.26h-0.13c-0.08,0 -0.16,0 -0.24,0 -0.05,0 -0.1,-0.01 -0.17,-0.01 -0.22,0 -0.47,-0.01 -0.75,0.01 -0.38,0 -0.74,0 -1.1,0.04 -2.74,0.14 -5.46,0.83 -8.07,2.07 -3.18,1.49 -6.16,3.77 -8.84,6.77l-0.12,0.14c-0.34,0.4 -0.69,0.81 -1.04,1.24 -3.46,4.34 -5.59,10.01 -5.98,15.96 -0.34,5.4 0.29,10.48 1.9,15.08 0.14,0.39 0.3,0.83 0.5,1.33 0.61,1.54 1.33,3.02 2.15,4.37 0.22,0.37 0.46,0.74 0.71,1.12 0.1,0.15 0.19,0.31 0.3,0.46l0.08,0.11 0.1,0.14c0.23,0.31 0.45,0.62 0.69,0.93 0.42,0.55 0.82,1.04 1.24,1.51 2.48,2.76 5.38,4.86 8.62,6.2l0.19,0.09c0.27,0.11 0.54,0.21 0.79,0.3 0.32,0.12 0.7,0.26 1.16,0.39 0.35,0.11 0.74,0.22 1.15,0.32 0.08,0.02 0.17,0.05 0.28,0.07 0.09,0.02 0.17,0.04 0.25,0.06 0.14,0.02 0.24,0.05 0.35,0.06l0.09,0.02c0.26,0.05 0.51,0.11 0.76,0.15h0.08c0.49,0.06 1.04,0.12 1.65,0.18 0.2,0.01 0.38,0.02 0.57,0.03h0.05l0.27,0.02h0.07l7.17,0.26c0.27,0.01 0.55,0.02 0.83,0.02 0.69,0 1.39,-0.04 2.09,-0.11l1.73,5.47c-0.12,0.63 -0.23,1.34 -0.32,2.08v0.03c-0.02,0.06 -0.03,0.12 -0.04,0.18 -0.09,0.74 -0.15,1.49 -0.19,2.3 -0.01,0.15 -0.01,0.33 -0.01,0.49 -0.02,0.61 -0.03,1.15 -0.02,1.66 0,0.24 0,0.48 0.01,0.73 0.03,0.59 0.05,1.2 0.11,1.82v0.09c0,0.06 0.02,0.12 0.02,0.17 0.02,0.2 0.11,0.38 0.23,0.52l5.3,5.99 0.9,2.82 -1.96,1.52c-0.39,0.31 -0.49,0.88 -0.2,1.3 0.44,0.64 0.85,1.19 1.27,1.68l0.04,0.06c0.08,0.12 0.17,0.23 0.27,0.34 0.35,0.41 0.69,0.79 1.02,1.11l2.22,2.4 6.02,18.99c0.02,0.07 0.06,0.14 0.09,0.2l0.06,0.1c0.07,0.11 0.16,0.21 0.26,0.27l0.11,0.08s0.11,0.07 0.15,0.1l0.15,0.06c0.05,0.03 0.11,0.05 0.16,0.06l0.19,0.05s0.1,0.02 0.13,0.03h0.11l0.14,0.03h0.75l0.34,-0.03c0.06,0 0.13,-0.01 0.2,-0.02 0.05,0 0.11,0 0.17,-0.02h0.07l0.19,-0.03 0.2,-0.03c0.16,-0.03 0.25,-0.04 0.35,-0.05h0.06s0.07,-0.02 0.1,-0.03c0.13,-0.03 0.26,-0.06 0.38,-0.09 0.09,-0.02 0.19,-0.04 0.28,-0.06 0.06,0 0.12,-0.03 0.17,-0.04 0.13,-0.02 0.22,-0.05 0.31,-0.08 0.06,-0.02 0.12,-0.04 0.19,-0.06l0.1,-0.03c0.13,-0.04 0.27,-0.07 0.4,-0.11 0.16,-0.05 0.3,-0.1 0.46,-0.15 0.16,-0.06 0.31,-0.09 0.45,-0.14 0.02,0 0.04,-0.01 0.06,-0.02l0.44,-0.17 0.43,-0.16 0.45,-0.19 0.4,-0.18s0.03,-0.01 0.05,-0.01l0.7,-0.35 0.35,-0.19s0.04,-0.03 0.05,-0.04l0.27,-0.18 0.25,-0.18s0.06,-0.05 0.08,-0.07l0.19,-0.16 0.04,-0.04 0.15,-0.15s0.07,-0.08 0.11,-0.13l0.1,-0.13c0.03,-0.06 0.07,-0.12 0.1,-0.19l0.06,-0.13c0.04,-0.09 0.07,-0.18 0.08,-0.28v-0.09s0.02,-0.07 0.02,-0.1c0,-0.09 -0.01,-0.19 -0.04,-0.27l-0.03,-0.11s-0.03,-0.09 -0.05,-0.13l-2.72,-8.56 3.23,-4.51 -0.57,1.86c-0.09,0.31 -0.02,0.66 0.21,0.91l6.43,7.26c0.18,0.21 0.45,0.32 0.73,0.32h0.07c4.78,0 9.73,-0.95 14.7,-2.81 0.41,-0.16 0.67,-0.57 0.62,-1.01l-0.83,-8.08c1.21,-0.48 2.47,-1.06 3.72,-1.72 0.15,-0.07 0.29,-0.15 0.42,-0.22 0.46,-0.23 0.98,-0.53 1.51,-0.86 0.12,-0.07 0.22,-0.13 0.33,-0.19l0.28,-0.18c0.22,-0.13 0.45,-0.27 0.66,-0.42 0.21,-0.14 0.42,-0.28 0.64,-0.43 0.16,-0.12 0.34,-0.23 0.52,-0.36l4.98,5.39s0.03,0.03 0.04,0.04c0.19,0.18 0.44,0.28 0.69,0.28 0.21,0 0.42,-0.07 0.6,-0.21 0.09,-0.07 0.17,-0.14 0.26,-0.21 3.23,-2.54 6.15,-5.39 8.72,-8.5 0.63,-0.74 1.26,-1.54 1.97,-2.53 0.13,-0.16 0.25,-0.35 0.39,-0.53l0.11,-0.15c0.26,-0.36 0.22,-0.86 -0.09,-1.2 0,0 -3.38,-3.64 -5.35,-5.78 1.19,-2.08 2.15,-4.23 2.87,-6.41h8.69c0.43,0 0.8,-0.29 0.93,-0.7 1.5,-4.88 2.02,-9.66 1.55,-14.18ZM129.46,68.57l6.31,7.11 -0.67,0.24c-2.32,0.87 -6.95,2.59 -8.84,3.3 -0.36,-3.08 -1.34,-5.86 -2.93,-8.28l0.2,-0.16h0.01l5.92,-2.21ZM126.86,58.6s0.07,0.09 0.11,0.13c-1.3,-1 -2.72,-1.87 -4.21,-2.58l-5.77,-6.52c3.76,1.9 6.99,5.64 9.87,8.97ZM109.94,57.82l6.15,-8.59 6.3,7.1c-1.44,2.01 -4.65,6.48 -6.09,8.49 -0.27,-0.28 -0.77,-0.87 -1.34,-1.54 -2.33,-2.71 -3.96,-4.54 -5.02,-5.45h0ZM115.54,64.57c-0.07,-0.03 -0.14,-0.04 -0.21,-0.07 -0.04,-0.02 -0.07,-0.04 -0.11,-0.05 -0.35,-0.14 -0.71,-0.27 -1.07,-0.39 -0.06,-0.02 -0.12,-0.03 -0.18,-0.05 -0.34,-0.11 -0.69,-0.21 -1.04,-0.3 -0.26,-0.07 -0.53,-0.14 -0.8,-0.2 -0.34,-0.08 -0.68,-0.15 -1.02,-0.21 -0.1,-0.02 -0.2,-0.04 -0.3,-0.06 -0.39,-0.06 -0.78,-0.11 -1.17,-0.16 -0.03,0 -0.06,0 -0.08,-0.01 -0.12,-0.01 -0.23,-0.02 -0.35,-0.03 -0.25,-0.02 -0.5,-0.04 -0.76,-0.06 -0.4,-0.02 -0.8,-0.03 -1.2,-0.04l1.64,-5.38c0.83,0.22 4.26,4.23 5.76,5.98 0.36,0.42 0.65,0.76 0.89,1.03ZM103.36,46.49l6.09,6.88c-0.47,0 -0.94,0.02 -1.42,0.05h-0.03c-4.03,0.21 -8.3,1.12 -12.49,2.66l-6.15,-6.94c4.75,-1.74 9.46,-2.63 14,-2.65ZM95.25,56.4l0.85,8.16 -6.02,-6.8s-0.11,-0.06 -0.17,-0.05h0s-0.84,-8.29 -0.84,-8.29l6.18,6.98ZM89.87,58.13l6.15,6.95c-0.15,0.06 -0.3,0.13 -0.46,0.19 -0.24,0.1 -0.49,0.19 -0.73,0.29 -0.03,0.02 -0.06,0.03 -0.1,0.04 -0.18,0.08 -0.36,0.17 -0.54,0.25 -0.51,0.23 -1.02,0.48 -1.53,0.73 -0.3,0.15 -0.6,0.3 -0.89,0.46 -0.5,0.26 -0.99,0.54 -1.48,0.83 -0.18,0.1 -0.36,0.19 -0.53,0.29t-0.02,0.01c-0.34,0.21 -0.69,0.43 -1.03,0.65 -0.04,0.03 -0.08,0.05 -0.12,0.08 -0.06,0.04 -0.11,0.08 -0.17,0.12 -0.11,0.07 -0.22,0.15 -0.33,0.22 -0.07,0.04 -0.13,0.09 -0.2,0.13 -0.07,0.05 -0.13,0.09 -0.2,0.14 -0.13,0.09 -0.27,0.19 -0.4,0.29 -0.37,0.25 -0.72,0.52 -1.08,0.79 -0.01,0 -0.02,0 -0.03,0.02 -0.19,-0.27 -0.51,-0.74 -0.89,-1.32 -0.91,-1.35 -1.82,-2.69 -2.59,-3.8l-0.04,-0.06 -0.29,-0.41 -0.27,-0.39 -0.39,-0.59s-0.03,-0.04 -0.05,-0.05c-0.05,-0.06 -0.14,-0.16 -0.25,-0.28 -0.21,-0.28 -0.41,-0.52 -0.55,-0.67 2.84,-2.07 5.87,-3.72 9.01,-4.91ZM81.15,64.02s0.05,0.07 0.08,0.11c-4.2,3.28 -7.88,7.11 -10.96,11.38 -0.04,-0.03 -0.09,-0.06 -0.13,-0.09l-2.42,-2.74 -3.63,-4.1c2.08,-2.9 4.46,-5.61 7.09,-8.08 0.28,-0.26 0.55,-0.52 0.83,-0.77 0.07,-0.07 0.15,-0.13 0.22,-0.19 0.92,-0.83 1.87,-1.62 2.85,-2.39l0.19,0.22 0.3,0.34c1.43,1.62 4.62,5.23 5.58,6.31ZM71.27,100.21c0.07,-0.03 0.14,-0.06 0.2,-0.08 0.05,0.47 0.12,0.93 0.21,1.39l-0.41,-1.31ZM73.16,106.16c0.1,0.24 0.22,0.47 0.35,0.7l-0.2,-0.21 -0.15,-0.49ZM73.6,107.55l0.8,0.87c-0.12,0.1 -0.27,0.21 -0.42,0.33l-0.38,-1.2ZM71.14,132.85c-0.21,-0.02 -0.37,-0.07 -0.48,-0.15 0.02,-0.07 0.06,-0.15 0.14,-0.24 0.53,-0.66 2.53,-1.62 4.79,-2.23 2.28,-0.62 3.56,-0.56 3.82,-0.23 -0.01,0.03 -0.03,0.05 -0.05,0.08 -0.03,0.05 -0.07,0.1 -0.11,0.14 -0.33,0.39 -1.09,0.85 -2.08,1.28 -0.2,0.09 -0.4,0.18 -0.62,0.26 -0.1,0.04 -0.2,0.07 -0.3,0.11 -0.1,0.03 -0.21,0.07 -0.31,0.11 -0.11,0.03 -0.22,0.06 -0.32,0.1 -0.04,0.01 -0.09,0.03 -0.14,0.04 -0.57,0.17 -1.14,0.32 -1.72,0.44 -0.85,0.19 -1.69,0.34 -2.57,0.3 -0.02,0.01 -0.03,0 -0.05,-0.01ZM75.48,129.85c-1.67,0.45 -4.68,1.48 -5.13,2.6 -0.95,-2.24 -2.8,-9.11 -5.16,-16.62 -0.23,-0.7 -0.45,-1.41 -0.68,-2.15t-0.01,-0.02c-0.79,-2.54 -1.61,-5.16 -2.4,-7.73 -0.01,-0.04 -0.03,-0.08 -0.04,-0.11 -0.09,-0.3 -0.18,-0.6 -0.28,-0.89 -0.05,-0.18 -0.1,-0.35 -0.15,-0.52 -0.19,-0.61 -0.38,-1.21 -0.56,-1.81 -0.02,-0.06 -0.04,-0.11 -0.06,-0.17 -0.61,-2 -1.2,-3.93 -1.76,-5.75 -0.04,-0.12 -0.07,-0.23 -0.1,-0.34 -1.37,-4.42 -2.39,-7.74 -3.17,-10.23 -0.21,-0.67 -0.4,-1.29 -0.58,-1.85 -1.06,-3.38 -1.5,-4.69 -1.71,-5.11 0.13,-0.3 0.49,-0.63 1.04,-0.98 0.09,-0.06 0.19,-0.11 0.3,-0.17 0.16,-0.08 0.33,-0.17 0.51,-0.26 0.17,-0.08 0.36,-0.16 0.54,-0.25 0.03,0 0.06,-0.01 0.08,-0.03 0.36,-0.16 0.74,-0.3 1.13,-0.43 0.14,-0.05 0.29,-0.1 0.43,-0.14 1.33,-0.41 2.71,-0.68 3.66,-0.72h0.09c0.38,0.01 0.68,0.07 0.87,0.19 0.23,0.53 0.86,2.38 1.74,5.08 0.04,0.12 0.08,0.25 0.12,0.38 0.05,0.13 0.09,0.26 0.13,0.4 0.02,0.06 0.05,0.13 0.07,0.2l0.07,0.2s1.79,5.25 2.25,6.56l0.1,0.3h0s0.13,0.4 0.13,0.4h0s3.26,10.27 3.26,10.27v0.03s0.12,0.35 0.12,0.35v0.02s1.4,4.39 1.4,4.39l0.28,0.89 1.13,3.57h0s0.13,0.41 0.13,0.41l3.4,10.7 0.07,0.22 0.08,0.25 0.27,0.87 2.46,7.76c-0.82,-0.55 -3.06,-0.04 -4.07,0.24ZM27.44,72.57c-0.41,-0.46 -0.81,-0.95 -1.19,-1.45 -0.26,-0.34 -0.5,-0.67 -0.75,-1.02 -0.13,-0.18 -0.25,-0.36 -0.36,-0.54 -0.24,-0.36 -0.47,-0.73 -0.7,-1.1 -0.79,-1.31 -1.49,-2.72 -2.08,-4.22 -0.17,-0.43 -0.33,-0.87 -0.48,-1.3 -1.5,-4.28 -2.21,-9.23 -1.85,-14.71 0.38,-5.75 2.43,-11.23 5.78,-15.42 0.38,-0.46 0.75,-0.91 1.12,-1.34 2.67,-2.99 5.56,-5.15 8.54,-6.54 2.53,-1.21 5.14,-1.85 7.71,-1.98 0.35,-0.02 0.69,-0.03 1.03,-0.03 0.25,0 0.49,0 0.73,0.01h0.08c0.26,0.01 0.51,0.03 0.76,0.05 -0.03,0 -0.08,-0.01 -0.12,-0.02l0.61,0.02c0.69,0.07 1.42,0.2 2.25,0.37 14.96,3.67 20.14,19.33 18.63,32.11 -0.51,4.27 -1.82,8.57 -3.94,12.36 -0.06,0.07 -0.27,0.4 -0.3,0.51 -3.96,6.75 -10.56,11.77 -19.82,11.81 -0.01,0 -0.03,0 -0.04,0.01h-0.02s-0.02,0 -0.03,0.02l-0.21,-0.02c-0.2,-0.01 -0.4,-0.01 -0.6,-0.03 -0.55,-0.05 -1.1,-0.11 -1.64,-0.19h0c-0.29,-0.04 -0.57,-0.1 -0.86,-0.16 -0.09,-0.01 -0.18,-0.03 -0.27,-0.05 -0.18,-0.05 -0.36,-0.08 -0.55,-0.13 -0.36,-0.09 -0.73,-0.19 -1.09,-0.3 -0.38,-0.12 -0.76,-0.24 -1.12,-0.39 -0.25,-0.08 -0.49,-0.18 -0.73,-0.27 -0.07,-0.03 -0.13,-0.06 -0.2,-0.09 -3.06,-1.28 -5.89,-3.3 -8.28,-5.97ZM49.05,23.08l3.39,0.12c0.48,0.02 0.96,0.05 1.44,0.12 4.94,0.99 9.33,3.3 12.78,6.61 5.96,5.74 8.85,14.45 8.34,25.19 -0.02,0.22 -0.04,0.51 -0.06,0.79 -0.15,0.03 -0.29,0.1 -0.43,0.2 -1.9,1.48 -3.74,3.1 -5.47,4.83 -0.48,0.48 -0.98,1.01 -1.5,1.57 -1.04,1.12 -2.05,2.31 -3.01,3.55 1.59,-3.32 2.59,-6.94 3.02,-10.56 1.52,-12.81 -3.64,-28.51 -18.5,-32.42ZM62.96,68.96c0.03,0.09 0.09,0.18 0.16,0.26l3.59,4.04c-1.24,1.22 -2.52,2.28 -3.81,3.16 0,-0.02 -0.09,-0.16 -0.1,-0.17 -0.04,-0.06 -0.09,-0.11 -0.14,-0.16 -0.11,-0.09 -0.25,-0.15 -0.38,-0.2 -0.05,-0.01 -0.1,-0.03 -0.16,-0.04 -0.15,-0.04 -0.31,-0.05 -0.48,-0.07 -0.15,-0.01 -0.3,0 -0.47,0 -0.82,0.02 -1.84,0.21 -2.87,0.51 -0.17,0.05 -0.35,0.1 -0.52,0.15 -0.2,0.06 -0.4,0.12 -0.59,0.19 -0.18,0.06 -0.36,0.13 -0.53,0.19 -0.25,0.1 -0.49,0.19 -0.72,0.29 -0.4,0.17 -0.77,0.35 -1.1,0.52 -0.15,0.08 -0.29,0.16 -0.41,0.24 -0.08,0.05 -0.16,0.09 -0.23,0.15 -0.63,0.4 -0.95,0.78 -0.96,1.11 0,0.04 0.01,0.09 0.03,0.12 0.04,0.09 0.16,0.48 0.22,0.7 0.02,0.04 0.03,0.09 0.04,0.12 -1.58,0.24 -4.41,0.13 -6.89,0.02 7.37,-1.09 12.81,-5.44 16.32,-11.14ZM68.41,75.18c-1.17,2.03 -2.09,4.13 -2.79,6.26h-0.31l-1.37,-4.33c1.21,-0.85 2.39,-1.85 3.54,-2.98l0.93,1.05ZM65.69,82.62h0.54l6.08,6.85h-4.45s-2.17,-6.85 -2.17,-6.85ZM72.27,88.82l-5.73,-6.46c0.72,-2.33 1.74,-4.64 3.04,-6.89 0.07,0.07 0.16,0.14 0.26,0.22l0.26,0.29s0,0.02 0,0.02h0.01s0.04,0.05 0.07,0.06l1.93,0.94c0.12,0.06 0.24,0.12 0.37,0.19l0.06,0.03 0.33,0.16c0.38,0.19 0.81,0.4 1.27,0.63l0.6,0.29 0.67,0.32s0.08,0.03 0.12,0.05l0.22,0.11 1.75,0.86c-0.32,0.46 -0.62,0.94 -0.92,1.41 -0.08,0.13 -0.17,0.25 -0.25,0.38 -0.03,0.04 -0.05,0.08 -0.08,0.13 -0.13,0.21 -0.27,0.42 -0.39,0.64 -0.03,0.05 -0.06,0.09 -0.09,0.14 -0.18,0.31 -0.35,0.61 -0.52,0.92 -0.12,0.22 -0.23,0.44 -0.35,0.66 -0.13,0.26 -0.26,0.52 -0.39,0.77 -0.16,0.35 -0.33,0.69 -0.49,1.03 -0.12,0.28 -0.24,0.57 -0.36,0.85 -0.05,0.11 -0.1,0.21 -0.14,0.32 -0.01,0.02 -0.02,0.05 -0.03,0.07 0,0 0,0.02 -0.01,0.03 -0.03,0.09 -0.07,0.17 -0.1,0.26 -0.02,0.05 -0.04,0.11 -0.06,0.16 -0.09,0.24 -0.18,0.48 -0.27,0.72 -0.07,0.2 -0.14,0.41 -0.2,0.61 -0.06,0.18 -0.14,0.35 -0.19,0.53l-0.4,-0.45ZM55.61,96.13c-0.22,-2.19 -0.2,-4.47 0.08,-6.82l3.42,10.77 -3.5,-3.95ZM59.8,107.97l1.45,-1.12 1.46,4.6c-1.05,-1.13 -2.14,-2.35 -2.91,-3.48ZM87.71,125.57l-6.29,-7.08 1.09,-3.56c2.42,0.97 5.05,1.47 7.99,1.5 -0.31,1.04 -1.5,4.91 -2.23,7.33l-0.56,1.81ZM110.78,109.31c0.27,-0.19 0.53,-0.38 0.79,-0.58 0.89,1.32 2.49,3.67 3.63,5.36l-4.42,-4.78ZM127.14,103.09l-6.93,-3.37c0.56,-0.79 1.08,-1.6 1.57,-2.43 1.57,1.69 4.41,4.77 5.36,5.8ZM134.24,89.45h-9.24c-0.09,0 -0.17,0.06 -0.2,0.15 -1.02,3.37 -2.82,6.95 -5.06,10.08 -0.03,0.05 -0.04,0.11 -0.03,0.17 0.02,0.05 0.05,0.1 0.11,0.13l7.34,3.57c-2.93,4.13 -6.7,8.05 -10.91,11.36 -1.13,-1.66 -3.41,-5.02 -4.47,-6.58 -0.03,-0.05 -0.08,-0.08 -0.14,-0.09 -0.05,-0.01 -0.11,0.01 -0.15,0.04 -3.26,2.51 -6.69,4.44 -10.19,5.74 -0.08,0.03 -0.13,0.11 -0.13,0.2l0.91,8.67c-4.7,1.75 -9.39,2.66 -13.95,2.69l0.52,-1.71c0.83,-2.72 2.23,-7.29 2.31,-7.58 0.02,-0.06 0.01,-0.13 -0.03,-0.18 -0.04,-0.05 -0.1,-0.08 -0.16,-0.08 -3.47,0 -6.51,-0.66 -9.27,-1.99 -0.03,0 -0.06,-0.02 -0.09,-0.02 -0.06,0 -0.12,0.03 -0.16,0.09l-3.86,5.39 -3.28,-10.34c0.26,-0.21 0.5,-0.39 0.68,-0.53 0.03,-0.02 0.04,-0.05 0.05,-0.07 0,-0.01 0.01,-0.01 0,-0.02 0.05,-0.07 0.06,-0.15 0.01,-0.22 -1.65,-2.48 -2.6,-5.23 -2.9,-8.41 0,-0.04 -0.02,-0.09 -0.06,-0.12l-0.1,-0.11c-0.06,-0.05 -0.14,-0.07 -0.21,-0.04l-0.44,0.16 -3.15,-9.91h4.77c0.09,0 0.17,-0.06 0.19,-0.14 0.13,-0.43 0.27,-0.86 0.42,-1.29 0.26,-0.73 0.54,-1.46 0.86,-2.19 0,-0.03 0.03,-0.06 0.04,-0.09 0.12,-0.27 0.24,-0.54 0.37,-0.81 0.01,-0.03 0.03,-0.06 0.04,-0.09 0.02,-0.05 0.05,-0.1 0.07,-0.15 0.02,-0.05 0.04,-0.09 0.07,-0.14 0.02,-0.04 0.04,-0.08 0.06,-0.12 0.14,-0.29 0.29,-0.58 0.44,-0.86 0.19,-0.37 0.39,-0.74 0.6,-1.1 0.63,-1.09 1.32,-2.17 2.07,-3.23 0.04,-0.05 0.05,-0.11 0.03,-0.17 0,-0.02 -0.02,-0.02 -0.03,-0.04 -0.02,-0.03 -0.03,-0.07 -0.06,-0.09 -0.12,-0.07 -0.54,-0.27 -1.32,-0.64l-0.14,-0.07 -0.78,-0.37 -2.58,-1.25 -0.3,-0.15c-0.83,-0.42 -1.62,-0.83 -2.18,-1.17 0.73,-1.01 1.49,-2 2.27,-2.95 0.07,-0.1 0.15,-0.19 0.24,-0.28 0.38,-0.46 0.77,-0.91 1.17,-1.35 0.88,-0.98 1.8,-1.93 2.74,-2.85 0.58,-0.56 1.17,-1.11 1.78,-1.64 0.4,-0.37 0.82,-0.73 1.24,-1.07 0.33,-0.28 0.67,-0.55 1.01,-0.82 0.09,-0.07 0.18,-0.15 0.27,-0.22 0.03,-0.03 0.07,-0.07 0.12,-0.09h0.01c0.14,0.19 0.29,0.41 0.45,0.63l0.1,0.15 0.16,0.23 0.51,0.73 0.3,0.44c0.11,0.14 0.21,0.29 0.31,0.44 0.03,0.04 0.05,0.08 0.08,0.12 0.06,0.08 0.12,0.17 0.18,0.26 0.04,0.06 0.08,0.11 0.11,0.17 0.08,0.11 0.15,0.22 0.22,0.32 0.13,0.19 0.25,0.37 0.37,0.55 0.05,0.08 0.1,0.15 0.15,0.22 0.09,0.14 0.18,0.27 0.26,0.39l0.14,0.21s0.05,0.07 0.08,0.11c0.01,0.03 0.04,0.06 0.06,0.09 0.03,0.05 0.06,0.1 0.1,0.15 0.02,0.03 0.05,0.08 0.07,0.11 0.06,0.09 0.12,0.17 0.17,0.25l0.28,0.42 0.32,0.47 0.06,0.1s0.08,0.08 0.13,0.08h0.04s0.05,0 0.07,0c0.02,0 0.03,-0.01 0.05,-0.02 0.04,-0.03 0.07,-0.05 0.1,-0.08 0,0 0.02,-0.01 0.02,-0.02 0.74,-0.57 1.5,-1.11 2.26,-1.62 0.02,0 0.03,-0.02 0.05,-0.03 0.02,-0.01 0.04,-0.03 0.06,-0.04 0.73,-0.48 1.48,-0.93 2.23,-1.36 0.01,-0.01 0.03,-0.02 0.05,-0.03 0.17,-0.1 0.34,-0.19 0.51,-0.28 0.66,-0.36 1.32,-0.7 1.99,-1.02 0.14,-0.06 0.29,-0.13 0.43,-0.2 0.69,-0.32 1.4,-0.61 2.1,-0.88 0.13,-0.05 0.25,-0.1 0.38,-0.15 0.01,-0.01 0.03,-0.01 0.04,-0.03 0.02,-0.01 0.04,-0.02 0.05,-0.05 0.02,-0.02 0.02,-0.04 0.02,-0.05s0,-0.01 0.02,-0.02h-0.01s0.01,-0.02 0.01,-0.03v-0.08s-0.89,-8.63 -0.89,-8.63c4.13,-1.53 8.33,-2.43 12.26,-2.65h0.01c0.54,-0.03 1.07,-0.04 1.6,-0.05h0.07c-0.44,1.45 -1.16,3.81 -1.79,5.92 -0.09,0.3 -0.18,0.59 -0.27,0.88 -0.03,0.09 -0.05,0.17 -0.08,0.26l-0.35,1.14 -0.06,0.21c-0.05,0.16 -0.1,0.31 -0.14,0.46 -0.02,0.08 -0.05,0.16 -0.07,0.23 -0.03,0.07 -0.05,0.14 -0.07,0.21 -0.02,0.06 -0.01,0.13 0.03,0.18h0.01s0.05,0.03 0.08,0.04c0.02,0.01 0.04,0.04 0.07,0.04h0.04c0.41,0 0.81,0 1.21,0.03 0.15,0.01 0.29,0.02 0.43,0.03 0.25,0 0.49,0.03 0.73,0.06 0.33,0.04 0.65,0.07 0.97,0.12 0.35,0.05 0.68,0.1 1.02,0.17h0.01s0.07,0.01 0.1,0.02c0.02,0.01 0.05,0.01 0.07,0.01 0.06,0 0.12,0.02 0.17,0.03t0.02,0.01s0.04,0 0.05,0.01c0.05,0.01 0.1,0.01 0.15,0.03 0.05,0.01 0.1,0.02 0.15,0.04 0.09,0.02 0.18,0.04 0.27,0.06 0.04,0 0.08,0.02 0.13,0.03 0.03,0.01 0.06,0.02 0.09,0.03 0.03,0 0.06,0.01 0.09,0.02h0.02s0.02,0 0.02,0.01c0.06,0.01 0.11,0.01 0.15,0.04 0.02,0 0.04,0 0.06,0.02 0.07,0.02 0.14,0.04 0.21,0.05 0.04,0.02 0.08,0.03 0.13,0.04 0.01,0 0.03,0.01 0.04,0.01 0.02,0 0.03,0.02 0.05,0.02 0,0 0.02,0.01 0.03,0.01h0.01s0.01,0 0.02,0.01h0.03s0.01,0.01 0.02,0.01 0.02,0 0.02,0.01c0.02,0 0.04,0.01 0.06,0.02 0.14,0.03 0.28,0.08 0.42,0.12 0.02,0.01 0.05,0.02 0.07,0.03 0.03,0 0.05,0.01 0.07,0.02 0.03,0 0.05,0 0.07,0.02 0,0.01 0.02,0.01 0.04,0.01 0,0.01 0.01,0.01 0.02,0.02 0.02,0 0.04,0.01 0.05,0.01 0.34,0.12 0.67,0.24 0.99,0.38 0.01,0 0.02,0 0.03,0 0.27,0.11 0.53,0.23 0.8,0.35 0.04,0.02 0.09,0.04 0.14,0.06 0.02,0.02 0.06,0.02 0.09,0.02 0.09,0 0.16,-0.05 0.19,-0.13h0c1.38,-1.93 4.69,-6.57 6.18,-8.63 0.46,0.22 0.91,0.46 1.35,0.71 0.39,0.23 0.78,0.47 1.16,0.71 0.05,0.04 0.1,0.07 0.15,0.1 1.17,0.78 2.25,1.65 3.24,2.6 0.06,0.05 0.12,0.1 0.17,0.16 1.02,0.99 1.93,2.07 2.73,3.23l-8.56,6.65c-0.09,0.06 -0.11,0.18 -0.05,0.27 1.66,2.46 2.67,5.33 3,8.51 0.01,0.06 0.04,0.12 0.09,0.15 0.05,0.03 0.12,0.04 0.18,0.02 1.71,-0.64 6.65,-2.48 9.08,-3.39l0.48,-0.18c0.41,4.23 -0.08,8.71 -1.48,13.33Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/ic_manual_server.xml"
line="251"
column="27"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (10971 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M126.06,33.72c-1.81,-1.86 -4.42,-4.01 -7.37,-6.04 -5.1,-3.52 -9.84,-5.79 -12.07,-5.79l0.02,0.02c-1,0 -1.5,0.43 -1.75,0.78l-5.73,8.31c-1.52,0.04 -3.17,1.66 -4.22,3.18l-0.07,0.1c-0.88,1.29 -1.28,2.86 -1.21,4.69l-28.89,41.9c-0.16,0.24 -0.34,0.64 -0.29,1.2l0.03,1.7 -10.7,2.19c-1.17,0.25 -2,1.09 -2.17,2.21l-0.44,2.12 -12.56,2.56c-3.14,0.64 -5.46,2.81 -6.05,5.66l-1.67,7.99c-0.34,1.4 -0.22,2.94 0.36,4.4l8.08,20.3c1.43,3.58 5.32,6.08 9.46,6.08 0.66,0 1.31,-0.07 1.95,-0.19l55.15,-11.27c3.08,-0.62 5.38,-2.74 6.02,-5.53 1.32,-6.37 1.59,-7.66 1.64,-7.94 0.34,-1.26 0.31,-2.62 -0.08,-3.95 -0.08,-0.23 -0.14,-0.43 -0.22,-0.63l-8.09,-20.32c-1.08,-2.72 -3.58,-4.81 -6.53,-5.66l18.43,-26.72c1.04,-0.38 2.63,-1.22 3.84,-2.97 1,-1.45 1.88,-3.43 1.54,-4.84l5.82,-8.44c0.78,-1.13 0.09,-2.7 -2.23,-5.1ZM70.54,76.89s0.07,0.04 0.11,0.04c0.06,0 0.13,-0.03 0.16,-0.09 0,0 24.48,-35.49 24.48,-35.48 0.05,0.07 0.11,0.15 0.16,0.22 0.05,0.07 0.09,0.13 0.14,0.2 0.04,0.05 0.09,0.11 0.13,0.16 0.05,0.07 0.11,0.14 0.17,0.21 0.05,0.06 0.09,0.11 0.14,0.17 0.08,0.09 0.17,0.19 0.25,0.28 0.06,0.07 0.11,0.13 0.18,0.2 0.06,0.06 0.1,0.12 0.16,0.18 0.05,0.05 0.1,0.1 0.15,0.15 0.27,0.29 0.56,0.58 0.87,0.87l-24.57,35.65c-0.06,0.09 -0.04,0.21 0.05,0.28 0.03,0.02 0.07,0.04 0.11,0.04 0.06,0 0.13,-0.03 0.16,-0.09l24.54,-35.6c1.85,1.72 4.12,3.46 5.89,4.68l-24.59,35.67c-0.06,0.09 -0.04,0.21 0.05,0.28 0.03,0.02 0.07,0.04 0.11,0.04 0.06,0 0.13,-0.03 0.16,-0.09l24.59,-35.67c2.08,1.42 4.4,2.79 6.5,3.79l-24.58,35.64c-0.06,0.09 -0.04,0.21 0.05,0.28 0.03,0.02 0.07,0.04 0.11,0.04 0.06,0 0.13,-0.03 0.17,-0.09l24.61,-35.69c1.23,0.57 2.37,0.99 3.33,1.21l-24.53,35.59c-0.06,0.09 -0.04,0.21 0.05,0.28 0.03,0.02 0.07,0.04 0.11,0.04 0.06,0 0.13,-0.03 0.17,-0.09l24.63,-35.73c0.29,0.05 0.57,0.08 0.81,0.08 0.11,0 0.22,-0.01 0.32,-0.02l-19.38,28.11 -0.25,0.38 -2.34,3.39 -0.33,0.47 -6.5,9.44c-0.05,0.07 -0.15,0.13 -0.3,0.17 -0.46,0.12 -1.24,-0.02 -2.26,-0.36 -1.72,-0.58 -4.09,-1.77 -6.69,-3.37 -0.91,-0.56 -1.79,-1.15 -2.68,-1.74 -0.49,-0.33 -0.97,-0.68 -1.45,-1.03 -1.88,-1.38 -3.87,-2.83 -5.46,-4.56 -0.22,-0.22 -0.43,-0.44 -0.65,-0.67 -0.11,-0.12 -0.21,-0.23 -0.31,-0.34 -0.77,-0.87 -1.27,-1.61 -1.45,-2.15 -0.03,-0.09 -0.06,-0.17 -0.07,-0.27 -0.03,-0.15 0,-0.27 0.05,-0.35l28.76,-41.7c0.05,0.25 0.16,0.5 0.31,0.78 0.03,0.06 0.06,0.12 0.09,0.18 0.02,0.03 0.04,0.07 0.06,0.11l-24.57,35.63c-0.06,0.09 -0.04,0.21 0.05,0.28ZM70.69,102.22c-0.43,-0.12 -1.06,-0.43 -1.73,-0.83 -0.24,-0.15 -0.48,-0.3 -0.72,-0.47 -0.12,-0.08 -0.23,-0.16 -0.35,-0.25 -0.22,-0.16 -0.43,-0.33 -0.63,-0.49 -0.5,-0.4 -0.91,-0.79 -1.14,-1.1l-0.13,-6.59v-0.41s-0.06,-2.71 -0.06,-2.71v-0.41c-0.02,-0.48 -0.03,-0.96 -0.04,-1.44 -0.02,-0.89 -0.03,-1.77 -0.05,-2.66 -0.01,-0.59 -0.02,-1.17 -0.03,-1.79 0,0.15 0.28,0.44 0.37,0.56 0.16,0.23 0.34,0.45 0.52,0.66 0.77,0.92 1.68,1.74 2.57,2.55 0.95,0.87 1.92,1.7 2.94,2.48 1.75,1.34 3.56,2.6 5.44,3.75 2.44,1.49 4.97,2.99 7.77,3.69 0.12,0.03 0.23,0.05 0.34,0.07l-15.07,5.39ZM64.83,98.5v0.68l0.11,4.95c0,0.35 0.18,0.68 0.48,0.88 0.19,0.13 0.4,0.19 0.62,0.19 0.12,0 0.25,-0.02 0.37,-0.06l4.66,-1.66 0.64,-0.23 15.47,-5.53s0.02,0 0.03,-0.01c0.49,-0.15 0.77,-0.44 0.92,-0.66l7.29,-10.57c0.23,-0.04 0.46,-0.06 0.68,-0.06 1.7,0 3.37,1.02 3.97,2.53l7.98,20.03c0.32,0.8 0.29,1.63 -0.09,2.33 -0.41,0.75 -1.16,1.28 -2.12,1.48l-54.84,11.21c-1.94,0.4 -4.09,-0.7 -4.79,-2.45l-7.98,-20.03c-0.31,-0.8 -0.28,-1.63 0.1,-2.33 0.4,-0.76 1.16,-1.28 2.12,-1.48l24.28,-4.96 0.11,5.75ZM104.23,48.73h0s0,-0.01 0,-0.01c0,0 0,0 0,0 0,0 0,0 -0.01,0 -2.19,-1.51 -4.36,-3.21 -6.04,-4.78 -0.04,-0.03 -0.08,-0.07 -0.12,-0.11 0,0 -0.02,-0.02 -0.03,-0.02 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0 -0.02,-0.01 -0.17,-0.16 -0.34,-0.32 -0.49,-0.48 -0.21,-0.2 -0.4,-0.4 -0.59,-0.6 -0.08,-0.09 -0.16,-0.17 -0.24,-0.26 -0.09,-0.1 -0.18,-0.19 -0.26,-0.28 -0.14,-0.16 -0.27,-0.32 -0.39,-0.48 -0.02,-0.03 -0.05,-0.06 -0.07,-0.09 -0.12,-0.15 -0.22,-0.3 -0.32,-0.44 -0.02,-0.04 -0.05,-0.07 -0.08,-0.11 -0.09,-0.13 -0.16,-0.26 -0.23,-0.38 -0.03,-0.06 -0.06,-0.12 -0.09,-0.17 -0.05,-0.1 -0.09,-0.2 -0.13,-0.29 -0.02,-0.05 -0.04,-0.11 -0.06,-0.16 -0.08,-0.26 -0.11,-0.5 -0.07,-0.7 0,-0.02 0,-0.04 0,-0.06 -0.12,-1.7 0.2,-3.13 0.96,-4.24l0.07,-0.1s0.02,-0.04 0.03,-0.06c0.96,-1.38 2.15,-2.4 2.98,-2.55 0.14,-0.02 0.25,-0.02 0.35,0 0,0.02 0,0.05 -0.01,0.08 0,0.02 0,0.04 0,0.06 -0.02,0.1 -0.01,0.22 0,0.34 0,0 0,0 0,0.01 0.05,0.28 0.18,0.6 0.41,0.99 0.14,0.23 0.32,0.49 0.52,0.76 0.03,0.04 0.06,0.08 0.09,0.12 0.17,0.21 0.36,0.44 0.56,0.67 0.11,0.12 0.23,0.25 0.35,0.38 0.15,0.16 0.3,0.32 0.46,0.48 0.2,0.2 0.4,0.4 0.62,0.61 0.13,0.12 0.26,0.25 0.39,0.37 0.24,0.22 0.48,0.44 0.74,0.67 0.18,0.16 0.36,0.31 0.54,0.47 0.2,0.17 0.4,0.34 0.61,0.51 0.31,0.25 0.62,0.51 0.95,0.77 0.08,0.07 0.16,0.13 0.25,0.2 0.94,0.74 1.94,1.47 2.98,2.19 0.15,0.1 0.3,0.2 0.45,0.3 4.07,2.77 7.85,4.71 10.18,5.22 0.19,0.04 0.37,0.07 0.53,0.09 0.05,0 0.09,0 0.14,0 0.09,0 0.19,0.02 0.27,0.02 0,0 0.02,0 0.03,0 0.2,0 0.37,-0.03 0.52,-0.08 0.03,-0.01 0.06,-0.02 0.08,-0.03 0.04,-0.02 0.09,-0.03 0.13,-0.05 0.26,0.66 -0.09,2.14 -1.32,3.92 -1.1,1.6 -2.6,2.29 -3.46,2.57 0,0 0,0 0,0 -0.03,-0.01 -0.06,0 -0.09,0 -1.59,0.69 -6.66,-1.51 -12.08,-5.23ZM106.27,25.43s0.01,0.02 0.02,0.03c0.12,0.17 0.26,0.35 0.41,0.53 0.04,0.05 0.09,0.1 0.13,0.15 0.12,0.14 0.25,0.29 0.38,0.44 0.06,0.07 0.13,0.14 0.19,0.21 0.13,0.13 0.26,0.27 0.39,0.41 0.08,0.08 0.16,0.16 0.24,0.24 0.13,0.13 0.27,0.26 0.41,0.4 0.09,0.09 0.18,0.18 0.28,0.27 0.14,0.13 0.28,0.26 0.43,0.39 0.24,0.21 0.48,0.43 0.73,0.65 0.1,0.08 0.19,0.17 0.29,0.25 0.17,0.14 0.34,0.29 0.52,0.43 0.09,0.08 0.19,0.16 0.28,0.23 0.18,0.15 0.37,0.3 0.55,0.45 0.09,0.07 0.18,0.14 0.27,0.21 0.2,0.15 0.39,0.31 0.6,0.46 0.08,0.06 0.15,0.12 0.23,0.18 0.22,0.17 0.44,0.33 0.66,0.49 0.04,0.03 0.09,0.07 0.13,0.1 0.53,0.39 1.06,0.77 1.6,1.14 0.3,0.21 0.61,0.41 0.92,0.62 0.16,0.1 0.31,0.2 0.46,0.3 0.1,0.07 0.21,0.14 0.31,0.2 2.97,1.92 5.71,3.35 7.71,4.04 0.06,0.02 0.11,0.04 0.17,0.06 0.14,0.05 0.27,0.09 0.4,0.13 0.1,0.03 0.2,0.06 0.3,0.08 0.08,0.02 0.16,0.04 0.24,0.06 0.12,0.03 0.22,0.05 0.33,0.07 0.06,0 0.11,0.02 0.17,0.03 0.11,0.02 0.21,0.02 0.31,0.03 0.04,0 0.09,0 0.13,0 0.03,0 0.07,0 0.1,0 0.08,0 0.16,0 0.23,-0.02 0,0 0,0 0.01,0l-5.74,8.33c-0.18,0.24 -0.71,0.27 -1.51,0.09 -2.28,-0.5 -6.4,-2.64 -10.49,-5.46 -1.03,-0.71 -2.02,-1.44 -2.94,-2.16 -0.09,-0.07 -0.17,-0.14 -0.26,-0.2 -0.32,-0.25 -0.63,-0.51 -0.94,-0.76 -0.2,-0.17 -0.4,-0.33 -0.59,-0.5 -0.19,-0.16 -0.37,-0.32 -0.55,-0.47 -0.25,-0.22 -0.49,-0.44 -0.73,-0.66 -0.13,-0.12 -0.26,-0.24 -0.38,-0.36 -0.22,-0.21 -0.42,-0.41 -0.62,-0.61 -0.15,-0.15 -0.3,-0.3 -0.43,-0.45 -0.13,-0.14 -0.25,-0.27 -0.36,-0.4 -0.19,-0.22 -0.37,-0.43 -0.53,-0.63 -0.04,-0.05 -0.07,-0.09 -0.11,-0.14 -0.2,-0.26 -0.37,-0.5 -0.5,-0.73 0,0 0,0 0,0 0,0 0,0 0,0 -0.35,-0.59 -0.46,-1.03 -0.3,-1.25l5.73,-8.3c0.03,0.1 0.07,0.21 0.11,0.32 0,0 0,0 0,0 0.13,0.32 0.34,0.67 0.61,1.06ZM105.94,23.47s0.02,-0.02 0.03,-0.04c0.07,-0.1 0.19,-0.16 0.37,-0.2 1.66,-0.3 6.54,2.02 11.63,5.54 5.01,3.47 9.02,7.3 9.31,8.92 0.03,0.17 0.01,0.29 -0.04,0.39 0,0 -0.01,0 -0.02,0.01h0c-0.07,0.1 -0.19,0.16 -0.37,0.2 -0.28,0.05 -0.67,0.02 -1.14,-0.08 -0.07,-0.02 -0.13,-0.03 -0.2,-0.05 -0.06,-0.02 -0.13,-0.03 -0.2,-0.05 -1.35,-0.38 -3.3,-1.24 -5.62,-2.55 -0.06,-0.03 -0.12,-0.07 -0.18,-0.1 -0.25,-0.14 -0.5,-0.29 -0.75,-0.44 -0.14,-0.08 -0.27,-0.16 -0.41,-0.25 -0.19,-0.11 -0.37,-0.23 -0.56,-0.34 -0.17,-0.1 -0.34,-0.21 -0.51,-0.32 -0.16,-0.1 -0.33,-0.21 -0.49,-0.32 -0.19,-0.12 -0.38,-0.25 -0.57,-0.37 -0.12,-0.08 -0.23,-0.16 -0.35,-0.24 -0.22,-0.15 -0.44,-0.29 -0.66,-0.44 -2.26,-1.56 -4.18,-3.09 -5.68,-4.44 -0.01,-0.01 -0.03,-0.02 -0.04,-0.04 -0.19,-0.18 -0.37,-0.35 -0.55,-0.52 -0.06,-0.05 -0.12,-0.11 -0.18,-0.17 -0.14,-0.13 -0.26,-0.26 -0.39,-0.39 -0.09,-0.09 -0.18,-0.18 -0.26,-0.26 -0.1,-0.1 -0.18,-0.19 -0.27,-0.28 -0.1,-0.11 -0.21,-0.22 -0.31,-0.33 -0.06,-0.07 -0.11,-0.13 -0.17,-0.19 -0.11,-0.13 -0.23,-0.26 -0.33,-0.38 -0.03,-0.04 -0.06,-0.08 -0.1,-0.12 -0.11,-0.14 -0.22,-0.28 -0.31,-0.4 -0.02,-0.02 -0.03,-0.04 -0.05,-0.07 -0.1,-0.14 -0.2,-0.28 -0.28,-0.41 0,0 0,-0.02 -0.01,-0.02 -0.35,-0.57 -0.48,-1.01 -0.34,-1.26ZM64.65,89.22h-0.04c-0.18,0.04 -0.37,-0.06 -0.44,-0.21l-0.62,-1.56c-0.02,-0.06 -0.02,-0.11 0,-0.16 0.03,-0.05 0.09,-0.09 0.17,-0.1l0.89,-0.18 0.04,2.21ZM53.21,88.99c-0.05,-0.14 -0.08,-0.28 -0.08,-0.43v-0.09s0.01,-0.04 0.02,-0.05c0.06,-0.46 0.42,-0.81 0.95,-0.92l10.47,-2.14 0.02,1.24 -0.96,0.2c-0.19,0.03 -0.35,0.14 -0.44,0.3 -0.08,0.15 -0.09,0.33 -0.02,0.5l0.62,1.56c0.12,0.29 0.42,0.47 0.74,0.47 0.04,0 0.08,0 0.12,0l0.05,2.72 -24.35,4.98c-1.08,0.22 -1.93,0.82 -2.4,1.68 -0.43,0.81 -0.47,1.75 -0.11,2.67l7.98,20.03c0.66,1.65 2.5,2.78 4.35,2.78 0.3,0 0.59,-0.03 0.89,-0.09l54.84,-11.21c1.08,-0.22 1.92,-0.82 2.39,-1.68 0.44,-0.81 0.47,-1.76 0.11,-2.67l-7.98,-20.03c-0.7,-1.77 -2.75,-2.92 -4.73,-2.75l1.97,-2.86c2.69,0.61 5.09,2.42 6.08,4.87l8.09,20.31c0.06,0.14 0.11,0.29 0.16,0.44l0.03,0.09c0.26,0.89 0.32,1.79 0.16,2.64t-0.01,0.01s0,0.02 0,0.04c0,0 0,0 0,0.01l-0.09,0.41h0v0.03c-0.15,0.49 -0.37,0.96 -0.64,1.39 -0.04,0.07 -0.08,0.14 -0.13,0.21 -0.1,0.14 -0.21,0.26 -0.32,0.39 -0.09,0.11 -0.19,0.22 -0.29,0.32 -0.1,0.1 -0.2,0.19 -0.3,0.28 -0.2,0.18 -0.41,0.35 -0.64,0.5 0,0 0,0 0,0h0s0,0 0,0c-0.29,0.19 -0.61,0.34 -0.93,0.49 -0.13,0.06 -0.27,0.11 -0.41,0.16 -0.34,0.12 -0.68,0.24 -1.05,0.31l-55.15,11.28c-3.92,0.81 -8.25,-1.42 -9.65,-4.96l-7.63,-19.15 -0.46,-1.14c-0.45,-1.13 -0.56,-2.25 -0.33,-3.32h0s0,-0.06 -0.01,-0.09c0,-0.01 0,-0.03 0.01,-0.04 0.5,-2.16 2.34,-3.82 4.82,-4.32l12.79,-2.61c0.26,-0.05 0.52,-0.16 0.74,-0.31 0.28,-0.19 0.51,-0.46 0.65,-0.74 0.16,-0.3 0.25,-0.63 0.25,-0.96 0,-0.27 -0.05,-0.53 -0.15,-0.77ZM111.72,113.76l-1.25,6.04s-0.02,0.04 -0.02,0.06l-0.02,0.09c-0.5,2.18 -2.34,3.85 -4.81,4.35l-55.15,11.27c-3.92,0.81 -8.25,-1.42 -9.65,-4.95l-8.08,-20.3c-0.46,-1.15 -0.56,-2.36 -0.29,-3.5 0,-0.02 0,-0.04 0,-0.06l1.23,-5.85c0.07,0.46 0.2,0.93 0.38,1.38l8.09,20.3c0.82,2.06 2.59,3.69 4.72,4.59 0.04,0.02 0.08,0.04 0.12,0.05 0.1,0.04 0.19,0.08 0.28,0.12h0.01c0.09,0.04 0.19,0.06 0.28,0.09 0.06,0.02 0.11,0.04 0.17,0.06 0.91,0.3 1.86,0.46 2.82,0.46 0.05,0 0.11,-0.01 0.16,-0.01 0.31,0 0.62,-0.03 0.93,-0.07 0.03,0 0.06,0 0.09,0 0.08,-0.01 0.17,-0.02 0.26,-0.04 0.09,-0.01 0.17,-0.02 0.26,-0.04h0.02s55.14,-11.28 55.14,-11.28c0.18,-0.04 0.36,-0.08 0.53,-0.14 0.06,-0.01 0.12,-0.02 0.18,-0.04 0.24,-0.08 0.47,-0.16 0.7,-0.25 0.38,-0.16 0.74,-0.35 1.08,-0.56 0.02,-0.01 0.05,-0.03 0.07,-0.04 0.3,-0.2 0.58,-0.42 0.84,-0.66 0.02,-0.02 0.04,-0.04 0.06,-0.06 0.06,-0.06 0.12,-0.12 0.18,-0.18 0.04,-0.05 0.09,-0.09 0.13,-0.14 0.1,-0.11 0.2,-0.23 0.3,-0.35 0.04,-0.04 0.07,-0.08 0.09,-0.13 0.01,-0.02 0.02,-0.03 0.03,-0.05 0.04,-0.05 0.09,-0.1 0.12,-0.15ZM97.92,82.84h0s0.04,0 0.05,0.01c-0.02,0 -0.04,0 -0.06,-0.01ZM98.77,83.1c0.07,0.03 0.15,0.05 0.22,0.07 -0.07,-0.03 -0.15,-0.05 -0.22,-0.07ZM99.86,83.54s0.06,0.03 0.08,0.04c-0.03,-0.01 -0.06,-0.03 -0.08,-0.04ZM52.74,88.67c0.01,0.16 0.04,0.31 0.1,0.47 0.08,0.19 0.12,0.41 0.12,0.62 0,0.27 -0.07,0.53 -0.2,0.77 -0.12,0.24 -0.3,0.45 -0.53,0.6l0.51,-2.45Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable-night/ic_name_tag.xml"
line="80"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (10971 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M126.06,33.72c-1.81,-1.86 -4.42,-4.01 -7.37,-6.04 -5.1,-3.52 -9.84,-5.79 -12.07,-5.79l0.02,0.02c-1,0 -1.5,0.43 -1.75,0.78l-5.73,8.31c-1.52,0.04 -3.17,1.66 -4.22,3.18l-0.07,0.1c-0.88,1.29 -1.28,2.86 -1.21,4.69l-28.89,41.9c-0.16,0.24 -0.34,0.64 -0.29,1.2l0.03,1.7 -10.7,2.19c-1.17,0.25 -2,1.09 -2.17,2.21l-0.44,2.12 -12.56,2.56c-3.14,0.64 -5.46,2.81 -6.05,5.66l-1.67,7.99c-0.34,1.4 -0.22,2.94 0.36,4.4l8.08,20.3c1.43,3.58 5.32,6.08 9.46,6.08 0.66,0 1.31,-0.07 1.95,-0.19l55.15,-11.27c3.08,-0.62 5.38,-2.74 6.02,-5.53 1.32,-6.37 1.59,-7.66 1.64,-7.94 0.34,-1.26 0.31,-2.62 -0.08,-3.95 -0.08,-0.23 -0.14,-0.43 -0.22,-0.63l-8.09,-20.32c-1.08,-2.72 -3.58,-4.81 -6.53,-5.66l18.43,-26.72c1.04,-0.38 2.63,-1.22 3.84,-2.97 1,-1.45 1.88,-3.43 1.54,-4.84l5.82,-8.44c0.78,-1.13 0.09,-2.7 -2.23,-5.1ZM70.54,76.89s0.07,0.04 0.11,0.04c0.06,0 0.13,-0.03 0.16,-0.09 0,0 24.48,-35.49 24.48,-35.48 0.05,0.07 0.11,0.15 0.16,0.22 0.05,0.07 0.09,0.13 0.14,0.2 0.04,0.05 0.09,0.11 0.13,0.16 0.05,0.07 0.11,0.14 0.17,0.21 0.05,0.06 0.09,0.11 0.14,0.17 0.08,0.09 0.17,0.19 0.25,0.28 0.06,0.07 0.11,0.13 0.18,0.2 0.06,0.06 0.1,0.12 0.16,0.18 0.05,0.05 0.1,0.1 0.15,0.15 0.27,0.29 0.56,0.58 0.87,0.87l-24.57,35.65c-0.06,0.09 -0.04,0.21 0.05,0.28 0.03,0.02 0.07,0.04 0.11,0.04 0.06,0 0.13,-0.03 0.16,-0.09l24.54,-35.6c1.85,1.72 4.12,3.46 5.89,4.68l-24.59,35.67c-0.06,0.09 -0.04,0.21 0.05,0.28 0.03,0.02 0.07,0.04 0.11,0.04 0.06,0 0.13,-0.03 0.16,-0.09l24.59,-35.67c2.08,1.42 4.4,2.79 6.5,3.79l-24.58,35.64c-0.06,0.09 -0.04,0.21 0.05,0.28 0.03,0.02 0.07,0.04 0.11,0.04 0.06,0 0.13,-0.03 0.17,-0.09l24.61,-35.69c1.23,0.57 2.37,0.99 3.33,1.21l-24.53,35.59c-0.06,0.09 -0.04,0.21 0.05,0.28 0.03,0.02 0.07,0.04 0.11,0.04 0.06,0 0.13,-0.03 0.17,-0.09l24.63,-35.73c0.29,0.05 0.57,0.08 0.81,0.08 0.11,0 0.22,-0.01 0.32,-0.02l-19.38,28.11 -0.25,0.38 -2.34,3.39 -0.33,0.47 -6.5,9.44c-0.05,0.07 -0.15,0.13 -0.3,0.17 -0.46,0.12 -1.24,-0.02 -2.26,-0.36 -1.72,-0.58 -4.09,-1.77 -6.69,-3.37 -0.91,-0.56 -1.79,-1.15 -2.68,-1.74 -0.49,-0.33 -0.97,-0.68 -1.45,-1.03 -1.88,-1.38 -3.87,-2.83 -5.46,-4.56 -0.22,-0.22 -0.43,-0.44 -0.65,-0.67 -0.11,-0.12 -0.21,-0.23 -0.31,-0.34 -0.77,-0.87 -1.27,-1.61 -1.45,-2.15 -0.03,-0.09 -0.06,-0.17 -0.07,-0.27 -0.03,-0.15 0,-0.27 0.05,-0.35l28.76,-41.7c0.05,0.25 0.16,0.5 0.31,0.78 0.03,0.06 0.06,0.12 0.09,0.18 0.02,0.03 0.04,0.07 0.06,0.11l-24.57,35.63c-0.06,0.09 -0.04,0.21 0.05,0.28ZM70.69,102.22c-0.43,-0.12 -1.06,-0.43 -1.73,-0.83 -0.24,-0.15 -0.48,-0.3 -0.72,-0.47 -0.12,-0.08 -0.23,-0.16 -0.35,-0.25 -0.22,-0.16 -0.43,-0.33 -0.63,-0.49 -0.5,-0.4 -0.91,-0.79 -1.14,-1.1l-0.13,-6.59v-0.41s-0.06,-2.71 -0.06,-2.71v-0.41c-0.02,-0.48 -0.03,-0.96 -0.04,-1.44 -0.02,-0.89 -0.03,-1.77 -0.05,-2.66 -0.01,-0.59 -0.02,-1.17 -0.03,-1.79 0,0.15 0.28,0.44 0.37,0.56 0.16,0.23 0.34,0.45 0.52,0.66 0.77,0.92 1.68,1.74 2.57,2.55 0.95,0.87 1.92,1.7 2.94,2.48 1.75,1.34 3.56,2.6 5.44,3.75 2.44,1.49 4.97,2.99 7.77,3.69 0.12,0.03 0.23,0.05 0.34,0.07l-15.07,5.39ZM64.83,98.5v0.68l0.11,4.95c0,0.35 0.18,0.68 0.48,0.88 0.19,0.13 0.4,0.19 0.62,0.19 0.12,0 0.25,-0.02 0.37,-0.06l4.66,-1.66 0.64,-0.23 15.47,-5.53s0.02,0 0.03,-0.01c0.49,-0.15 0.77,-0.44 0.92,-0.66l7.29,-10.57c0.23,-0.04 0.46,-0.06 0.68,-0.06 1.7,0 3.37,1.02 3.97,2.53l7.98,20.03c0.32,0.8 0.29,1.63 -0.09,2.33 -0.41,0.75 -1.16,1.28 -2.12,1.48l-54.84,11.21c-1.94,0.4 -4.09,-0.7 -4.79,-2.45l-7.98,-20.03c-0.31,-0.8 -0.28,-1.63 0.1,-2.33 0.4,-0.76 1.16,-1.28 2.12,-1.48l24.28,-4.96 0.11,5.75ZM104.23,48.73h0s0,-0.01 0,-0.01c0,0 0,0 0,0 0,0 0,0 -0.01,0 -2.19,-1.51 -4.36,-3.21 -6.04,-4.78 -0.04,-0.03 -0.08,-0.07 -0.12,-0.11 0,0 -0.02,-0.02 -0.03,-0.02 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0 -0.02,-0.01 -0.17,-0.16 -0.34,-0.32 -0.49,-0.48 -0.21,-0.2 -0.4,-0.4 -0.59,-0.6 -0.08,-0.09 -0.16,-0.17 -0.24,-0.26 -0.09,-0.1 -0.18,-0.19 -0.26,-0.28 -0.14,-0.16 -0.27,-0.32 -0.39,-0.48 -0.02,-0.03 -0.05,-0.06 -0.07,-0.09 -0.12,-0.15 -0.22,-0.3 -0.32,-0.44 -0.02,-0.04 -0.05,-0.07 -0.08,-0.11 -0.09,-0.13 -0.16,-0.26 -0.23,-0.38 -0.03,-0.06 -0.06,-0.12 -0.09,-0.17 -0.05,-0.1 -0.09,-0.2 -0.13,-0.29 -0.02,-0.05 -0.04,-0.11 -0.06,-0.16 -0.08,-0.26 -0.11,-0.5 -0.07,-0.7 0,-0.02 0,-0.04 0,-0.06 -0.12,-1.7 0.2,-3.13 0.96,-4.24l0.07,-0.1s0.02,-0.04 0.03,-0.06c0.96,-1.38 2.15,-2.4 2.98,-2.55 0.14,-0.02 0.25,-0.02 0.35,0 0,0.02 0,0.05 -0.01,0.08 0,0.02 0,0.04 0,0.06 -0.02,0.1 -0.01,0.22 0,0.34 0,0 0,0 0,0.01 0.05,0.28 0.18,0.6 0.41,0.99 0.14,0.23 0.32,0.49 0.52,0.76 0.03,0.04 0.06,0.08 0.09,0.12 0.17,0.21 0.36,0.44 0.56,0.67 0.11,0.12 0.23,0.25 0.35,0.38 0.15,0.16 0.3,0.32 0.46,0.48 0.2,0.2 0.4,0.4 0.62,0.61 0.13,0.12 0.26,0.25 0.39,0.37 0.24,0.22 0.48,0.44 0.74,0.67 0.18,0.16 0.36,0.31 0.54,0.47 0.2,0.17 0.4,0.34 0.61,0.51 0.31,0.25 0.62,0.51 0.95,0.77 0.08,0.07 0.16,0.13 0.25,0.2 0.94,0.74 1.94,1.47 2.98,2.19 0.15,0.1 0.3,0.2 0.45,0.3 4.07,2.77 7.85,4.71 10.18,5.22 0.19,0.04 0.37,0.07 0.53,0.09 0.05,0 0.09,0 0.14,0 0.09,0 0.19,0.02 0.27,0.02 0,0 0.02,0 0.03,0 0.2,0 0.37,-0.03 0.52,-0.08 0.03,-0.01 0.06,-0.02 0.08,-0.03 0.04,-0.02 0.09,-0.03 0.13,-0.05 0.26,0.66 -0.09,2.14 -1.32,3.92 -1.1,1.6 -2.6,2.29 -3.46,2.57 0,0 0,0 0,0 -0.03,-0.01 -0.06,0 -0.09,0 -1.59,0.69 -6.66,-1.51 -12.08,-5.23ZM106.27,25.43s0.01,0.02 0.02,0.03c0.12,0.17 0.26,0.35 0.41,0.53 0.04,0.05 0.09,0.1 0.13,0.15 0.12,0.14 0.25,0.29 0.38,0.44 0.06,0.07 0.13,0.14 0.19,0.21 0.13,0.13 0.26,0.27 0.39,0.41 0.08,0.08 0.16,0.16 0.24,0.24 0.13,0.13 0.27,0.26 0.41,0.4 0.09,0.09 0.18,0.18 0.28,0.27 0.14,0.13 0.28,0.26 0.43,0.39 0.24,0.21 0.48,0.43 0.73,0.65 0.1,0.08 0.19,0.17 0.29,0.25 0.17,0.14 0.34,0.29 0.52,0.43 0.09,0.08 0.19,0.16 0.28,0.23 0.18,0.15 0.37,0.3 0.55,0.45 0.09,0.07 0.18,0.14 0.27,0.21 0.2,0.15 0.39,0.31 0.6,0.46 0.08,0.06 0.15,0.12 0.23,0.18 0.22,0.17 0.44,0.33 0.66,0.49 0.04,0.03 0.09,0.07 0.13,0.1 0.53,0.39 1.06,0.77 1.6,1.14 0.3,0.21 0.61,0.41 0.92,0.62 0.16,0.1 0.31,0.2 0.46,0.3 0.1,0.07 0.21,0.14 0.31,0.2 2.97,1.92 5.71,3.35 7.71,4.04 0.06,0.02 0.11,0.04 0.17,0.06 0.14,0.05 0.27,0.09 0.4,0.13 0.1,0.03 0.2,0.06 0.3,0.08 0.08,0.02 0.16,0.04 0.24,0.06 0.12,0.03 0.22,0.05 0.33,0.07 0.06,0 0.11,0.02 0.17,0.03 0.11,0.02 0.21,0.02 0.31,0.03 0.04,0 0.09,0 0.13,0 0.03,0 0.07,0 0.1,0 0.08,0 0.16,0 0.23,-0.02 0,0 0,0 0.01,0l-5.74,8.33c-0.18,0.24 -0.71,0.27 -1.51,0.09 -2.28,-0.5 -6.4,-2.64 -10.49,-5.46 -1.03,-0.71 -2.02,-1.44 -2.94,-2.16 -0.09,-0.07 -0.17,-0.14 -0.26,-0.2 -0.32,-0.25 -0.63,-0.51 -0.94,-0.76 -0.2,-0.17 -0.4,-0.33 -0.59,-0.5 -0.19,-0.16 -0.37,-0.32 -0.55,-0.47 -0.25,-0.22 -0.49,-0.44 -0.73,-0.66 -0.13,-0.12 -0.26,-0.24 -0.38,-0.36 -0.22,-0.21 -0.42,-0.41 -0.62,-0.61 -0.15,-0.15 -0.3,-0.3 -0.43,-0.45 -0.13,-0.14 -0.25,-0.27 -0.36,-0.4 -0.19,-0.22 -0.37,-0.43 -0.53,-0.63 -0.04,-0.05 -0.07,-0.09 -0.11,-0.14 -0.2,-0.26 -0.37,-0.5 -0.5,-0.73 0,0 0,0 0,0 0,0 0,0 0,0 -0.35,-0.59 -0.46,-1.03 -0.3,-1.25l5.73,-8.3c0.03,0.1 0.07,0.21 0.11,0.32 0,0 0,0 0,0 0.13,0.32 0.34,0.67 0.61,1.06ZM105.94,23.47s0.02,-0.02 0.03,-0.04c0.07,-0.1 0.19,-0.16 0.37,-0.2 1.66,-0.3 6.54,2.02 11.63,5.54 5.01,3.47 9.02,7.3 9.31,8.92 0.03,0.17 0.01,0.29 -0.04,0.39 0,0 -0.01,0 -0.02,0.01h0c-0.07,0.1 -0.19,0.16 -0.37,0.2 -0.28,0.05 -0.67,0.02 -1.14,-0.08 -0.07,-0.02 -0.13,-0.03 -0.2,-0.05 -0.06,-0.02 -0.13,-0.03 -0.2,-0.05 -1.35,-0.38 -3.3,-1.24 -5.62,-2.55 -0.06,-0.03 -0.12,-0.07 -0.18,-0.1 -0.25,-0.14 -0.5,-0.29 -0.75,-0.44 -0.14,-0.08 -0.27,-0.16 -0.41,-0.25 -0.19,-0.11 -0.37,-0.23 -0.56,-0.34 -0.17,-0.1 -0.34,-0.21 -0.51,-0.32 -0.16,-0.1 -0.33,-0.21 -0.49,-0.32 -0.19,-0.12 -0.38,-0.25 -0.57,-0.37 -0.12,-0.08 -0.23,-0.16 -0.35,-0.24 -0.22,-0.15 -0.44,-0.29 -0.66,-0.44 -2.26,-1.56 -4.18,-3.09 -5.68,-4.44 -0.01,-0.01 -0.03,-0.02 -0.04,-0.04 -0.19,-0.18 -0.37,-0.35 -0.55,-0.52 -0.06,-0.05 -0.12,-0.11 -0.18,-0.17 -0.14,-0.13 -0.26,-0.26 -0.39,-0.39 -0.09,-0.09 -0.18,-0.18 -0.26,-0.26 -0.1,-0.1 -0.18,-0.19 -0.27,-0.28 -0.1,-0.11 -0.21,-0.22 -0.31,-0.33 -0.06,-0.07 -0.11,-0.13 -0.17,-0.19 -0.11,-0.13 -0.23,-0.26 -0.33,-0.38 -0.03,-0.04 -0.06,-0.08 -0.1,-0.12 -0.11,-0.14 -0.22,-0.28 -0.31,-0.4 -0.02,-0.02 -0.03,-0.04 -0.05,-0.07 -0.1,-0.14 -0.2,-0.28 -0.28,-0.41 0,0 0,-0.02 -0.01,-0.02 -0.35,-0.57 -0.48,-1.01 -0.34,-1.26ZM64.65,89.22h-0.04c-0.18,0.04 -0.37,-0.06 -0.44,-0.21l-0.62,-1.56c-0.02,-0.06 -0.02,-0.11 0,-0.16 0.03,-0.05 0.09,-0.09 0.17,-0.1l0.89,-0.18 0.04,2.21ZM53.21,88.99c-0.05,-0.14 -0.08,-0.28 -0.08,-0.43v-0.09s0.01,-0.04 0.02,-0.05c0.06,-0.46 0.42,-0.81 0.95,-0.92l10.47,-2.14 0.02,1.24 -0.96,0.2c-0.19,0.03 -0.35,0.14 -0.44,0.3 -0.08,0.15 -0.09,0.33 -0.02,0.5l0.62,1.56c0.12,0.29 0.42,0.47 0.74,0.47 0.04,0 0.08,0 0.12,0l0.05,2.72 -24.35,4.98c-1.08,0.22 -1.93,0.82 -2.4,1.68 -0.43,0.81 -0.47,1.75 -0.11,2.67l7.98,20.03c0.66,1.65 2.5,2.78 4.35,2.78 0.3,0 0.59,-0.03 0.89,-0.09l54.84,-11.21c1.08,-0.22 1.92,-0.82 2.39,-1.68 0.44,-0.81 0.47,-1.76 0.11,-2.67l-7.98,-20.03c-0.7,-1.77 -2.75,-2.92 -4.73,-2.75l1.97,-2.86c2.69,0.61 5.09,2.42 6.08,4.87l8.09,20.31c0.06,0.14 0.11,0.29 0.16,0.44l0.03,0.09c0.26,0.89 0.32,1.79 0.16,2.64t-0.01,0.01s0,0.02 0,0.04c0,0 0,0 0,0.01l-0.09,0.41h0v0.03c-0.15,0.49 -0.37,0.96 -0.64,1.39 -0.04,0.07 -0.08,0.14 -0.13,0.21 -0.1,0.14 -0.21,0.26 -0.32,0.39 -0.09,0.11 -0.19,0.22 -0.29,0.32 -0.1,0.1 -0.2,0.19 -0.3,0.28 -0.2,0.18 -0.41,0.35 -0.64,0.5 0,0 0,0 0,0h0s0,0 0,0c-0.29,0.19 -0.61,0.34 -0.93,0.49 -0.13,0.06 -0.27,0.11 -0.41,0.16 -0.34,0.12 -0.68,0.24 -1.05,0.31l-55.15,11.28c-3.92,0.81 -8.25,-1.42 -9.65,-4.96l-7.63,-19.15 -0.46,-1.14c-0.45,-1.13 -0.56,-2.25 -0.33,-3.32h0s0,-0.06 -0.01,-0.09c0,-0.01 0,-0.03 0.01,-0.04 0.5,-2.16 2.34,-3.82 4.82,-4.32l12.79,-2.61c0.26,-0.05 0.52,-0.16 0.74,-0.31 0.28,-0.19 0.51,-0.46 0.65,-0.74 0.16,-0.3 0.25,-0.63 0.25,-0.96 0,-0.27 -0.05,-0.53 -0.15,-0.77ZM111.72,113.76l-1.25,6.04s-0.02,0.04 -0.02,0.06l-0.02,0.09c-0.5,2.18 -2.34,3.85 -4.81,4.35l-55.15,11.27c-3.92,0.81 -8.25,-1.42 -9.65,-4.95l-8.08,-20.3c-0.46,-1.15 -0.56,-2.36 -0.29,-3.5 0,-0.02 0,-0.04 0,-0.06l1.23,-5.85c0.07,0.46 0.2,0.93 0.38,1.38l8.09,20.3c0.82,2.06 2.59,3.69 4.72,4.59 0.04,0.02 0.08,0.04 0.12,0.05 0.1,0.04 0.19,0.08 0.28,0.12h0.01c0.09,0.04 0.19,0.06 0.28,0.09 0.06,0.02 0.11,0.04 0.17,0.06 0.91,0.3 1.86,0.46 2.82,0.46 0.05,0 0.11,-0.01 0.16,-0.01 0.31,0 0.62,-0.03 0.93,-0.07 0.03,0 0.06,0 0.09,0 0.08,-0.01 0.17,-0.02 0.26,-0.04 0.09,-0.01 0.17,-0.02 0.26,-0.04h0.02s55.14,-11.28 55.14,-11.28c0.18,-0.04 0.36,-0.08 0.53,-0.14 0.06,-0.01 0.12,-0.02 0.18,-0.04 0.24,-0.08 0.47,-0.16 0.7,-0.25 0.38,-0.16 0.74,-0.35 1.08,-0.56 0.02,-0.01 0.05,-0.03 0.07,-0.04 0.3,-0.2 0.58,-0.42 0.84,-0.66 0.02,-0.02 0.04,-0.04 0.06,-0.06 0.06,-0.06 0.12,-0.12 0.18,-0.18 0.04,-0.05 0.09,-0.09 0.13,-0.14 0.1,-0.11 0.2,-0.23 0.3,-0.35 0.04,-0.04 0.07,-0.08 0.09,-0.13 0.01,-0.02 0.02,-0.03 0.03,-0.05 0.04,-0.05 0.09,-0.1 0.12,-0.15ZM97.92,82.84h0s0.04,0 0.05,0.01c-0.02,0 -0.04,0 -0.06,-0.01ZM98.77,83.1c0.07,0.03 0.15,0.05 0.22,0.07 -0.07,-0.03 -0.15,-0.05 -0.22,-0.07ZM99.86,83.54s0.06,0.03 0.08,0.04c-0.03,-0.01 -0.06,-0.03 -0.08,-0.04ZM52.74,88.67c0.01,0.16 0.04,0.31 0.1,0.47 0.08,0.19 0.12,0.41 0.12,0.62 0,0.27 -0.07,0.53 -0.2,0.77 -0.12,0.24 -0.3,0.45 -0.53,0.6l0.51,-2.45Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/ic_name_tag.xml"
line="83"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (3058 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M110.7,26.4c4.95,0 9,4.08 9,9.06v27.2l-0.05,0.05c0,1.95 -1.1,4.65 -2.46,6.02l-0.55,0.55c2,1.1 3.45,3.06 3.83,5.4 0.45,-0.18 0.93,-0.26 1.44,-0.26 2.31,0 4.18,1.88 4.18,4.21h-18.76l-7.32,7.36c-0.14,0.15 -0.28,0.29 -0.43,0.43l-7.51,29.59c-0.35,1.35 -1.39,2.43 -2.74,2.8l-22.96,6.24c-0.22,0.06 -0.45,0.09 -0.67,0.09 -1.14,0 -2.18,-0.74 -2.53,-1.87l-0.34,-1.12 0.38,-0.32 14.56,-12.33c1.15,-0.97 1.72,-2.45 1.51,-3.94l-1.18,-8.37 -9.16,3.77c-0.7,0.29 -1.43,0.43 -2.15,0.43 -1.47,0 -2.94,-0.58 -4.03,-1.68 -8.29,8.34 -11.71,20.54 -8.33,32.27 -0.07,-0.02 -0.13,-0.05 -0.19,-0.07 -1.24,-0.49 -2.54,-0.74 -3.86,-0.74 -1.6,0 -3.21,0.36 -4.67,1.11 0.09,-3.56 -0.38,-7.14 -1.43,-10.57 -1.51,-5.03 -4.25,-9.77 -8.2,-13.74 -3.81,-3.82 -8.3,-6.52 -13.1,-8.06 -3.3,-1.09 -6.72,-1.64 -10.16,-1.64h-0.52c1.47,-1.88 2.47,-4.03 2.97,-6.28 0.02,-0.09 0.03,-0.18 0.06,-0.26 2.43,0.56 4.95,0.83 7.47,0.83 8.45,0 17.07,-3.13 23.41,-9.51h0.08c-1.21,-1.6 -1.5,-3.73 -0.73,-5.61l3.75,-9.22 -8.33,-1.19c-0.2,-0.02 -0.41,-0.05 -0.6,-0.05 -1.25,0 -2.49,0.56 -3.3,1.55l-12.25,14.67 -0.33,0.39 -1.1,-0.34c-1.36,-0.42 -2.13,-1.85 -1.77,-3.23l6.2,-23.1c0.37,-1.36 1.43,-2.41 2.79,-2.76l29.41,-7.57 4.72,-4.74h-17.52c0,-2.33 1.87,-4.21 4.18,-4.21 0.51,0 1,0.08 1.44,0.26 0.6,-3.6 3.72,-6.32 7.44,-6.32 4.03,0 7.33,3.18 7.53,7.19l9.85,-9.91c1.36,-1.37 4.04,-2.48 5.97,-2.48h27.05ZM110.7,24.07h-27.05c-2.54,0 -5.82,1.36 -7.61,3.17l-7.1,7.14c-1.68,-3.06 -4.92,-5.11 -8.63,-5.11 -4.05,0 -7.6,2.45 -9.1,6.06 -3.48,0.12 -6.28,3 -6.28,6.54 0,1.29 1.05,2.34 2.32,2.34h11.92l-0.3,0.3 -28.79,7.41c-2.15,0.56 -3.86,2.24 -4.45,4.41l-6.2,23.11c-0.69,2.62 0.78,5.28 3.32,6.06l1.1,0.34c0.22,0.07 0.45,0.11 0.67,0.11 0.67,0 1.32,-0.29 1.78,-0.83l0.33,-0.39 12.26,-14.68c0.37,-0.46 0.94,-0.71 1.52,-0.71 0.09,0 0.19,0 0.27,0.02l5.38,0.77 -2.62,6.44c-0.79,1.93 -0.78,4.08 -0.05,5.98 -5.48,4.91 -12.89,7.7 -20.57,7.7 -2.36,0 -4.69,-0.26 -6.96,-0.78 -0.17,-0.04 -0.35,-0.06 -0.51,-0.06 -1.01,0 -1.94,0.68 -2.23,1.69 -0.02,0.11 -0.05,0.2 -0.07,0.3 0,0.02 -0.01,0.06 -0.02,0.08 -0.43,1.93 -1.3,3.77 -2.53,5.34 -0.56,0.71 -0.65,1.67 -0.26,2.49 0.39,0.79 1.2,1.3 2.08,1.3h0.52c3.21,0 6.39,0.51 9.44,1.52 4.61,1.48 8.7,4.01 12.18,7.5 3.54,3.56 6.18,7.98 7.62,12.76 0.98,3.19 1.42,6.5 1.34,9.84 -0.02,0.82 0.38,1.59 1.08,2.03 0.38,0.24 0.81,0.36 1.24,0.36 0.36,0 0.71,-0.08 1.05,-0.25 1.11,-0.56 2.37,-0.86 3.62,-0.86 1.03,0 2.04,0.19 3.01,0.57 0.08,0.04 0.19,0.07 0.3,0.12 0.24,0.08 0.49,0.12 0.73,0.12 0.59,0 1.17,-0.22 1.61,-0.65 0.63,-0.61 0.86,-1.51 0.63,-2.34 -2.88,-9.98 -0.42,-20.73 6.4,-28.52 1.14,0.61 2.4,0.92 3.73,0.92 1.05,0 2.07,-0.2 3.04,-0.61l6.4,-2.64 0.77,5.4c0.09,0.69 -0.16,1.37 -0.7,1.82l-14.56,12.33 -0.36,0.29c-0.73,0.6 -1.02,1.58 -0.75,2.49l0.34,1.12c0.65,2.11 2.56,3.53 4.75,3.53 0.43,0 0.85,-0.06 1.27,-0.16l22.97,-6.24c2.15,-0.6 3.83,-2.31 4.38,-4.47l7.36,-28.97 6.61,-6.65h17.79c1.28,0 2.32,-1.05 2.32,-2.34 0,-3.53 -2.8,-6.43 -6.28,-6.54 -0.5,-1.19 -1.22,-2.27 -2.14,-3.18 1.1,-1.71 1.87,-3.91 1.96,-5.81 0.02,-0.14 0.05,-0.29 0.05,-0.43v-27.23c0.01,-6.29 -5.06,-11.39 -11.31,-11.39h-0.02Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/ic_no_remote.xml"
line="21"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (6216 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M121.93,73.12c-0.16,0 -0.34,0 -0.5,0.03 -0.54,-1.65 -1.53,-3.07 -2.83,-4.11 1.28,-1.6 2.24,-4.07 2.33,-6.05 0.04,-0.12 0.05,-0.23 0.05,-0.35v-27.18c0,-5.7 -4.6,-10.34 -10.27,-10.34h-27.06c-2.27,0 -5.28,1.26 -6.87,2.85l-8.16,8.22c-1.22,-3.44 -4.49,-5.86 -8.3,-5.86h-0.01c-3.88,0 -7.21,2.48 -8.39,6.08 -0.16,-0.01 -0.32,-0.03 -0.49,-0.03 -3.01,0 -5.46,2.47 -5.46,5.5 0,0.71 0.57,1.28 1.27,1.28h14.45l-2.11,2.12c-0.06,0.05 -0.13,0.12 -0.19,0.18l-29.05,7.48c-1.81,0.47 -3.22,1.87 -3.71,3.67l-6.2,23.1c-0.55,2.06 0.6,4.16 2.62,4.78l1.12,0.34c0.13,0.04 0.25,0.06 0.37,0.06 0.37,0 0.73,-0.16 0.98,-0.46l0.32,-0.38 12.25,-14.67c0.58,-0.7 1.43,-1.09 2.33,-1.09 0.14,0 0.29,0 0.43,0.03l6.7,0.96 -3.14,7.69c-0.87,2.14 -0.64,4.52 0.56,6.41 -7.56,7.08 -18.43,10.04 -28.87,7.87 0.86,-5.13 -0.7,-10.55 -4.58,-14.45 -0.25,-0.25 -0.67,-0.26 -0.92,0 -0.25,0.25 -0.26,0.66 0,0.92 5.42,5.46 5.94,14.14 1.2,20.19 -0.15,0.2 -0.18,0.46 -0.07,0.69 0.11,0.22 0.34,0.35 0.59,0.36 8.8,-0.15 17.09,3.24 23.31,9.51 6.33,6.37 9.69,14.84 9.45,23.84 0,0.23 0.11,0.44 0.3,0.57 0.19,0.12 0.44,0.13 0.64,0.03 3.78,-1.91 8.33,-1.16 11.32,1.85 1.86,1.88 2.88,4.36 2.88,7 0,0.36 0.29,0.65 0.65,0.65s0.65,-0.29 0.65,-0.65c0,-2.98 -1.16,-5.79 -3.25,-7.91 -0.98,-0.98 -2.1,-1.75 -3.3,-2.3 0,0 0,0 0,0 -2.97,-10.73 -0.15,-22.26 7.43,-30.46 1.24,1.05 2.78,1.62 4.41,1.62 0.91,0 1.8,-0.18 2.64,-0.53l7.64,-3.15 0.95,6.74c0.15,1.04 -0.25,2.09 -1.05,2.76l-14.58,12.32 -0.38,0.32c-0.4,0.33 -0.56,0.86 -0.41,1.37l0.34,1.11c0.51,1.66 2.01,2.77 3.74,2.77 0.33,0 0.68,-0.05 1.02,-0.14l22.96,-6.24c1.79,-0.49 3.19,-1.92 3.65,-3.73l7.43,-29.24c0.06,-0.06 0.12,-0.11 0.18,-0.18l6.93,-6.97h18.24c0.71,0 1.28,-0.57 1.28,-1.28 0,-3.03 -2.45,-5.5 -5.46,-5.5ZM99.89,85.85l-0.41,0.4s-0.02,0 -0.02,0.01c-0.65,0.62 -1.34,1.21 -2.05,1.76l-16.83,-16.94 0.51,-0.66s0.04,-0.07 0.04,-0.11c0.04,-0.06 0.08,-0.13 0.11,-0.2 0.03,-0.05 0.06,-0.1 0.09,-0.15 0.03,-0.07 0.05,-0.14 0.08,-0.21 0.02,-0.06 0.05,-0.11 0.06,-0.17 0.02,-0.07 0.03,-0.15 0.04,-0.22 0,-0.06 0.03,-0.12 0.03,-0.18 0,-0.08 0,-0.15 0,-0.23 0,-0.06 0,-0.11 0,-0.17 0,-0.08 -0.02,-0.15 -0.04,-0.23 0,-0.06 -0.01,-0.11 -0.03,-0.17 -0.02,-0.08 -0.05,-0.15 -0.08,-0.22 -0.02,-0.05 -0.03,-0.11 -0.05,-0.16 -0.03,-0.08 -0.08,-0.15 -0.12,-0.22 -0.03,-0.04 -0.05,-0.09 -0.07,-0.13 -0.08,-0.11 -0.17,-0.22 -0.26,-0.32l-1.84,-1.85c-0.82,-0.83 -2.14,-0.92 -3.07,-0.2l-0.66,0.52 -16.85,-16.95c0.54,-0.72 1.13,-1.42 1.75,-2.07 0.13,-0.15 0.26,-0.28 0.42,-0.42l17.19,-17.31c1.33,-1.33 3.95,-2.41 5.85,-2.41h27.03c4.85,0 8.8,3.97 8.8,8.85v27.13s-0.04,0.08 -0.04,0.12c0,1.74 -0.91,4.09 -2.08,5.5 -1.28,-0.74 -2.77,-1.16 -4.34,-1.16h-0.02c-4.08,0.01 -7.52,2.79 -8.52,6.6 -0.94,-0.35 -1.94,-0.54 -2.95,-0.54 -3.3,0 -6.31,1.95 -7.66,4.97 -0.18,0.4 -0.16,0.86 0.09,1.23 0.24,0.36 0.64,0.58 1.07,0.58h10.74l-5.91,5.95ZM63.37,123.21l-0.3,-0.98 0.23,-0.2 23.78,-6.46s0.04,0 0.06,0c0.84,-0.23 1.5,-0.9 1.71,-1.75l5.99,-23.55c0.18,-0.11 0.36,-0.21 0.52,-0.33 0.42,-0.23 0.84,-0.51 1.33,-0.87 0.12,-0.08 0.23,-0.17 0.34,-0.25 0.04,-0.03 0.07,-0.05 0.11,-0.08 0.06,-0.04 0.13,-0.09 0.18,-0.13 0.06,-0.04 0.14,-0.1 0.19,-0.14 0.18,-0.12 0.35,-0.26 0.52,-0.42 0.08,-0.07 0.16,-0.13 0.25,-0.2 0.24,-0.19 0.44,-0.36 0.6,-0.52 0.12,-0.1 0.24,-0.2 0.36,-0.31l-7.35,28.93c-0.33,1.28 -1.31,2.3 -2.58,2.66 -0.01,0 -0.02,0 -0.03,0l-22.96,6.24c-1.27,0.34 -2.56,-0.38 -2.95,-1.64ZM76.74,65.31s0.04,-0.02 0.07,-0.03c0.17,-0.06 0.35,-0.08 0.53,-0.09 0.04,0 0.08,0 0.12,0 0.06,0 0.12,0 0.18,0.02 0.06,0 0.12,0.01 0.17,0.03 0.06,0.01 0.12,0.03 0.18,0.05 0.05,0.02 0.11,0.03 0.16,0.05 0.07,0.03 0.13,0.07 0.19,0.1 0.04,0.02 0.08,0.04 0.12,0.07 0.1,0.07 0.2,0.15 0.29,0.24l1.84,1.85c0.67,0.68 0.74,1.78 0.15,2.55 -0.02,0.03 -0.03,0.06 -0.03,0.1l-0.55,0.71s0,0 0,0c0,0 0,0 0,0l-16.94,22.06 -0.88,1.15c-0.14,0.19 -0.34,0.37 -0.56,0.49l-16.84,9.62c-0.77,0.43 -1.7,0.3 -2.32,-0.32 -0.61,-0.61 -0.74,-1.56 -0.32,-2.33l9.57,-16.94c0.12,-0.22 0.29,-0.41 0.5,-0.57l23.05,-17.92 0.8,-0.63c0.16,-0.13 0.34,-0.21 0.52,-0.28ZM94.49,89.99s-0.01,0.01 -0.02,0.02c-0.96,0.55 -1.95,1.04 -2.93,1.44l-13.47,5.57s-0.03,0 -0.04,0.01l-7.46,3.07 -6.93,-6.96 16.68,-21.73 16.76,16.87c-0.83,0.62 -1.7,1.2 -2.6,1.71ZM53.41,82.82l-6.93,-6.97 8.6,-21.12c0.38,-0.96 0.85,-1.92 1.43,-2.94 0.53,-0.93 1.11,-1.81 1.72,-2.63l16.77,16.88 -21.59,16.79ZM59.45,46.98c-1.22,1.36 -2.3,2.85 -3.22,4.44l-0.13,0.03h0s-0.03,0 -0.05,0l-23.12,5.95s-0.05,0.02 -0.08,0.03h-0.02c-0.84,0.22 -1.5,0.88 -1.73,1.72 0,0.02 0,0.04 0,0.05 0,0 0,0.01 0,0.02l-6.41,23.89 -0.21,0.25 -0.98,-0.3c-1.26,-0.39 -1.98,-1.69 -1.63,-2.97l6.19,-23.06s0.02,-0.03 0.02,-0.05c0.35,-1.28 1.37,-2.29 2.64,-2.62l28.74,-7.39ZM25.28,82.41l6.2,-23.1c0.2,-0.71 0.76,-1.27 1.46,-1.48l23.01,-5.92c-0.49,0.9 -0.91,1.78 -1.28,2.68l-5.48,13.45 -8.16,-1.17c-1.53,-0.22 -3.09,0.38 -4.08,1.58l-11.67,13.97ZM46.31,76.25l6.78,6.82 -0.96,0.75c-0.25,0.2 -0.46,0.43 -0.6,0.69l-1.3,2.3 -3.24,-3.26c-1.58,-1.59 -2.05,-3.95 -1.2,-6l0.53,-1.29ZM61.98,95.02c0.27,-0.16 0.51,-0.37 0.68,-0.6l0.74,-0.97 6.77,6.81 -1.29,0.54c-2.05,0.85 -4.39,0.38 -5.96,-1.21l-3.24,-3.26 2.29,-1.31ZM79.5,105.56l-1.16,-8.21 13.36,-5.52c0.89,-0.37 1.76,-0.79 2.65,-1.28l-5.86,23.06c-0.19,0.76 -0.78,1.36 -1.53,1.56l-22.89,6.22 13.87,-11.73c1.18,-1 1.79,-2.57 1.57,-4.11ZM63.16,41.68h-15.71c0.1,-2.12 1.85,-3.81 3.98,-3.81 0.49,0 0.95,0.08 1.37,0.25 0.06,0.02 0.12,0.02 0.17,-0.01 0.05,-0.03 0.09,-0.08 0.1,-0.14 0.59,-3.57 3.65,-6.16 7.25,-6.16 3.42,0 6.31,2.36 7.11,5.58l-4.27,4.3ZM107.34,78.43h-11.99c1.18,-2.32 3.58,-3.81 6.19,-3.81 1.38,0 2.71,0.4 3.84,1.15 0.06,0.04 0.14,0.04 0.2,0.01 0.06,-0.03 0.11,-0.1 0.11,-0.17 0.18,-3.95 3.4,-7.05 7.33,-7.05 0.31,0 0.62,0.02 0.92,0.06 0.91,0.11 1.8,0.4 2.59,0.84 1.98,1.08 3.38,3.04 3.75,5.26 0,0.06 0.05,0.11 0.1,0.14 0.05,0.03 0.12,0.03 0.17,0.01 0.41,-0.16 0.87,-0.25 1.37,-0.25 2.13,0 3.87,1.69 3.97,3.81h-18.55ZM53.49,130.98s0,0 0,0c-2.3,-0.67 -4.79,-0.58 -7.1,0.32 -0.04,-8.87 -3.59,-17.48 -9.84,-23.77 -6.17,-6.21 -14.29,-9.7 -22.98,-9.89 1.06,-1.6 1.81,-3.34 2.26,-5.13 2.34,0.49 4.7,0.74 7.05,0.74 8.48,0 16.73,-3.12 22.89,-8.85 0.04,0.06 0.1,0.12 0.15,0.17l2.75,2.77 -7.65,13.54c-0.75,1.33 -0.53,3.03 0.55,4.11 0.64,0.65 1.5,1.01 2.4,1.01 0.59,0 1.17,-0.15 1.7,-0.46l13.46,-7.7 2.3,2.32c-7.67,8.31 -10.66,19.89 -7.95,30.8Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable-night/ic_no_remote.xml"
line="152"
column="25"/>
</issue>
<issue
id="VectorPath"
message="Very long vector path (6216 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
errorLine1=" android:pathData="M121.93,73.12c-0.16,0 -0.34,0 -0.5,0.03 -0.54,-1.65 -1.53,-3.07 -2.83,-4.11 1.28,-1.6 2.24,-4.07 2.33,-6.05 0.04,-0.12 0.05,-0.23 0.05,-0.35v-27.18c0,-5.7 -4.6,-10.34 -10.27,-10.34h-27.06c-2.27,0 -5.28,1.26 -6.87,2.85l-8.16,8.22c-1.22,-3.44 -4.49,-5.86 -8.3,-5.86h-0.01c-3.88,0 -7.21,2.48 -8.39,6.08 -0.16,-0.01 -0.32,-0.03 -0.49,-0.03 -3.01,0 -5.46,2.47 -5.46,5.5 0,0.71 0.57,1.28 1.27,1.28h14.45l-2.11,2.12c-0.06,0.05 -0.13,0.12 -0.19,0.18l-29.05,7.48c-1.81,0.47 -3.22,1.87 -3.71,3.67l-6.2,23.1c-0.55,2.06 0.6,4.16 2.62,4.78l1.12,0.34c0.13,0.04 0.25,0.06 0.37,0.06 0.37,0 0.73,-0.16 0.98,-0.46l0.32,-0.38 12.25,-14.67c0.58,-0.7 1.43,-1.09 2.33,-1.09 0.14,0 0.29,0 0.43,0.03l6.7,0.96 -3.14,7.69c-0.87,2.14 -0.64,4.52 0.56,6.41 -7.56,7.08 -18.43,10.04 -28.87,7.87 0.86,-5.13 -0.7,-10.55 -4.58,-14.45 -0.25,-0.25 -0.67,-0.26 -0.92,0 -0.25,0.25 -0.26,0.66 0,0.92 5.42,5.46 5.94,14.14 1.2,20.19 -0.15,0.2 -0.18,0.46 -0.07,0.69 0.11,0.22 0.34,0.35 0.59,0.36 8.8,-0.15 17.09,3.24 23.31,9.51 6.33,6.37 9.69,14.84 9.45,23.84 0,0.23 0.11,0.44 0.3,0.57 0.19,0.12 0.44,0.13 0.64,0.03 3.78,-1.91 8.33,-1.16 11.32,1.85 1.86,1.88 2.88,4.36 2.88,7 0,0.36 0.29,0.65 0.65,0.65s0.65,-0.29 0.65,-0.65c0,-2.98 -1.16,-5.79 -3.25,-7.91 -0.98,-0.98 -2.1,-1.75 -3.3,-2.3 0,0 0,0 0,0 -2.97,-10.73 -0.15,-22.26 7.43,-30.46 1.24,1.05 2.78,1.62 4.41,1.62 0.91,0 1.8,-0.18 2.64,-0.53l7.64,-3.15 0.95,6.74c0.15,1.04 -0.25,2.09 -1.05,2.76l-14.58,12.32 -0.38,0.32c-0.4,0.33 -0.56,0.86 -0.41,1.37l0.34,1.11c0.51,1.66 2.01,2.77 3.74,2.77 0.33,0 0.68,-0.05 1.02,-0.14l22.96,-6.24c1.79,-0.49 3.19,-1.92 3.65,-3.73l7.43,-29.24c0.06,-0.06 0.12,-0.11 0.18,-0.18l6.93,-6.97h18.24c0.71,0 1.28,-0.57 1.28,-1.28 0,-3.03 -2.45,-5.5 -5.46,-5.5ZM99.89,85.85l-0.41,0.4s-0.02,0 -0.02,0.01c-0.65,0.62 -1.34,1.21 -2.05,1.76l-16.83,-16.94 0.51,-0.66s0.04,-0.07 0.04,-0.11c0.04,-0.06 0.08,-0.13 0.11,-0.2 0.03,-0.05 0.06,-0.1 0.09,-0.15 0.03,-0.07 0.05,-0.14 0.08,-0.21 0.02,-0.06 0.05,-0.11 0.06,-0.17 0.02,-0.07 0.03,-0.15 0.04,-0.22 0,-0.06 0.03,-0.12 0.03,-0.18 0,-0.08 0,-0.15 0,-0.23 0,-0.06 0,-0.11 0,-0.17 0,-0.08 -0.02,-0.15 -0.04,-0.23 0,-0.06 -0.01,-0.11 -0.03,-0.17 -0.02,-0.08 -0.05,-0.15 -0.08,-0.22 -0.02,-0.05 -0.03,-0.11 -0.05,-0.16 -0.03,-0.08 -0.08,-0.15 -0.12,-0.22 -0.03,-0.04 -0.05,-0.09 -0.07,-0.13 -0.08,-0.11 -0.17,-0.22 -0.26,-0.32l-1.84,-1.85c-0.82,-0.83 -2.14,-0.92 -3.07,-0.2l-0.66,0.52 -16.85,-16.95c0.54,-0.72 1.13,-1.42 1.75,-2.07 0.13,-0.15 0.26,-0.28 0.42,-0.42l17.19,-17.31c1.33,-1.33 3.95,-2.41 5.85,-2.41h27.03c4.85,0 8.8,3.97 8.8,8.85v27.13s-0.04,0.08 -0.04,0.12c0,1.74 -0.91,4.09 -2.08,5.5 -1.28,-0.74 -2.77,-1.16 -4.34,-1.16h-0.02c-4.08,0.01 -7.52,2.79 -8.52,6.6 -0.94,-0.35 -1.94,-0.54 -2.95,-0.54 -3.3,0 -6.31,1.95 -7.66,4.97 -0.18,0.4 -0.16,0.86 0.09,1.23 0.24,0.36 0.64,0.58 1.07,0.58h10.74l-5.91,5.95ZM63.37,123.21l-0.3,-0.98 0.23,-0.2 23.78,-6.46s0.04,0 0.06,0c0.84,-0.23 1.5,-0.9 1.71,-1.75l5.99,-23.55c0.18,-0.11 0.36,-0.21 0.52,-0.33 0.42,-0.23 0.84,-0.51 1.33,-0.87 0.12,-0.08 0.23,-0.17 0.34,-0.25 0.04,-0.03 0.07,-0.05 0.11,-0.08 0.06,-0.04 0.13,-0.09 0.18,-0.13 0.06,-0.04 0.14,-0.1 0.19,-0.14 0.18,-0.12 0.35,-0.26 0.52,-0.42 0.08,-0.07 0.16,-0.13 0.25,-0.2 0.24,-0.19 0.44,-0.36 0.6,-0.52 0.12,-0.1 0.24,-0.2 0.36,-0.31l-7.35,28.93c-0.33,1.28 -1.31,2.3 -2.58,2.66 -0.01,0 -0.02,0 -0.03,0l-22.96,6.24c-1.27,0.34 -2.56,-0.38 -2.95,-1.64ZM76.74,65.31s0.04,-0.02 0.07,-0.03c0.17,-0.06 0.35,-0.08 0.53,-0.09 0.04,0 0.08,0 0.12,0 0.06,0 0.12,0 0.18,0.02 0.06,0 0.12,0.01 0.17,0.03 0.06,0.01 0.12,0.03 0.18,0.05 0.05,0.02 0.11,0.03 0.16,0.05 0.07,0.03 0.13,0.07 0.19,0.1 0.04,0.02 0.08,0.04 0.12,0.07 0.1,0.07 0.2,0.15 0.29,0.24l1.84,1.85c0.67,0.68 0.74,1.78 0.15,2.55 -0.02,0.03 -0.03,0.06 -0.03,0.1l-0.55,0.71s0,0 0,0c0,0 0,0 0,0l-16.94,22.06 -0.88,1.15c-0.14,0.19 -0.34,0.37 -0.56,0.49l-16.84,9.62c-0.77,0.43 -1.7,0.3 -2.32,-0.32 -0.61,-0.61 -0.74,-1.56 -0.32,-2.33l9.57,-16.94c0.12,-0.22 0.29,-0.41 0.5,-0.57l23.05,-17.92 0.8,-0.63c0.16,-0.13 0.34,-0.21 0.52,-0.28ZM94.49,89.99s-0.01,0.01 -0.02,0.02c-0.96,0.55 -1.95,1.04 -2.93,1.44l-13.47,5.57s-0.03,0 -0.04,0.01l-7.46,3.07 -6.93,-6.96 16.68,-21.73 16.76,16.87c-0.83,0.62 -1.7,1.2 -2.6,1.71ZM53.41,82.82l-6.93,-6.97 8.6,-21.12c0.38,-0.96 0.85,-1.92 1.43,-2.94 0.53,-0.93 1.11,-1.81 1.72,-2.63l16.77,16.88 -21.59,16.79ZM59.45,46.98c-1.22,1.36 -2.3,2.85 -3.22,4.44l-0.13,0.03h0s-0.03,0 -0.05,0l-23.12,5.95s-0.05,0.02 -0.08,0.03h-0.02c-0.84,0.22 -1.5,0.88 -1.73,1.72 0,0.02 0,0.04 0,0.05 0,0 0,0.01 0,0.02l-6.41,23.89 -0.21,0.25 -0.98,-0.3c-1.26,-0.39 -1.98,-1.69 -1.63,-2.97l6.19,-23.06s0.02,-0.03 0.02,-0.05c0.35,-1.28 1.37,-2.29 2.64,-2.62l28.74,-7.39ZM25.28,82.41l6.2,-23.1c0.2,-0.71 0.76,-1.27 1.46,-1.48l23.01,-5.92c-0.49,0.9 -0.91,1.78 -1.28,2.68l-5.48,13.45 -8.16,-1.17c-1.53,-0.22 -3.09,0.38 -4.08,1.58l-11.67,13.97ZM46.31,76.25l6.78,6.82 -0.96,0.75c-0.25,0.2 -0.46,0.43 -0.6,0.69l-1.3,2.3 -3.24,-3.26c-1.58,-1.59 -2.05,-3.95 -1.2,-6l0.53,-1.29ZM61.98,95.02c0.27,-0.16 0.51,-0.37 0.68,-0.6l0.74,-0.97 6.77,6.81 -1.29,0.54c-2.05,0.85 -4.39,0.38 -5.96,-1.21l-3.24,-3.26 2.29,-1.31ZM79.5,105.56l-1.16,-8.21 13.36,-5.52c0.89,-0.37 1.76,-0.79 2.65,-1.28l-5.86,23.06c-0.19,0.76 -0.78,1.36 -1.53,1.56l-22.89,6.22 13.87,-11.73c1.18,-1 1.79,-2.57 1.57,-4.11ZM63.16,41.68h-15.71c0.1,-2.12 1.85,-3.81 3.98,-3.81 0.49,0 0.95,0.08 1.37,0.25 0.06,0.02 0.12,0.02 0.17,-0.01 0.05,-0.03 0.09,-0.08 0.1,-0.14 0.59,-3.57 3.65,-6.16 7.25,-6.16 3.42,0 6.31,2.36 7.11,5.58l-4.27,4.3ZM107.34,78.43h-11.99c1.18,-2.32 3.58,-3.81 6.19,-3.81 1.38,0 2.71,0.4 3.84,1.15 0.06,0.04 0.14,0.04 0.2,0.01 0.06,-0.03 0.11,-0.1 0.11,-0.17 0.18,-3.95 3.4,-7.05 7.33,-7.05 0.31,0 0.62,0.02 0.92,0.06 0.91,0.11 1.8,0.4 2.59,0.84 1.98,1.08 3.38,3.04 3.75,5.26 0,0.06 0.05,0.11 0.1,0.14 0.05,0.03 0.12,0.03 0.17,0.01 0.41,-0.16 0.87,-0.25 1.37,-0.25 2.13,0 3.87,1.69 3.97,3.81h-18.55ZM53.49,130.98s0,0 0,0c-2.3,-0.67 -4.79,-0.58 -7.1,0.32 -0.04,-8.87 -3.59,-17.48 -9.84,-23.77 -6.17,-6.21 -14.29,-9.7 -22.98,-9.89 1.06,-1.6 1.81,-3.34 2.26,-5.13 2.34,0.49 4.7,0.74 7.05,0.74 8.48,0 16.73,-3.12 22.89,-8.85 0.04,0.06 0.1,0.12 0.15,0.17l2.75,2.77 -7.65,13.54c-0.75,1.33 -0.53,3.03 0.55,4.11 0.64,0.65 1.5,1.01 2.4,1.01 0.59,0 1.17,-0.15 1.7,-0.46l13.46,-7.7 2.3,2.32c-7.67,8.31 -10.66,19.89 -7.95,30.8Z""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/drawable/ic_no_remote.xml"
line="155"
column="25"/>
</issue>
<issue
id="DisableBaselineAlignment"
message="Set `android:baselineAligned="false"` on this element for better performance"
errorLine1=" <LinearLayout"
errorLine2=" ~~~~~~~~~~~~">
<location
file="src/main/res/layout/widget_media_controls.xml"
line="13"
column="6"/>
</issue>
<issue
id="Overdraw"
message="Possible overdraw: Root element paints background `?android:attr/selectableItemBackground` with a theme that also paints a background (inferred theme is `@style/Theme.HomeAssistant`)"
errorLine1=" android:background="?android:attr/selectableItemBackground""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/preference_suggestion.xml"
line="8"
column="5"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.xml.changelog_master` appears to be unused"
errorLine1="<changelog xmlns:tools="http://schemas.android.com/tools""
errorLine2="^">
<location
file="src/main/res/xml/changelog_master.xml"
line="2"
column="1"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.dimen.activity_margin` appears to be unused"
errorLine1=" <dimen name="activity_margin">16dp</dimen>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/values/dimens.xml"
line="3"
column="12"/>
</issue>
<issue
id="UnusedResources"
message="The resource `R.drawable.ic_baseline_info_24` appears to be unused"
errorLine1="<vector xmlns:android="http://schemas.android.com/apk/res/android""
errorLine2="^">
<location
file="src/main/res/drawable/ic_baseline_info_24.xml"