-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesargues.eps
1206 lines (1205 loc) · 63.4 KB
/
desargues.eps
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
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: EpsGraphics 1.0.0 by Thomas Abeel, http://www.sourceforge.net/epsgraphics/
%%Title: GeoGebra, https://www.geogebra.org/
%%CreationDate: Mon Nov 21 21:05:30 CET 2016
%%BoundingBox: 0 0 612 331
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%DocumentProcessColors: Black
%%ColorUsage: Color
%%Origin: 0 0
%%Pages: 1
%%Page: 1 1
%%EndComments
gsave
0.0 331.0 translate
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
gsave
newpath
0.0 -0.0 moveto
612.2834645669287 -0.0 lineto
612.2834645669287 -331.6535433070864 lineto
0.0 -331.6535433070864 lineto
0.0 -0.0 lineto
closepath
clip
newpath
1.0 1.0 1.0 setrgbcolor
newpath
0.0 -0.0 moveto
612.2834645669287 -0.0 lineto
612.2834645669287 -331.6535433070864 lineto
0.0 -331.6535433070864 lineto
0.0 -0.0 lineto
closepath
fill
newpath
0.9607843 0.92156863 0.9019608 setrgbcolor
newpath
359.6689222440943 -180.40054249200284 moveto
311.7477354515254 -184.59936138964065 lineto
267.0236220472439 -125.29133858267708 lineto
closepath
fill
newpath
0.9607843 0.92156863 0.9019608 setrgbcolor
newpath
94.61733744463577 -306.10768331692896 moveto
296.50393700787384 -234.14173228346442 lineto
359.4330708661415 -289.13385826771633 lineto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
2.5 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
359.33468837002744 -334.4881889763777 moveto
360.06640818487705 2.834645669291337 lineto
stroke
newpath
0.0 0.0 0.0 setrgbcolor
2.5 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
265.62810417928523 -334.4881889763777 moveto
369.419745608722 2.834645669291337 lineto
stroke
newpath
0.0 0.0 0.0 setrgbcolor
2.5 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
67.55685771836654 -334.4881889763777 moveto
389.19025819446995 2.834645669291337 lineto
stroke
newpath
0.0 0.0 0.0 setrgbcolor
1.5 setlinewidth
10.0 setmiterlimit
1 setlinejoin
0 setlinecap
[ 5.5 4.0 ] 0 setdash
newpath
-2.834645669291337 -212.16273804553197 moveto
615.1181102362201 -158.01835929178316 lineto
stroke
newpath
0.0 0.0 0.0 setrgbcolor
1.5 setlinewidth
10.0 setmiterlimit
1 setlinejoin
0 setlinecap
[ 5.5 4.0 ] 0 setdash
newpath
25.32478285575111 2.834645669291337 moveto
411.33338745028 -334.4881889763777 lineto
stroke
newpath
0.0 0.0 0.0 setrgbcolor
1.5 setlinewidth
10.0 setmiterlimit
1 setlinejoin
0 setlinecap
[ 5.5 4.0 ] 0 setdash
newpath
51.628202252890624 2.834645669291337 moveto
615.1181102362201 -332.3521430996865 lineto
stroke
newpath
0.0 0.0 0.0 setrgbcolor
1.5 setlinewidth
10.0 setmiterlimit
1 setlinejoin
0 setlinecap
[ 5.5 4.0 ] 0 setdash
newpath
-2.834645669291337 -312.3540388085232 moveto
615.1181102362201 -272.7452801395413 lineto
stroke
newpath
0.0 0.0 0.0 setrgbcolor
1.5 setlinewidth
10.0 setmiterlimit
1 setlinejoin
0 setlinecap
[ 5.5 4.0 ] 0 setdash
newpath
424.77878173861956 -334.4881889763777 moveto
170.40393074575113 2.834645669291337 lineto
stroke
newpath
0.0 0.0 0.0 setrgbcolor
1.5 setlinewidth
10.0 setmiterlimit
1 setlinejoin
0 setlinecap
[ 5.5 4.0 ] 0 setdash
newpath
15.001306190861435 -334.4881889763777 moveto
615.1181102362201 -120.56622770358184 lineto
stroke
newpath
1.0 0.0 0.0 setrgbcolor
4.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
-2.834645669291337 -111.33416096229759 moveto
615.1181102362201 -307.21785584068186 lineto
stroke
newpath
0.6 0.2 0.0 setrgbcolor
4.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
359.6689348737429 -180.40055076351052 moveto
311.7477452064915 -184.59935563795733 lineto
stroke
newpath
0.6 0.2 0.0 setrgbcolor
4.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
311.7477452064915 -184.59935563795733 moveto
267.02362204724403 -125.29133858267717 lineto
stroke
newpath
0.6 0.2 0.0 setrgbcolor
4.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
267.02362204724403 -125.29133858267717 moveto
359.6689348737429 -180.40055076351052 lineto
stroke
newpath
0.5019608 0.0 0.0 setrgbcolor
4.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
94.6173391787216 -306.1076840301517 moveto
296.50393700787396 -234.14173228346445 lineto
stroke
newpath
0.5019608 0.0 0.0 setrgbcolor
4.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
296.50393700787396 -234.14173228346445 moveto
359.43307086614163 -289.13385826771633 lineto
stroke
newpath
0.5019608 0.0 0.0 setrgbcolor
4.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
359.43307086614163 -289.13385826771633 moveto
94.6173391787216 -306.1076840301517 lineto
stroke
newpath
0.0 0.0 0.0 setrgbcolor
4.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
363.96850393700777 -27.77952755905523 moveto
363.96850393700777 -29.971271763108142 362.19174420405284 -31.748031496063103 359.9999999999999 -31.748031496063103 curveto
357.808255795947 -31.748031496063103 356.03149606299206 -29.971271763108142 356.03149606299206 -27.77952755905523 curveto
356.03149606299206 -25.58778335500232 357.808255795947 -23.811023622047358 359.9999999999999 -23.811023622047358 curveto
362.19174420405284 -23.811023622047358 363.96850393700777 -25.58778335500232 363.96850393700777 -27.77952755905523 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
363.96850393700777 -27.77952755905523 moveto
363.96850393700777 -29.971271763108142 362.19174420405284 -31.748031496063103 359.9999999999999 -31.748031496063103 curveto
357.808255795947 -31.748031496063103 356.03149606299206 -29.971271763108142 356.03149606299206 -27.77952755905523 curveto
356.03149606299206 -25.58778335500232 357.808255795947 -23.811023622047358 359.9999999999999 -23.811023622047358 curveto
362.19174420405284 -23.811023622047358 363.96850393700777 -25.58778335500232 363.96850393700777 -27.77952755905523 curveto
closepath
stroke
newpath
0.49019608 0.49019608 1.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
362.83464566929126 -289.13385826771633 moveto
362.83464566929126 -291.01249615690455 361.31170875532985 -292.53543307086596 359.43307086614163 -292.53543307086596 curveto
357.5544329769534 -292.53543307086596 356.03149606299206 -291.01249615690455 356.03149606299206 -289.13385826771633 curveto
356.03149606299206 -287.2552203785282 357.5544329769534 -285.73228346456676 359.43307086614163 -285.73228346456676 curveto
361.31170875532985 -285.73228346456676 362.83464566929126 -287.2552203785282 362.83464566929126 -289.13385826771633 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
362.83464566929126 -289.13385826771633 moveto
362.83464566929126 -291.01249615690455 361.31170875532985 -292.53543307086596 359.43307086614163 -292.53543307086596 curveto
357.5544329769534 -292.53543307086596 356.03149606299206 -291.01249615690455 356.03149606299206 -289.13385826771633 curveto
356.03149606299206 -287.2552203785282 357.5544329769534 -285.73228346456676 359.43307086614163 -285.73228346456676 curveto
361.31170875532985 -285.73228346456676 362.83464566929126 -287.2552203785282 362.83464566929126 -289.13385826771633 curveto
closepath
stroke
newpath
0.49019608 0.49019608 1.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
299.9055118110236 -234.14173228346445 moveto
299.9055118110236 -236.02037017265266 298.38257489706217 -237.54330708661405 296.50393700787396 -237.54330708661405 curveto
294.62529911868575 -237.54330708661405 293.1023622047244 -236.02037017265266 293.1023622047244 -234.14173228346445 curveto
293.1023622047244 -232.26309439427627 294.62529911868575 -230.74015748031485 296.50393700787396 -230.74015748031485 curveto
298.38257489706217 -230.74015748031485 299.9055118110236 -232.26309439427627 299.9055118110236 -234.14173228346445 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
299.9055118110236 -234.14173228346445 moveto
299.9055118110236 -236.02037017265266 298.38257489706217 -237.54330708661405 296.50393700787396 -237.54330708661405 curveto
294.62529911868575 -237.54330708661405 293.1023622047244 -236.02037017265266 293.1023622047244 -234.14173228346445 curveto
293.1023622047244 -232.26309439427627 294.62529911868575 -230.74015748031485 296.50393700787396 -230.74015748031485 curveto
298.38257489706217 -230.74015748031485 299.9055118110236 -232.26309439427627 299.9055118110236 -234.14173228346445 curveto
closepath
stroke
newpath
0.49019608 0.49019608 1.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
363.0705096768925 -180.40055076351052 moveto
363.0705096768925 -182.27918865269874 361.5475727629311 -183.80212556666012 359.6689348737429 -183.80212556666012 curveto
357.79029698455474 -183.80212556666012 356.2673600705933 -182.27918865269874 356.2673600705933 -180.40055076351052 curveto
356.2673600705933 -178.52191287432234 357.79029698455474 -176.99897596036092 359.6689348737429 -176.99897596036092 curveto
361.5475727629311 -176.99897596036092 363.0705096768925 -178.52191287432234 363.0705096768925 -180.40055076351052 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
363.0705096768925 -180.40055076351052 moveto
363.0705096768925 -182.27918865269874 361.5475727629311 -183.80212556666012 359.6689348737429 -183.80212556666012 curveto
357.79029698455474 -183.80212556666012 356.2673600705933 -182.27918865269874 356.2673600705933 -180.40055076351052 curveto
356.2673600705933 -178.52191287432234 357.79029698455474 -176.99897596036092 359.6689348737429 -176.99897596036092 curveto
361.5475727629311 -176.99897596036092 363.0705096768925 -178.52191287432234 363.0705096768925 -180.40055076351052 curveto
closepath
stroke
newpath
0.49019608 0.49019608 1.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
315.14932000964114 -184.59935563795733 moveto
315.14932000964114 -186.47799352714551 313.6263830956797 -188.00093044110693 311.7477452064915 -188.00093044110693 curveto
309.86910731730336 -188.00093044110693 308.34617040334194 -186.47799352714551 308.34617040334194 -184.59935563795733 curveto
308.34617040334194 -182.72071774876912 309.86910731730336 -181.19778083480773 311.7477452064915 -181.19778083480773 curveto
313.6263830956797 -181.19778083480773 315.14932000964114 -182.72071774876912 315.14932000964114 -184.59935563795733 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
315.14932000964114 -184.59935563795733 moveto
315.14932000964114 -186.47799352714551 313.6263830956797 -188.00093044110693 311.7477452064915 -188.00093044110693 curveto
309.86910731730336 -188.00093044110693 308.34617040334194 -186.47799352714551 308.34617040334194 -184.59935563795733 curveto
308.34617040334194 -182.72071774876912 309.86910731730336 -181.19778083480773 311.7477452064915 -181.19778083480773 curveto
313.6263830956797 -181.19778083480773 315.14932000964114 -182.72071774876912 315.14932000964114 -184.59935563795733 curveto
closepath
stroke
newpath
0.49019608 0.49019608 1.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
270.42519685039366 -125.29133858267717 moveto
270.42519685039366 -127.16997647186538 268.90225993643224 -128.69291338582678 267.02362204724403 -128.69291338582678 curveto
265.1449841580558 -128.69291338582678 263.6220472440944 -127.16997647186538 263.6220472440944 -125.29133858267717 curveto
263.6220472440944 -123.41270069348896 265.1449841580558 -121.88976377952757 267.02362204724403 -121.88976377952757 curveto
268.90225993643224 -121.88976377952757 270.42519685039366 -123.41270069348896 270.42519685039366 -125.29133858267717 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
270.42519685039366 -125.29133858267717 moveto
270.42519685039366 -127.16997647186538 268.90225993643224 -128.69291338582678 267.02362204724403 -128.69291338582678 curveto
265.1449841580558 -128.69291338582678 263.6220472440944 -127.16997647186538 263.6220472440944 -125.29133858267717 curveto
263.6220472440944 -123.41270069348896 265.1449841580558 -121.88976377952757 267.02362204724403 -121.88976377952757 curveto
268.90225993643224 -121.88976377952757 270.42519685039366 -123.41270069348896 270.42519685039366 -125.29133858267717 curveto
closepath
stroke
newpath
0.49019608 0.49019608 1.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
98.0189139818712 -306.1076840301517 moveto
98.0189139818712 -307.9863219193399 96.4959770679098 -309.5092588333013 94.6173391787216 -309.5092588333013 curveto
92.73870128953338 -309.5092588333013 91.21576437557198 -307.9863219193399 91.21576437557198 -306.1076840301517 curveto
91.21576437557198 -304.22904614096353 92.73870128953338 -302.7061092270021 94.6173391787216 -302.7061092270021 curveto
96.4959770679098 -302.7061092270021 98.0189139818712 -304.22904614096353 98.0189139818712 -306.1076840301517 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
98.0189139818712 -306.1076840301517 moveto
98.0189139818712 -307.9863219193399 96.4959770679098 -309.5092588333013 94.6173391787216 -309.5092588333013 curveto
92.73870128953338 -309.5092588333013 91.21576437557198 -307.9863219193399 91.21576437557198 -306.1076840301517 curveto
91.21576437557198 -304.22904614096353 92.73870128953338 -302.7061092270021 94.6173391787216 -302.7061092270021 curveto
96.4959770679098 -302.7061092270021 98.0189139818712 -304.22904614096353 98.0189139818712 -306.1076840301517 curveto
closepath
stroke
newpath
1.0 0.84313726 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
249.76813353256438 -190.3279873013876 moveto
249.76813353256438 -192.2066251905758 248.245196618603 -193.7295621045372 246.36655872941478 -193.7295621045372 curveto
244.4879208402266 -193.7295621045372 242.96498392626518 -192.2066251905758 242.96498392626518 -190.3279873013876 curveto
242.96498392626518 -188.4493494121994 244.4879208402266 -186.926412498238 246.36655872941478 -186.926412498238 curveto
248.245196618603 -186.926412498238 249.76813353256438 -188.4493494121994 249.76813353256438 -190.3279873013876 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
249.76813353256438 -190.3279873013876 moveto
249.76813353256438 -192.2066251905758 248.245196618603 -193.7295621045372 246.36655872941478 -193.7295621045372 curveto
244.4879208402266 -193.7295621045372 242.96498392626518 -192.2066251905758 242.96498392626518 -190.3279873013876 curveto
242.96498392626518 -188.4493494121994 244.4879208402266 -186.926412498238 246.36655872941478 -186.926412498238 curveto
248.245196618603 -186.926412498238 249.76813353256438 -188.4493494121994 249.76813353256438 -190.3279873013876 curveto
closepath
stroke
newpath
1.0 0.84313726 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
528.0606370453052 -278.5434104451056 moveto
528.0606370453052 -280.42204833429383 526.5377001313437 -281.94498524825525 524.6590622421555 -281.94498524825525 curveto
522.7804243529674 -281.94498524825525 521.257487439006 -280.42204833429383 521.257487439006 -278.5434104451056 curveto
521.257487439006 -276.6647725559174 522.7804243529674 -275.14183564195605 524.6590622421555 -275.14183564195605 curveto
526.5377001313437 -275.14183564195605 528.0606370453052 -276.6647725559174 528.0606370453052 -278.5434104451056 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
528.0606370453052 -278.5434104451056 moveto
528.0606370453052 -280.42204833429383 526.5377001313437 -281.94498524825525 524.6590622421555 -281.94498524825525 curveto
522.7804243529674 -281.94498524825525 521.257487439006 -280.42204833429383 521.257487439006 -278.5434104451056 curveto
521.257487439006 -276.6647725559174 522.7804243529674 -275.14183564195605 524.6590622421555 -275.14183564195605 curveto
526.5377001313437 -275.14183564195605 528.0606370453052 -276.6647725559174 528.0606370453052 -278.5434104451056 curveto
closepath
stroke
newpath
1.0 0.84313726 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
341.364519861621 -219.36295546064764 moveto
341.364519861621 -221.24159334983585 339.84158294765956 -222.76453026379727 337.9629450584714 -222.76453026379727 curveto
336.0843071692832 -222.76453026379727 334.5613702553218 -221.24159334983585 334.5613702553218 -219.36295546064764 curveto
334.5613702553218 -217.48431757145946 336.0843071692832 -215.96138065749804 337.9629450584714 -215.96138065749804 curveto
339.84158294765956 -215.96138065749804 341.364519861621 -217.48431757145946 341.364519861621 -219.36295546064764 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
341.364519861621 -219.36295546064764 moveto
341.364519861621 -221.24159334983585 339.84158294765956 -222.76453026379727 337.9629450584714 -222.76453026379727 curveto
336.0843071692832 -222.76453026379727 334.5613702553218 -221.24159334983585 334.5613702553218 -219.36295546064764 curveto
334.5613702553218 -217.48431757145946 336.0843071692832 -215.96138065749804 337.9629450584714 -215.96138065749804 curveto
339.84158294765956 -215.96138065749804 341.364519861621 -217.48431757145946 341.364519861621 -219.36295546064764 curveto
closepath
stroke
newpath
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
347.9261659637209 -20.185012517012936 moveto
347.9261659637209 -20.185012517012936 lineto
347.9261659637209 -22.251941712470494 347.20274074531073 -24.11217789598336 345.7558903731697 -25.765721178430258 curveto
344.5157328558952 -27.4192645347963 342.96553601474136 -28.55607551837881 341.1052998219886 -29.1761542492964 curveto
340.48522106335133 -29.1761542492964 339.96848879220664 -29.1761542492964 339.5551029715949 -29.1761542492964 curveto
337.90155961522885 -29.1761542492964 336.5580557121006 -28.65942195043201 335.5245911605713 -27.6259573989027 curveto
334.69781948238824 -26.592492801173922 334.2844336802563 -25.352335330098853 334.2844336802563 -23.905484957957817 curveto
334.2844336802563 -22.04524868204602 335.0078588986664 -20.185012489293257 336.4547092708075 -18.3247762965405 curveto
337.69486678808204 -16.671232940174455 339.24506362923586 -15.637768416364823 341.1052998219886 -15.224382595753099 curveto
341.7253785806259 -15.017689676207343 342.3454573115435 -14.914343225674358 342.96553604246105 -14.914343225674358 curveto
344.6190793988271 -14.914343225674358 345.96258330195536 -15.534421984311624 346.99604785348464 -16.7745794461468 curveto
347.61612661212195 -17.60135112432982 347.9261659637209 -18.7381621448719 347.9261659637209 -20.185012517012936 curveto
closepath
339.5551029715949 -28.86611487921766 moveto
339.5551029715949 -28.86611487921766 lineto
340.7952604888694 -28.86611487921766 341.9320714909317 -28.246036120580392 342.96553604246105 -27.005878658745218 curveto
343.37892188155257 -26.799185739199462 343.6889612423914 -26.5924928288936 343.89565415269726 -26.38579991858774 curveto
345.13581166997176 -24.732256562221693 345.85923683294254 -22.76867390045616 346.06592974324843 -20.495051887091677 curveto
346.2726226627942 -20.081666048000166 346.3759691133272 -19.77162668716132 346.3759691133272 -19.564933776855458 curveto
346.3759691133272 -17.70469750094366 345.75589035468994 -16.464540066828164 344.51573289285477 -15.844461335910578 curveto
344.51573289285477 -15.844461335910578 344.51573289285477 -15.844461335910578 344.51573289285477 -15.844461335910578 curveto
343.89565413421747 -15.431075496819068 343.3789218630728 -15.224382595753099 342.96553604246105 -15.224382595753099 curveto
341.7253785251865 -15.224382595753099 340.48522106335133 -15.844461354390365 339.24506360151616 -17.084618816225536 curveto
338.83167776242465 -17.498004655317047 338.4182919418129 -17.911390475928773 338.0049061212012 -18.3247762965405 curveto
336.97144152347244 -19.978319652906542 336.3513628110346 -21.838555854899194 336.1446699007288 -23.905484957957817 curveto
336.1446699007288 -24.112177877503573 336.1446699007288 -24.318870787809438 336.1446699007288 -24.5255636981153 curveto
336.1446699007288 -26.179107054481342 336.66140219959317 -27.41926449783673 337.69486675112245 -28.246036139060177 curveto
338.31494550975975 -28.659421978151688 338.93502424067736 -28.86611487921766 339.5551029715949 -28.86611487921766 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
370.2135761891761 -168.99505404975463 moveto
377.3444817009871 -157.2135579867625 lineto
377.3444817009871 -157.00686506721675 377.44782816075997 -156.90351861668375 377.65452107106586 -156.90351861668375 curveto
377.86121399061165 -156.90351861668375 377.9645604411446 -157.00686507645665 377.9645604411446 -157.2135579867625 curveto
378.17125336069034 -157.2135579867625 378.2745998112233 -157.31690444653537 378.2745998112233 -157.52359735684124 curveto
379.5147572915383 -169.92517215999084 lineto
379.5147572915383 -170.1318650795366 379.5147572915383 -170.33855798984246 379.5147572915383 -170.54525090014832 curveto
379.5147572915383 -170.54525090014832 lineto
379.5147572915383 -170.54525090014832 lineto
379.5147572915383 -170.54525090014832 lineto
379.5147572915383 -170.54525090014832 lineto
379.5147572915383 -170.54525090014832 lineto
379.72145021108406 -170.54525090014832 380.1348360409357 -170.54525090014832 380.75491477185324 -170.54525090014832 curveto
380.961607691399 -170.54525090014832 381.064954141932 -170.6485973599212 381.064954141932 -170.85529027022707 curveto
381.064954141932 -171.06198318977283 380.9616076821591 -171.1653296403058 380.75491477185324 -171.1653296403058 curveto
378.58463918130207 -171.1653296403058 lineto
378.58463918130207 -171.1653296403058 lineto
376.10432422067214 -171.1653296403058 lineto
376.10432422067214 -171.1653296403058 lineto
375.89763130112635 -171.1653296403058 375.7942848505934 -171.06198318053293 375.7942848505934 -170.85529027022707 curveto
375.7942848505934 -170.6485973506813 375.89763131036625 -170.54525090014832 376.10432422067214 -170.54525090014832 curveto
377.1377888184009 -170.54525090014832 377.65452107106586 -170.33855798060256 377.65452107106586 -169.92517215999084 curveto
377.65452107106586 -169.92517215999084 377.551174611293 -168.78836110248918 377.3444817009871 -166.5147390891247 curveto
372.38385177972725 -166.5147390891247 lineto
370.8336549293336 -168.99505404975463 lineto
370.6269620097878 -169.40843988884615 370.52361555925484 -169.71847924968498 370.52361555925484 -169.92517215999084 curveto
370.52361555925484 -170.33855799908235 370.8336549385735 -170.54525090014832 371.45373366949104 -170.54525090014832 curveto
371.66042658903683 -170.54525090014832 371.7637730395698 -170.6485973599212 371.7637730395698 -170.85529027022707 curveto
371.7637730395698 -171.06198318977283 371.66042657979693 -171.1653296403058 371.45373366949104 -171.1653296403058 curveto
369.5934974490186 -171.1653296403058 lineto
369.5934974490186 -171.1653296403058 lineto
367.73326122854616 -171.1653296403058 lineto
367.73326122854616 -171.1653296403058 lineto
367.52656830900037 -171.1653296403058 367.4232218584674 -171.06198318053293 367.4232218584674 -170.85529027022707 curveto
367.4232218584674 -170.6485973506813 367.52656831824027 -170.54525090014832 367.73326122854616 -170.54525090014832 curveto
367.73326122854616 -170.54525090014832 lineto
368.0433005986249 -170.54525090014832 lineto
368.87007227680795 -170.54525090014832 369.4901509984856 -170.2352115208297 369.9035368190973 -169.6151327899121 curveto
370.1102297386431 -169.40843987036635 370.2135761891761 -169.2017469600605 370.2135761891761 -168.99505404975463 curveto
closepath
372.693891149806 -165.89466034896722 moveto
377.3444817009871 -165.89466034896722 lineto
376.72440296082965 -159.38383357731368 lineto
372.693891149806 -165.89466034896722 lineto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
324.54922773706613 -199.09546018585436 moveto
327.3395820677748 -188.55412160317718 lineto
327.3395820677748 -188.34742868363142 327.3395820677748 -188.1407357733256 327.3395820677748 -187.93404286301973 curveto
327.3395820677748 -187.93404286301973 327.23623560800195 -187.83069640324683 327.02954269769606 -187.62400349294097 curveto
327.02954269769606 -187.62400349294097 lineto
327.02954269769606 -187.62400349294097 lineto
327.02954269769606 -187.62400349294097 326.9261962379232 -187.62400349294097 326.71950332761736 -187.62400349294097 curveto
326.5128104080716 -187.62400349294097 326.30611749776574 -187.62400349294097 326.09942458745985 -187.62400349294097 curveto
325.68603874836833 -187.62400349294097 325.4793458473024 -187.62400349294097 325.4793458473024 -187.62400349294097 curveto
325.4793458473024 -187.21061765384945 325.58269230707526 -187.0039247527835 325.7893852173811 -187.0039247527835 curveto
325.7893852173811 -187.0039247527835 lineto
325.7893852173811 -187.0039247527835 lineto
326.09942458745985 -187.0039247527835 lineto
332.6102513591134 -187.0039247527835 lineto
334.26379471547943 -187.0039247527835 335.40060569906194 -187.52065705164787 336.02068442997955 -188.55412160317718 curveto
336.2273773495253 -188.9675074422687 336.33072380005825 -189.38089326288042 336.33072380005825 -189.79427908349214 curveto
336.33072380005825 -190.82774368122094 335.81399150119387 -191.75786177297738 334.7805269496646 -192.58463341420082 curveto
334.7805269496646 -192.58463341420082 334.6771804898917 -192.58463341420082 334.47048757958584 -192.58463341420082 curveto
333.8504088209486 -192.99801925329234 333.1269836302581 -193.30805861413117 332.30021198903466 -193.51475152443703 curveto
333.74706242585495 -193.7214444439828 334.67718049913157 -194.23817673360728 335.0905663197433 -195.06494837483072 curveto
335.2972592392891 -195.47833421392224 335.40060568982204 -195.89172003453396 335.40060568982204 -196.30510585514568 curveto
335.40060568982204 -197.33857045287448 334.88387339095766 -198.26868854463092 333.8504088394284 -199.09546018585436 curveto
333.8504088394284 -199.09546018585436 lineto
332.8169442416996 -200.12892478358313 331.47344031085163 -200.64565703624805 329.81989702840474 -200.64565703624805 curveto
322.6889915165937 -200.64565703624805 lineto
322.48229859704793 -200.64565703624805 322.37895214651496 -200.5423105764752 322.37895214651496 -200.33561766616933 curveto
322.37895214651496 -200.12892474662357 322.4822986062878 -200.02557829609057 322.6889915165937 -200.02557829609057 curveto
322.6889915165937 -200.02557829609057 lineto
323.7224561143225 -200.02557829609057 324.23918836698743 -199.9222318363177 324.23918836698743 -199.71553892601185 curveto
324.44588128653317 -199.71553892601185 324.54922773706613 -199.5088460064661 324.54922773706613 -199.09546018585436 curveto
324.54922773706613 -199.09546018585436 324.54922773706613 -199.09546018585436 324.54922773706613 -199.09546018585436 curveto
closepath
327.64962143785357 -193.51475152443703 moveto
330.4399757685622 -193.51475152443703 lineto
331.88682620538253 -193.51475152443703 333.02363719820494 -192.99801922557265 333.8504088394284 -191.96455467404334 curveto
334.47048759806563 -191.34447591540606 334.7805269496646 -190.6210507247156 334.7805269496646 -189.79427908349214 curveto
334.7805269496646 -188.76081448576338 334.3671411105731 -188.1407357733256 333.5403694693496 -187.93404286301973 curveto
333.1269836302581 -187.72734994347397 332.81694426941925 -187.62400349294097 332.6102513591134 -187.62400349294097 curveto
329.81989702840474 -187.62400349294097 lineto
329.4065111893132 -187.62400349294097 329.19981828824723 -187.72734995271387 329.19981828824723 -187.93404286301973 curveto
329.19981828824723 -187.93404286301973 lineto
329.19981828824723 -187.93404286301973 lineto
328.88977891816853 -187.93404286301973 lineto
328.88977891816853 -187.93404286301973 lineto
328.88977891816853 -187.93404286301973 328.88977891816853 -188.14073578256549 328.88977891816853 -188.55412160317718 curveto
327.64962143785357 -193.51475152443703 lineto
closepath
326.71950332761736 -200.02557829609057 moveto
329.509857658326 -200.02557829609057 lineto
330.75001517560054 -200.02557829609057 331.78347971789 -199.5088459972262 332.6102513591134 -198.47538144569688 curveto
333.23033011775067 -197.8553026870596 333.5403694693496 -197.02853103659626 333.5403694693496 -195.99506648506696 curveto
333.5403694693496 -195.16829480688392 333.230330090031 -194.54821608520623 332.6102513591134 -194.1348302645945 curveto
332.1968655200219 -193.92813734504875 331.7834796994102 -193.8247908945158 331.37009387879846 -193.8247908945158 curveto
327.64962143785357 -193.8247908945158 lineto
326.09942458745985 -199.4054995559331 lineto
326.09942458745985 -199.61219247547885 326.09942458745985 -199.71553892601185 326.09942458745985 -199.71553892601185 curveto
326.09942458745985 -199.9222318455576 326.09942458745985 -200.02557829609057 326.09942458745985 -200.02557829609057 curveto
326.09942458745985 -200.02557829609057 lineto
326.09942458745985 -200.02557829609057 lineto
326.4094639575386 -200.02557829609057 lineto
326.4094639575386 -200.02557829609057 326.51281041731147 -200.02557829609057 326.71950332761736 -200.02557829609057 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
294.1210700207806 -116.70469269039117 moveto
292.88091254046566 -121.665322611651 lineto
292.67421962091987 -121.87201553119677 292.5708731703869 -121.97536198172975 292.5708731703869 -121.97536198172975 curveto
292.5708731703869 -121.97536198172975 lineto
292.2608338003082 -121.97536198172975 lineto
292.0541408807624 -121.97536198172975 291.95079443022945 -121.87201552195687 291.95079443022945 -121.665322611651 curveto
292.2608338003082 -120.7352045014148 lineto
292.2608338003082 -120.7352045014148 lineto
292.2608338003082 -119.08166114504876 291.7441015014438 -117.94485016146623 290.7106369499145 -117.32477143054865 curveto
290.7106369499145 -117.32477143054865 lineto
290.09055819127724 -117.11807851100289 289.4704794603596 -117.01473206046991 288.8504007294421 -117.01473206046991 curveto
287.6102432121675 -117.01473206046991 286.37008575033235 -117.5314643593343 285.1299282884972 -118.56492891086361 curveto
284.71654244940567 -118.77162183040937 284.4065030885668 -119.08166120048811 284.199810178261 -119.49504702109984 curveto
282.9596526609864 -120.94189745792012 282.1328810382428 -122.80213366915267 281.71949521763105 -125.07575568251715 curveto
281.71949521763105 -125.48914152160867 281.71949521763105 -125.79918088244752 281.71949521763105 -126.00587379275338 curveto
281.71949521763105 -127.86611006866518 282.44292043604116 -129.10626750278067 283.8897708081822 -129.72634623369825 curveto
284.30315664727374 -129.933039153244 284.9232353874312 -130.036385603777 285.75000702865464 -130.036385603777 curveto
286.9901645459292 -130.036385603777 288.1269755479915 -129.6229997646855 289.16044009952077 -128.79622812346204 curveto
290.19390469724954 -127.96945644527901 290.9173298694603 -126.9359918845098 291.330715690072 -125.69583442267464 curveto
291.330715690072 -125.48914150312888 291.43406214984486 -125.3857950525959 291.6407550601507 -125.3857950525959 curveto
291.6407550601507 -125.3857950525959 291.6407550601507 -125.48914151236878 291.6407550601507 -125.69583442267464 curveto
291.6407550601507 -125.9025273422204 291.53740860037783 -126.31591317207202 291.330715690072 -126.9359919029896 curveto
290.9173298509805 -127.76276358117262 290.29725111082297 -128.4861887626232 289.4704794695995 -129.10626749354077 curveto
288.230321952325 -130.13973209126954 286.88681803071694 -130.65646434393446 285.4399676585759 -130.65646434393446 curveto
283.5797313826641 -130.65646434393446 282.1328810290029 -130.13973204507008 281.09941647747354 -129.10626749354077 curveto
280.2726447992905 -128.072802895812 279.8592589971586 -126.83264542473692 279.8592589971586 -125.3857950525959 curveto
279.8592589971586 -123.31886585713833 280.5826842155687 -121.45862967362547 282.02953458770975 -119.80508639117858 curveto
283.4763850245301 -118.15154303481253 285.02658185644395 -117.11807851100289 286.68012513889084 -116.70469269039117 curveto
287.5068968170739 -116.49799977084541 288.23032199852446 -116.39465332031243 288.8504007294421 -116.39465332031243 curveto
290.29725116626236 -116.39465332031243 291.3307156993119 -117.01473207894969 291.95079443022945 -118.25488954078487 curveto
293.50099128062317 -116.70469269039117 lineto
293.7076842001689 -116.49799977084541 293.81103065070187 -116.39465332031243 293.81103065070187 -116.39465332031243 curveto
294.01772357024765 -116.39465332031243 294.1210700207806 -116.49799978008531 294.1210700207806 -116.70469269039117 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
336.76474864088624 -309.6760994618332 moveto
343.89565415269726 -297.89460339884107 lineto
343.89565415269726 -297.6879104792953 343.9990006124701 -297.5845640287623 344.205693522776 -297.5845640287623 curveto
344.4123864423218 -297.5845640287623 344.51573289285477 -297.6879104885352 344.51573289285477 -297.89460339884107 curveto
344.7224258124005 -297.89460339884107 344.82577226293347 -297.99794985861394 344.82577226293347 -298.2046427689198 curveto
346.06592974324843 -310.6062175720694 lineto
346.06592974324843 -310.8129104916152 346.06592974324843 -311.019603401921 346.06592974324843 -311.2262963122269 curveto
346.06592974324843 -311.2262963122269 lineto
346.06592974324843 -311.2262963122269 lineto
346.06592974324843 -311.2262963122269 lineto
346.06592974324843 -311.2262963122269 lineto
346.06592974324843 -311.2262963122269 lineto
346.2726226627942 -311.2262963122269 346.68600849264584 -311.2262963122269 347.3060872235634 -311.2262963122269 curveto
347.5127801431092 -311.2262963122269 347.61612659364215 -311.3296427719998 347.61612659364215 -311.5363356823056 curveto
347.61612659364215 -311.7430286018514 347.5127801338693 -311.84637505238436 347.3060872235634 -311.84637505238436 curveto
345.1358116330122 -311.84637505238436 lineto
345.1358116330122 -311.84637505238436 lineto
342.6554966723823 -311.84637505238436 lineto
342.6554966723823 -311.84637505238436 lineto
342.4488037528365 -311.84637505238436 342.34545730230354 -311.7430285926115 342.34545730230354 -311.5363356823056 curveto
342.34545730230354 -311.3296427627599 342.4488037620764 -311.2262963122269 342.6554966723823 -311.2262963122269 curveto
343.68896127011107 -311.2262963122269 344.205693522776 -311.0196033926811 344.205693522776 -310.6062175720694 curveto
344.205693522776 -310.6062175720694 344.10234706300315 -309.46940651456777 343.89565415269726 -307.19578450120326 curveto
338.9350242314374 -307.19578450120326 lineto
337.38482738104375 -309.6760994618332 lineto
337.17813446149796 -310.0894853009247 337.074788010965 -310.3995246617635 337.074788010965 -310.6062175720694 curveto
337.074788010965 -311.0196034111609 337.38482739028365 -311.2262963122269 338.0049061212012 -311.2262963122269 curveto
338.211599040747 -311.2262963122269 338.31494549127996 -311.3296427719998 338.31494549127996 -311.5363356823056 curveto
338.31494549127996 -311.7430286018514 338.2115990315071 -311.84637505238436 338.0049061212012 -311.84637505238436 curveto
336.1446699007288 -311.84637505238436 lineto
336.1446699007288 -311.84637505238436 lineto
334.2844336802563 -311.84637505238436 lineto
334.2844336802563 -311.84637505238436 lineto
334.0777407607105 -311.84637505238436 333.97439431017756 -311.7430285926115 333.97439431017756 -311.5363356823056 curveto
333.97439431017756 -311.3296427627599 334.0777407699504 -311.2262963122269 334.2844336802563 -311.2262963122269 curveto
334.2844336802563 -311.2262963122269 lineto
334.59447305033507 -311.2262963122269 lineto
335.4212447285181 -311.2262963122269 336.04132345019576 -310.91625693290825 336.4547092708075 -310.29617820199064 curveto
336.6614021903533 -310.0894852824449 336.76474864088624 -309.8827923721391 336.76474864088624 -309.6760994618332 curveto
closepath
339.24506360151616 -306.57570576104575 moveto
343.89565415269726 -306.57570576104575 lineto
343.2755754125398 -300.06487898939224 lineto
339.24506360151616 -306.57570576104575 lineto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
351.708684066149 -296.9257153432785 moveto
349.32138095719824 -302.78545933797585 lineto
349.1766959159802 -302.93014437919396 349.1043534018391 -303.00248689333506 349.1043534018391 -303.00248689333506 curveto
348.959668360621 -303.00248689333506 348.81498332587086 -302.93014437272603 348.67029829112073 -302.78545933797585 curveto
348.67029829112073 -302.78545933797585 348.67029829112073 -302.78545933797585 348.67029829112073 -302.78545933797585 curveto
348.67029829112073 -302.78545933797585 348.67029829112073 -302.7131168173668 348.67029829112073 -302.5684317826167 curveto
350.406518733994 -296.4916602325602 lineto
350.5512037752121 -296.2022901501241 350.76823133057127 -295.9852626012329 351.0576014000715 -295.84057756648275 curveto
351.0576014000715 -295.84057756648275 351.0576014000715 -295.84057756648275 351.0576014000715 -295.84057756648275 curveto
351.3469714825076 -295.84057756648275 351.56399903139885 -295.9852626077008 351.708684066149 -296.27463267720105 curveto
351.8533691073671 -296.4193177184191 351.9257116215082 -296.56400275316923 351.9257116215082 -296.70868778791936 curveto
351.9257116215082 -296.70868778791936 351.85336910089916 -296.7810303085284 351.708684066149 -296.9257153432785 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
137.08169156172136 -277.79519989734547 moveto
135.8415340814064 -282.75582981860526 lineto
135.63484116186063 -282.96252273815105 135.53149471132767 -283.065869188684 135.53149471132767 -283.065869188684 curveto
135.53149471132767 -283.065869188684 lineto
135.2214553412489 -283.065869188684 lineto
135.01476242170315 -283.065869188684 134.9114159711702 -282.96252272891115 134.9114159711702 -282.75582981860526 curveto
135.2214553412489 -281.82571170836906 lineto
135.2214553412489 -281.82571170836906 lineto
135.2214553412489 -280.172168352003 134.70472304238453 -279.0353573684205 133.67125849085522 -278.4152786375029 curveto
133.67125849085522 -278.4152786375029 lineto
133.05117973221797 -278.20858571795713 132.43110100130036 -278.10523926742417 131.81102227038278 -278.10523926742417 curveto
130.57086475310825 -278.10523926742417 129.3307072912731 -278.62197156628855 128.09054982943792 -279.6554361178179 curveto
127.6771639903464 -279.8621290373637 127.36712462950754 -280.17216840744237 127.16043171920168 -280.5855542280541 curveto
125.92027420192714 -282.0324046648744 125.0935025791835 -283.8926408761069 124.68011675857177 -286.1662628894714 curveto
124.68011675857177 -286.5796487285629 124.68011675857177 -286.8896880894018 124.68011675857177 -287.09638099970766 curveto
124.68011675857177 -288.95661727561946 125.40354197698191 -290.19677470973494 126.85039234912294 -290.81685344065255 curveto
127.26377818821446 -291.0235463601983 127.88385692837193 -291.12689281073125 128.71062856959537 -291.12689281073125 curveto
129.9507860868699 -291.12689281073125 131.0875970889322 -290.71350697163973 132.12106164046153 -289.8867353304163 curveto
133.1545262381903 -289.05996365223325 133.87795141040098 -288.0264990914641 134.2913372310127 -286.7863416296289 curveto
134.2913372310127 -286.5796487100831 134.39468369078557 -286.47630225955015 134.60137660109143 -286.47630225955015 curveto
134.60137660109143 -286.47630225955015 134.60137660109143 -286.579648719323 134.60137660109143 -286.7863416296289 curveto
134.60137660109143 -286.9930345491747 134.49803014131857 -287.4064203790263 134.2913372310127 -288.02649910994387 curveto
133.8779513919212 -288.8532707881269 133.2578726517637 -289.5766959695775 132.43110101054026 -290.19677470049504 curveto
131.19094349326573 -291.2302392982238 129.84743957165767 -291.74697155088876 128.40058919951665 -291.74697155088876 curveto
126.54035292360484 -291.74697155088876 125.0935025699436 -291.2302392520244 124.06003801841429 -290.19677470049504 curveto
123.23326634023127 -289.1633101027663 122.81988053809933 -287.9231526316912 122.81988053809933 -286.47630225955015 curveto
122.81988053809933 -284.4093730640926 123.54330575650947 -282.54913688057974 124.99015612865051 -280.89559359813285 curveto
126.4370065654708 -279.2420502417668 127.9872033973847 -278.2085857179572 129.6407466798316 -277.79519989734547 curveto
130.46751835801464 -277.5885069777997 131.1909435394652 -277.4851605272667 131.81102227038278 -277.4851605272667 curveto
133.2578727072031 -277.4851605272667 134.2913372402526 -278.10523928590396 134.9114159711702 -279.34539674773913 curveto
136.46161282156388 -277.79519989734547 lineto
136.66830574110963 -277.5885069777997 136.77165219164263 -277.4851605272667 136.77165219164263 -277.4851605272667 curveto
136.9783451111884 -277.4851605272667 137.08169156172136 -277.5885069870396 137.08169156172136 -277.79519989734547 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
140.96337722511734 -276.51627247170416 moveto
138.57607411616655 -282.3760164664015 lineto
138.4313890749485 -282.5207015076196 138.3590465608074 -282.5930440217607 138.3590465608074 -282.5930440217607 curveto
138.21436151958935 -282.5930440217607 138.06967648483922 -282.5207015011517 137.9249914500891 -282.3760164664015 curveto
137.9249914500891 -282.3760164664015 137.9249914500891 -282.3760164664015 137.9249914500891 -282.3760164664015 curveto
137.9249914500891 -282.3760164664015 137.9249914500891 -282.30367394579247 137.9249914500891 -282.15898891104234 curveto
139.66121189296237 -276.08221736098585 lineto
139.80589693418042 -275.79284727854974 140.02292448953958 -275.5758197296585 140.31229455903986 -275.4311346949084 curveto
140.31229455903986 -275.4311346949084 140.31229455903986 -275.4311346949084 140.31229455903986 -275.4311346949084 curveto
140.60166464147596 -275.4311346949084 140.8186921903672 -275.57581973612645 140.96337722511734 -275.8651898056267 curveto
141.1080622663354 -276.00987484684475 141.1804047804765 -276.1545598815949 141.1804047804765 -276.299244916345 curveto
141.1804047804765 -276.299244916345 141.10806225986747 -276.37158743695403 140.96337722511734 -276.51627247170416 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
270.6909383939005 -261.5402732308454 moveto
273.4812927246092 -250.99893464816824 lineto
273.4812927246092 -250.79224172862249 273.4812927246092 -250.58554881831665 273.4812927246092 -250.3788559080108 curveto
273.4812927246092 -250.3788559080108 273.37794626483634 -250.2755094482379 273.17125335453045 -250.06881653793204 curveto
273.17125335453045 -250.06881653793204 lineto
273.17125335453045 -250.06881653793204 lineto
273.17125335453045 -250.06881653793204 273.0679068947576 -250.06881653793204 272.86121398445175 -250.06881653793204 curveto
272.65452106490596 -250.06881653793204 272.44782815460013 -250.06881653793204 272.24113524429424 -250.06881653793204 curveto
271.8277494052027 -250.06881653793204 271.6210565041368 -250.06881653793204 271.6210565041368 -250.06881653793204 curveto
271.6210565041368 -249.65543069884052 271.72440296390965 -249.44873779777456 271.9310958742155 -249.44873779777456 curveto
271.9310958742155 -249.44873779777456 lineto
271.9310958742155 -249.44873779777456 lineto
272.24113524429424 -249.44873779777456 lineto
278.7519620159478 -249.44873779777456 lineto
280.4055053723138 -249.44873779777456 281.54231635589633 -249.96547009663894 282.16239508681394 -250.99893464816824 curveto
282.3690880063597 -251.41232048725976 282.47243445689264 -251.82570630787149 282.47243445689264 -252.2390921284832 curveto
282.47243445689264 -253.272556726212 281.95570215802826 -254.20267481796844 280.922237606499 -255.0294464591919 curveto
280.922237606499 -255.0294464591919 280.8188911467261 -255.0294464591919 280.6121982364202 -255.0294464591919 curveto
279.992119477783 -255.4428322982834 279.2686942870925 -255.75287165912223 278.44192264586906 -255.9595645694281 curveto
279.88877308268934 -256.1662574889739 280.81889115596596 -256.68298977859837 281.2322769765777 -257.5097614198218 curveto
281.43896989612347 -257.92314725891333 281.54231634665643 -258.33653307952505 281.54231634665643 -258.7499189001368 curveto
281.54231634665643 -259.78338349786554 281.02558404779205 -260.71350158962196 279.9921194962627 -261.5402732308454 curveto
279.9921194962627 -261.5402732308454 lineto
278.95865489853395 -262.57373782857417 277.615150967686 -263.0904700812391 275.96160768523913 -263.0904700812391 curveto
268.8307021734281 -263.0904700812391 lineto
268.6240092538823 -263.0904700812391 268.52066280334935 -262.98712362146625 268.52066280334935 -262.78043071116036 curveto
268.52066280334935 -262.57373779161463 268.6240092631222 -262.47039134108167 268.8307021734281 -262.47039134108167 curveto
268.8307021734281 -262.47039134108167 lineto
269.8641667711569 -262.47039134108167 270.3808990238218 -262.3670448813088 270.3808990238218 -262.1603519710029 curveto
270.58759194336756 -262.1603519710029 270.6909383939005 -261.9536590514571 270.6909383939005 -261.5402732308454 curveto
270.6909383939005 -261.5402732308454 270.6909383939005 -261.5402732308454 270.6909383939005 -261.5402732308454 curveto
closepath
273.79133209468796 -255.9595645694281 moveto
276.5816864253966 -255.9595645694281 lineto
278.0285368622169 -255.9595645694281 279.16534785503933 -255.4428322705637 279.9921194962627 -254.4093677190344 curveto
280.6121982549 -253.78928896039713 280.922237606499 -253.06586376970665 280.922237606499 -252.2390921284832 curveto
280.922237606499 -251.20562753075444 280.50885176740746 -250.58554881831665 279.682080126184 -250.3788559080108 curveto
279.2686942870925 -250.17216298846503 278.95865492625364 -250.06881653793204 278.7519620159478 -250.06881653793204 curveto
275.96160768523913 -250.06881653793204 lineto
275.5482218461476 -250.06881653793204 275.3415289450816 -250.17216299770493 275.3415289450816 -250.3788559080108 curveto
275.3415289450816 -250.3788559080108 lineto
275.3415289450816 -250.3788559080108 lineto
275.0314895750029 -250.3788559080108 lineto
275.0314895750029 -250.3788559080108 lineto
275.0314895750029 -250.3788559080108 275.0314895750029 -250.58554882755655 275.0314895750029 -250.99893464816824 curveto
273.79133209468796 -255.9595645694281 lineto
closepath
272.86121398445175 -262.47039134108167 moveto
275.6515683151604 -262.47039134108167 lineto
276.89172583243493 -262.47039134108167 277.92519037472437 -261.9536590422173 278.7519620159478 -260.92019449068795 curveto
279.37204077458506 -260.3001157320507 279.682080126184 -259.47334408158736 279.682080126184 -258.439879530058 curveto
279.682080126184 -257.613107851875 279.37204074686537 -256.9930291301973 278.7519620159478 -256.5796433095856 curveto
278.3385761768563 -256.3729503900398 277.92519035624457 -256.26960393950685 277.51180453563285 -256.26960393950685 curveto
273.79133209468796 -256.26960393950685 lineto
272.24113524429424 -261.85031260092416 lineto
272.24113524429424 -262.05700552046994 272.24113524429424 -262.1603519710029 272.24113524429424 -262.1603519710029 curveto
272.24113524429424 -262.3670448905487 272.24113524429424 -262.47039134108167 272.24113524429424 -262.47039134108167 curveto
272.24113524429424 -262.47039134108167 lineto
272.24113524429424 -262.47039134108167 lineto
272.551174614373 -262.47039134108167 lineto
272.551174614373 -262.47039134108167 272.65452107414586 -262.47039134108167 272.86121398445175 -262.47039134108167 curveto
closepath
fill
newpath
0.0 0.0 0.0 setrgbcolor
0.0 0.0 0.0 setrgbcolor
1.0 setlinewidth
10.0 setmiterlimit
1 setlinejoin
1 setlinecap
[ ] 0 setdash
newpath
287.1092828474644 -248.1698103721333 moveto
284.72197973851365 -254.02955436683064 lineto
284.5772946972956 -254.1742394080487 284.5049521831545 -254.2465819221898 284.5049521831545 -254.2465819221898 curveto
284.3602671419364 -254.2465819221898 284.21558210718626 -254.17423940158076 284.07089707243614 -254.02955436683064 curveto
284.07089707243614 -254.02955436683064 284.07089707243614 -254.02955436683064 284.07089707243614 -254.02955436683064 curveto
284.07089707243614 -254.02955436683064 284.07089707243614 -253.9572118462216 284.07089707243614 -253.81252681147149 curveto
285.8071175153094 -247.73575526141497 lineto
285.9518025565275 -247.44638517897886 286.1688301118867 -247.22935763008763 286.4582001813869 -247.08467259533748 curveto
286.4582001813869 -247.08467259533748 286.4582001813869 -247.08467259533748 286.4582001813869 -247.08467259533748 curveto
286.74757026382304 -247.08467259533748 286.96459781271426 -247.22935763655553 287.1092828474644 -247.5187277060558 curveto
287.2539678886825 -247.66341274727387 287.3263104028236 -247.808097782024 287.3263104028236 -247.95278281677415 curveto
287.3263104028236 -247.95278281677415 287.25396788221457 -248.02512533738317 287.1092828474644 -248.1698103721333 curveto