-
Notifications
You must be signed in to change notification settings - Fork 3
/
YNUlogo.sty
2023 lines (2019 loc) · 131 KB
/
YNUlogo.sty
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
%%
%% This is file `YNUlogo.sty',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% YNUthesis.dtx (with options: `logo')
%%
%% Copyright (C) 2023 by Rui-Zhi Li <[email protected]>
%% ---------------------------------------------------------------------
%%
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either
%% version 1.3c of this license or (at your option) any later
%% version. This version of this license is in
%% http://www.latex-project.org/lppl/lppl-1-3c.txt
%% and the latest version of this license is in
%% http://www.latex-project.org/lppl.txt
%% and version 1.3 or later is part of all distributions of
%% LaTeX version 2005/12/01 or later.
%%
%% This work has the LPPL maintenance status "maintained".
%%
%% The Current Maintainer of this work is Rui-Zhi Li.
%%
%% This work consists of the files YNUthesis.dtx,
%% YNUthesis-logo.dtx,
%% and the derived files YNUthesis.ins,
%% YNUthesis.cls,
%% and README.md.
%% ---------------------------------------------------------------------
%%
\NeedsTeXFormat{LaTeX2e}[2023/06/01]
\RequirePackage{expl3}
\GetIdInfo $Id: YNUthesis.dtx 0.0.3 2023-06-30 12:00:00Z Rui-Zhi Li <[email protected]> $
{Yunnan University's Visual Identity}
\ProvidesExplPackage{YNUlogo}
{\ExplFileDate}{\ExplFileVersion}{\ExplFileDescription}
\RequirePackage { xcolor, tikz }
\tl_const:Nn \c__YNU_default_arg_tl { x = 1 pt, y = 1 pt }
\cs_new_protected:Npn \__YNU_tikz:nn #1#2
{
\begin{tikzpicture} [#2]
#1
\end{tikzpicture}
}
\cs_generate_variant:Nn \__YNU_tikz:nn { nx }
\NewDocumentCommand \YNUemblem { O { } }
{
\__YNU_tikz:nx
{ \YNUlogo@emblem }
{ \c__YNU_default_arg_tl, #1, yscale = -1.0, xscale = 1.0 }
}
\NewDocumentCommand \YNUname { O { } }
{
\__YNU_tikz:nx
{ \YNUlogo@name }
{ \c__YNU_default_arg_tl, #1, yscale = -1.0, xscale = 1.0 }
}
\NewDocumentCommand \YNUnameTwo { O { } }
{
\__YNU_tikz:nx
{ \YNUlogo@nameTwo }
{ \c__YNU_default_arg_tl, #1, yscale = 1.0, xscale = 1.0 }
}
\definecolor{YNUlogoGreen}{RGB}{48,112,76}
\definecolor{YNUlogoBlue}{RGB}{43,75,157}
\def\YNUlogo@emblem{%
\YNUlogo@emblem@building;
\path[fill=YNUlogoBlue] \YNUlogo@emblem@year
\YNUlogo@emblem@ring@inner
\YNUlogo@emblem@yun
\YNUlogo@emblem@nan
\YNUlogo@emblem@da
\YNUlogo@emblem@xue
\YNUlogo@emblem@en
\YNUlogo@emblem@ring@outer;}
\def\YNUlogo@emblem@year{%
(24.6592,39.5145) --
(24.6592,39.6377) -- (24.6142,39.6377) .. controls (24.5144,39.6377) and
(24.4342,39.6084) .. (24.3697,39.5497) .. controls (24.3071,39.4851) and
(24.2797,39.4206) .. (24.2797,39.3482) -- (24.4616,39.3482) .. controls
(24.4616,39.3912) and (24.4793,39.4284) .. (24.5046,39.4636) .. controls
(24.5418,39.4988) and (24.5790,39.5145) .. (24.6240,39.5145) --
cycle(24.6592,38.5012) -- (24.6592,38.6166) -- (24.6415,38.6166) .. controls
(24.5966,38.6166) and (24.5496,38.6382) .. (24.5144,38.6753) .. controls
(24.4792,38.7105) and (24.4616,38.7770) .. (24.4616,38.8768) .. controls
(24.4616,38.9492) and (24.4694,39.0078) .. (24.4968,39.0509) .. controls
(24.5320,39.0861) and (24.5789,39.1096) .. (24.6415,39.1096) --
(24.6592,39.1096) -- (24.6592,39.2250) -- (24.6142,39.2250) .. controls
(24.5047,39.2250) and (24.4245,39.1956) .. (24.3599,39.1369) .. controls
(24.2973,39.0802) and (24.2601,38.9941) .. (24.2601,38.8768) .. controls
(24.2601,38.7614) and (24.2973,38.6753) .. (24.3599,38.6029) .. controls
(24.4245,38.5384) and (24.5242,38.5012) .. (24.6494,38.5012) --
cycle(23.7985,39.6221) -- (23.6088,39.6221) -- (23.6088,38.7614) --
(23.3662,38.7614) -- (23.3662,38.6831) .. controls (23.4660,38.6831) and
(23.5383,38.6675) .. (23.5912,38.6382) .. controls (23.6459,38.6030) and
(23.6831,38.5599) .. (23.7007,38.5013) -- (23.7985,38.5013) --
cycle(27.0475,39.3110) .. controls (27.0475,39.4128) and (27.0104,39.4930) ..
(26.9302,39.5497) .. controls (26.8578,39.6084) and (26.7580,39.6377) ..
(26.6309,39.6377) .. controls (26.5135,39.6377) and (26.4138,39.6084) ..
(26.3414,39.5497) .. controls (26.2612,39.4929) and (26.2240,39.3991) ..
(26.2240,39.2817) -- (26.4060,39.2817) .. controls (26.4060,39.3619) and
(26.4314,39.4206) .. (26.4686,39.4558) .. controls (26.5135,39.4988) and
(26.5683,39.5145) .. (26.6309,39.5145) .. controls (26.7033,39.5145) and
(26.7581,39.4988) .. (26.7952,39.4636) .. controls (26.8402,39.4284) and
(26.8578,39.3776) .. (26.8578,39.2973) .. controls (26.8578,39.2387) and
(26.8304,39.1878) .. (26.7952,39.1585) .. controls (26.7483,39.1233) and
(26.6857,39.1017) .. (26.5761,39.1017) -- (26.5761,38.9941) .. controls
(26.6681,38.9941) and (26.7307,38.9785) .. (26.7659,38.9413) .. controls
(26.8128,38.9061) and (26.8304,38.8553) .. (26.8304,38.7848) .. controls
(26.8304,38.7320) and (26.8128,38.6890) .. (26.7855,38.6597) .. controls
(26.7581,38.6323) and (26.7131,38.6167) .. (26.6407,38.6167) .. controls
(26.5762,38.6167) and (26.5312,38.6382) .. (26.4960,38.6753) .. controls
(26.4608,38.7105) and (26.4412,38.7614) .. (26.4314,38.8338) --
(26.2515,38.8338) .. controls (26.2612,38.7321) and (26.3062,38.6538) ..
(26.3688,38.5893) .. controls (26.4412,38.5306) and (26.5312,38.5012) ..
(26.6407,38.5012) .. controls (26.7659,38.5012) and (26.8578,38.5306) ..
(26.9204,38.5814) .. controls (26.9850,38.6382) and (27.0202,38.7047) ..
(27.0202,38.7771) .. controls (27.0202,38.8553) and (27.0026,38.9140) ..
(26.9654,38.9492) .. controls (26.9400,38.9942) and (26.8833,39.0216) ..
(26.8031,39.0450) .. controls (26.8833,39.0587) and (26.9400,39.0861) ..
(26.9850,39.1370) .. controls (27.0280,39.1878) and (27.0476,39.2465) ..
(27.0476,39.3111)(26.0617,39.6221) -- (25.2480,39.6221) -- (25.2480,39.5204)
.. controls (25.2754,39.4480) and (25.3184,39.3913) .. (25.3830,39.3267) ..
controls (25.4377,39.2680) and (25.5199,39.2035) .. (25.6275,39.1291) ..
controls (25.6998,39.0724) and (25.7546,39.0216) .. (25.7898,38.9707) ..
controls (25.8270,38.9277) and (25.8446,38.8768) .. (25.8446,38.8201) ..
controls (25.8446,38.7614) and (25.8270,38.7184) .. (25.7977,38.6832) ..
controls (25.7722,38.6382) and (25.7273,38.6245) .. (25.6549,38.6245) ..
controls (25.6080,38.6245) and (25.5649,38.6460) .. (25.5277,38.6832) ..
controls (25.4828,38.7184) and (25.4632,38.7907) .. (25.4632,38.8925) --
(25.2754,38.8925) .. controls (25.2832,38.7614) and (25.3184,38.6675) ..
(25.3830,38.6030) .. controls (25.4554,38.5306) and (25.5551,38.5012) ..
(25.6647,38.5012) .. controls (25.7899,38.5012) and (25.8798,38.5306) ..
(25.9424,38.5893) .. controls (26.0070,38.6460) and (26.0442,38.7262) ..
(26.0442,38.8279) .. controls (26.0442,38.9061) and (26.0070,38.9785) ..
(25.9522,39.0372) .. controls (25.8896,39.1017) and (25.8173,39.1585) ..
(25.7351,39.2250) .. controls (25.6451,39.2895) and (25.5727,39.3404) ..
(25.5375,39.3776) .. controls (25.5004,39.4128) and (25.4632,39.4558) ..
(25.4280,39.4988) -- (26.0618,39.4988) -- cycle(24.6592,39.6377) --
(24.6592,39.5145) .. controls (24.7238,39.4988) and (24.7766,39.4636) ..
(24.8137,39.4049) .. controls (24.8489,39.3326) and (24.8763,39.2250) ..
(24.8861,39.0802) .. controls (24.8587,39.1232) and (24.8216,39.1663) ..
(24.7766,39.1878) .. controls (24.7414,39.2094) and (24.7042,39.2172) ..
(24.6592,39.2250) -- (24.6592,39.1096) .. controls (24.7238,39.1096) and
(24.7766,39.0861) .. (24.8137,39.0509) .. controls (24.8489,39.0157) and
(24.8666,38.9648) .. (24.8666,38.9062) .. controls (24.8666,38.8064) and
(24.8489,38.7321) .. (24.8137,38.6890) .. controls (24.7766,38.6460) and
(24.7238,38.6245) .. (24.6592,38.6167) -- (24.6592,38.5013) .. controls
(24.7864,38.5013) and (24.8861,38.5443) .. (24.9585,38.6323) .. controls
(25.0387,38.7184) and (25.0759,38.8553) .. (25.0759,39.0509) .. controls
(25.0759,39.2328) and (25.0387,39.3698) .. (24.9585,39.4773) .. controls
(24.8861,39.5732) and (24.7864,39.6299) .. (24.6592,39.6377)}
\def\YNUlogo@emblem@ring@inner{%
(25.4573,20.2021) ..
controls (20.0233,20.2021) and (15.5927,24.6346) .. (15.5927,30.0686) ..
controls (15.5927,35.5025) and (20.0233,39.9331) .. (25.4573,39.9331) ..
controls (30.8912,39.9331) and (35.3218,35.5025) .. (35.3218,30.0686) ..
controls (35.3218,24.6346) and (30.8912,20.2021) ..
(25.4573,20.2021)(25.4573,19.9654) .. controls (31.0203,19.9654) and
(35.5604,24.5035) .. (35.5604,30.0686) .. controls (35.5604,35.6317) and
(31.0203,40.1698) .. (25.4573,40.1698) .. controls (19.8942,40.1698) and
(15.3541,35.6317) .. (15.3541,30.0686) .. controls (15.3541,24.5035) and
(19.8942,19.9654) .. (25.4573,19.9654)}
\def\YNUlogo@emblem@ring@outer{%
(25.4573,13.7744) ..
controls (29.9445,13.7744) and (34.0190,15.6033) .. (36.9688,18.5551) ..
controls (39.9205,21.5068) and (41.7514,25.5813) .. (41.7514,30.0686) ..
controls (41.7514,39.0431) and (34.4317,46.3608) .. (25.4573,46.3608) ..
controls (20.9700,46.3608) and (16.8955,44.5318) .. (13.9457,41.5801) ..
controls (10.9940,38.6284) and (9.1631,34.5558) .. (9.1631,30.0686) ..
controls (9.1631,21.0941) and (16.4828,13.7744) ..
(25.4573,13.7744)(25.4573,14.3006) .. controls (16.7723,14.3006) and
(9.6893,21.3836) .. (9.6893,30.0686) .. controls (9.6893,34.4091) and
(11.4615,38.3506) .. (14.3174,41.2084) .. controls (17.1732,44.0643) and
(21.1148,45.8346) .. (25.4573,45.8346) .. controls (34.1422,45.8346) and
(41.2252,38.7516) .. (41.2252,30.0686) .. controls (41.2252,25.7261) and
(39.4530,21.7846) .. (36.5971,18.9267) .. controls (33.7413,16.0708) and
(29.7997,14.3006) .. (25.4573,14.3006)}
\def\YNUlogo@emblem@en{%
%Y
(11.5536,31.1289) --
(12.5375,31.0409) -- (13.7718,29.9181) -- (13.8364,30.6536) --
(13.0618,31.3010) -- (13.9361,31.7979) -- (14.0007,32.5295) --
(12.5884,31.6179) -- (11.6045,31.7040) -- cycle(11.5536,31.1289)
%N
(14.1669,33.1280) --
(12.9776,33.4918) .. controls (12.7605,33.5584) and (12.6158,33.6522) ..
(12.5453,33.7755) .. controls (12.4749,33.8968) and (12.4691,34.0591) ..
(12.5317,34.2625) .. controls (12.5650,34.3701) and (12.6100,34.4582) ..
(12.6647,34.5286) .. controls (12.7195,34.5990) and (12.7821,34.6498) ..
(12.8603,34.6811) .. controls (12.9190,34.7046) and (12.9797,34.7163) ..
(13.0462,34.7163) .. controls (13.1107,34.7124) and (13.2066,34.6929) ..
(13.3317,34.6538) -- (14.5230,34.2899) -- (14.6912,34.8396) --
(13.4432,35.2210) .. controls (13.1087,35.3247) and (12.8232,35.3071) ..
(12.5923,35.1682) .. controls (12.3596,35.0293) and (12.1874,34.7750) ..
(12.0720,34.4014) .. controls (11.9605,34.0317) and (11.9605,33.7227) ..
(12.0760,33.4782) .. controls (12.1914,33.2336) and (12.4144,33.0596) ..
(12.7509,32.9578) -- (13.9988,32.5764) -- cycle(14.1669,33.1280)
%N
(12.7546,36.1873) --
(14.8183,35.1350) -- (15.1411,35.7707) -- (14.2119,37.5429) --
(15.6653,36.8015) -- (15.9176,37.2964) -- (13.8559,38.3468) --
(13.5371,37.7209) -- (14.4760,35.9311) -- (13.0070,36.6803) --
cycle(12.7546,36.1873)
%N
(14.2863,38.9923) --
(15.9235,37.3551) -- (16.4262,37.8578) -- (16.0898,39.8315) --
(17.2438,38.6755) -- (17.6390,39.0706) -- (16.0017,40.7078) --
(15.5049,40.2090) -- (15.8433,38.2177) -- (14.6775,39.3836) --
cycle(14.2863,38.9923)
%A
(17.5979,40.7822) --
(18.1104,41.1167) -- (18.2395,40.3460) -- cycle(16.2110,41.0228) --
(18.3921,39.6789) -- (18.8596,39.9821) -- (18.4820,42.4996) --
(17.9422,42.1475) -- (18.0302,41.6213) -- (17.1773,41.0658) --
(16.7353,41.3631) -- cycle(16.2110,41.0228)
%N
(18.8302,42.6893) --
(19.6987,40.5416) -- (20.3579,40.8096) -- (20.8196,42.7559) --
(21.4318,41.2418) -- (21.9482,41.4511) -- (21.0797,43.5970) --
(20.4284,43.3329) -- (19.9628,41.3670) -- (19.3447,42.8967) --
cycle(18.8302,42.6893)
%U
(23.6657,41.7817) --
(23.5776,43.0238) .. controls (23.5620,43.2507) and (23.5992,43.4190) ..
(23.6891,43.5285) .. controls (23.7772,43.6380) and (23.9258,43.7006) ..
(24.1371,43.7163) .. controls (24.2505,43.7241) and (24.3483,43.7142) ..
(24.4344,43.6889) .. controls (24.5205,43.6635) and (24.5909,43.6204) ..
(24.6457,43.5618) .. controls (24.6906,43.5168) and (24.7220,43.4620) ..
(24.7435,43.3994) .. controls (24.7650,43.3368) and (24.7826,43.2410) ..
(24.7904,43.1079) -- (24.8784,41.8678) -- (25.4516,41.9069) --
(25.3616,43.2096) .. controls (25.3361,43.5598) and (25.2188,43.8180) ..
(25.0056,43.9842) .. controls (24.7924,44.1525) and (24.4911,44.2229) ..
(24.1038,44.1955) .. controls (23.7165,44.1681) and (23.4290,44.0566) ..
(23.2412,43.8610) .. controls (23.0554,43.6674) and (22.9732,43.3935) ..
(22.9986,43.0453) -- (23.0886,41.7426) -- cycle(23.6657,41.7817)
%N
(26.0364,44.2268) --
(25.7528,41.9284) -- (26.4609,41.8424) -- (27.8067,43.3212) --
(27.6091,41.7015) -- (28.1607,41.6331) -- (28.4444,43.9315) --
(27.7441,44.0175) -- (26.3846,42.5231) -- (26.5861,44.1584) --
cycle(26.0364,44.2268)
%I
(29.0703,43.7574) --
(28.5089,41.5118) -- (29.0742,41.3709) -- (29.6337,43.6165) --
cycle(29.0703,43.7574)
%V
(30.9853,43.0493) --
(29.1544,41.3123) -- (29.7432,41.0619) -- (31.0049,42.3294) --
(30.9795,40.5357) -- (31.5624,40.2892) -- (31.5291,42.8184) --
cycle(30.9853,43.0493)
%E
(32.9766,42.1240) --
(31.6484,40.2286) -- (33.3326,39.0471) -- (33.6006,39.4325) --
(32.3937,40.2775) -- (32.6167,40.5983) -- (33.6925,39.8452) --
(33.9625,40.2305) -- (32.8866,40.9836) -- (33.1742,41.3925) --
(34.3811,40.5455) -- (34.6608,40.9445) -- cycle(32.9766,42.1240)
%R
(34.5630,39.0745) --
(34.9855,38.5718) .. controls (35.0951,38.4368) and (35.1576,38.3312) ..
(35.1713,38.2490) .. controls (35.1831,38.1688) and (35.1537,38.0984) ..
(35.0774,38.0358) .. controls (35.0070,37.9752) and (34.9346,37.9576) ..
(34.8642,37.9850) .. controls (34.7938,38.0104) and (34.6940,38.1004) ..
(34.5669,38.2510) -- (34.1600,38.7361) -- cycle(35.2065,40.3733) --
(33.4324,38.8828) -- (34.3478,37.7933) .. controls (34.5473,37.5566) and
(34.7312,37.4158) .. (34.9034,37.3688) .. controls (35.0735,37.3219) and
(35.2418,37.3667) .. (35.4041,37.5038) .. controls (35.5097,37.5918) and
(35.5782,37.6935) .. (35.6154,37.8128) .. controls (35.6506,37.9341) and
(35.6467,38.0534) .. (35.6056,38.1747) .. controls (35.7034,38.1239) and
(35.7894,38.1023) .. (35.8657,38.1121) .. controls (35.9401,38.1219) and
(36.0418,38.1747) .. (36.1689,38.2706) .. controls (36.1807,38.2803) and
(36.1983,38.2941) .. (36.2198,38.3097) .. controls (36.4486,38.4857) and
(36.6149,38.5718) .. (36.7186,38.5698) -- (36.3000,39.0686) .. controls
(36.2706,39.0628) and (36.2433,39.0550) .. (36.2139,39.0432) .. controls
(36.1865,39.0296) and (36.1591,39.0099) .. (36.1318,38.9884) --
(36.0124,38.8887) .. controls (35.8481,38.7517) and (35.7249,38.6833) ..
(35.6388,38.6833) .. controls (35.5547,38.6812) and (35.4608,38.7439) ..
(35.3572,38.8652) -- (35.3474,38.8750) -- (34.9268,39.3777) --
(35.5801,39.9273) -- cycle(35.2065,40.3733)
%S
(36.2609,37.8402) --
(36.5406,37.3160) -- (36.5602,37.3258) .. controls (36.6736,37.3864) and
(36.7890,37.3845) .. (36.9025,37.3140) .. controls (37.0179,37.2455) and
(37.1274,37.1125) .. (37.2292,36.9189) .. controls (37.3094,36.7702) and
(37.3465,36.6431) .. (37.3465,36.5394) .. controls (37.3465,36.4357) and
(37.3074,36.3614) .. (37.2272,36.3203) .. controls (37.1587,36.2832) and
(37.0942,36.2832) .. (37.0355,36.3203) .. controls (36.9749,36.3555) and
(36.8947,36.4494) .. (36.7930,36.6020) -- (36.5621,36.9463) .. controls
(36.3939,37.1966) and (36.2296,37.3590) .. (36.0692,37.4353) .. controls
(35.9108,37.5116) and (35.7464,37.5037) .. (35.5782,37.4118) .. controls
(35.3767,37.3062) and (35.2613,37.1301) .. (35.2300,36.8817) .. controls
(35.2007,36.6333) and (35.2633,36.3634) .. (35.4217,36.0660) .. controls
(35.5900,35.7472) and (35.7817,35.5301) .. (35.9988,35.4127) .. controls
(36.2120,35.2953) and (36.4213,35.2914) .. (36.6286,35.4009) --
(36.6463,35.4107) -- (36.3744,35.9193) .. controls (36.2668,35.8763) and
(36.1651,35.8841) .. (36.0692,35.9408) .. controls (35.9753,35.9976) and
(35.8853,36.1032) .. (35.8032,36.2577) .. controls (35.7269,36.4025) and
(35.6878,36.5238) .. (35.6878,36.6255) .. controls (35.6857,36.7272) and
(35.7230,36.7976) .. (35.7973,36.8367) .. controls (35.8560,36.8680) and
(35.9127,36.8680) .. (35.9655,36.8367) .. controls (36.0184,36.8035) and
(36.1025,36.7018) .. (36.2198,36.5316) -- (36.4624,36.1736) .. controls
(36.6286,35.9252) and (36.7949,35.7667) .. (36.9573,35.6963) .. controls
(37.1196,35.6239) and (37.2898,35.6357) .. (37.4659,35.7296) .. controls
(37.6928,35.8509) and (37.8179,36.0347) .. (37.8375,36.2831) .. controls
(37.8590,36.5316) and (37.7749,36.8328) .. (37.5852,37.1888) .. controls
(37.4033,37.5272) and (37.2037,37.7561) .. (36.9807,37.8715) .. controls
(36.7597,37.9888) and (36.5348,37.9849) .. (36.3059,37.8617) --
cycle(36.2609,37.8402)
%I
(38.3167,35.6827) --
(36.1552,34.8513) -- (36.3645,34.3095) -- (38.5260,35.1389) --
cycle(38.3167,35.6827)
%T
(37.1548,32.8190) --
(38.9681,33.1711) -- (38.8586,33.7364) -- (37.0453,33.3823) --
(36.8946,34.1608) -- (36.4350,34.0709) -- (36.8477,31.9505) --
(37.3074,32.0404) -- cycle(37.1548,32.8190)
%Y
(39.2850,31.1465) --
(38.3030,31.0252) -- (36.8633,31.8683) -- (36.9533,31.1348) --
(37.8453,30.6634) -- (37.0942,29.9963) -- (37.1841,29.2667) --
(38.3754,30.4501) -- (39.3554,30.5714) -- cycle(39.2850,31.1465)}
\def\YNUlogo@emblem@yun{%
(15.4379,20.5101) ..
controls (15.4232,20.4676) and (15.3916,20.4780) .. (15.3683,20.4809) ..
controls (15.3190,20.6282) and (15.2471,20.7573) .. (15.1830,20.8608) ..
controls (15.0930,20.9490) and (14.9255,21.1852) .. (14.9957,21.2984) ..
controls (15.0742,21.2938) and (15.1219,21.1782) .. (15.1446,21.1141) ..
controls (15.1932,21.0221) and (15.2171,20.9835) .. (15.2480,20.9375) ..
controls (15.2677,20.9017) and (15.2990,20.8632) .. (15.3525,20.7981) ..
controls (15.3815,20.6978) and (15.4094,20.6048) ..
(15.4379,20.5102)(16.1069,19.5184) .. controls (16.0849,19.6129) and
(15.8812,19.8811) .. (15.8169,19.9996) .. controls (15.7241,20.2865) and
(15.6379,20.5812) .. (15.4923,20.8509) .. controls (15.4746,20.9422) and
(15.5814,21.0159) .. (15.6856,21.1240) .. controls (15.6817,21.2229) and
(15.6705,21.2086) .. (15.6197,21.2873) .. controls (15.5270,21.3107) and
(15.4870,21.4676) .. (15.4463,21.4923) .. controls (15.4003,21.3791) and
(15.3723,21.3079) .. (15.3116,21.2962) .. controls (15.2271,21.3994) and
(15.1985,21.5001) .. (15.2163,21.6999) .. controls (15.2976,21.7132) and
(15.3819,21.9714) .. (15.3577,22.1441) .. controls (15.3894,22.2188) and
(15.4960,22.4191) .. (15.3917,22.5589) .. controls (15.3684,22.5530) and
(15.3389,22.5338) .. (15.3106,22.5005) .. controls (15.2948,22.4888) and
(15.2821,22.4739) .. (15.2700,22.4525) .. controls (15.1584,22.3132) and
(15.0463,22.0839) .. (15.0320,22.0592) .. controls (14.8917,22.0002) and
(14.8520,21.9324) .. (14.8106,21.9108) .. controls (14.7569,21.8997) and
(14.7159,21.9344) .. (14.6217,22.0394) .. controls (14.5186,22.2474) and
(14.4679,22.3220) .. (14.7708,22.4329) .. controls (14.8017,22.4693) and
(14.8403,22.5071) .. (14.8812,22.5482) .. controls (14.8606,22.5901) and
(14.8537,22.6348) .. (14.8398,22.6782) .. controls (14.8004,22.6985) and
(14.7570,22.7228) .. (14.7175,22.7438) .. controls (14.6645,22.7629) and
(14.5409,22.8045) .. (14.5659,22.9171) .. controls (14.5827,22.9212) and
(14.5961,22.9225) .. (14.6128,22.9273) .. controls (14.6440,22.8817) and
(14.6862,22.8335) .. (14.7232,22.7955) .. controls (14.7975,22.8156) and
(14.8306,22.9517) .. (14.8718,23.0749) .. controls (14.8745,23.1682) and
(14.8745,23.1682) .. (14.8248,23.3560) .. controls (14.6553,23.3217) and
(14.5606,23.2248) .. (14.4901,23.1712) .. controls (14.5047,22.9940) and
(14.4792,22.7619) .. (14.4458,22.6696) .. controls (14.1323,22.6000) and
(14.1541,22.7905) .. (14.1593,23.0648) .. controls (14.1842,23.0879) and
(14.2095,23.1178) .. (14.2346,23.1473) .. controls (14.2268,23.1980) and
(14.2218,23.2589) .. (14.2202,23.3170) .. controls (14.2174,23.3861) and
(14.1924,23.4063) .. (14.1367,23.4135) .. controls (14.0619,23.4077) and
(13.9935,23.4024) .. (13.9256,23.3961) .. controls (13.7254,23.2495) and
(13.6330,23.2455) .. (13.4915,23.2060) .. controls (13.4007,22.9350) and
(13.3333,22.5485) .. (13.2152,22.4015) .. controls (13.2063,22.3878) and
(13.2025,22.3734) .. (13.2225,22.3572) .. controls (13.2615,22.3433) and
(13.3075,22.3299) .. (13.3522,22.3236) .. controls (13.4912,22.3896) and
(13.4912,22.3896) .. (13.8588,22.5083) .. controls (14.0067,22.4970) and
(14.2765,22.0658) .. (14.3469,21.9547) .. controls (14.4090,21.6687) and
(14.4581,21.5697) .. (14.3795,21.4024) .. controls (14.3675,21.3804) and
(14.3528,21.3553) .. (14.3373,21.3301) .. controls (14.3276,21.3257) and
(14.3145,21.3179) .. (14.3012,21.3100) .. controls (14.1080,21.2010) and
(13.9197,21.0318) .. (13.7741,21.0848) .. controls (13.6165,21.0651) and
(13.5150,21.0361) .. (13.4702,20.9503) .. controls (13.4996,20.8054) and
(13.5908,20.6892) .. (13.6825,20.5804) .. controls (13.7284,20.5218) and
(13.7781,20.4677) .. (13.8130,20.4125) .. controls (14.0468,20.1366) and
(14.0381,20.0997) .. (14.2129,19.8512) -- (14.2793,19.7950) .. controls
(14.4050,19.6883) and (14.5333,19.5855) .. (14.6619,19.4830) .. controls
(14.7300,19.4575) and (14.7993,19.4429) .. (14.8758,19.4282) .. controls
(15.0533,19.5248) and (14.8594,19.6708) .. (14.7654,19.8895) .. controls
(14.7546,19.9436) and (14.7572,20.1635) .. (14.6922,20.2819) .. controls
(14.6712,20.3241) and (14.6446,20.3532) .. (14.6094,20.3646) .. controls
(14.4726,20.5313) and (14.5063,20.6985) .. (14.6460,20.9603) .. controls
(14.6769,20.9664) and (14.7058,20.9789) .. (14.7323,20.9953) .. controls
(14.7890,20.8523) and (14.8721,20.7179) .. (14.9542,20.5909) .. controls
(15.3436,20.0003) and (15.4677,19.8377) .. (15.5562,19.4596) .. controls
(15.7356,19.3848) and (15.8793,19.4350) .. (16.1070,19.5185)(16.2255,21.6931)
.. controls (16.3047,21.6893) and (16.3172,21.7658) .. (16.3008,21.9015) ..
controls (16.2758,22.0687) and (16.2136,22.2337) .. (16.1519,22.3765) ..
controls (16.0872,22.3607) and (16.1041,22.3280) .. (16.0481,22.2930) ..
controls (15.9139,22.3811) and (15.7997,22.7252) .. (15.8874,22.9553) ..
controls (15.9041,22.9603) and (15.9267,22.9757) .. (15.9486,22.9607) ..
controls (16.0903,22.7391) and (16.1788,22.5434) .. (16.2490,22.3573) ..
controls (16.3122,22.3868) and (16.5198,22.6029) .. (16.4403,22.7843) ..
controls (16.3781,22.8687) and (16.3195,22.9566) .. (16.2744,23.0456) ..
controls (16.2361,23.1730) and (16.1633,23.3040) .. (16.1107,23.4441) ..
controls (16.0540,23.5871) and (16.0213,23.7420) .. (16.0825,23.9050) ..
controls (16.0979,23.9286) and (16.1192,23.9388) .. (16.1507,23.9171) ..
controls (16.2206,23.8130) and (16.2486,23.7715) .. (16.3016,23.6692) ..
controls (16.3340,23.6094) and (16.3719,23.5266) .. (16.4338,23.3983) ..
controls (16.4475,23.1077) and (16.3760,23.0986) .. (16.6262,23.1837) ..
controls (16.6659,23.2080) and (16.7050,23.2316) .. (16.7467,23.2660) ..
controls (16.8659,23.2791) and (16.9829,23.2305) .. (17.1330,23.3695) ..
controls (17.1599,23.4114) and (17.1770,23.4786) .. (17.1013,23.5038) ..
controls (16.9549,23.5400) and (16.8221,23.7484) .. (16.7705,23.8925) ..
controls (16.6187,23.7733) and (16.6218,23.6573) .. (16.5151,23.6589) ..
controls (16.4836,23.7112) and (16.4548,23.7673) .. (16.4327,23.8237) ..
controls (16.3161,24.0748) and (16.2333,24.3665) .. (16.1575,24.6588) ..
controls (16.1291,24.6786) and (16.1015,24.7065) .. (16.0666,24.7233) ..
controls (15.9982,24.7262) and (15.9326,24.7108) .. (15.8662,24.6967) ..
controls (15.7553,24.6708) and (15.7720,24.4286) .. (15.7730,24.4212) ..
controls (15.7893,24.2999) and (15.8095,24.1806) .. (15.8323,24.0730) ..
controls (15.8712,23.8943) and (15.9143,23.7438) .. (15.7917,23.7027) ..
controls (15.7525,23.7196) and (15.7290,23.7597) .. (15.7244,23.7967) ..
controls (15.6971,23.9214) and (15.6697,24.0461) .. (15.6494,24.1714) ..
controls (15.6378,24.2321) and (15.6258,24.2857) .. (15.6207,24.3474) ..
controls (15.6092,24.4085) and (15.5342,24.4840) .. (15.4786,24.5311) ..
controls (15.4362,24.5413) and (15.4079,24.5280) .. (15.3848,24.5097) ..
controls (15.2820,24.3372) and (15.1015,24.1166) .. (15.1500,23.9865) ..
controls (15.2135,23.9417) and (15.2925,23.9074) .. (15.3936,23.8999) ..
controls (15.4844,23.7668) and (15.8270,23.3043) .. (15.8000,23.1815) ..
controls (15.7749,23.1713) and (15.7458,23.1636) .. (15.7175,23.1751) ..
controls (15.5911,23.3020) and (15.2645,23.3062) .. (15.1626,23.2086) ..
controls (15.2847,22.9745) and (15.3970,22.8077) .. (15.5623,22.6167) ..
controls (15.6509,22.4973) and (15.7348,22.3873) .. (15.8269,22.2782) ..
controls (15.8469,22.2046) and (15.8598,22.1297) .. (15.8825,22.0663) ..
controls (15.7098,22.0798) and (15.5593,21.9422) .. (15.4550,21.8396) ..
controls (15.3997,21.7576) and (15.3953,21.7527) .. (15.4204,21.6792) ..
controls (15.5301,21.6214) and (15.6751,21.5894) .. (15.7920,21.5788) ..
controls (15.8881,21.5730) and (15.9779,21.5734) .. (16.0320,21.5844) ..
controls (16.0462,21.6237) and (16.0462,21.6237) .. (16.0047,21.8296) ..
controls (16.0005,21.8464) and (15.9947,21.8630) .. (15.9904,21.8798) ..
controls (16.0092,21.8950) and (16.0272,21.8930) .. (16.0513,21.8848) ..
controls (16.1225,21.8560) and (16.2021,21.7253) .. (16.2255,21.6930)}
\def\YNUlogo@emblem@nan{%
(20.5036,19.1730) ..
controls (19.9143,19.0059) and (20.1379,19.3411) .. (20.2299,19.8687) ..
controls (20.2548,19.9107) and (20.4649,20.1379) .. (20.5569,20.1905) ..
controls (20.6283,20.1928) and (20.7513,20.2306) .. (20.8515,20.2316) ..
controls (20.9017,20.2324) and (20.9489,20.2269) .. (20.9786,20.2048) ..
controls (21.0193,20.1160) and (21.0211,20.0376) .. (21.0191,19.9610) ..
controls (20.9629,19.9172) and (20.8380,19.5859) .. (20.6550,19.3895) ..
controls (20.6158,19.3228) and (20.5306,19.1938) ..
(20.5036,19.1731)(22.3580,15.5516) .. controls (22.3022,15.6581) and
(22.2612,15.7690) .. (22.2122,15.8795) .. controls (22.0525,16.0222) and
(21.9158,16.1996) .. (21.6876,16.3529) .. controls (21.6475,16.3876) and
(21.6283,16.3666) .. (21.6007,16.3413) .. controls (21.5746,16.0300) and
(21.7060,15.7155) .. (21.6430,15.4819) .. controls (21.6165,15.3835) and
(21.5296,15.3755) .. (21.4067,15.3823) .. controls (21.2476,15.4352) and
(21.2635,16.2115) .. (21.2071,16.6453) .. controls (20.9343,17.0501) and
(20.5445,17.3383) .. (20.1498,17.6132) .. controls (20.0380,17.6996) and
(19.9486,17.7872) .. (19.9315,17.8833) .. controls (20.1583,18.0500) and
(20.3599,18.1415) .. (20.5163,18.0316) .. controls (20.5380,17.9855) and
(20.8688,17.6542) .. (20.9486,17.6614) .. controls (20.9268,17.7535) and
(20.9169,17.8530) .. (20.9499,17.9569) .. controls (21.0252,17.9231) and
(21.0906,17.8498) .. (21.1553,17.7475) .. controls (21.3004,17.5236) and
(21.4056,17.1995) .. (21.4523,17.0592) .. controls (21.7031,16.6461) and
(22.3118,16.1715) .. (22.6495,15.8481) .. controls (22.6478,15.8128) and
(22.6457,15.7783) .. (22.6369,15.7450) -- (22.6299,15.7190) .. controls
(22.5845,15.5761) and (22.4604,15.5658) .. (22.3580,15.5517)(22.4515,16.7992)
.. controls (22.4251,16.9620) and (21.7183,17.4967) .. (21.2013,17.9188) ..
controls (20.9575,18.1184) and (20.7563,18.2924) .. (20.6829,18.3892) ..
controls (20.5878,18.4290) and (20.5274,18.4530) .. (20.4425,18.5043) --
(20.3884,18.5324) .. controls (20.3135,18.6375) and (20.2881,18.6859) ..
(20.2519,18.8656) .. controls (20.3152,18.8915) and (20.3980,18.8829) ..
(20.4839,18.8599) .. controls (20.6226,18.8227) and (20.7658,18.7493) ..
(20.8604,18.6811) .. controls (20.8842,18.6897) and (20.9124,18.6887) ..
(20.9420,18.6951) .. controls (20.9055,18.7679) and (20.9244,18.8464) ..
(20.9277,18.9325) .. controls (21.1274,18.9633) and (21.1174,18.9524) ..
(21.3409,19.1255) .. controls (21.3151,19.2667) and (21.1284,19.3375) ..
(21.0958,19.5305) .. controls (21.2090,19.5852) and (21.4057,19.5539) ..
(21.5220,19.7771) .. controls (21.4926,19.8220) and (21.4892,19.8709) ..
(21.5214,19.9324) .. controls (21.5928,19.9366) and (21.6573,19.9526) ..
(21.7384,19.9236) .. controls (21.8237,19.8993) and (21.8732,19.9231) ..
(21.9440,19.9256) .. controls (21.9931,19.8963) and (22.0250,19.8583) ..
(22.0479,19.8341) .. controls (22.0539,19.7254) and (22.0669,19.6168) ..
(22.0833,19.5203) .. controls (22.0043,19.4966) and (22.0044,19.3567) ..
(21.9816,19.2717) .. controls (22.0227,19.1699) and (22.0284,19.0729) ..
(22.0502,18.9705) .. controls (21.9687,18.9209) and (21.8818,18.8870) ..
(21.7934,18.8842) .. controls (21.8026,18.7655) and (21.7318,18.7031) ..
(21.7359,18.6452) .. controls (21.6821,18.6310) and (21.6265,18.6103) ..
(21.5760,18.6031) .. controls (21.6339,18.5311) and (21.9013,18.3108) ..
(22.0197,18.3291) .. controls (22.0600,18.0846) and (21.9024,18.0269) ..
(21.8374,17.9950) .. controls (21.8875,17.6780) and (22.0903,17.6165) ..
(22.2858,17.4233) .. controls (22.3142,17.4230) and (22.3378,17.4308) ..
(22.3757,17.4413) .. controls (22.4518,17.6188) and (22.5241,18.1017) ..
(22.5550,18.3478) .. controls (22.5337,18.4528) and (22.5057,18.5589) ..
(22.4928,18.6682) .. controls (22.2755,19.0729) and (21.8923,18.9310) ..
(22.5373,19.3305) .. controls (22.5471,19.3660) and (22.5550,19.3679) ..
(22.5780,19.4195) .. controls (22.6364,19.4532) and (22.6765,19.4600) ..
(22.7491,19.4405) .. controls (22.7939,19.2662) and (22.8507,19.0810) ..
(22.9077,18.8964) .. controls (22.9300,18.6646) and (23.0061,17.4424) ..
(22.9616,17.3829) .. controls (22.9548,17.2511) and (22.9564,17.1235) ..
(22.9590,17.0027) .. controls (22.7578,16.7238) and (22.6842,16.7156) ..
(22.4516,16.7993)(21.3974,18.6509) .. controls (21.3974,18.7281) and
(21.3819,18.8036) .. (21.3070,18.7880) .. controls (21.2304,18.5821) and
(21.2442,18.6069) .. (21.2831,18.4907) .. controls (21.3206,18.4684) and
(21.3544,18.4825) .. (21.3847,18.4992) .. controls (21.3881,18.5115) and
(21.4003,18.5794) .. (21.3975,18.6509)}
\def\YNUlogo@emblem@da{%
(31.3322,19.9616) ..
controls (31.3049,19.9383) and (31.2830,19.9232) .. (31.2642,19.9022) ..
controls (31.1434,19.7951) and (31.0124,19.6608) .. (30.9002,19.5217) ..
controls (30.8390,19.4398) and (30.7773,19.3568) .. (30.7192,19.2665) ..
controls (30.5535,19.0139) and (30.4259,18.7471) .. (30.3653,18.5066) ..
controls (30.4540,18.4800) and (30.5527,18.4562) .. (30.6590,18.4351) ..
controls (30.6951,18.4413) and (30.7551,18.4443) .. (30.8258,18.4405) ..
controls (30.9077,18.4249) and (30.8749,18.4351) .. (30.9457,18.4213) ..
controls (31.0310,18.4106) and (31.1195,18.3931) .. (31.2056,18.3819) ..
controls (31.2410,18.3708) and (31.2593,18.3665) .. (31.2800,18.3544) ..
controls (31.4097,18.3060) and (31.5516,18.2617) .. (31.6183,18.2063) ..
controls (31.6490,18.1940) and (31.5716,18.0995) .. (31.5639,18.0720) ..
controls (31.5300,18.0050) and (31.4996,17.9366) .. (31.4824,17.8755) ..
controls (31.4601,17.8024) and (31.4359,17.7387) .. (31.4199,17.6758) ..
controls (31.4128,17.6739) and (31.3818,17.6744) .. (31.3739,17.6722) ..
controls (31.3228,17.6640) and (31.3237,17.6812) .. (31.2781,17.7038) ..
controls (31.2664,17.7144) and (31.2425,17.7352) .. (31.2406,17.7528) ..
controls (31.2047,17.7928) and (31.1532,17.8285) .. (31.0934,17.8697) ..
controls (30.8845,17.9975) and (30.5869,18.0833) .. (30.4467,18.0458) ..
controls (30.5775,17.5576) and (31.2377,16.8956) .. (31.1724,16.4876) ..
controls (31.0091,16.2600) and (30.9798,16.0874) .. (30.9039,15.8756) ..
controls (30.8701,15.8613) and (30.8465,15.8519) .. (30.8293,15.8724) ..
controls (30.4518,16.5354) and (30.3040,17.2776) .. (29.9226,17.9808) ..
controls (29.5426,18.2862) and (29.0108,18.0934) .. (28.6026,18.0344) ..
controls (28.5053,18.0243) and (28.4157,18.0171) .. (28.3298,18.0276) ..
controls (28.3948,18.2517) and (28.4291,18.4027) .. (28.4778,18.4997) ..
controls (28.5850,18.6863) and (28.7555,18.6732) .. (29.2713,18.6124) ..
controls (29.2708,18.6458) and (29.2797,18.6725) .. (29.2975,18.7025) ..
controls (29.0876,18.8628) and (28.8328,18.9768) .. (28.6161,19.0683) ..
controls (28.5390,19.0796) and (28.4273,19.0925) .. (28.3139,19.1116) ..
controls (28.1301,19.1455) and (27.9422,19.1951) .. (27.9174,19.2876) ..
controls (27.9735,19.3286) and (27.9735,19.3286) .. (28.0859,19.3419) ..
controls (28.1392,19.3310) and (28.1967,19.3297) .. (28.2578,19.3208) ..
controls (28.5191,19.3078) and (28.8194,19.3058) .. (29.1317,19.2560) ..
controls (29.3919,19.1055) and (29.6829,18.7227) .. (29.9859,18.6780) ..
controls (30.2101,18.8975) and (30.3855,19.4837) .. (30.5448,19.9169) ..
controls (30.5894,20.0295) and (30.6293,20.1309) .. (30.6647,20.2152) ..
controls (30.6741,20.2428) and (30.6850,20.2618) .. (30.6943,20.2895) ..
controls (30.7145,20.3368) and (30.7454,20.3779) .. (30.8437,20.4462) ..
controls (30.9375,20.4377) and (31.0311,20.4301) .. (31.1249,20.4216) ..
controls (31.2666,20.4113) and (31.3073,20.3958) .. (31.4003,20.3871) ..
controls (31.5596,20.3223) and (31.6774,20.2867) .. (31.7759,20.0729) ..
controls (31.6884,20.0239) and (31.5929,19.9963) .. (31.3321,19.9616)}
\def\YNUlogo@emblem@xue{%
(37.5973,22.8795) ..
controls (37.5630,22.8814) and (37.5218,22.8824) .. (37.4784,22.8890) ..
controls (37.3480,22.8991) and (37.1897,22.9315) .. (37.1578,22.9797) ..
controls (37.1704,23.0017) and (37.2082,23.0152) .. (37.2525,23.0195) ..
controls (37.3794,23.0352) and (37.5821,22.9773) ..
(37.5973,22.8795)(36.8929,22.3562) .. controls (36.9600,22.2881) and
(36.9331,22.2321) .. (36.9060,22.1945) .. controls (36.8892,22.1864) and
(36.8761,22.1830) .. (36.8657,22.1765) .. controls (36.8021,22.1480) and
(36.7738,22.1292) .. (36.6547,22.0969) .. controls (36.6374,22.1188) and
(36.6222,22.1336) .. (36.6032,22.1506) .. controls (36.6026,22.2519) and
(36.6001,22.2588) .. (36.6218,22.3173) .. controls (36.6218,22.3173) and
(36.6248,22.3224) .. (36.6229,22.3292) .. controls (36.7107,22.3366) and
(36.8029,22.3430) .. (36.8930,22.3562)(36.2694,22.5567) .. controls
(36.2640,22.5473) and (36.2683,22.5340) .. (36.2670,22.5223) --
(36.2646,22.5182) .. controls (36.2160,22.5044) and (36.1645,22.4870) ..
(36.1203,22.4826) .. controls (36.1448,22.5043) and (36.1652,22.5284) ..
(36.1938,22.5591) -- (36.2006,22.5605) .. controls (36.2213,22.5550) and
(36.2442,22.5533) .. (36.2694,22.5565)(36.3601,22.3554) .. controls
(36.3935,22.3014) and (36.3935,22.3014) .. (36.4036,22.2359) .. controls
(36.4087,22.2329) and (36.4060,22.2285) .. (36.4076,22.2222) .. controls
(36.3423,22.2126) and (36.2437,22.2044) .. (36.2342,22.2810) .. controls
(36.2435,22.2871) and (36.2588,22.3020) .. (36.2753,22.3099) .. controls
(36.2871,22.3210) and (36.3023,22.3361) .. (36.3146,22.3469) .. controls
(36.3258,22.3464) and (36.3396,22.3499) .. (36.3602,22.3555)(36.5556,23.4218)
.. controls (36.6428,23.4073) and (36.7358,23.3954) .. (36.8224,23.3921) ..
controls (36.8625,23.3700) and (36.8366,23.3462) .. (36.8283,23.3300) ..
controls (36.8047,23.3192) and (36.7810,23.3101) .. (36.7644,23.3013) ..
controls (36.6653,23.2640) and (36.6093,23.2481) .. (36.5384,23.2482) ..
controls (36.4836,23.1729) and (36.3921,23.2496) .. (36.3535,23.2665) ..
controls (36.3403,23.3452) and (36.3075,23.4520) .. (36.2228,23.5309) ..
controls (35.9977,23.4898) and (35.8089,23.4084) .. (35.6168,23.4545) ..
controls (35.5963,23.5723) and (35.7840,23.6718) .. (35.9167,23.7906) ..
controls (35.9197,23.7957) and (35.9244,23.7926) .. (35.9268,23.7969) ..
controls (36.1689,23.9595) and (36.1689,23.9595) .. (36.1960,23.9970) ..
controls (36.1882,24.0548) and (36.0658,24.2736) .. (36.0038,24.3506) ..
controls (35.9145,24.3762) and (35.8967,24.3243) .. (35.8732,24.3077) ..
controls (35.7612,24.1758) and (35.6631,24.0669) .. (35.5804,23.9849) ..
controls (34.8351,23.2779) and (34.9190,24.3249) .. (34.2927,24.1420) ..
controls (34.2541,24.0346) and (34.2013,23.8924) .. (34.1513,23.7438) ..
controls (34.1295,23.6852) and (34.1143,23.6289) .. (34.0929,23.5701) ..
controls (34.0498,23.4240) and (34.0156,23.2830) .. (34.0098,23.1799) ..
controls (34.0403,23.1923) and (34.0455,23.2159) .. (34.0947,23.2254) ..
controls (34.1838,23.2988) and (34.2376,23.3807) .. (34.2920,23.4552) ..
controls (34.3343,23.5078) and (34.3715,23.5515) .. (34.4266,23.5848) ..
controls (34.4619,23.6058) and (34.5098,23.6264) .. (34.5647,23.6295) ..
controls (34.5719,23.5715) and (34.8167,23.4726) .. (34.8915,23.4169) ..
controls (34.9187,23.4047) and (34.9227,23.3867) .. (34.9021,23.3637) ..
controls (34.8900,23.3533) and (34.8779,23.3424) .. (34.8660,23.3313) ..
controls (34.8143,23.2727) and (34.7618,23.2438) .. (34.7095,23.2143) ..
controls (34.6792,23.2025) and (34.6527,23.1884) .. (34.6221,23.1768) ..
controls (34.4913,23.1194) and (34.5066,23.0781) .. (34.5058,23.0158) ..
controls (34.4958,22.8858) and (34.4874,22.8099) .. (34.4758,22.6864) ..
controls (34.4766,22.6566) and (34.4837,22.6286) .. (34.4940,22.6052) ..
controls (34.6949,22.6363) and (34.8688,22.8557) .. (35.0331,23.0274) ..
controls (35.0758,23.0798) and (35.1171,23.1211) .. (35.1579,23.1627) ..
controls (35.1656,23.1647) and (35.1683,23.1691) .. (35.1705,23.1734) ..
controls (35.2934,23.1915) and (35.5570,23.2287) .. (35.6329,23.0725) ..
controls (35.5817,23.0657) and (35.5059,23.0275) .. (35.4510,22.9935) ..
controls (35.3989,22.9644) and (35.3560,22.9305) .. (35.3432,22.9195) ..
controls (35.3418,22.8964) and (35.3402,22.8740) .. (35.3388,22.8509) ..
controls (35.3307,22.7128) and (35.3498,22.5720) .. (35.3995,22.4841) ..
controls (35.4579,22.5448) and (35.5225,22.6265) .. (35.5920,22.7047) ..
controls (35.6363,22.7502) and (35.6734,22.7939) .. (35.7173,22.8398) ..
controls (35.9195,23.0368) and (36.1639,23.2035) .. (36.4740,23.1254) ..
controls (36.4842,23.1127) and (36.5022,23.0967) .. (36.4732,23.0733) ..
controls (36.2616,22.9522) and (36.0997,22.8269) .. (35.9526,22.7039) ..
controls (35.9280,22.6827) and (35.9035,22.6611) .. (35.8819,22.6443) ..
controls (35.8323,22.5631) and (35.8239,22.5524) .. (35.7825,22.5063) ..
controls (35.7489,22.4752) and (35.6821,22.3802) .. (35.6757,22.3785) ..
controls (35.6404,22.3317) and (35.6600,22.3043) .. (35.6741,22.2730) ..
controls (35.7066,22.2774) and (35.8620,22.3118) .. (35.9222,22.2834) ..
controls (36.0054,22.0692) and (36.2240,22.0266) .. (36.4243,21.9636) ..
controls (36.4270,21.9382) and (36.5463,21.8579) .. (36.6610,21.7087) ..
controls (36.8094,21.4398) and (37.0209,21.3499) .. (37.1997,21.1251) ..
controls (37.2165,21.1187) and (37.2370,21.1129) .. (37.2507,21.1430) ..
controls (37.2568,21.2758) and (37.2608,21.4162) .. (37.2647,21.5556) ..
controls (37.2084,21.6837) and (37.1607,21.7346) .. (37.1492,21.8059) ..
controls (37.1428,21.8568) and (37.1436,21.9100) .. (37.1722,22.0000) ..
controls (37.1735,22.0117) and (37.1759,22.0158) .. (37.1763,22.0276) ..
controls (37.3628,22.0709) and (37.5388,22.0116) .. (37.6570,21.9574) ..
controls (37.7982,21.9058) and (37.9838,21.7449) .. (38.1404,21.8027) ..
controls (38.1200,21.9507) and (38.0392,22.1390) .. (37.9415,22.3083) ..
controls (37.8853,22.3228) and (37.8377,22.3324) .. (37.7860,22.3455) ..
controls (37.6386,22.3355) and (37.3642,22.2806) .. (37.2931,22.3624) ..
controls (37.2765,22.4671) and (37.2539,22.5099) .. (37.2091,22.5357) ..
controls (37.1484,22.5529) and (37.0805,22.5687) .. (37.0224,22.5903) --
(37.0180,22.5929) .. controls (36.9988,22.6215) and (36.9870,22.6521) ..
(36.9751,22.6823) .. controls (36.7974,22.6611) and (36.7345,22.6143) ..
(36.7059,22.7905) .. controls (36.7576,22.8377) and (36.8636,22.8482) ..
(36.9767,22.8176) .. controls (36.9823,22.7971) and (36.9968,22.7714) ..
(37.0174,22.7469) .. controls (37.0808,22.6810) and (37.1773,22.6845) ..
(37.2218,22.5876) .. controls (37.2730,22.5635) and (37.3251,22.5513) ..
(37.3621,22.5533) .. controls (37.4021,22.6019) and (37.4280,22.6467) ..
(37.4799,22.6454) .. controls (37.5048,22.6077) and (37.5312,22.5810) ..
(37.5613,22.5512) .. controls (37.6060,22.5552) and (37.6891,22.6495) ..
(37.7587,22.7277) .. controls (37.7668,22.7416) and (37.7783,22.7522) ..
(37.7905,22.7631) .. controls (37.8796,22.7941) and (37.9642,22.8289) ..
(38.0531,22.8596) .. controls (38.1200,22.9040) and (38.1863,22.9662) ..
(38.3086,23.0144) .. controls (38.3539,23.1082) and (38.3225,23.1822) ..
(38.2633,23.2539) .. controls (38.0597,23.2293) and (37.8081,23.2741) ..
(37.6458,23.2608) .. controls (37.6133,23.2856) and (37.6133,23.2856) ..
(37.4393,23.2916) .. controls (37.4343,23.3656) and (37.4343,23.3656) ..
(37.4573,23.4055) .. controls (37.5646,23.5086) and (37.6372,23.6034) ..
(37.5350,23.8053) .. controls (37.5130,23.8545) and (37.5135,23.8613) ..
(37.4662,23.8498) .. controls (37.2473,23.7986) and (37.2473,23.7986) ..
(37.0077,23.7128) .. controls (36.9419,23.6910) and (36.8861,23.6760) ..
(36.8283,23.6683) .. controls (36.6915,23.6457) and (36.5096,23.5678) ..
(36.4276,23.4962) .. controls (36.4085,23.4725) and (36.3930,23.4570) ..
(36.3902,23.4408) .. controls (36.4351,23.4386) and (36.4949,23.4276) ..
(36.5559,23.4222)(35.3490,22.0577) .. controls (35.3279,22.0202) and
(35.3406,21.9891) .. (35.3702,21.9618) .. controls (35.4694,21.9089) and
(35.5094,21.8897) .. (35.5982,21.8546) .. controls (35.6223,21.8110) and
(35.6146,21.8129) .. (35.5772,21.7777) .. controls (34.9918,21.6129) and
(34.9917,21.3541) .. (34.6188,21.9787) .. controls (34.5436,22.0212) and
(34.5306,22.0514) .. (34.5263,22.1184) .. controls (34.5542,22.1686) and
(34.5695,22.1603) .. (34.6081,22.1782) .. controls (34.6935,22.1934) and
(34.8249,22.2360) .. (34.9787,22.2362) .. controls (35.1332,22.2067) and
(35.3068,22.2009) .. (35.4547,22.2106) .. controls (35.4762,22.1791) and
(35.4288,22.1464) .. (35.3876,22.1049)(36.3671,21.2918) .. controls
(36.3815,21.2960) and (36.4353,21.2763) .. (36.4830,21.3383) .. controls
(36.3575,21.6527) and (36.0370,22.0345) .. (35.7242,22.0843) .. controls
(35.7200,21.9631) and (35.7292,21.8470) .. (35.7647,21.7341) .. controls
(36.0679,21.6133) and (36.1406,21.5539) .. (36.3671,21.2918)}
\def\YNUlogo@emblem@building{%
\path[fill=YNUlogoGreen,nonzero~rule] (22.6309,25.5328) --
(22.5668,27.4502) -- (22.4309,27.4530) -- (22.5038,25.5284) -- cycle;
%
\path[fill=YNUlogoGreen,nonzero~rule] (22.5057,27.3114) ..
controls (22.5115,27.3114) and (24.9000,27.2764) .. (25.5631,27.3004) ..
controls (26.2184,27.3114) and (28.4991,27.3354) .. (28.5050,27.3354) --
(28.5605,27.4721) .. controls (28.5547,27.4721) and (26.2124,27.4533) ..
(25.5611,27.4424) -- (25.5591,27.4424) .. controls (24.8979,27.4184) and
(22.5115,27.4534) .. (22.5056,27.4534) -- cycle;
%
\path[fill=YNUlogoGreen,nonzero~rule] (28.4434,27.4588) --
(28.4092,25.5656) -- (28.5304,25.5223) -- (28.5655,27.4736) -- cycle;
%
\path[fill=YNUlogoGreen,nonzero~rule] (23.2001,25.5197) --
(23.1571,27.3594) -- (24.0178,27.3594) -- (24.0588,25.5307) --
(23.9963,25.2291) -- (23.2705,25.2401) -- cycle(23.2001,25.5197);
%
\path[fill=YNUlogoGreen,nonzero~rule] (24.7024,25.5088) --
(24.6691,27.3594) -- (26.2457,27.3485) -- (26.2457,25.4957) --
(26.1303,25.2073) -- (24.8061,25.1941) -- cycle(24.7024,25.5088);
%
\path[fill=YNUlogoGreen,nonzero~rule] (26.9089,25.5197) --
(26.9089,27.3594) -- (27.8106,27.3594) -- (27.7891,25.5307) --
(27.6854,25.2401) -- (26.9812,25.2291) -- cycle(26.9089,25.5197);
%
\path[fill=YNUlogoGreen,nonzero~rule] (21.2499,25.7164) ..
controls (21.3027,25.4258) and (22.0069,25.2881) .. (22.0891,25.7032) ..
controls (22.0793,26.0637) and (22.0597,26.4220) .. (22.0597,26.4220) --
(21.2303,26.4570) .. controls (21.2401,26.2123) and (21.2499,25.9588) ..
(21.2499,25.7163);
%
\path[fill=YNUlogoGreen,nonzero~rule] (29.7276,25.7273) ..
controls (29.6747,25.4498) and (28.9706,25.3100) .. (28.8884,25.7164) ..
controls (28.8982,26.0856) and (28.9197,26.4330) .. (28.9197,26.4330) --
(29.7471,26.4680) .. controls (29.7373,26.2254) and (29.7275,25.9720) ..
(29.7275,25.7273);
%
\path[fill=YNUlogoGreen,nonzero~rule] (20.0489,25.7841) ..
controls (20.0997,25.5088) and (20.7746,25.3799) .. (20.8567,25.7732) ..
controls (20.8469,26.1315) and (20.8372,26.4811) .. (20.8372,26.4811) --
(20.0273,26.5029) .. controls (20.0391,26.2713) and (20.0391,26.0288) ..
(20.0489,25.7841);
%
\path[fill=YNUlogoGreen,nonzero~rule] (30.9286,25.8081) ..
controls (30.8758,25.5307) and (30.2029,25.3908) .. (30.1207,25.7972) ..
controls (30.1305,26.1446) and (30.1423,26.4920) .. (30.1423,26.4920) --
(30.9501,26.5270) .. controls (30.9384,26.2822) and (30.9384,26.0397) ..
(30.9286,25.8081);
%
\path[fill=YNUlogoGreen,nonzero~rule] (18.6307,25.8475) ..
controls (18.7129,25.5459) and (19.3134,25.4411) .. (19.3955,25.8343) ..
controls (19.3857,26.1817) and (19.3760,26.5291) .. (19.3760,26.5291) --
(18.5974,26.5750) .. controls (18.5974,26.3324) and (18.6307,26.0899) ..
(18.6307,25.8474);
%
\path[fill=YNUlogoGreen,nonzero~rule] (32.3487,25.8781) ..
controls (32.2646,25.5875) and (31.6660,25.4717) .. (31.5819,25.8649) ..
controls (31.5917,26.2254) and (31.6035,26.5728) .. (31.6035,26.5728) --
(32.3800,26.6078) .. controls (32.3800,26.3631) and (32.3487,26.1205) ..
(32.3487,25.8780);
%
\path[fill=YNUlogoGreen,nonzero~rule] (17.5216,25.9261) ..
controls (17.6038,25.6355) and (18.2043,25.5197) .. (18.2551,25.9130) ..
controls (18.2454,26.2494) and (18.2356,26.5837) .. (18.2356,26.5837) --
(17.4786,26.6187) .. controls (17.4904,26.3871) and (17.5099,26.1555) ..
(17.5216,25.9261);
%
\path[fill=YNUlogoGreen,nonzero~rule] (33.4578,25.9829) ..
controls (33.3737,25.6923) and (32.7732,25.5765) .. (32.7204,25.9698) ..
controls (32.7321,26.3172) and (32.7419,26.6427) .. (32.7419,26.6427) --
(33.4989,26.6886) .. controls (33.4891,26.4570) and (33.4676,26.2123) ..
(33.4578,25.9829);
%
\path[fill=YNUlogoGreen,nonzero~rule] (16.3069,25.8016) ..
controls (16.6003,25.6486) and (16.9094,25.8693) .. (16.9720,26.0201) ..
controls (16.9563,26.3565) and (16.9407,26.6908) .. (16.9407,26.6908) --
(16.1973,26.7280) .. controls (16.2130,26.4942) and (16.2912,26.0310) ..
(16.3069,25.8016);
%
\path[fill=YNUlogoGreen,nonzero~rule] (34.6236,25.8431) ..
controls (34.3517,25.6923) and (34.0642,25.9130) .. (34.0055,26.0638) ..
controls (34.0211,26.3981) and (34.0349,26.7345) .. (34.0349,26.7345) --
(34.7234,26.7804) .. controls (34.7098,26.5488) and (34.6373,26.0747) ..
(34.6236,25.8431);
%
\path[fill=YNUlogoGreen,nonzero~rule] (21.2714,26.8744) --
(21.9971,26.8744) .. controls (22.0284,26.8744) and (22.0499,26.8962) ..
(22.0499,26.9202) -- (22.0499,27.7527) .. controls (22.0499,27.7767) and
(22.0284,27.7986) .. (21.9971,27.7986) -- (21.2714,27.7986) .. controls
(21.2401,27.7986) and (21.2206,27.7767) .. (21.2206,27.7527) --
(21.2206,26.9202) .. controls (21.2206,26.8962) and (21.2401,26.8744) ..
(21.2714,26.8744);
%
\path[fill=YNUlogoGreen,nonzero~rule] (29.7060,26.8853) --
(28.9803,26.8853) .. controls (28.9490,26.8853) and (28.9295,26.9071) ..
(28.9295,26.9421) -- (28.9295,27.7636) .. controls (28.9295,27.7877) and
(28.9491,27.8117) .. (28.9803,27.8117) -- (29.7060,27.8117) .. controls
(29.7373,27.8117) and (29.7569,27.7876) .. (29.7569,27.7636) --
(29.7569,26.9421) .. controls (29.7569,26.9071) and (29.7373,26.8853) ..
(29.7060,26.8853);
%
\path[fill=YNUlogoGreen,nonzero~rule] (20.0293,26.9312) --
(20.7628,26.9180) .. controls (20.7844,26.9180) and (20.8059,26.9421) ..
(20.8059,26.9770) -- (20.8059,27.7986) .. controls (20.8059,27.8226) and
(20.7843,27.8444) .. (20.7628,27.8444) -- (20.0293,27.8444) .. controls
(20.0078,27.8444) and (19.9863,27.8226) .. (19.9863,27.7986) --
(19.9863,26.9770) .. controls (19.9863,26.9421) and (20.0078,26.9312) ..
(20.0293,26.9312);
%
\path[fill=YNUlogoGreen,nonzero~rule] (30.9501,26.9421) --
(30.2146,26.9421) .. controls (30.1931,26.9421) and (30.1716,26.9662) ..
(30.1716,26.9880) -- (30.1716,27.8117) .. controls (30.1716,27.8445) and
(30.1932,27.8685) .. (30.2146,27.8685) -- (30.9501,27.8685) .. controls
(30.9697,27.8685) and (30.9912,27.8444) .. (30.9912,27.8226) --
(30.9912,26.9880) .. controls (30.9912,26.9661) and (30.9696,26.9421) ..
(30.9501,26.9421);
%
\path[fill=YNUlogoGreen,nonzero~rule] (18.6190,27.0120) --
(19.3036,26.9880) .. controls (19.3349,26.9880) and (19.3545,27.0120) ..
(19.3545,27.0360) -- (19.3349,27.8444) .. controls (19.3349,27.8816) and
(19.3134,27.8925) .. (19.2919,27.9034) -- (18.6190,27.9384) .. controls
(18.5877,27.9384) and (18.5779,27.9143) .. (18.5779,27.8816) --
(18.5779,27.0579) .. controls (18.5779,27.0360) and (18.5877,27.0120) ..
(18.6190,27.0120);
%
\path[fill=YNUlogoGreen,nonzero~rule] (32.3585,27.0229) --
(31.6739,27.0011) .. controls (31.6445,27.0011) and (31.6230,27.0229) ..
(31.6230,27.0470) -- (31.6445,27.8685) .. controls (31.6445,27.8925) and
(31.6661,27.9144) .. (31.6856,27.9144) -- (32.3585,27.9493) .. controls
(32.3898,27.9493) and (32.3996,27.9275) .. (32.3996,27.9034) --
(32.3996,27.0710) .. controls (32.3996,27.0469) and (32.3898,27.0230) ..
(32.3585,27.0230);
%
\path[fill=YNUlogoGreen,nonzero~rule] (17.4786,27.1060) --
(18.1534,27.0470) .. controls (18.1730,27.0470) and (18.1945,27.0710) ..
(18.1945,27.0929) -- (18.1730,27.8925) .. controls (18.1730,27.9275) and
(18.1534,27.9384) .. (18.1221,27.9493) -- (17.4590,27.9843) .. controls
(17.4062,27.9952) and (17.4160,27.9734) .. (17.4160,27.9384) --
(17.4278,27.1519) .. controls (17.4278,27.1278) and (17.4473,27.1060) ..
(17.4786,27.1060);
%
\path[fill=YNUlogoGreen,nonzero~rule] (33.4989,27.1169) --
(32.8260,27.0710) .. controls (32.8045,27.0710) and (32.7830,27.0929) ..
(32.7830,27.1169) -- (32.8045,27.9144) .. controls (32.8045,27.9384) and
(32.8261,27.9603) .. (32.8554,27.9603) -- (33.5204,28.0083) .. controls
(33.5713,28.0083) and (33.5615,27.9842) .. (33.5615,27.9603) --
(33.5497,27.1737) .. controls (33.5497,27.1387) and (33.5302,27.1278) ..
(33.4989,27.1169);
%
\path[fill=YNUlogoGreen,nonzero~rule] (15.9704,27.1628) --
(16.8507,27.1278) .. controls (16.8917,27.1278) and (16.9309,27.1497) ..
(16.9309,27.1737) -- (16.8918,27.9603) .. controls (16.8722,27.9952) and
(16.8507,28.0083) .. (16.7920,28.0083) -- (15.9118,28.0411) .. controls
(15.7964,28.0411) and (15.8159,28.0192) .. (15.8159,27.9843) --
(15.8922,27.2086) .. controls (15.8922,27.1868) and (15.9333,27.1627) ..
(15.9705,27.1627);
%
\path[fill=YNUlogoGreen,nonzero~rule] (34.9699,27.1868) --
(34.1229,27.1388) .. controls (34.0857,27.1388) and (34.0485,27.1628) ..
(34.0485,27.1868) -- (34.0857,27.9843) .. controls (34.1053,28.0084) and
(34.1229,28.0302) .. (34.1796,28.0302) -- (35.0266,28.0542) .. controls
(35.1400,28.0542) and (35.1205,28.0302) .. (35.1205,28.0084) --
(35.0442,27.2327) .. controls (35.0442,27.2087) and (35.0070,27.1868) ..
(34.9699,27.1868);
%
\path[fill=YNUlogoGreen,nonzero~rule] (15.5812,28.2749) --
(15.5577,29.4657) -- (18.3255,29.4307) -- (18.8283,28.5393) --
(21.5961,28.4475) -- (21.8426,28.0542) -- cycle(15.5812,28.2749);
%
\path[fill=YNUlogoGreen,nonzero~rule] (35.2789,28.3099) --
(35.3005,29.4897) -- (32.5580,29.4547) -- (32.0612,28.5633) --
(29.3168,28.4825) -- (29.0742,28.0783) -- cycle(35.2789,28.3099);
%
\path[fill=YNUlogoGreen,nonzero~rule] (19.0445,28.7787) --
(18.4337,29.9398) -- (23.4583,29.8830) -- (23.6852,28.6682) -- cycle;
%
\path[fill=YNUlogoGreen,nonzero~rule] (31.7928,28.7949) --
(32.4495,29.9748) -- (27.4517,29.9372) -- (27.1886,28.6791) -- cycle;
%
\path[fill=YNUlogoGreen,nonzero~rule] (22.1634,24.9276) ..
controls (22.1634,24.9276) and (19.4992,25.0915) .. (18.9828,25.1483) ..
controls (18.4527,25.2073) and (16.5573,25.5088) .. (16.5573,25.5088) --
(16.5475,25.6923) .. controls (16.5475,25.6923) and (18.6307,25.3908) ..
(19.1588,25.3449) .. controls (19.6968,25.2991) and (22.0793,25.1133) ..
(22.1419,25.1133) .. controls (22.1517,24.9757) and (22.1634,24.9276) ..
(22.1634,24.9276);
%
\path[fill=YNUlogoGreen,nonzero~rule] (28.8356,24.9648) ..
controls (28.8356,24.9648) and (31.5409,25.1374) .. (32.0670,25.1964) ..
controls (32.5874,25.2532) and (34.4828,25.5656) .. (34.4828,25.5656) --
(34.4946,25.7513) .. controls (34.4946,25.7513) and (32.4211,25.4389) ..
(31.8812,25.3908) .. controls (31.3433,25.3450) and (28.9197,25.1592) ..
(28.8552,25.1592) .. controls (28.7945,25.1592) and (28.8356,24.9648) ..
(28.8356,24.9648);
%
\path[fill=YNUlogoGreen,nonzero~rule] (22.4118,24.6501) --
(22.3805,24.8118) .. controls (22.3805,24.8118) and (25.1679,24.7660) ..
(25.4477,24.7790) .. controls (25.7802,24.7900) and (28.4522,24.8599) ..
(28.4522,24.8599) -- (28.4307,24.6742) .. controls (28.4307,24.6742) and
(25.5513,24.6152) .. (25.3322,24.6152) .. controls (25.1151,24.6042) and
(22.4118,24.6501) .. (22.4118,24.6501);
%
\path[fill=YNUlogoGreen,nonzero~rule] (23.6852,28.6551) --
(27.2199,28.6551) -- (27.2199,28.7840) -- (23.6544,28.7824) -- cycle;
%
\path[fill=YNUlogoGreen,nonzero~rule] (23.5444,29.0964) --
(27.3647,29.0964) -- (27.3647,29.2232) -- (23.5444,29.2232) --
cycle(23.5444,29.0964);
%
\path[fill=YNUlogoGreen,nonzero~rule] (23.5295,29.6055) --
(27.4201,29.6055) .. controls (27.4404,29.6055) and (27.4506,29.6164) ..
(27.4506,29.6383) -- (27.4506,29.6973) .. controls (27.4506,29.7082) and
(27.4405,29.7322) .. (27.4201,29.7322) -- (23.5295,29.7322) .. controls
(23.5072,29.7322) and (23.4971,29.7082) .. (23.4971,29.6973) --
(23.4971,29.6383) .. controls (23.4971,29.6164) and (23.5072,29.6055) ..
(23.5295,29.6055);
%
\path[fill=YNUlogoGreen,nonzero~rule] (23.4247,30.1474) --
(27.4555,30.1474) -- (27.4555,30.2632) -- (23.4247,30.2632) --
cycle(23.4247,30.1474);
%
\path[fill=YNUlogoGreen,nonzero~rule] (23.0269,30.9417) --
(27.7703,30.9417) -- (27.7703,31.0707) -- (23.0269,31.0707) --
cycle(23.0269,30.9417);
%
\path[fill=YNUlogoGreen,nonzero~rule] (22.7854,31.3993) --
(28.0688,31.3993) -- (28.0688,31.5501) -- (22.7854,31.5501) --
cycle(22.7854,31.3993);
%
\path[fill=YNUlogoGreen,nonzero~rule] (22.5407,32.0351) --
(28.2457,32.0351) -- (28.2457,32.1859) -- (22.5407,32.1859) --
cycle(22.5407,32.0351);
%
\path[fill=YNUlogoGreen,nonzero~rule] (22.3020,32.7649) --
(28.5424,32.7649) -- (28.5424,32.9156) -- (22.3020,32.9156) --
cycle(22.3020,32.7649);
%
\path[fill=YNUlogoGreen,nonzero~rule] (21.9925,33.5624) --
(28.8006,33.5624) -- (28.8006,33.7481) -- (21.9925,33.7481) --
cycle(21.9925,33.5624);
%
\path[fill=YNUlogoGreen,nonzero~rule] (21.5329,34.4079) --
(29.2519,34.4079) -- (29.2519,34.6526) -- (21.5329,34.6526) --
cycle(21.5329,34.4079);
%
\path[fill=YNUlogoGreen,nonzero~rule] (20.5575,36.0160) --
(25.1968,36.0750) -- (30.2297,36.0291) -- (30.2401,36.2607) --
(25.2731,36.3285) -- (20.5575,36.2717) -- cycle(20.5575,36.0160);
%
\path[fill=YNUlogoGreen,nonzero~rule] (19.9882,36.8266) --
(25.1798,36.9424) -- (30.8635,36.8616) -- (30.8739,37.1041) --
(25.2564,37.2090) -- (19.9883,37.0932) -- cycle(19.9882,36.8266);
%
\path[fill=YNUlogoGreen,nonzero~rule] (18.9900,37.6837) --
(25.0732,37.8557) -- (31.1573,37.7180) -- (31.1770,37.9715) --
(25.1561,38.1463) -- (19.2578,37.9486) -- cycle;
%
\path[fill=YNUlogoGreen,nonzero~rule] (21.0469,35.2054) --
(25.1971,35.2644) -- (29.6836,35.2185) -- (29.7041,35.4501) --
(25.2627,35.5201) -- (21.0367,35.4611) -- cycle(21.0469,35.2054);
%
\path[fill=YNUlogoGreen,nonzero~rule] (22.4529,24.8118) --
(22.2240,24.9648) -- (22.2142,25.1374) -- (22.2358,25.1592) .. controls
(22.5351,25.1592) and (25.1679,25.1024) .. (25.4066,25.1024) .. controls
(25.6335,25.1024) and (28.3387,25.1723) .. (28.7417,25.1833) --
(28.7632,25.0915) -- (28.7319,25.0107) -- (28.4209,24.8468) --
(28.4313,24.6742) -- (28.8044,24.8817) -- (28.8357,24.8949) --
(28.8455,24.9277) -- (28.8885,25.0675) -- (28.8885,25.1134) --
(28.8455,25.2751) -- (28.8357,25.3341) -- (28.7848,25.3341) .. controls
(28.7730,25.3341) and (25.6453,25.2532) .. (25.4067,25.2532) .. controls
(25.1465,25.2532) and (22.2143,25.3100) .. (22.2046,25.3100) --
(22.1733,25.3100) -- (22.1537,25.2751) -- (22.0911,25.2073) --
(22.0793,25.1833) -- (22.0793,25.1483) -- (22.1008,24.9058) --
(22.1008,24.8708) -- (22.1321,24.8468) -- (22.4143,24.6500) -- cycle;
%
\path[fill=YNUlogoGreen,nonzero~rule] (22.5116,25.2226) --
(22.6074,25.4586) -- (25.5298,25.4017) -- (25.5318,25.4017) --
(28.4033,25.4935) -- (28.5090,25.2466) -- (28.6244,25.3056) --
(28.4992,25.5962) -- (28.4816,25.6377) -- (28.4405,25.6355) --
(25.5298,25.5437) -- (22.5683,25.6005) -- (22.5273,25.6027) --
(22.5096,25.5612) -- (22.3942,25.2816) -- cycle(22.5116,25.2226);
%
\path[fill=YNUlogoGreen,nonzero~rule] (21.8309,28.7250) --
(22.4529,27.6260) -- (22.4744,27.5910) -- (22.5155,27.5910) --
(25.4477,27.5561) -- (28.4620,27.6260) -- (28.4933,27.6260) --
(28.5148,27.6609) -- (29.1681,28.7490) -- (29.0117,28.7359) --
(28.4209,27.7636) -- (25.4477,27.6959) -- (22.5468,27.7417) --
(21.9874,28.7249) -- cycle(21.8309,28.7250);
%
\path[fill=YNUlogoGreen,nonzero~rule] (19.6342,37.9606) --
(19.5109,37.9496) -- (19.4992,36.9315) .. controls (19.4992,36.9074) and
(20.9193,35.2185) .. (21.2616,34.6636) .. controls (21.4592,34.3380) and
(22.7423,31.8625) .. (22.7541,31.2704) .. controls (22.7541,31.1087) and
(22.6700,31.1437) .. (22.6387,31.1087) .. controls (22.6171,31.0628) and
(22.6289,30.9929) .. (22.6289,30.9820) .. controls (22.6289,30.9579) and
(23.0846,30.8771) .. (23.2098,30.6696) .. controls (23.3448,30.4620) and
(23.5233,29.5042) .. (23.5233,29.5042) .. controls (23.5492,29.8137) and
(23.4485,30.3921) .. (23.2607,30.7854) -- (22.8460,31.3294) .. controls
(22.8362,31.3294) and (22.1633,33.5624) .. (22.0186,33.7830) .. controls
(21.9247,34.0037) and (20.3911,36.7567) .. (19.6967,37.6001) .. controls
(19.5617,37.7639) and (19.6341,37.9606) .. (19.6341,37.9606);
%
\path[fill=YNUlogoGreen,nonzero~rule] (31.1672,37.9606) --
(31.2924,37.9496) -- (31.2924,36.9315) .. controls (31.2924,36.9074) and
(29.8723,35.2185) .. (29.5398,34.6636) .. controls (29.3324,34.3380) and
(28.0590,31.8625) .. (28.0473,31.2704) .. controls (28.0375,31.1087) and
(28.1099,31.2136) .. (28.1392,31.1786) .. controls (28.1725,31.1328) and
(28.1725,30.9929) .. (28.1725,30.9820) .. controls (28.1725,30.9579) and
(27.7891,30.8662) .. (27.6541,30.6564) .. controls (27.5309,30.4379) and
(27.3842,29.4657) .. (27.3842,29.4657) .. controls (27.3744,29.7672) and
(27.3646,30.3811) .. (27.5504,30.7722) -- (27.9436,31.3294) .. controls
(27.9554,31.3294) and (28.6282,33.5624) .. (28.7730,33.7830) .. controls
(28.8669,34.0037) and (30.4689,36.8747) .. (31.1633,37.7181) .. controls
(31.2983,37.8797) and (31.1673,37.9606) .. (31.1673,37.9606);
%
\path[fill=YNUlogoGreen,nonzero~rule] (23.7067,27.9144) --
(23.5972,28.6785) -- (23.6838,28.6844) -- (23.7791,27.9035) -- cycle;
%
\path[fill=YNUlogoGreen,nonzero~rule] (27.1475,27.9275) --
(27.2350,28.6873) -- (27.1475,28.6682) -- (27.0751,27.9144) -- cycle;
%
\path[fill=YNUlogoGreen,nonzero~rule] (19.5606,38.0582) --
(19.0747,37.8098) -- (19.0239,37.7749) -- (19.0141,37.7180) --
(18.9711,36.9184) -- (18.9711,36.8725) -- (19.0024,36.8375) .. controls
(19.0142,36.8375) and (20.7629,34.9869) .. (21.1052,34.4888) .. controls
(21.2499,34.2812) and (21.4592,33.9447) .. (21.6548,33.5864) .. controls
(21.9032,33.1232) and (22.1536,32.6491) .. (22.2358,32.4524) .. controls