-
Notifications
You must be signed in to change notification settings - Fork 11
/
favicon.ivg.disassembly
994 lines (994 loc) · 30.7 KB
/
favicon.ivg.disassembly
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
89 49 56 47 IconVG Magic identifier
02 Number of metadata chunks: 1
0a Metadata chunk length: 5
02 Metadata Identifier: 1 (suggested palette)
80 1 palette colors, 3 bytes per color
76 e1 fe RGBA 76e1feff
91 Set CREG[CSEL-1] to a 3 byte (direct) color
23 1d 1b RGBA 231d1bff
a1 Set CREG[CSEL-1] to a 3 byte (indirect) color
40 blend 191:64 c0:c1
ff c0: CREG[63]
80 c1: customPalette[0]
c1 Start path, filled with CREG[CSEL-1]; M (absolute moveTo)
31 80 +0.1875
44 -30
b1 c (relative cubeTo), 2 reps
c9 7d -2.21875
05 80 +0.015625
95 7b -4.421875
19 80 +0.09375
61 79 -6.625
31 80 +0.1875
c (relative cubeTo), implicit
51 7b -4.6875
2d 80 +0.171875
fd 76 -9.015625
c5 81 +1.765625
71 73 -12.5625
5d 84 +4.359375
d3 a (relative arcTo), 4 reps
a5 87 +7.640625
29 87 +7.15625
97 8c a7 3d 0.0818111 × 360 degrees (29.451996 degrees)
00 0x0 (largeArc=0, sweep=0)
35 7e -1.796875
a1 7e -1.375
a (relative arcTo), implicit
a5 87 +7.640625
29 87 +7.15625
97 8c a7 3d 0.0818111 × 360 degrees (29.451996 degrees)
00 0x0 (largeArc=0, sweep=0)
d5 75 -10.171875
7d 82 +2.484375
a (relative arcTo), implicit
a5 87 +7.640625
29 87 +7.15625
97 8c a7 3d 0.0818111 × 360 degrees (29.451996 degrees)
00 0x0 (largeArc=0, sweep=0)
21 83 +3.125
94 +10
a (relative arcTo), implicit
a5 87 +7.640625
29 87 +7.15625
97 8c a7 3d 0.0818111 × 360 degrees (29.451996 degrees)
00 0x0 (largeArc=0, sweep=0)
b9 80 +0.71875
5d 80 +0.359375
b0 c (relative cubeTo), 1 reps
71 7f -0.5625
e9 81 +1.90625
21 7f -0.875
ed 83 +3.921875
21 7f -0.875
05 86 +6.015625
e9 v (relative vertical lineTo)
d0 +40
e7 h (relative horizontal lineTo)
f0 +56
e9 v (relative vertical lineTo)
30 -40
b0 c (relative cubeTo), 1 reps
80 +0
ed 7d -2.078125
b5 7f -0.296875
ed 7b -4.078125
29 7f -0.84375
0d 7a -5.953125
d3 a (relative arcTo), 4 reps
29 87 +7.15625
a5 87 +7.640625
b7 39 2c 3e 0.16818887 × 360 degrees (60.547993 degrees)
00 0x0 (largeArc=0, sweep=0)
dd 80 +0.859375
99 7f -0.40625
a (relative arcTo), implicit
29 87 +7.15625
a5 87 +7.640625
b7 39 2c 3e 0.16818887 × 360 degrees (60.547993 degrees)
00 0x0 (largeArc=0, sweep=0)
25 83 +3.140625
6c -10
a (relative arcTo), implicit
29 87 +7.15625
a5 87 +7.640625
b7 39 2c 3e 0.16818887 × 360 degrees (60.547993 degrees)
00 0x0 (largeArc=0, sweep=0)
d5 75 -10.171875
85 7d -2.484375
a (relative arcTo), implicit
29 87 +7.15625
a5 87 +7.640625
b7 39 2c 3e 0.16818887 × 360 degrees (60.547993 degrees)
00 0x0 (largeArc=0, sweep=0)
25 7e -1.859375
75 81 +1.453125
b1 c (relative cubeTo), 2 reps
8d 7c -3.453125
7d 7d -2.515625
51 78 -7.6875
e5 7b -4.109375
b1 73 -12.3125
95 7b -4.421875
c (relative cubeTo), implicit
c9 7d -2.21875
d9 7f -0.15625
95 7b -4.421875
cd 7f -0.203125
5d 79 -6.640625
d1 7f -0.1875
e1 z (closePath); end path
c0 Start path, filled with CREG[CSEL-0]; M (absolute moveTo)
80 +0
4c -26
b5 c (relative cubeTo), 6 reps
55 76 -9.671875
80 +0
29 70 -15.84375
29 82 +2.15625
7d 6c -19.515625
c9 85 +5.78125
c (relative cubeTo), implicit
0d 7f -0.953125
15 7f -0.921875
69 7d -2.59375
f9 7d -2.03125
bd 7c -3.265625
99 7d -2.40625
c (relative cubeTo), implicit
0d 7e -1.953125
e5 7e -1.109375
a1 7b -4.375
7d 7f -0.515625
99 7a -5.40625
51 81 +1.3125
c (relative cubeTo), implicit
f9 7e -1.03125
d5 81 +1.828125
b5 7f -0.296875
39 84 +4.21875
ad 81 +1.671875
51 85 +5.3125
c (relative cubeTo), implicit
89 80 +0.53125
4d 80 +0.296875
75 82 +2.453125
2d 81 +1.171875
81 83 +3.5
7d 81 +1.484375
c (relative cubeTo), implicit
59 7f -0.65625
fd 81 +1.984375
09 7f -0.96875
2d 84 +4.171875
09 7f -0.96875
85 86 +6.515625
e9 v (relative vertical lineTo)
d0 +40
e7 h (relative horizontal lineTo)
e0 +48
b3 c (relative cubeTo), 4 reps
e9 7f -0.09375
49 71 -14.71875
80 +0
38 -36
80 +0
30 -40
c (relative cubeTo), implicit
80 +0
95 7d -2.421875
ad 7f -0.328125
59 7b -4.65625
f9 7e -1.03125
4d 79 -6.703125
c (relative cubeTo), implicit
15 81 +1.078125
99 7f -0.40625
7d 82 +2.484375
f5 7e -1.046875
ed 82 +2.921875
b5 7e -1.296875
c (relative cubeTo), implicit
f5 81 +1.953125
e5 7e -1.109375
b5 82 +2.703125
85 7c -3.484375
ad 81 +1.671875
b1 7a -5.3125
90 s (relative smooth cubeTo), 1 reps
8d 7c -3.453125
95 7d -2.421875
99 7a -5.40625
b1 7e -1.3125
b1 c (relative cubeTo), 2 reps
65 7f -0.609375
59 80 +0.34375
0d 7e -1.953125
45 81 +1.265625
15 7d -2.921875
21 82 +2.125
c (relative cubeTo), implicit
4d 7c -3.703125
8d 7c -3.453125
31 76 -9.8125
81 7a -5.5
c9 6c -19.21875
81 7a -5.5
e1 z (closePath); end path
c1 Start path, filled with CREG[CSEL-1]; M (absolute moveTo)
31 66 -25.8125
d9 6b -20.15625
b5 c (relative cubeTo), 6 reps
e1 7f -0.125
05 80 +0.015625
c9 7f -0.21875
0d 80 +0.046875
b5 7f -0.296875
11 80 +0.0625
c (relative cubeTo), implicit
f9 7f -0.03125
05 80 +0.015625
ed 7f -0.078125
09 80 +0.03125
e5 7f -0.109375
0d 80 +0.046875
c (relative cubeTo), implicit
fd 7f -0.015625
05 80 +0.015625
f9 7f -0.03125
05 80 +0.015625
f1 7f -0.0625
09 80 +0.03125
c (relative cubeTo), implicit
fd 7f -0.015625
80 +0
fd 7f -0.015625
05 80 +0.015625
f5 7f -0.046875
09 80 +0.03125
c (relative cubeTo), implicit
fd 7f -0.015625
05 80 +0.015625
f9 7f -0.03125
09 80 +0.03125
f9 7f -0.03125
09 80 +0.03125
c (relative cubeTo), implicit
80 +0
80 +0
f5 7f -0.046875
11 80 +0.0625
f5 7f -0.046875
11 80 +0.0625
d0 a (relative arcTo), 1 reps
65 80 +0.390625
65 80 +0.390625
00 0 × 360 degrees (0 degrees)
00 0x0 (largeArc=0, sweep=0)
89 80 +0.53125
91 80 +0.5625
b0 c (relative cubeTo), 1 reps
80 +0
80 +0
80 +0
80 +0
05 80 +0.015625
80 +0
d0 a (relative arcTo), 1 reps
65 80 +0.390625
65 80 +0.390625
00 0 × 360 degrees (0 degrees)
00 0x0 (largeArc=0, sweep=0)
05 80 +0.015625
80 +0
ba c (relative cubeTo), 11 reps
09 80 +0.03125
fd 7f -0.015625
19 80 +0.09375
f9 7f -0.03125
2d 80 +0.171875
f9 7f -0.03125
c (relative cubeTo), implicit
29 80 +0.15625
f9 7f -0.03125
69 80 +0.40625
f5 7f -0.046875
bd 80 +0.734375
05 80 +0.015625
c (relative cubeTo), implicit
35 80 +0.203125
09 80 +0.03125
75 80 +0.453125
19 80 +0.09375
b5 80 +0.703125
31 80 +0.1875
c (relative cubeTo), implicit
59 7f -0.65625
25 80 +0.140625
e1 7e -1.125
61 80 +0.375
8d 7e -1.453125
a1 80 +0.625
c (relative cubeTo), implicit
c5 7f -0.234375
31 80 +0.1875
a1 7f -0.375
61 80 +0.375
89 7f -0.46875
89 80 +0.53125
c (relative cubeTo), implicit
f5 7f -0.046875
15 80 +0.078125
ed 7f -0.078125
25 80 +0.140625
e9 7f -0.09375
39 80 +0.21875
c (relative cubeTo), implicit
fd 7f -0.015625
09 80 +0.03125
fd 7f -0.015625
11 80 +0.0625
f9 7f -0.03125
19 80 +0.09375
c (relative cubeTo), implicit
80 +0
05 80 +0.015625
fd 7f -0.015625
09 80 +0.03125
fd 7f -0.015625
11 80 +0.0625
c (relative cubeTo), implicit
80 +0
05 80 +0.015625
80 +0
09 80 +0.03125
80 +0
11 80 +0.0625
c (relative cubeTo), implicit
80 +0
05 80 +0.015625
80 +0
0d 80 +0.046875
80 +0
0d 80 +0.046875
c (relative cubeTo), implicit
80 +0
80 +0
05 80 +0.015625
15 80 +0.078125
05 80 +0.015625
15 80 +0.078125
d1 a (relative arcTo), 2 reps
65 80 +0.390625
65 80 +0.390625
00 0 × 360 degrees (0 degrees)
00 0x0 (largeArc=0, sweep=0)
c5 80 +0.765625
ed 7f -0.078125
a (relative arcTo), implicit
65 80 +0.390625
65 80 +0.390625
00 0 × 360 degrees (0 degrees)
00 0x0 (largeArc=0, sweep=0)
80 +0
80 +0
b2 c (relative cubeTo), 3 reps
80 +0
fd 7f -0.015625
05 80 +0.015625
f9 7f -0.03125
09 80 +0.03125
f1 7f -0.0625
c (relative cubeTo), implicit
0d 80 +0.046875
ed 7f -0.078125
21 80 +0.125
cd 7f -0.203125
49 80 +0.28125
b1 7f -0.3125
c (relative cubeTo), implicit
51 80 +0.3125
c1 7f -0.25
e1 80 +0.875
75 7f -0.546875
f9 81 +1.96875
6d 7f -0.578125
d0 a (relative arcTo), 1 reps
69 80 +0.40625
69 80 +0.40625
00 0 × 360 degrees (0 degrees)
00 0x0 (largeArc=0, sweep=0)
29 80 +0.15625
f9 7f -0.03125
b0 c (relative cubeTo), 1 reps
41 80 +0.25
2d 80 +0.171875
85 80 +0.515625
65 80 +0.390625
cd 80 +0.796875
a9 80 +0.65625
d0 a (relative arcTo), 1 reps
65 80 +0.390625
65 80 +0.390625
00 0 × 360 degrees (0 degrees)
02 0x1 (largeArc=1, sweep=0)
8d 80 +0.546875
6d 7f -0.578125
b1 c (relative cubeTo), 2 reps
c9 7e -1.21875
e1 7e -1.125
b1 7d -2.3125
71 7e -1.5625
e1 7c -3.125
55 7e -1.671875
c (relative cubeTo), implicit
99 7f -0.40625
f1 7f -0.0625
45 7f -0.734375
f5 7f -0.046875
05 7f -0.984375
80 +0
e1 z (closePath); end path
c1 Start path, filled with CREG[CSEL-1]; M (absolute moveTo)
19 99 +25.09375
a5 6b -20.359375
b1 c (relative cubeTo), 2 reps
c5 7f -0.234375
f9 7f -0.03125
6d 7f -0.578125
f5 7f -0.046875
09 7f -0.96875
05 80 +0.015625
c (relative cubeTo), implicit
31 7f -0.8125
21 80 +0.125
1d 7e -1.890625
8d 80 +0.546875
e1 7c -3.125
ad 81 +1.671875
d0 a (relative arcTo), 1 reps
65 80 +0.390625
65 80 +0.390625
00 0 × 360 degrees (0 degrees)
02 0x1 (largeArc=1, sweep=0)
89 80 +0.53125
95 80 +0.578125
b3 c (relative cubeTo), 4 reps
6d 80 +0.421875
9d 7f -0.390625
d1 80 +0.8125
55 7f -0.671875
31 81 +1.1875
1d 7f -0.890625
c (relative cubeTo), implicit
09 81 +1.03125
0d 80 +0.046875
99 81 +1.59375
55 80 +0.328125
e5 81 +1.890625
91 80 +0.5625
c (relative cubeTo), implicit
29 80 +0.15625
21 80 +0.125
3d 80 +0.234375
3d 80 +0.234375
49 80 +0.28125
55 80 +0.328125
c (relative cubeTo), implicit
05 80 +0.015625
09 80 +0.03125
09 80 +0.03125
0d 80 +0.046875
09 80 +0.03125
11 80 +0.0625
d0 a (relative arcTo), 1 reps
65 80 +0.390625
65 80 +0.390625
00 0 × 360 degrees (0 degrees)
00 0x0 (largeArc=0, sweep=0)
c5 80 +0.765625
15 80 +0.078125
bb c (relative cubeTo), 12 reps
80 +0
80 +0
05 80 +0.015625
ed 7f -0.078125
05 80 +0.015625
ed 7f -0.078125
c (relative cubeTo), implicit
80 +0
80 +0
80 +0
f9 7f -0.03125
80 +0
f5 7f -0.046875
c (relative cubeTo), implicit
80 +0
f9 7f -0.03125
80 +0
f5 7f -0.046875
80 +0
f1 7f -0.0625
c (relative cubeTo), implicit
80 +0
f9 7f -0.03125
fd 7f -0.015625
f5 7f -0.046875
fd 7f -0.015625
f1 7f -0.0625
c (relative cubeTo), implicit
80 +0
f9 7f -0.03125
fd 7f -0.015625
f1 7f -0.0625
f9 7f -0.03125
e9 7f -0.09375
c (relative cubeTo), implicit
fd 7f -0.015625
f1 7f -0.0625
f1 7f -0.0625
dd 7f -0.140625
e9 7f -0.09375
c9 7f -0.21875
c (relative cubeTo), implicit
e9 7f -0.09375
d9 7f -0.15625
c5 7f -0.234375
a9 7f -0.34375
89 7f -0.46875
79 7f -0.53125
c (relative cubeTo), implicit
c5 7f -0.234375
d1 7f -0.1875
71 7f -0.5625
a1 7f -0.375
05 7f -0.984375
7d 7f -0.515625
c (relative cubeTo), implicit
09 80 +0.03125
80 +0
15 80 +0.078125
fd 7f -0.015625
1d 80 +0.109375
f9 7f -0.03125
c (relative cubeTo), implicit
55 80 +0.328125
f5 7f -0.046875
95 80 +0.578125
f9 7f -0.03125
bd 80 +0.734375
fd 7f -0.015625
c (relative cubeTo), implicit
15 80 +0.078125
05 80 +0.015625
21 80 +0.125
09 80 +0.03125
29 80 +0.15625
09 80 +0.03125
c (relative cubeTo), implicit
80 +0
80 +0
80 +0
80 +0
80 +0
80 +0
d0 a (relative arcTo), 1 reps
65 80 +0.390625
65 80 +0.390625
00 0 × 360 degrees (0 degrees)
00 0x0 (largeArc=0, sweep=0)
8d 80 +0.546875
71 7f -0.5625
b5 c (relative cubeTo), 6 reps
80 +0
80 +0
f5 7f -0.046875
f1 7f -0.0625
f5 7f -0.046875
f1 7f -0.0625
c (relative cubeTo), implicit
80 +0
80 +0
f9 7f -0.03125
fd 7f -0.015625
f9 7f -0.03125
f9 7f -0.03125
c (relative cubeTo), implicit
fd 7f -0.015625
fd 7f -0.015625
f9 7f -0.03125
f9 7f -0.03125
f5 7f -0.046875
f9 7f -0.03125
c (relative cubeTo), implicit
f9 7f -0.03125
fd 7f -0.015625
f5 7f -0.046875
fd 7f -0.015625
f1 7f -0.0625
f9 7f -0.03125
c (relative cubeTo), implicit
f9 7f -0.03125
fd 7f -0.015625
f1 7f -0.0625
f9 7f -0.03125
e5 7f -0.109375
f9 7f -0.03125
c (relative cubeTo), implicit
ed 7f -0.078125
f9 7f -0.03125
d5 7f -0.171875
f5 7f -0.046875
b5 7f -0.296875
f1 7f -0.0625
e1 z (closePath); end path
80 Set CREG[CSEL-0] to a 1 byte color
7c RGBA ffffffff
91 Set CREG[CSEL-1] to a 3 byte (direct) color
17 13 11 RGBA 171311ff
9a Set CREG[CSEL-2] to a 4 byte color
00 00 00 54 RGBA 00000054
93 Set CREG[CSEL-3] to a 3 byte (direct) color
ff fc fb RGBA fffcfbff
94 Set CREG[CSEL-4] to a 3 byte (direct) color
c3 8c 74 RGBA c38c74ff
95 Set CREG[CSEL-5] to a 3 byte (direct) color
23 20 1f RGBA 23201fff
c0 Start path, filled with CREG[CSEL-0]; M (absolute moveTo)
59 7e -1.65625
fd 73 -12.015625
d3 a (relative arcTo), 4 reps
a9 89 +9.65625
a9 89 +9.65625
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
59 76 -9.65625
a9 89 +9.65625
a (relative arcTo), implicit
a9 89 +9.65625
a9 89 +9.65625
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
59 76 -9.65625
59 76 -9.65625
a (relative arcTo), implicit
a9 89 +9.65625
a9 89 +9.65625
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
a9 89 +9.65625
59 76 -9.65625
a (relative arcTo), implicit
a9 89 +9.65625
a9 89 +9.65625
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
a9 89 +9.65625
a9 89 +9.65625
e1 z (closePath); end path
c0 Start path, filled with CREG[CSEL-0]; M (absolute moveTo)
a9 93 +19.65625
fd 73 -12.015625
d3 a (relative arcTo), 4 reps
51 89 +9.3125
51 89 +9.3125
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
b1 76 -9.3125
51 89 +9.3125
a (relative arcTo), implicit
51 89 +9.3125
51 89 +9.3125
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
b1 76 -9.3125
b1 76 -9.3125
a (relative arcTo), implicit
51 89 +9.3125
51 89 +9.3125
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
51 89 +9.3125
b1 76 -9.3125
a (relative arcTo), implicit
51 89 +9.3125
51 89 +9.3125
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
51 89 +9.3125
51 89 +9.3125
e1 z (closePath); end path
c1 Start path, filled with CREG[CSEL-1]; M (absolute moveTo)
c1 7c -3.25
fd 73 -12.015625
d3 a (relative arcTo), 4 reps
ed 83 +3.921875
ed 83 +3.921875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
15 7c -3.921875
ed 83 +3.921875
a (relative arcTo), implicit
ed 83 +3.921875
ed 83 +3.921875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
15 7c -3.921875
15 7c -3.921875
a (relative arcTo), implicit
ed 83 +3.921875
ed 83 +3.921875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
ed 83 +3.921875
15 7c -3.921875
a (relative arcTo), implicit
ed 83 +3.921875
ed 83 +3.921875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
ed 83 +3.921875
ed 83 +3.921875
e1 z (closePath); end path
c1 Start path, filled with CREG[CSEL-1]; M (absolute moveTo)
25 92 +18.140625
fd 73 -12.015625
d3 a (relative arcTo), 4 reps
ed 83 +3.921875
ed 83 +3.921875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
15 7c -3.921875
ed 83 +3.921875
a (relative arcTo), implicit
ed 83 +3.921875
ed 83 +3.921875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
15 7c -3.921875
15 7c -3.921875
a (relative arcTo), implicit
ed 83 +3.921875
ed 83 +3.921875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
ed 83 +3.921875
15 7c -3.921875
a (relative arcTo), implicit
ed 83 +3.921875
ed 83 +3.921875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
ed 83 +3.921875
ed 83 +3.921875
e1 z (closePath); end path
c2 Start path, filled with CREG[CSEL-2]; M (absolute moveTo)
b1 7d -2.3125
1d 7f -0.890625
e7 h (relative horizontal lineTo)
71 84 +4.4375
b0 c (relative cubeTo), 1 reps
cd 80 +0.796875
80 +0
75 81 +1.453125
a5 80 +0.640625
75 81 +1.453125
75 81 +1.453125
e9 v (relative vertical lineTo)
51 85 +5.3125
b0 c (relative cubeTo), 1 reps
80 +0
cd 80 +0.796875
5d 7f -0.640625
75 81 +1.453125
8d 7e -1.453125
75 81 +1.453125
e7 h (relative horizontal lineTo)
91 7b -4.4375
b0 c (relative cubeTo), 1 reps
35 7f -0.796875
80 +0
8d 7e -1.453125
5d 7f -0.640625
8d 7e -1.453125
8d 7e -1.453125
e9 v (relative vertical lineTo)
b1 7a -5.3125
b0 c (relative cubeTo), 1 reps
80 +0
35 7f -0.796875
a5 80 +0.640625
8d 7e -1.453125
75 81 +1.453125
8d 7e -1.453125
e1 z (closePath); end path
c3 Start path, filled with CREG[CSEL-3]; M (absolute moveTo)
b1 7d -2.3125
b9 7d -2.28125
e7 h (relative horizontal lineTo)
71 84 +4.4375
b0 c (relative cubeTo), 1 reps
cd 80 +0.796875
80 +0
75 81 +1.453125
a5 80 +0.640625
75 81 +1.453125
75 81 +1.453125
e9 v (relative vertical lineTo)
51 85 +5.3125
b0 c (relative cubeTo), 1 reps
80 +0
cd 80 +0.796875
5d 7f -0.640625
75 81 +1.453125
8d 7e -1.453125
75 81 +1.453125
e7 h (relative horizontal lineTo)
91 7b -4.4375
b0 c (relative cubeTo), 1 reps
35 7f -0.796875
80 +0
8d 7e -1.453125
5d 7f -0.640625
8d 7e -1.453125
8d 7e -1.453125
e9 v (relative vertical lineTo)
b1 7a -5.3125
b0 c (relative cubeTo), 1 reps
80 +0
35 7f -0.796875
a5 80 +0.640625
8d 7e -1.453125
75 81 +1.453125
8d 7e -1.453125
e1 z (closePath); end path
c2 Start path, filled with CREG[CSEL-2]; M (absolute moveTo)
90 +8
55 80 +0.328125
b7 c (relative cubeTo), 8 reps
80 +0
ad 81 +1.671875
41 7e -1.75
89 82 +2.53125
b5 7b -4.296875
55 82 +2.328125
c (relative cubeTo), implicit
f5 7f -0.046875
80 +0
e9 7f -0.09375
cd 7e -1.203125
7d 7f -0.515625
d5 7e -1.171875
c (relative cubeTo), implicit
7e -1
15 80 +0.078125
d1 7d -2.1875
f5 7f -0.046875
a1 7c -3.375
f5 7f -0.046875
c (relative cubeTo), implicit
c9 7e -1.21875
80 +0
99 7d -2.40625
5d 80 +0.359375
a1 7c -3.375
09 80 +0.03125
c (relative cubeTo), implicit
c9 7f -0.21875
ed 7f -0.078125
a5 7f -0.359375
2d 81 +1.171875
7d 7f -0.515625
29 81 +1.15625
c (relative cubeTo), implicit
85 7d -2.484375
f1 7f -0.0625
d9 7b -4.15625
55 7f -0.671875
d9 7b -4.15625
ad 7d -2.328125
c (relative cubeTo), implicit
80 +0
95 7d -2.421875
a1 83 +3.625
9d 7b -4.390625
1d 88 +8.109375
9d 7b -4.390625
c (relative cubeTo), implicit
7d 84 +4.484375
80 +0
1d 88 +8.109375
f9 81 +1.96875
1d 88 +8.109375
65 84 +4.390625
e1 z (closePath); end path
c4 Start path, filled with CREG[CSEL-4]; M (absolute moveTo)
f5 87 +7.953125
ad 7e -1.328125
b6 c (relative cubeTo), 7 reps
80 +0
25 81 +1.140625
21 7f -0.875
b5 81 +1.703125
b9 7d -2.28125
84 +2
c (relative cubeTo), implicit
6d 7f -0.578125
21 80 +0.125
bd 7e -1.265625
31 80 +0.1875
7c -2
3d 80 +0.234375
c (relative cubeTo), implicit
e1 7e -1.125
11 80 +0.0625
95 7d -2.421875
11 80 +0.0625
39 7c -3.78125
11 80 +0.0625
c (relative cubeTo), implicit
a9 7e -1.34375
80 +0
65 7d -2.609375
80 +0
45 7c -3.734375
f1 7f -0.0625
c (relative cubeTo), implicit
65 7f -0.609375
f9 7f -0.03125
d5 7e -1.171875
e9 7f -0.09375
51 7e -1.6875
d5 7f -0.171875
c (relative cubeTo), implicit
61 7e -1.625
bd 7f -0.265625
59 7d -2.65625
2d 7f -0.828125
59 7d -2.65625
f1 7d -2.0625
c (relative cubeTo), implicit
80 +0
b1 7d -2.3125
9d 83 +3.609375
cd 7b -4.203125
11 88 +8.0625
cd 7b -4.203125
90 s (relative smooth cubeTo), 1 reps
11 88 +8.0625
e1 81 +1.875
11 88 +8.0625
35 84 +4.203125
e1 z (closePath); end path
c5 Start path, filled with CREG[CSEL-5]; M (absolute moveTo)
0d 84 +4.046875
f9 7a -5.03125
d3 a (relative arcTo), 4 reps
29 84 +4.15625
b1 82 +2.6875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
d9 7b -4.15625
b1 82 +2.6875
a (relative arcTo), implicit
29 84 +4.15625
b1 82 +2.6875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
d9 7b -4.15625
51 7d -2.6875
a (relative arcTo), implicit
29 84 +4.15625
b1 82 +2.6875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
29 84 +4.15625
51 7d -2.6875
a (relative arcTo), implicit
29 84 +4.15625
b1 82 +2.6875
00 0 × 360 degrees (0 degrees)
04 0x2 (largeArc=0, sweep=1)
29 84 +4.15625
b1 82 +2.6875
e1 z (closePath); end path