-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaaltologo.sty
4635 lines (4580 loc) · 427 KB
/
aaltologo.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
%% aaltologo.sty version 1.1.2
%% Package for drawing Aalto University logos
%% ---
%% Copyright:
%% Aalto University Marketing and Communications
%% visu(a)aaltouniversity.fi
%%
%% Created and maintained by:
%% Tapani Pihlajam{\"a}ki and Jussi Pekonen
%% Department of Signal Processing and Acoustics
%% Aalto University School of Science and Technology
%%
%% URL: https://wiki.aalto.fi/display/aaltolatex/
%% ---
%% LICENSE
%% The aaltologo package has been published under Creative Commons Attribution No-Derivative license
%% (http://creativecommons.org/licenses/by-nd/1.0/). This means that you can use the package freely in your own
%% documents, packages and classes but it also means that you cannot base your own Aalto University logo package upon
%% this package. Furthermore, if you want to write your own Aalto University logo package, you need to contact the Aalto
%% University Marketing and Communications before publishing your package.
%% ---
%% Updated 2011/02/19
%% See the accompanying documentation for version history
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{aaltologo}[2011/02/19 v1.1.2 Package for drawing Aalto University logos]
%%% These packages are required
% tikz for the logo drawing
\RequirePackage{tikz}
% color for colors
\RequirePackage{color}
% ifthen for conditional formatting
\RequirePackage{ifthen}
% lcg for randomization
\RequirePackage{lcg}
%%% Font declarations
% Set the font encoding
\RequirePackage[T1]{fontenc}
% Set the serif font
\RequirePackage{newcent}
% Set the sans serif font
\RequirePackage[scaled]{helvet}
% Sets the typewriter font
\renewcommand*{\ttdefault}{txtt}
%%% Variables
% School selection
\gdef\AaltoLogoSchool{}
% Institute selection
\gdef\AaltoLogoInstitute{}
%%% Option declarations
%% Declare the options for the school name parameter
% Teknillinen korkeakoulu / Teknillinenkorkeakoulu - DEPRECATED!
\DeclareOption{Teknillinenkorkeakoulu}{%
\PackageWarningNoLine{aaltologo}{School name option 'Teknillinen korkeakoulu' DEPRECATED}
}
% Tekniska hogskolan / Tekniskahogskolan - DEPRECATED!
\DeclareOption{Tekniskahogskolan}{%
\PackageWarningNoLine{aaltologo}{School name option 'Tekniska hogskolan' DEPRECATED}
}
% School of Science and Techonology / SchoolofScienceandTechnology - DEPRECATED!
\DeclareOption{SchoolofScienceandTechnology}{%
\PackageWarningNoLine{aaltologo}{School name option 'School of Science and Technology' DEPRECATED}
}
% Insinooritieteiden korkeakoulu / Insinooritieteidenkorkeakoulu
\DeclareOption{Insinooritieteidenkorkeakoulu}{%
\gdef\AaltoLogoSchool{ENG}%
\gdef\AaltoLogoInstitute{}%
}
% Hogskolan for ingenjorsvetenskaper / Hogskolanforingenjorsvetenskaper
\DeclareOption{Hogskolanforingenjorsvetenskaper}{%
\gdef\AaltoLogoSchool{ENG}%
\gdef\AaltoLogoInstitute{}%
}
% School of Engineering / SchoolofEngineering
\DeclareOption{SchoolofEngineering}{%
\gdef\AaltoLogoSchool{ENG}%
\gdef\AaltoLogoInstitute{}%
}
% ENG
\DeclareOption{ENG}{%
\gdef\AaltoLogoSchool{ENG}%
\gdef\AaltoLogoInstitute{}%
}
% Kemian tekniikan korkeakoulu / Kemiantekniikankorkeakoulu
\DeclareOption{Kemiantekniikankorkeakoulu}{%
\gdef\AaltoLogoSchool{CHEM}%
\gdef\AaltoLogoInstitute{}%
}
% Hogskolan for kemiteknik / Hogskolanforkemiteknik
\DeclareOption{Hogskolanforkemiteknik}{%
\gdef\AaltoLogoSchool{CHEM}%
\gdef\AaltoLogoInstitute{}%
}
% School of Chemical Technology / SchoolofChemicalTechnology
\DeclareOption{SchoolofChemicalTechnology}{%
\gdef\AaltoLogoSchool{CHEM}%
\gdef\AaltoLogoInstitute{}%
}
% CHEM
\DeclareOption{CHEM}{%
\gdef\AaltoLogoSchool{CHEM}%
\gdef\AaltoLogoInstitute{}%
}
% Perustieteiden korkeakoulu / Perustieteidenkorkeakoulu
\DeclareOption{Perustieteidenkorkeakoulu}{%
\gdef\AaltoLogoSchool{SCI}%
\gdef\AaltoLogoInstitute{}%
}
% Hogskolan for teknikvetenskaper / Hogskolanforteknikvetenskaper
\DeclareOption{Hogskolanforteknikvetenskaper}{%
\gdef\AaltoLogoSchool{SCI}%
\gdef\AaltoLogoInstitute{}%
}
% School of Science / SchoolofScience
\DeclareOption{SchoolofScience}{%
\gdef\AaltoLogoSchool{SCI}%
\gdef\AaltoLogoInstitute{}%
}
% SCI
\DeclareOption{SCI}{%
\gdef\AaltoLogoSchool{SCI}%
\gdef\AaltoLogoInstitute{}%
}
% Sahkotekniikan korkeakoulu / Sahkotekniikankorkeakoulu
\DeclareOption{Sahkotekniikankorkeakoulu}{%
\gdef\AaltoLogoSchool{ELEC}%
\gdef\AaltoLogoInstitute{}%
}
% Hogskolan for elektroteknik / Hogskolanforelektroteknik
\DeclareOption{Hogskolanforelektroteknik}{%
\gdef\AaltoLogoSchool{ELEC}%
\gdef\AaltoLogoInstitute{}%
}
% School of Electrical Engineering / SchoolofElectricalEngineering
\DeclareOption{SchoolofElectricalEngineering}{%
\gdef\AaltoLogoSchool{ELEC}%
\gdef\AaltoLogoInstitute{}%
}
% ELEC
\DeclareOption{ELEC}{%
\gdef\AaltoLogoSchool{ELEC}%
\gdef\AaltoLogoInstitute{}%
}
% Kauppakorkeakoulu
\DeclareOption{Kauppakorkeakoulu}{%
\gdef\AaltoLogoSchool{ECON}%
\gdef\AaltoLogoInstitute{}%
}
% Handelshogskolan
\DeclareOption{Handelshogskolan}{%
\gdef\AaltoLogoSchool{ECON}%
\gdef\AaltoLogoInstitute{}%
}
% School of Economics / SchoolofEconomics
\DeclareOption{SchoolofEconomics}{%
\gdef\AaltoLogoSchool{ECON}%
\gdef\AaltoLogoInstitute{}%
}
% ECON
\DeclareOption{ECON}{%
\gdef\AaltoLogoSchool{ECON}%
\gdef\AaltoLogoInstitute{}%
}
% Taideteollinen korkeakoulu / Taideteollinenkorkeakoulu
\DeclareOption{Taideteollinenkorkeakoulu}{%
\gdef\AaltoLogoSchool{TAIK}%
\gdef\AaltoLogoInstitute{}%
}
% Konstindustriella hogskolan / Konstindustriellahogskolan
\DeclareOption{Konstindustriellahogskolan}{%
\gdef\AaltoLogoSchool{TAIK}%
\gdef\AaltoLogoInstitute{}%
}
% School of Art and Design / SchoolofArtandDesign
\DeclareOption{SchoolofArtandDesign}{%
\gdef\AaltoLogoSchool{TAIK}%
\gdef\AaltoLogoInstitute{}%
}
% TAIK
\DeclareOption{TAIK}{%
\gdef\AaltoLogoSchool{TAIK}%
\gdef\AaltoLogoInstitute{}%
}
%% Declare options for the institute name parameters
% Design Factory / DesignFactory
\DeclareOption{DesignFactory}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{ADF}%
}
% ADF
\DeclareOption{ADF}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{ADF}%
}
% Media Factory / MediaFactory
\DeclareOption{MediaFactory}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{AMF}%
}
% AMF
\DeclareOption{AMF}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{AMF}%
}
% Service Factory / ServiceFactory
\DeclareOption{ServiceFactory}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{ASF}%
}
% ASF
\DeclareOption{ASF}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{ASF}%
}
% Pienyrityskeskus
\DeclareOption{Pienyrityskeskus}{%
\gdef\AaltoLogoSchool{ECON}%
\gdef\AaltoLogoInstitute{SBC}%
}
% PYK
\DeclareOption{PYK}{%
\gdef\AaltoLogoSchool{ECON}%
\gdef\AaltoLogoInstitute{SBC}%
}
% Small Business Center / SmallBusinessCenter
\DeclareOption{SmallBusinessCenter}{
\gdef\AaltoLogoSchool{ECON}%
\gdef\AaltoLogoInstitute{SBC}%
}
% SBC
\DeclareOption{SBC}{
\gdef\AaltoLogoSchool{ECON}%
\gdef\AaltoLogoInstitute{SBC}%
}
% Kirjasto
\DeclareOption{Kirjasto}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIB}%
}
% Biblioteket
\DeclareOption{Biblioteket}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIB}%
}
% Library
\DeclareOption{Library}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIB}%
}
% LIB
\DeclareOption{LIB}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIB}%
}
% Arabia
\DeclareOption{Arabia}{%
\ifthenelse{\equal{\AaltoLogoInstitute}{LIB}}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIBA}
}{%
\PackageWarningNoLine{aaltologo}{Ignoring library location, check option ordering}
}%
}
% LIBA
\DeclareOption{LIBA}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIBA}%
}
% Otaniemi
\DeclareOption{Otaniemi}{%
\ifthenelse{\equal{\AaltoLogoInstitute}{LIB}}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIBO}
}{%
\PackageWarningNoLine{aaltologo}{Ignoring library location, check option ordering}
}%
}
% Otnas
\DeclareOption{Otnas}{%
\ifthenelse{\equal{\AaltoLogoInstitute}{LIB}}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIBO}
}{%
\PackageWarningNoLine{aaltologo}{Ignoring library location, check option ordering}
}%
}
% LIBO
\DeclareOption{LIBO}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIBO}%
}
% Toolo
\DeclareOption{Toolo}{%
\ifthenelse{\equal{\AaltoLogoInstitute}{LIB}}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIBT}
}{%
\PackageWarningNoLine{aaltologo}{Ignoring library location, check option ordering}
}%
}
% Tolo
\DeclareOption{Tolo}{%
\ifthenelse{\equal{\AaltoLogoInstitute}{LIB}}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIBT}
}{%
\PackageWarningNoLine{aaltologo}{Ignoring library location, check option ordering}
}%
}
% LIBT
\DeclareOption{LIBT}{%
\gdef\AaltoLogoSchool{}%
\gdef\AaltoLogoInstitute{LIBT}%
}
%%% Declare options for the color media
% RGB
\DeclareOption{RGB}{%
% Basic colors
\definecolor{aaltoBlack}{RGB}{0,0,0}%
\definecolor{aaltoGray}{RGB}{146,139,129}%
\definecolor{aaltoRed}{RGB}{237,41,57}%
\definecolor{aaltoBlue}{RGB}{0,101,189}%
\definecolor{aaltoYellow}{RGB}{254,203,0}%
% Additional colors
\definecolor{aaltoPurple}{RGB}{102,57,183}%
\definecolor{aaltoTurquoise}{RGB}{0,168,180}%
\definecolor{aaltoGreen}{RGB}{0,155,58}%
\definecolor{aaltoLightGreen}{RGB}{105,190,40}%
\definecolor{aaltoOrange}{RGB}{255,121,0}%
\definecolor{aaltoFuchsia}{RGB}{177,5,157}%
}
% Coated
\DeclareOption{Coated}{%
% Basic colors
\definecolor{aaltoBlack}{cmyk}{0,0,0,1}%
\definecolor{aaltoGray}{cmyk}{0.18,0.22,0.26,0.49}%
\definecolor{aaltoRed}{cmyk}{0,0.9,0.65,0}%
\definecolor{aaltoBlue}{cmyk}{1.0,0.5,0,0}%
\definecolor{aaltoYellow}{cmyk}{0,0.12,1.0,0}%
% Additional colors
\definecolor{aaltoPurple}{cmyk}{0.80,0.94,0,0}%
\definecolor{aaltoTurquoise}{cmyk}{1,0,0.3,0}%
\definecolor{aaltoGreen}{cmyk}{0.94,0,1,0}%
\definecolor{aaltoLightGreen}{cmyk}{0.7,0,1,0}%
\definecolor{aaltoOrange}{cmyk}{0,0.64,1,0}%
\definecolor{aaltoFuchsia}{cmyk}{0.37,0.95,0,0}%
}
% Uncoated
\DeclareOption{Uncoated}{%
% Basic colors
\definecolor{aaltoBlack}{cmyk}{0,0,0,1}%
\definecolor{aaltoGray}{cmyk}{0.11,0.11,0.13,0.36}%
\definecolor{aaltoRed}{cmyk}{0,0.8,0.65,0}%
\definecolor{aaltoBlue}{cmyk}{1.0,0.3,0,0}%
\definecolor{aaltoYellow}{cmyk}{0,0.06,1.0,0}%
% Additional colors
\definecolor{aaltoPurple}{cmyk}{0.53,0.65,0,0}%
\definecolor{aaltoTurquoise}{cmyk}{0.95,0,0.25,0}%
\definecolor{aaltoGreen}{cmyk}{0.82,0,0.92,0}%
\definecolor{aaltoLightGreen}{cmyk}{0.5,0,0.8,0}%
\definecolor{aaltoOrange}{cmyk}{0,0.43,0.82,0}%
\definecolor{aaltoFuchsia}{cmyk}{0.22,0.72,0,0}%
}
%% Default options
\ExecuteOptions{RGB}
%% Process options
\ProcessOptions*\relax
%%% Color definitions
% The gray scale gray
\definecolor{aaltoGrayScale}{gray}{0.45}%
% Basic colors in numerical system
\definecolor{aaltoColor0}{named}{aaltoGray}%
\definecolor{aaltoColor1}{named}{aaltoRed}%
\definecolor{aaltoColor2}{named}{aaltoBlue}%
\definecolor{aaltoColor3}{named}{aaltoYellow}%
% Applicable colors to use with the red logo, in clockwise
\definecolor{aaltoColor11}{named}{aaltoPurple}%
\definecolor{aaltoColor12}{named}{aaltoBlue}%
\definecolor{aaltoColor13}{named}{aaltoTurquoise}%
\definecolor{aaltoColor14}{named}{aaltoGreen}%
\definecolor{aaltoColor15}{named}{aaltoLightGreen}%
\definecolor{aaltoColor16}{named}{aaltoYellow}%
% Applicable colors to use with the blue logo, in clockwise
\definecolor{aaltoColor21}{named}{aaltoGreen}%
\definecolor{aaltoColor22}{named}{aaltoLightGreen}%
\definecolor{aaltoColor23}{named}{aaltoYellow}%
\definecolor{aaltoColor24}{named}{aaltoOrange}%
\definecolor{aaltoColor25}{named}{aaltoRed}%
\definecolor{aaltoColor26}{named}{aaltoFuchsia}%
% Applicable colors to use with the yellow logo, in clockwise
\definecolor{aaltoColor31}{named}{aaltoRed}%
\definecolor{aaltoColor32}{named}{aaltoFuchsia}%
\definecolor{aaltoColor33}{named}{aaltoPurple}%
\definecolor{aaltoColor34}{named}{aaltoBlue}%
\definecolor{aaltoColor35}{named}{aaltoTurquoise}%
\definecolor{aaltoColor36}{named}{aaltoGreen}%
%%% Color media change command.
%
% \AaltoLogoChangeColorMedia{media}
%
% Parameter media sets the new color media. Valid parameters are the color media options the package accepts.
% If the parameter is invalid, the color media is not changed
\DeclareRobustCommand{\AaltoLogoChangeColorMedia}[1][RGB]{
% RGB
\ifthenelse{\equal{#1}{RGB}}{%
% Basic colors
\definecolor{aaltoBlack}{RGB}{0,0,0}%
\definecolor{aaltoGray}{RGB}{146,139,129}%
\definecolor{aaltoRed}{RGB}{237,41,57}%
\definecolor{aaltoBlue}{RGB}{0,101,189}%
\definecolor{aaltoYellow}{RGB}{254,203,0}%
% Additional colors
\definecolor{aaltoPurple}{RGB}{102,57,183}%
\definecolor{aaltoTurquoise}{RGB}{0,168,180}%
\definecolor{aaltoGreen}{RGB}{0,155,58}%
\definecolor{aaltoLightGreen}{RGB}{105,190,40}%
\definecolor{aaltoOrange}{RGB}{255,121,0}%
\definecolor{aaltoFuchsia}{RGB}{177,5,157}%
}{}%
% Coated
\ifthenelse{\equal{#1}{Coated}}{%
% Basic colors
\definecolor{aaltoBlack}{cmyk}{0,0,0,1}%
\definecolor{aaltoGray}{cmyk}{0.18,0.22,0.26,0.49}%
\definecolor{aaltoRed}{cmyk}{0,0.9,0.65,0}%
\definecolor{aaltoBlue}{cmyk}{1.0,0.5,0,0}%
\definecolor{aaltoYellow}{cmyk}{0,0.12,1.0,0}%
% Additional colors
\definecolor{aaltoPurple}{cmyk}{0.80,0.94,0,0}%
\definecolor{aaltoTurquoise}{cmyk}{1,0,0.3,0}%
\definecolor{aaltoGreen}{cmyk}{0.94,0,1,0}%
\definecolor{aaltoLightGreen}{cmyk}{0.7,0,1,0}%
\definecolor{aaltoOrange}{cmyk}{0,0.64,1,0}%
\definecolor{aaltoFuchsia}{cmyk}{0.37,0.95,0,0}%
}{}%
% Uncoated
\ifthenelse{\equal{#1}{Uncoated}}{%
% Basic colors
\definecolor{aaltoBlack}{cmyk}{0,0,0,1}%
\definecolor{aaltoGray}{cmyk}{0.11,0.11,0.13,0.36}%
\definecolor{aaltoRed}{cmyk}{0,0.8,0.65,0}%
\definecolor{aaltoBlue}{cmyk}{1.0,0.3,0,0}%
\definecolor{aaltoYellow}{cmyk}{0,0.06,1.0,0}%
% Additional colors
\definecolor{aaltoPurple}{cmyk}{0.53,0.65,0,0}%
\definecolor{aaltoTurquoise}{cmyk}{0.95,0,0.25,0}%
\definecolor{aaltoGreen}{cmyk}{0.82,0,0.92,0}%
\definecolor{aaltoLightGreen}{cmyk}{0.5,0,0.8,0}%
\definecolor{aaltoOrange}{cmyk}{0,0.43,0.82,0}%
\definecolor{aaltoFuchsia}{cmyk}{0.22,0.72,0,0}%
}{}%
% Basic colors in numerical system
\definecolor{aaltoColor0}{named}{aaltoGray}%
\definecolor{aaltoColor1}{named}{aaltoRed}%
\definecolor{aaltoColor2}{named}{aaltoBlue}%
\definecolor{aaltoColor3}{named}{aaltoYellow}%
% Applicable colors to use with the red logo, in clockwise
\definecolor{aaltoColor11}{named}{aaltoPurple}%
\definecolor{aaltoColor12}{named}{aaltoBlue}%
\definecolor{aaltoColor13}{named}{aaltoTurquoise}%
\definecolor{aaltoColor14}{named}{aaltoGreen}%
\definecolor{aaltoColor15}{named}{aaltoLightGreen}%
\definecolor{aaltoColor16}{named}{aaltoYellow}%
% Applicable colors to use with the blue logo, in clockwise
\definecolor{aaltoColor21}{named}{aaltoGreen}%
\definecolor{aaltoColor22}{named}{aaltoLightGreen}%
\definecolor{aaltoColor23}{named}{aaltoYellow}%
\definecolor{aaltoColor24}{named}{aaltoOrange}%
\definecolor{aaltoColor25}{named}{aaltoRed}%
\definecolor{aaltoColor26}{named}{aaltoFuchsia}%
% Applicable colors to use with the yellow logo, in clockwise
\definecolor{aaltoColor31}{named}{aaltoRed}%
\definecolor{aaltoColor32}{named}{aaltoFuchsia}%
\definecolor{aaltoColor33}{named}{aaltoPurple}%
\definecolor{aaltoColor34}{named}{aaltoBlue}%
\definecolor{aaltoColor35}{named}{aaltoTurquoise}%
\definecolor{aaltoColor36}{named}{aaltoGreen}%
}
%%% Randomization parameters
% Initialize the random variable
\reinitrand[last=3,seed=0]
% Counter to ensure that the color is changed every time
\newcounter{aaltologo_color}
\setcounter{aaltologo_color}{0}
% Variable to hold the color name
\gdef\AaltoLogoColor{aaltoBlack}
% Counter to ensure that the mark is changed every time
\newcounter{aaltologo_mark}
\setcounter{aaltologo_mark}{0}
% Variable to hold the mark
\gdef\AaltoLogoMark{?}
% A counter that holds the information how many additional lines there are in the logo, useful in some applications
\newcounter{aaltologo_linecount}
\setcounter{aaltologo_linecount}{0}
%%% Text line drawing declarations
%% University name
% Finnish
\newcommand{\AUFI}[1]{%
\fill[color={#1}] (1.8700,.6400)--(2.0485,-.0232)--
(2.8995,-.0232)--(1.8414,3.2800)--(.9044,3.2800)--
(-.2618,-.0232)--(.5539,-.0232)--(.7633,.6400)--(1.8700,.6400)--cycle
(1.7070,1.2486)--(.9485,1.2486)--(1.3542,2.5425)--(1.7070,1.2486)--cycle(3.8718,1.6152)..controls(3.9026,1.8094)and
(4.0416,1.9032)..(4.2973,1.9032)..controls(4.5332,1.9032)and(4.6743,1.8182)..(4.6743,1.6806)..controls(4.6743,1.5847)and
(4.6192,1.5410)..(4.4582,1.5170)--(4.0724,1.4515)..controls(3.3955,1.3424)and(3.1112,1.1090)..(3.1112,.6639)..controls
(3.1112,.2146)and(3.4661,-.0865)..(3.9975,-.0865)..controls(4.2885,-.0865)and(4.4538,-.0276)..(4.6942,.1644)..controls
(4.7184,.0771)and(4.7184,.0619)..(4.7493,-.0232)--(5.4747,-.0232)..controls(5.3952,.0968)and
(5.3842,.1295)..(5.3842,.3891)--(5.3842,1.4865)..controls(5.3842,1.8421)and(5.3203,2.0320)..(5.1440,2.1847)..controls
(4.9543,2.3549)and(4.6743,2.4378)..(4.3083,2.4378)..controls(3.6270,2.4378)and(3.2810,2.1715)..(3.2369,1.6152)--
(3.8718,1.6152)--cycle(4.6942,.7468)..controls(4.5773,.5462)and(4.4075,.4481)..(4.1716,.4481)..controls(3.9512,.4481)and
(3.8123,.5419)..(3.8123,.6988)..controls(3.8123,.8428)and(3.9225,.9257)..(4.1782,.9847)--(4.4340,1.0392)..
controls(4.5530,1.0654)and(4.6192,1.0850)..(4.6942,1.1156)--(4.6942,.7468)--cycle(6.7026,3.2800)--
(5.9905,3.2800)--(5.9905,-.0232)--(6.7026,-.0232)--(6.7026,3.2800)--cycle(8.6296,2.3396)--
(8.1952,2.3396)--(8.1952,3.0967)--(7.4831,3.0967)--(7.4831,2.3396)--(7.1436,2.3396)--(7.1436,1.8421)
--(7.4831,1.8421)--(7.4831,.7533)..controls(7.4831,.3826)and(7.5140,.2539)..(7.6243,.1361)..controls
(7.7278,.0226)and(7.8844,-.0232)..(8.1952,-.0232)--(8.6296,-.0232)--(8.6296,.5070)--(8.3739,.5070)..controls
(8.2085,.5070)and(8.1952,.5376)..(8.1952,.9127)--(8.1952,1.8421)--(8.6296,1.8421)--
(8.6296,2.3396)--cycle(10.2280,2.4334)..controls(9.4762,2.4334)and(8.9448,1.9076)..(8.9448,1.1745)..controls(8.9448,.4328)and
(9.4762,-.0865)..(10.2280,-.0865)..controls(10.9732,-.0865)and(11.5156,.4328)..(11.5156,1.1548)..controls(11.5156,1.9120)and
(10.9952,2.4334)..(10.2280,2.4334)(10.2280,1.8727)..controls(10.5940,1.8727)and(10.7991,1.6196)..(10.7991,1.1592)..controls
(10.7991,.7272)and(10.5896,.4721)..(10.2280,.4721)..controls(9.8664,.4721)and(9.6614,.7272)..(9.6614,1.1745)..controls
(9.6614,1.6152)and(9.8664,1.8727)..(10.2280,1.8727)(13.6409,1.5170)--(12.0050,1.5170)--(12.0050,.8821)--
(13.6409,.8821)--(13.6409,1.5170)--cycle(15.7001,2.3679)--(15.3826,1.2879)..controls(15.3275,1.0741)and
(15.2878,.9127)..(15.2592,.7533)--(15.2283,.8472)..controls(15.1732,1.0457)and(15.1732,1.0501)..(15.1026,1.2727)--
(14.7477,2.3679)--(13.9871,2.3679)--(14.7829,.3586)..controls(14.8668,.1514)and(14.8734,.1361)..
(14.8734,.0509)..controls(14.8734,-.1563)and(14.7565,-.2501)..(14.5073,-.2501)--(14.2957,-.2501)--(14.2957,-.7803)--
(14.7124,-.7803)..controls(15.2526,-.7803)and(15.3694,-.6821)..(15.5943,-.0429)--(16.4343,2.3679)--(15.7001,2.3679)
--cycle(17.5477,3.2800)--(16.8356,3.2800)--(16.8356,-.0232)--(17.5477,-.0232)--(17.5477,3.2800)--cycle
(18.9345,2.3679)--(18.2223,2.3679)--(18.2223,-.0232)--(18.9345,-.0232)--(18.9345,2.3679)--cycle
(18.9345,3.2800)--(18.2223,3.2800)--(18.2223,2.6996)--(18.9345,2.6996)--(18.9345,3.2800)--cycle(20.6983,2.4334)..controls
(19.9464,2.4334)and(19.4151,1.9076)..(19.4151,1.1745)..controls(19.4151,.4328)and(19.9464,-.0865)..(20.6983,-.0865)..controls
(21.4434,-.0865)and(21.9858,.4328)..(21.9858,1.1548)..controls(21.9858,1.9120)and(21.4632,2.4334)..(20.6983,2.4334)
(20.6983,1.8727)..controls(21.0620,1.8727)and(21.2692,1.6196)..(21.2692,1.1592)..controls(21.2692,.7272)and
(21.0576,.4721)..(20.6983,.4721)..controls(20.3367,.4721)and(20.1316,.7272)..(20.1316,1.1745)..controls(20.1316,1.6152)and
(20.3367,1.8727)..(20.6983,1.8727)(22.4664,2.3679)--(22.4664,-.7803)--(23.1763,-.7803)--(23.1763,.1710)..controls
(23.3770,-.0123)and(23.5621,-.0865)..(23.8267,-.0865)..controls(24.4639,-.0865)and(24.8894,.4176)..(24.8894,1.1788)..controls
(24.8894,1.9229)and(24.4595,2.4334)..(23.8223,2.4334)..controls(23.5225,2.4334)and(23.3461,2.3439)..(23.1411,2.0865)--
(23.1609,2.3679)--(22.4664,2.3679)--cycle(23.6679,1.8639)..controls(23.9943,1.8639)and(24.1883,1.5956)..
(24.1883,1.1636)..controls(24.1883,.7468)and(23.9833,.4830)..(23.6724,.4830)..controls(23.3527,.4830)and(23.1521,.7468)..
(23.1521,1.1745)..controls(23.1521,1.5956)and(23.3527,1.8639)..(23.6679,1.8639)(26.1417,2.3679)--(25.4296,2.3679)--
(25.4296,-.0232)--(26.1417,-.0232)--(26.1417,2.3679)--cycle(26.1417,3.2800)--(25.4296,3.2800)--
(25.4296,2.6996)--(26.1417,2.6996)--(26.1417,3.2800)--cycle(28.8270,1.6501)..controls(28.7653,2.1563)and(28.3860,2.4334)..
(27.7644,2.4334)..controls(27.1228,2.4334)and(26.7325,2.1411)..(26.7325,1.6588)..controls(26.7325,1.2792)and(26.9376,1.0850)..
(27.4689,.9715)--(27.9099,.8712)..controls(28.0994,.8276)and(28.1810,.7621)..(28.1810,.6530)..
controls(28.1810,.5179)and(28.0290,.4241)..(27.8107,.4241)..controls(27.5240,.4241)and
(27.3741,.5332)..(27.3345,.7533)--(26.6686,.7533)..controls(26.7083,.2255)and(27.1228,-.0865)..(27.7952,-.0865)..controls
(28.4655,-.0865)and(28.8821,.2299)..(28.8821,.7338)..controls(28.8821,.9257)and(28.8160,1.1047)..(28.7014,1.2138)..controls
(28.5955,1.3229)and(28.4456,1.3883)..(28.1502,1.4472)--(27.7048,1.5410)..controls(27.4799,1.5912)and(27.4094,1.6348)..
(27.4094,1.7243)..controls(27.4094,1.8421)and(27.5439,1.9229)..(27.7489,1.9229)..controls(27.9849,1.9229)and(28.1303,1.8291)..
(28.1612,1.6501)--(28.8270,1.6501)--cycle(30.6900,2.3396)--(30.2535,2.3396)--(30.2535,3.0967)--
(29.5414,3.0967)--(29.5414,2.3396)--(29.2018,2.3396)--(29.2018,1.8421)--(29.5414,1.8421)--
(29.5414,.7533)..controls(29.5414,.3826)and(29.5723,.2539)..(29.6825,.1361)..controls(29.7883,.0226)and(29.9426,-.0232)..
(30.2535,-.0232)--(30.6900,-.0232)--(30.6900,.5070)--(30.4343,.5070)..controls(30.2689,.5070)and(30.2535,.5376)..
(30.2535,.9127)--(30.2535,1.8421)--(30.6900,1.8421)--(30.6900,2.3396)--cycle(32.3325,2.4334)..controls
(31.5807,2.4334)and(31.0494,1.9076)..(31.0494,1.1745)..controls(31.0494,.4328)and(31.5807,-.0865)..(32.3325,-.0865)..controls
(33.0778,-.0865)and(33.6201,.4328)..(33.6201,1.1548)..controls(33.6201,1.9120)and(33.0998,2.4334)..(32.3325,2.4334)
(32.3325,1.8727)..controls(32.6985,1.8727)and(32.9036,1.6196)..(32.9036,1.1592)..controls(32.9036,.7272)and(32.6919,.4721)..
(32.3325,.4721)..controls(31.9710,.4721)and(31.7660,.7272)..(31.7660,1.1745)..controls(31.7660,1.6152)and(31.9710,1.8727)..
(32.3325,1.8727);
}
% Swedish
\newcommand{\AUSE}[1]{%
\fill[color={#1}] (1.8700,0.6400)--(2.0485,-.0232)--
(2.8995,-.0232)--(1.8414,3.2800)--(.9044,3.2800)--
(-.2618,-.0232)--(.5539,-.0232)--(.7633,.6400)--(1.8700,0.6400)--cycle
(1.7070,1.2486)--(.9485,1.2486)--(1.3542,2.5425)--(1.7070,1.2486)--cycle(3.8718,1.6152)..controls(3.9026,1.8094)and
(4.0416,1.9032)..(4.2973,1.9032)..controls(4.5332,1.9032)and(4.6743,1.8182)..(4.6743,1.6806)..controls(4.6743,1.5847)and
(4.6192,1.5410)..(4.4582,1.5170)--(4.0724,1.4515)..controls(3.3955,1.3424)and(3.1112,1.1090)..(3.1112,.6639)..controls
(3.1112,.2146)and(3.4661,-.0865)..(3.9975,-.0865)..controls(4.2885,-.0865)and(4.4538,-.0276)..(4.6942,.1644)..controls
(4.7184,.0771)and(4.7184,.0619)..(4.7493,-.0232)--(5.4747,-.0232)..controls(5.3952,.0968)and
(5.3842,.1295)..(5.3842,.3891)--(5.3842,1.4865)..controls(5.3842,1.8421)and(5.3203,2.0320)..(5.1440,2.1847)..controls
(4.9543,2.3549)and(4.6743,2.4378)..(4.3083,2.4378)..controls(3.6270,2.4378)and(3.2810,2.1715)..(3.2369,1.6152)--
(3.8718,1.6152)--cycle(4.6942,.7468)..controls(4.5773,.5462)and(4.4075,.4481)..(4.1716,.4481)..controls(3.9512,.4481)and
(3.8123,.5419)..(3.8123,.6988)..controls(3.8123,.8428)and(3.9225,.9257)..(4.1782,.9847)--(4.4340,1.0392)..
controls(4.5530,1.0654)and(4.6192,1.0850)..(4.6942,1.1156)--(4.6942,.7468)--cycle(6.7026,3.2800)--
(5.9905,3.2800)--(5.9905,-.0232)--(6.7026,-.0232)--(6.7026,3.2800)--cycle(8.6296,2.3396)--
(8.1952,2.3396)--(8.1952,3.0967)--(7.4831,3.0967)--(7.4831,2.3396)--(7.1436,2.3396)--(7.1436,1.8421)
--(7.4831,1.8421)--(7.4831,.7533)..controls(7.4831,.3826)and(7.5140,.2539)..(7.6243,.1361)..controls
(7.7278,.0226)and(7.8844,-.0232)..(8.1952,-.0232)--(8.6296,-.0232)--(8.6296,.5070)--(8.3739,.5070)..controls
(8.2085,.5070)and(8.1952,.5376)..(8.1952,.9127)--(8.1952,1.8421)--(8.6296,1.8421)--
(8.6296,2.3396)--cycle(10.2280,2.4334)..controls(9.4762,2.4334)and(8.9448,1.9076)..(8.9448,1.1745)..controls(8.9448,.4328)and
(9.4762,-.0865)..(10.2280,-.0865)..controls(10.9732,-.0865)and(11.5156,.4328)..(11.5156,1.1548)..controls(11.5156,1.9120)and
(10.9952,2.4334)..(10.2280,2.4334)(10.2280,1.8727)..controls(10.5940,1.8727)and(10.7991,1.6196)..(10.7991,1.1592)..controls
(10.7991,.7272)and(10.5896,.4721)..(10.2280,.4721)..controls(9.8664,.4721)and(9.6614,.7272)..(9.6614,1.1745)..controls
(9.6614,1.6152)and(9.8664,1.8727)..(10.2280,1.8727)(13.6652,1.5170)--(12.0315,1.5170)--(12.0315,.8821)--
(13.6652,.8821)--(13.6652,1.5170)--cycle(16.5004,2.3679)--(15.7883,2.3679)--(15.7883,1.0195)..controls
(15.7883,.7818)and(15.7795,.7272)..(15.7133,.6442)..controls(15.6495,.5572)and(15.5392,.5070)..(15.4091,.5070)..controls
(15.2790,.5070)and(15.1622,.5572)..(15.0983,.6442)..controls(15.0321,.7272)and(15.0233,.7883)..(15.0233,1.0195)--
(15.0233,2.3679)--(14.3112,2.3679)--(14.3112,.8668)..controls(14.3112,.5267)and(14.3773,.3237)..
(14.5427,.1600)..controls(14.7014,.0008)and(14.9329,-.0865)..(15.1842,-.0865)..controls(15.4797,-.0865)and(15.6538,.0008)..
(15.8236,.2408)--(15.8236,-.0232)--(16.5004,-.0232)--(16.5004,2.3679)--cycle(17.1817,2.3679)--(17.1817,-.0232)--
(17.8938,-.0232)--(17.8938,1.3185)..controls(17.8938,1.5258)and(17.9181,1.6261)..(17.9975,1.7134)..controls(18.0724,1.7985)and
(18.1826,1.8421)..(18.3039,1.8421)..controls(18.4296,1.8421)and(18.5332,1.7941)..(18.5949,1.7047)..controls(18.6545,1.6152)and
(18.6699,1.5214)..(18.6699,1.2792)--(18.6699,-.0232)--(19.3798,-.0232)--(19.3798,1.5258)..controls
(19.3798,2.0909)and(19.0601,2.4378)..(18.5332,2.4378)..controls(18.2841,2.4378)and(18.1385,2.3745)..(17.8718,2.1367)--
(17.8718,2.3679)--(17.1817,2.3679)--cycle(20.7424,2.3679)--(20.0324,2.3679)--(20.0324,-.0232)--
(20.7424,-.0232)--(20.7424,2.3679)--cycle(20.7424,3.2800)--(20.0324,3.2800)--(20.0324,2.6996)--(20.7424,2.6996)--
(20.7424,3.2800)--cycle(22.7112,-.0232)--(23.5335,2.3679)--(22.7707,2.3679)--(22.5259,1.4515)..controls
(22.4907,1.3076)and(22.4311,1.0348)..(22.3760,.7621)..controls(22.2944,1.0501)and(22.2349,1.2836)..(22.1842,1.4515)--
(21.9152,2.3679)--(21.1678,2.3679)--(22.0343,-.0232)--(22.7112,-.0232)--cycle(26.1770,.9650)..controls
(26.1770,1.2836)and(26.1417,1.4974)..(26.0668,1.6938)..controls(25.8925,2.1715)and(25.5001,2.4334)..(24.9798,2.4334)..controls
(24.2545,2.4334)and(23.7429,1.9120)..(23.7429,1.1701)..controls(23.7429,.4176)and(24.2390,-.0865)..(24.9842,-.0865)..controls
(25.5618,-.0865)and(26.0116,.2103)..(26.1461,.6727)--(25.4251,.6727)..controls(25.3259,.5267)and(25.1959,.4634)..
(25.0041,.4634)..controls(24.6998,.4634)and(24.5036,.6400)..(24.4595,.9650)--(26.1770,.9650)--cycle
(24.4639,1.4624)..controls(24.5190,1.7396)and(24.6998,1.8988)..(24.9754,1.8988)..controls(25.2510,1.8988)and(25.4164,1.7396)..
(25.4450,1.4624)--(24.4639,1.4624)--cycle(26.6884,2.3679)--(26.6884,-.0232)--(27.3984,-.0232)--(27.3984,.6486)..controls
(27.3984,1.1156)and(27.4248,1.3381)..(27.4931,1.4974)..controls(27.5747,1.6741)and(27.7754,1.7832)..(28.0201,1.7832)..controls
(28.0708,1.7832)and(28.1149,1.7788)..(28.2009,1.7701)--(28.2009,2.4334)..controls(27.6850,2.4378)and
(27.5042,2.3287)..(27.3631,1.9425)--(27.3829,2.3679)--(26.6884,2.3679)--cycle(30.6283,1.6501)..controls(30.5687,2.1563)and
(30.1896,2.4334)..(29.5678,2.4334)..controls(28.9262,2.4334)and(28.5360,2.1411)..(28.5360,1.6588)..controls(28.5360,1.2792)and
(28.7411,1.0850)..(29.2724,.9715)--(29.7133,.8712)..controls(29.9030,.8276)and(29.9823,.7621)..
(29.9823,.6530)..controls(29.9823,.5179)and(29.8324,.4241)..(29.6119,.4241)..controls
(29.3275,.4241)and(29.1776,.5332)..(29.1357,.7533)--(28.4699,.7533)..controls(28.5117,.2255)and(28.9262,-.0865)..
(29.5986,-.0865)..controls(30.2689,-.0865)and(30.6834,.2299)..(30.6834,.7338)..controls(30.6834,.9257)and(30.6195,1.1047)..
(30.5048,1.2138)..controls(30.3990,1.3229)and(30.2490,1.3883)..(29.9537,1.4472)--(29.5083,1.5410)..controls(29.2812,1.5912)and
(29.2128,1.6348)..(29.2128,1.7243)..controls(29.2128,1.8421)and(29.3474,1.9229)..(29.5524,1.9229)..controls(29.7883,1.9229)and
(29.9338,1.8291)..(29.9624,1.6501)--(30.6283,1.6501)--cycle(31.8762,2.3679)--(31.1663,2.3679)--
(31.1663,-.0232)--(31.8762,-.0232)--(31.8762,2.3679)--cycle(31.8762,3.2800)--(31.1663,3.2800)--(31.1663,2.6996)--
(31.8762,2.6996)--(31.8762,3.2800)--cycle(33.8538,2.3396)--(33.4195,2.3396)--(33.4195,3.0967)--
(32.7073,3.0967)--(32.7073,2.3396)--(32.3678,2.3396)--(32.3678,1.8421)--(32.7073,1.8421)--(32.7073,.7533)..controls
(32.7073,.3826)and(32.7382,.2539)..(32.8484,.1361)..controls(32.9542,.0226)and(33.1086,-.0232)..(33.4195,-.0232)--
(33.8538,-.0232)--(33.8538,.5070)--(33.6002,.5070)..controls(33.4349,.5070)and(33.4195,.5376)..(33.4195,.9127)--
(33.4195,1.8421)--(33.8538,1.8421)--(33.8538,2.3396)--cycle(36.6537,.9650)..controls(36.6537,1.2836)and
(36.6185,1.4974)..(36.5435,1.6938)..controls(36.3694,2.1715)and(35.9791,2.4334)..(35.4566,2.4334)..controls(34.7313,2.4334)and
(34.2198,1.9120)..(34.2198,1.1701)..controls(34.2198,.4176)and(34.7159,-.0865)..(35.4632,-.0865)..controls(36.0387,-.0865)and
(36.4884,.2103)..(36.6251,.6727)--(35.9041,.6727)..controls(35.8028,.5267)and(35.6726,.4634)..(35.4831,.4634)..controls
(35.1766,.4634)and(34.9826,.6400)..(34.9363,.9650)--(36.6537,.9650)--cycle(34.9408,1.4624)..controls
(34.9959,1.7396)and(35.1766,1.8988)..(35.4522,1.8988)..controls(35.7278,1.8988)and(35.8931,1.7396)..(35.9240,1.4624)--
(34.9408,1.4624)--cycle(38.3933,2.3396)--(37.9568,2.3396)--(37.9568,3.0967)--(37.2447,3.0967)--(37.2447,2.3396)--
(36.9051,2.3396)--(36.9051,1.8421)--(37.2447,1.8421)--(37.2447,.7533)..controls(37.2447,.3826)and(37.2755,.2539)..
(37.3857,.1361)..controls(37.4915,.0226)and(37.6459,-.0232)..(37.9568,-.0232)--(38.3933,-.0232)--(38.3933,.5070)--
(38.1376,.5070)..controls(37.9722,.5070)and(37.9568,.5376)..(37.9568,.9127)--(37.9568,1.8421)--(38.3933,1.8421)--
(38.3933,2.3396)--cycle(41.1911,.9650)..controls(41.1911,1.2836)and(41.1581,1.4974)..(41.0831,1.6938)..controls(40.9067,2.1715)and
(40.5164,2.4334)..(39.9962,2.4334)..controls(39.2686,2.4334)and(38.7571,1.9120)..(38.7571,1.1701)..controls(38.7571,.4176)and
(39.2531,-.0865)..(40.0006,-.0865)..controls(40.5760,-.0865)and(41.0279,.2103)..(41.1624,.6727)--(40.4415,.6727)..controls
(40.3401,.5267)and(40.2100,.4634)..(40.0204,.4634)..controls(39.7140,.4634)and(39.5199,.6400)..(39.4736,.9650)--
(41.1911,.9650)--cycle(39.4802,1.4624)..controls(39.5353,1.7396)and(39.7140,1.8988)..(39.9896,1.8988)..controls(40.2651,1.8988)and
(40.4305,1.7396)..(40.4613,1.4624)--(39.4802,1.4624)--cycle(42.9306,2.3396)--(42.4941,2.3396)--(42.4941,3.0967)--
(41.7841,3.0967)--(41.7841,2.3396)--(41.4424,2.3396)--(41.4424,1.8421)--(41.7841,1.8421)--(41.7841,.7533)..controls
(41.7841,.3826)and(41.8128,.2539)..(41.9230,.1361)..controls(42.0289,.0226)and(42.1833,-.0232)..(42.4941,-.0232)--
(42.9306,-.0232)--(42.9306,.5070)--(42.6749,.5070)..controls(42.5095,.5070)and(42.4941,.5376)..(42.4941,.9127)--
(42.4941,1.8421)--(42.9306,1.8421)--(42.9306,2.3396)--cycle;
}
% English
\newcommand{\AUEN}[1]{%
\fill[color={#1}] (1.8700,.6400)--(2.0485,-.0232)--
(2.8995,-.0232)--(1.8414,3.2800)--(.9044,3.2800)--
(-.2618,-.0232)--(.5539,-.0232)--(.7633,.6400)--(1.8700,.6400)--cycle
(1.7070,1.2486)--(.9485,1.2486)--(1.3542,2.5425)--(1.7070,1.2486)--cycle(3.8718,1.6152)..controls(3.9026,1.8094)and
(4.0416,1.9032)..(4.2973,1.9032)..controls(4.5332,1.9032)and(4.6743,1.8182)..(4.6743,1.6806)..controls(4.6743,1.5847)and
(4.6192,1.5410)..(4.4582,1.5170)--(4.0724,1.4515)..controls(3.3955,1.3424)and(3.1112,1.1090)..(3.1112,.6639)..controls
(3.1112,.2146)and(3.4661,-.0865)..(3.9975,-.0865)..controls(4.2885,-.0865)and(4.4538,-.0276)..(4.6942,.1644)..controls
(4.7184,.0771)and(4.7184,.0619)..(4.7493,-.0232)--(5.4747,-.0232)..controls(5.3952,.0968)and
(5.3842,.1295)..(5.3842,.3891)--(5.3842,1.4865)..controls(5.3842,1.8421)and(5.3203,2.0320)..(5.1440,2.1847)..controls
(4.9543,2.3549)and(4.6743,2.4378)..(4.3083,2.4378)..controls(3.6270,2.4378)and(3.2810,2.1715)..(3.2369,1.6152)--
(3.8718,1.6152)--cycle(4.6942,.7468)..controls(4.5773,.5462)and(4.4075,.4481)..(4.1716,.4481)..controls(3.9512,.4481)and
(3.8123,.5419)..(3.8123,.6988)..controls(3.8123,.8428)and(3.9225,.9257)..(4.1782,.9847)--(4.4340,1.0392)..
controls(4.5530,1.0654)and(4.6192,1.0850)..(4.6942,1.1156)--(4.6942,.7468)--cycle(6.7026,3.2800)--
(5.9905,3.2800)--(5.9905,-.0232)--(6.7026,-.0232)--(6.7026,3.2800)--cycle(8.6296,2.3396)--
(8.1952,2.3396)--(8.1952,3.0967)--(7.4831,3.0967)--(7.4831,2.3396)--(7.1436,2.3396)--(7.1436,1.8421)
--(7.4831,1.8421)--(7.4831,.7533)..controls(7.4831,.3826)and(7.5140,.2539)..(7.6243,.1361)..controls
(7.7278,.0226)and(7.8844,-.0232)..(8.1952,-.0232)--(8.6296,-.0232)--(8.6296,.5070)--(8.3739,.5070)..controls
(8.2085,.5070)and(8.1952,.5376)..(8.1952,.9127)--(8.1952,1.8421)--(8.6296,1.8421)--
(8.6296,2.3396)--cycle(10.2280,2.4334)..controls(9.4762,2.4334)and(8.9448,1.9076)..(8.9448,1.1745)..controls(8.9448,.4328)and
(9.4762,-.0865)..(10.2280,-.0865)..controls(10.9732,-.0865)and(11.5156,.4328)..(11.5156,1.1548)..controls(11.5156,1.9120)and
(10.9952,2.4334)..(10.2280,2.4334)(10.2280,1.8727)..controls(10.5940,1.8727)and(10.7991,1.6196)..(10.7991,1.1592)..controls
(10.7991,.7272)and(10.5896,.4721)..(10.2280,.4721)..controls(9.8664,.4721)and(9.6614,.7272)..(9.6614,1.1745)..controls
(9.6614,1.6152)and(9.8664,1.8727)..(10.2280,1.8727)(15.1424,3.2800)--(15.1424,1.0959)..controls(15.1424,.8712)and
(15.1070,.7730)..(15.0057,.6792)..controls(14.8954,.5855)and(14.7345,.5332)..(14.5493,.5332)..controls(14.3707,.5332)and
(14.2097,.5855)..(14.0995,.6792)..controls(14.0003,.7730)and(13.9650,.8712)..(13.9650,1.0959)--(13.9650,3.2800)--
(13.2132,3.2800)--(13.2132,1.0457)..controls(13.2132,.6314)and(13.3235,.3673)..(13.5726,.1841)..
controls(13.8283,.0008)and(14.1700,-.0974)..(14.5493,-.0974)..controls(14.9351,-.0974)and
(15.2768,.0008)..(15.5325,.1841)..controls(15.7817,.3673)and(15.8920,.6314)..(15.8920,1.0457)--
(15.8920,3.2800)--(15.1424,3.2800)--cycle(16.5732,2.3679)--(16.5732,-.0232)--(17.2853,-.0232)--(17.2853,1.3185)..controls
(17.2853,1.5258)and(17.3096,1.6261)..(17.3912,1.7134)..controls(17.4661,1.7985)and(17.5763,1.8421)..(17.6954,1.8421)..controls
(17.8211,1.8421)and(17.9269,1.7941)..(17.9865,1.7047)..controls(18.0459,1.6152)and(18.0614,1.5214)..(18.0614,1.2792)--
(18.0614,-.0232)--(18.7713,-.0232)--(18.7713,1.5258)..controls(18.7713,2.0909)and(18.4516,2.4378)..
(17.9269,2.4378)..controls(17.6755,2.4378)and(17.5301,2.3745)..(17.2655,2.1367)--(17.2655,2.3679)--(16.5732,2.3679)
--cycle(20.1603,2.3679)--(19.4482,2.3679)--(19.4482,-.0232)--(20.1603,-.0232)--(20.1603,2.3679)--cycle
(20.1603,3.2800)--(19.4482,3.2800)--(19.4482,2.6996)--(20.1603,2.6996)--(20.1603,3.2800)--cycle
(22.1534,-.0232)--(22.9757,2.3679)--(22.2128,2.3679)--(21.9681,1.4515)..controls(21.9329,1.3076)and(21.8734,1.0348)..
(21.8182,.7621)..controls(21.7366,1.0501)and(21.6771,1.2836)..(21.6264,1.4515)--(21.3574,2.3679)--(20.6101,2.3679)--
(21.4765,-.0232)--(22.1534,-.0232)--cycle(25.6742,.9650)..controls(25.6742,1.2836)and(25.6390,1.4974)..
(25.5640,1.6938)..controls(25.3876,2.1715)and(24.9975,2.4334)..(24.4771,2.4334)..controls(23.7518,2.4334)and(23.2403,1.9120)..
(23.2403,1.1701)..controls(23.2403,.4176)and(23.7363,-.0865)..(24.4815,-.0865)..controls(25.0592,-.0865)and(25.5089,.2103)..
(25.6434,.6727)--(24.9225,.6727)..controls(24.8233,.5267)and(24.6931,.4634)..(24.5014,.4634)..controls(24.1971,.4634)and
(24.0009,.6400)..(23.9568,.9650)--(25.6742,.9650)--cycle(23.9612,1.4624)..controls(24.0164,1.7396)and
(24.1971,1.8988)..(24.4727,1.8988)..controls(24.7483,1.8988)and(24.9136,1.7396)..(24.9423,1.4624)--(23.9612,1.4624)--cycle
(26.1858,2.3679)--(26.1858,-.0232)--(26.8957,-.0232)--(26.8957,.6486)..controls(26.8957,1.1156)and(26.9222,1.3381)..
(26.9905,1.4974)..controls(27.0721,1.6741)and(27.2727,1.7832)..(27.5174,1.7832)..controls(27.5681,1.7832)and(27.6122,1.7788)..
(27.6982,1.7701)--(27.6982,2.4334)..controls(27.1823,2.4378)and(27.0015,2.3287)..(26.8605,1.9425)--
(26.8802,2.3679)--(26.1858,2.3679)--cycle(30.1763,1.6501)..controls(30.1168,2.1563)and(29.7354,2.4334)..(29.1159,2.4334)..controls
(28.4742,2.4334)and(28.0841,2.1411)..(28.0841,1.6588)..controls(28.0841,1.2792)and(28.2891,1.0850)..(28.8204,.9715)--
(29.2592,.8712)..controls(29.4510,.8276)and(29.5303,.7621)..(29.5303,.6530)..controls
(29.5303,.5179)and(29.3804,.4241)..(29.1600,.4241)..controls(28.8755,.4241)and(28.7234,.5332)..
(28.6837,.7533)--(28.0179,.7533)..controls(28.0576,.2255)and(28.4742,-.0865)..(29.1445,-.0865)..controls(29.8169,-.0865)and
(30.2314,.2299)..(30.2314,.7338)..controls(30.2314,.9257)and(30.1675,1.1047)..(30.0506,1.2138)..controls(29.9471,1.3229)and
(29.7949,1.3883)..(29.5017,1.4472)--(29.0541,1.5410)..controls(28.8292,1.5912)and(28.7587,1.6348)..(28.7587,1.7243)..controls
(28.7587,1.8421)and(28.8954,1.9229)..(29.1004,1.9229)..controls(29.3363,1.9229)and(29.4796,1.8291)..(29.5105,1.6501)--
(30.1763,1.6501)--cycle(31.3977,2.3679)--(30.6878,2.3679)--(30.6878,-.0232)--(31.3977,-.0232)--
(31.3977,2.3679)--cycle(31.3977,3.2800)--(30.6878,3.2800)--(30.6878,2.6996)--(31.3977,2.6996)--(31.3977,3.2800)
--cycle(33.3776,2.3396)--(32.9411,2.3396)--(32.9411,3.0967)--(32.2311,3.0967)--(32.2311,2.3396)--
(31.8894,2.3396)--(31.8894,1.8421)--(32.2311,1.8421)--(32.2311,.7533)..controls(32.2311,.3826)and
(32.2598,.2539)..(32.3700,.1361)..controls(32.4758,.0226)and(32.6301,-.0232)..(32.9411,-.0232)--(33.3776,-.0232)--
(33.3776,.5070)--(33.1219,.5070)..controls(32.9565,.5070)and(32.9411,.5376)..(32.9411,.9127)--(32.9411,1.8421)--
(33.3776,1.8421)--(33.3776,2.3396)--cycle(35.4258,2.3679)--(35.1104,1.2879)..controls(35.0553,1.0741)and(35.0157,.9127)..
(34.9848,.7533)--(34.9539,.8472)..controls(34.8988,1.0457)and(34.8988,1.0501)..(34.8305,1.2727)--(34.4733,2.3679)--
(33.7127,2.3679)--(34.5086,.3586)..controls(34.5946,.1514)and(34.5990,.1361)..(34.5990,.0509)..controls(34.5990,-.1563)and
(34.4844,-.2501)..(34.2330,-.2501)--(34.0235,-.2501)--(34.0235,-.7803)--(34.4380,-.7803)..controls(34.9804,-.7803)and
(35.0951,-.6821)..(35.3199,-.0429)--(36.1621,2.3679)--(35.4258,2.3679)--cycle;
}
%% School names
% Taideteollinen korkeakoulu
\newcommand{\TAIKFI}[1]{%
\fill[color={#1}] (1.6200,2.6400)--(2.6297,2.6400)--
(2.6297,3.2727)--(-.1415,3.2727)--(-.1415,2.6400)--
(.8704,2.6400)--(.8704,-.0305)--(1.6200,-.0305)--(1.6200,2.6400)--cycle(3.3021,1.6103)..controls
(3.3308,1.8044)and(3.4719,1.8982)..(3.7276,1.8982)..controls(3.9636,1.8982)and(4.1024,1.8132)..(4.1024,1.6757)..controls
(4.1024,1.5797)and(4.0473,1.5361)..(3.8886,1.5099)--(3.5027,1.4466)..controls(2.8259,1.3375)and(2.5415,1.1041)..
(2.5415,.6589)..controls(2.5415,.2073)and(2.8964,-.0938)..(3.4278,-.0938)..controls(3.7166,-.0938)and(3.8820,-.0349)..
(4.1223,.1571)..controls(4.1487,.0677)and(4.1487,.0545)..(4.1774,-.0305)--(4.9050,-.0305)..controls(4.8234,.0895)and
(4.8145,.1222)..(4.8145,.3818)--(4.8145,1.4815)..controls(4.8145,1.8394)and(4.7484,2.0270)..(4.5743,2.1797)..controls
(4.3824,2.3477)and(4.1024,2.4328)..(3.7365,2.4328)..controls(3.0552,2.4328)and(2.7113,2.1644)..(2.6649,1.6103)--
(3.3021,1.6103)--cycle(4.1223,.7418)..controls(4.0076,.5389)and(3.8379,.4408)..(3.6019,.4408)..controls(3.3815,.4408)and
(3.2404,.5346)..(3.2404,.6939)..controls(3.2404,.8379)and(3.3528,.9208)..(3.6064,.9797)--(3.8621,1.0364)
..controls(3.9833,1.0604)and(4.0473,1.0800)..(4.1223,1.1085)--(4.1223,.7418)--cycle(6.1815,2.3630)--
(5.4694,2.3630)--(5.4694,-.0305)--(6.1815,-.0305)--(6.1815,2.3630)--cycle(6.1815,3.2727)--
(5.4694,3.2727)--(5.4694,2.6945)--(6.1815,2.6945)--(6.1815,3.2727)--cycle(9.1226,3.2727)--(8.4105,3.2727)--
(8.4105,2.1841)..controls(8.2407,2.3586)and(8.0489,2.4328)..(7.7887,2.4328)..controls(7.1383,2.4328)and(6.7084,1.9267)..
(6.7084,1.1651)..controls(6.7084,.4103)and(7.1339,-.0938)..(7.7733,-.0938)..controls(8.0709,-.0938)and(8.2605,-.0065)..
(8.4413,.2269)--(8.4413,-.0305)--(9.1226,-.0305)--(9.1226,3.2727)--cycle(7.9188,1.8633)..controls(8.2297,1.8633)and
(8.4347,1.5862)..(8.4347,1.1586)..controls(8.4347,.7527)and(8.2253,.4757)..(7.9188,.4757)..controls(7.6145,.4757)and
(7.4095,.7527)..(7.4095,1.1695)..controls(7.4095,1.5862)and(7.6145,1.8633)..(7.9188,1.8633)(12.0373,.9600)
..controls(12.0373,1.2786)and(12.0019,1.4903)..(11.9270,1.6888)..controls(11.7506,2.1644)and
(11.3604,2.4285)..(10.8400,2.4285)..controls(10.1125,2.4285)and(9.6032,1.9070)..(9.6032,1.1651)..
controls(9.6032,.4103)and(10.0971,-.0938)..(10.8444,-.0938)..controls(11.4199,-.0938)and
(11.8719,.2030)..(12.0064,.6677)--(11.2854,.6677)..controls(11.1840,.5194)and(11.0539,.4560)..(10.8643,.4560)..controls
(10.5601,.4560)and(10.3638,.6327)..(10.3176,.9600)--(12.0373,.9600)--cycle(10.3242,1.4576)..controls(10.3793,1.7346)and
(10.5601,1.8917)..(10.8334,1.8917)..controls(11.1090,1.8917)and(11.2744,1.7346)..(11.3053,1.4576)--(10.3242,1.4576)--cycle
(13.7856,2.3346)--(13.3491,2.3346)--(13.3491,3.0894)--(12.6369,3.0894)--(12.6369,2.3346)--(12.2974,2.3346)
--(12.2974,1.8394)--(12.6369,1.8394)--(12.6369,.7484)..controls(12.6369,.3753)and(12.6678,.2466)..
(12.7780,.1288)..controls(12.8838,.0131)and(13.0381,-.0305)..(13.3491,-.0305)--(13.7856,-.0305)--(13.7856,.4997)--
(13.5298,.4997)..controls(13.3644,.4997)and(13.3491,.5303)..(13.3491,.9055)--(13.3491,1.8394)--(13.7856,1.8394)--
(13.7856,2.3346)--cycle(16.6032,.9600)..controls(16.6032,1.2786)and(16.5701,1.4903)..(16.4930,1.6888)..controls
(16.3187,2.1644)and(15.9286,2.4285)..(15.4060,2.4285)..controls(14.6807,2.4285)and(14.1691,1.9070)..(14.1691,1.1651)..controls
(14.1691,.4103)and(14.6652,-.0938)..(15.4126,-.0938)..controls(15.9880,-.0938)and(16.4378,.2030)..(16.5745,.6677)--
(15.8536,.6677)..controls(15.7522,.5194)and(15.6221,.4560)..(15.4325,.4560)..controls(15.1260,.4560)and(14.9320,.6327)..
(14.8857,.9600)--(16.6032,.9600)--cycle(14.8924,1.4576)..controls(14.9452,1.7346)and(15.1260,1.8917)..
(15.4016,1.8917)..controls(15.6772,1.8917)and(15.8426,1.7346)..(15.8735,1.4576)--(14.8924,1.4576)--cycle(18.3273,2.4285)..controls
(17.5754,2.4285)and(17.0441,1.9026)..(17.0441,1.1695)..controls(17.0441,.4255)and(17.5754,-.0938)..(18.3273,-.0938)..controls
(19.0725,-.0938)and(19.6148,.4255)..(19.6148,1.1499)..controls(19.6148,1.9070)and(19.0945,2.4285)..(18.3273,2.4285)
(18.3273,1.8677)..controls(18.6932,1.8677)and(18.8983,1.6146)..(18.8983,1.1542)..controls
(18.8983,.7222)and(18.6888,.4648)..(18.3273,.4648)..controls(17.9657,.4648)and(17.7607,.7222)..
(17.7607,1.1695)..controls(17.7607,1.6103)and(17.9657,1.8677)..(18.3273,1.8677)(20.7811,3.2727)--
(20.0690,3.2727)--(20.0690,-.0305)--(20.7811,-.0305)--(20.7811,3.2727)--cycle(22.1679,3.2727)--(21.4580,3.2727)--
(21.4580,-.0305)--(22.1679,-.0305)--(22.1679,3.2727)--cycle(23.5569,2.3630)--(22.8447,2.3630)--
(22.8447,-.0305)--(23.5569,-.0305)--(23.5569,2.3630)--cycle(23.5569,3.2727)--(22.8447,3.2727)--(22.8447,2.6945)--
(23.5569,2.6945)--(23.5569,3.2727)--cycle(24.2315,2.3630)--(24.2315,-.0305)--(24.9436,-.0305)--
(24.9436,1.3135)..controls(24.9436,1.5208)and(24.9679,1.6212)..(25.0494,1.7085)..controls(25.1244,1.7935)and(25.2347,1.8394)..
(25.3538,1.8394)..controls(25.4794,1.8394)and(25.5853,1.7891)..(25.6447,1.6997)..controls(25.7043,1.6103)and(25.7197,1.5164)..
(25.7197,1.2721)--(25.7197,-.0305)--(26.4296,-.0305)--(26.4296,1.5208)..controls(26.4296,2.0859)and(26.1100,2.4328)..
(25.5853,2.4328)..controls(25.3339,2.4328)and(25.1884,2.3673)..(24.9238,2.1295)--(24.9238,2.3630)--(24.2315,2.3630)--
cycle(29.3707,.9600)..controls(29.3707,1.2786)and(29.3355,1.4903)..(29.2605,1.6888)..controls(29.0863,2.1644)and
(28.6939,2.4285)..(28.1735,2.4285)..controls(27.4482,2.4285)and(26.9367,1.9070)..(26.9367,1.1651)..controls(26.9367,.4103)and
(27.4328,-.0938)..(28.1780,-.0938)..controls(28.7556,-.0938)and(29.2053,.2030)..(29.3399,.6677)--(28.6189,.6677)..controls
(28.5197,.5194)and(28.3896,.4560)..(28.1978,.4560)..controls(27.8935,.4560)and(27.6974,.6327)..(27.6533,.9600)--
(29.3707,.9600)--cycle(27.6577,1.4576)..controls(27.7128,1.7346)and(27.8935,1.8917)..(28.1691,1.8917)..controls
(28.4447,1.8917)and(28.6101,1.7346)..(28.6388,1.4576)--(27.6577,1.4576)--cycle(29.9307,2.3630)--(29.9307,-.0305)--
(30.6428,-.0305)--(30.6428,1.3135)..controls(30.6428,1.5208)and(30.6671,1.6212)..(30.7486,1.7085)..controls(30.8236,1.7935)and
(30.9339,1.8394)..(31.0530,1.8394)..controls(31.1786,1.8394)and(31.2845,1.7891)..(31.3439,1.6997)..controls(31.4035,1.6103)and
(31.4189,1.5164)..(31.4189,1.2721)--(31.4189,-.0305)--(32.1310,-.0305)--(32.1310,1.5208)..controls(32.1310,2.0859)and
(31.8092,2.4328)..(31.2845,2.4328)..controls(31.0331,2.4328)and(30.8876,2.3673)..(30.6230,2.1295)--(30.6230,2.3630)--
(29.9307,2.3630)--cycle(35.1714,1.4509)--(36.0929,2.3630)--(35.2110,2.3630)--(34.4703,1.5404)--(34.4703,3.2727)--
(33.7581,3.2727)--(33.7581,-.0305)--(34.4703,-.0305)--(34.4703,.7680)--(34.6995,.9906)--(35.3014,-.0305)--
(36.1723,-.0305)--(35.1714,1.4509)--cycle(37.5304,2.4285)..controls(36.7786,2.4285)and(36.2472,1.9026)
..(36.2472,1.1695)..controls(36.2472,.4255)and(36.7786,-.0938)..(37.5304,-.0938)..controls(38.2756,-.0938)and
(38.8157,.4255)..(38.8157,1.1499)..controls(38.8157,1.9070)and(38.2955,2.4285)..(37.5304,2.4285)(37.5304,1.8677)..controls
(37.8942,1.8677)and(38.1014,1.6146)..(38.1014,1.1542)..controls(38.1014,.7222)and(37.8898,.4648)..(37.5304,.4648)..controls
(37.1688,.4648)and(36.9638,.7222)..(36.9638,1.1695)..controls(36.9638,1.6103)and(37.1688,1.8677)..(37.5304,1.8677)
(39.2478,2.3630)--(39.2478,-.0305)--(39.9578,-.0305)--(39.9578,.6436)..controls(39.9578,1.1085)and(39.9842,1.3332)..
(40.0548,1.4903)..controls(40.1342,1.6691)and(40.3348,1.7782)..(40.5795,1.7782)..controls(40.6302,1.7782)and(40.6743,1.7739)..
(40.7603,1.7630)--(40.7603,2.4285)..controls(40.2444,2.4328)and(40.0636,2.3237)..(39.9247,1.9376)--(39.9446,2.3630)--
(39.2478,2.3630)--cycle(42.6829,1.4509)--(43.6044,2.3630)--(42.7225,2.3630)--(41.9817,1.5404)--
(41.9817,3.2727)--(41.2718,3.2727)--(41.2718,-.0305)--(41.9817,-.0305)--(41.9817,.7680)--(42.2132,.9906)--
(42.8129,-.0305)--(43.6860,-.0305)--(42.6829,1.4509)--cycle(46.1950,.9600)..controls(46.1950,1.2786)and
(46.1596,1.4903)..(46.0847,1.6888)..controls(45.9083,2.1644)and(45.5181,2.4285)..(44.9978,2.4285)..controls
(44.2703,2.4285)and(43.7609,1.9070)..(43.7609,1.1651)..controls(43.7609,.4103)and
(44.2570,-.0938)..(45.0022,-.0938)..controls(45.5776,-.0938)and(46.0296,.2030)..(46.1641,.6677)--
(45.4431,.6677)..controls(45.3417,.5194)and(45.2116,.4560)..(45.0220,.4560)..controls(44.7155,.4560)and(44.5215,.6327)..
(44.4753,.9600)--(46.1950,.9600)--cycle(44.4819,1.4576)..controls(44.5370,1.7346)and(44.7155,1.8917)..
(44.9911,1.8917)..controls(45.2667,1.8917)and(45.4321,1.7346)..(45.4630,1.4576)--(44.4819,1.4576)--
cycle(47.3569,1.6103)..controls(47.3855,1.8044)and(47.5266,1.8982)..(47.7824,1.8982)..controls
(48.0183,1.8982)and(48.1572,1.8132)..(48.1572,1.6757)..controls(48.1572,1.5797)and(48.1020,1.5361)..(47.9433,1.5099)--
(47.5575,1.4466)..controls(46.8806,1.3375)and(46.5940,1.1041)..(46.5940,.6589)..controls(46.5940,.2073)and(46.9512,-.0938)..
(47.4803,-.0938)..controls(47.7713,-.0938)and(47.9367,-.0349)..(48.1770,.1571)..controls(48.2034,.0677)and(48.2034,.0545)..
(48.2321,-.0305)--(48.9596,-.0305)..controls(48.8781,.0895)and(48.8693,.1222)..(48.8693,.3818)--(48.8693,1.4815)..controls
(48.8693,1.8394)and(48.8031,2.0270)..(48.6289,2.1797)..controls(48.4372,2.3477)and(48.1572,2.4328)..(47.7911,2.4328)..controls
(47.1099,2.4328)and(46.7659,2.1644)..(46.7197,1.6103)--(47.3569,1.6103)--cycle(48.1770,.7418)..controls
(48.0624,.5389)and(47.8926,.4408)..(47.6567,.4408)..controls(47.4362,.4408)and(47.2951,.5346)..
(47.2951,.6939)..controls(47.2951,.8379)and(47.4076,.9208)..(47.6611,.9797)--(47.9168,1.0364)..controls
(48.0381,1.0604)and(48.1020,1.0800)..(48.1770,1.1085)--(48.1770,.7418)--cycle(50.9373,1.4509)--(51.8588,2.3630)--
(50.9769,2.3630)--(50.2362,1.5404)--(50.2362,3.2727)--(49.5241,3.2727)--(49.5241,-.0305)--(50.2362,-.0305)--
(50.2362,.7680)--(50.4655,.9906)--(51.0674,-.0305)--(51.9383,-.0305)--(50.9373,1.4509)--cycle
(53.3162,2.4285)..controls(52.5643,2.4285)and(52.0352,1.9026)..(52.0352,1.1695)..controls(52.0352,.4255)and
(52.5643,-.0938)..(53.3162,-.0938)..controls(54.0636,-.0938)and(54.6037,.4255)..(54.6037,1.1499)..controls(54.6037,1.9070)and
(54.0834,2.4285)..(53.3162,2.4285)(53.3162,1.8677)..controls(53.6822,1.8677)and(53.8872,1.6146)..(53.8872,1.1542)..controls
(53.8872,.7222)and(53.6777,.4648)..(53.3162,.4648)..controls(52.9569,.4648)and(52.7496,.7222)..(52.7496,1.1695)..controls
(52.7496,1.6103)and(52.9569,1.8677)..(53.3162,1.8677)(57.2979,2.3630)--(56.5880,2.3630)--(56.5880,1.0146)..controls
(56.5880,.7768)and(56.5769,.7222)..(56.5108,.6394)..controls(56.4469,.5498)and(56.3367,.4997)..(56.2066,.4997)..controls
(56.0765,.4997)and(55.9619,.5498)..(55.8957,.6394)..controls(55.8296,.7222)and(55.8207,.7833)..(55.8207,1.0146)--
(55.8207,2.3630)--(55.1086,2.3630)--(55.1086,.8618)..controls(55.1086,.5194)and(55.1748,.3164)..(55.3401,.1527)..controls
(55.5011,-.0065)and(55.7304,-.0938)..(55.9817,-.0938)..controls(56.2771,-.0938)and(56.4513,-.0065)..(56.6210,.2313)--
(56.6210,-.0305)--(57.2979,-.0305)--(57.2979,2.3630)--cycle(58.7155,3.2727)--(58.0034,3.2727)--(58.0034,-.0305)--
(58.7155,-.0305)--(58.7155,3.2727)--cycle(61.5553,2.3630)--(60.8431,2.3630)--(60.8431,1.0146)..controls(60.8431,.7768)and
(60.8343,.7222)..(60.7682,.6394)..controls(60.7042,.5498)and(60.5940,.4997)..(60.4639,.4997)..controls(60.3338,.4997)and
(60.2170,.5498)..(60.1530,.6394)..controls(60.0869,.7222)and(60.0781,.7833)..(60.0781,1.0146)--(60.0781,2.3630)--
(59.3659,2.3630)--(59.3659,.8618)..controls(59.3659,.5194)and(59.4320,.3164)..(59.5974,.1527)..controls(59.7584,-.0065)and
(59.9877,-.0938)..(60.2390,-.0938)..controls(60.5344,-.0938)and(60.7086,-.0065)..(60.8784,.2313)--(60.8784,-.0305)--
(61.5553,-.0305)--(61.5553,2.3630)--cycle;
}
% Konstindustriella h{\"o}gskolan
\newcommand{\TAIKSE}[1]{%
\fill[color={#1}] (1.4300,1.9700)--(2.7307,3.2725)--
(1.7452,3.2725)--(.6210,2.0528)--(.6210,3.2725)--
(-.1176,3.2725)--(-.1176,-.0306)--(.6210,-.0306)--(.6210,1.1541)--(.9296,1.4661)--(1.9392,-.0306)--
(2.8410,-.0306)--(1.4300,1.9700)--cycle(4.1792,2.4259)..controls(3.4274,2.4259)and(2.8961,1.9024)..
(2.8961,1.1694)..controls(2.8961,.4253)and(3.4274,-.0961)..(4.1792,-.0961)..controls(4.9244,-.0961)and(5.4646,.4253)..
(5.4646,1.1476)..controls(5.4646,1.9068)and(4.9442,2.4259)..(4.1792,2.4259)(4.1792,1.8676)..controls(4.5429,1.8676)and
(4.7502,1.6144)..(4.7502,1.1541)..controls(4.7502,.7221)and(4.5386,.4646)..(4.1792,.4646)..controls(3.8176,.4646)and
(3.6126,.7221)..(3.6126,1.1694)..controls(3.6126,1.6100)and(3.8176,1.8676)..(4.1792,1.8676)(5.9474,2.3605)--
(5.9474,-.0306)--(6.6573,-.0306)--(6.6573,1.3112)..controls(6.6573,1.5206)and(6.6815,1.6188)..(6.7631,1.7082)..controls
(6.8381,1.7934)and(6.9483,1.8370)..(7.0673,1.8370)..controls(7.1930,1.8370)and(7.2988,1.7868)..(7.3584,1.6973)..controls
(7.4179,1.6100)and(7.4334,1.5141)..(7.4334,1.2719)--(7.4334,-.0306)--(8.1455,-.0306)--(8.1455,1.5206)..controls
(8.1455,2.0833)and(7.8236,2.4303)..(7.2988,2.4303)..controls(7.0476,2.4303)and(6.9020,2.3648)..(6.6374,2.1270)--
(6.6374,2.3605)--(5.9474,2.3605)--cycle(10.7801,1.6450)..controls(10.7184,2.1466)and(10.3392,2.4259)..
(9.7174,2.4259)..controls(9.0759,2.4259)and(8.6856,2.1314)..(8.6856,1.6537)..controls(8.6856,1.2719)and(8.8907,1.0799)..
(9.4221,.9642)--(9.8630,.8661)..controls(10.0526,.8203)and(10.1342,.7570)..(10.1342,.6479)..controls(10.1342,.5082)and
(9.9843,.4144)..(9.7638,.4144)..controls(9.4772,.4144)and(9.3272,.5235)..(9.2875,.7461)--(8.6217,.7461)..controls
(8.6614,.2159)and(9.0759,-.0961)..(9.7483,-.0961)..controls(10.4185,-.0961)and(10.8353,.2224)..(10.8353,.7264)..controls
(10.8353,.9206)and(10.7691,1.0995)..(10.6544,1.2086)..controls(10.5486,1.3177)and(10.3987,1.3809)..(10.1033,1.4399)--
(9.6579,1.5359)..controls(9.4331,1.5839)and(9.3625,1.6297)..(9.3625,1.7191)..controls(9.3625,1.8370)and(9.4970,1.9155)..
(9.7020,1.9155)..controls(9.9379,1.9155)and(10.0835,1.8217)..(10.1143,1.6450)--(10.7801,1.6450)--cycle(12.6431,2.3300)--
(12.2066,2.3300)--(12.2066,3.0892)--(11.4967,3.0892)--(11.4967,2.3300)--(11.1549,2.3300)--
(11.1549,1.8370)--(11.4967,1.8370)--(11.4967,.7461)..controls(11.4967,.3751)and(11.5253,.2464)..(11.6355,.1264)..controls
(11.7414,.0130)and(11.8957,-.0306)..(12.2066,-.0306)--(12.6431,-.0306)--(12.6431,.4995)--(12.3874,.4995)..controls
(12.2221,.4995)and(12.2066,.5279)..(12.2066,.9053)--(12.2066,1.8370)--(12.6431,1.8370)--(12.6431,2.3300)--cycle
(13.9395,2.3605)--(13.2295,2.3605)--(13.2295,-.0306)--(13.9395,-.0306)--(13.9395,2.3605)--cycle
(13.9395,3.2725)--(13.2295,3.2725)--(13.2295,2.6921)--(13.9395,2.6921)--(13.9395,3.2725)--cycle(14.6163,2.3605)--
(14.6163,-.0306)--(15.3263,-.0306)--(15.3263,1.3112)..controls(15.3263,1.5206)and(15.3528,1.6188)..(15.4321,1.7082)..controls
(15.5071,1.7934)and(15.6173,1.8370)..(15.7386,1.8370)..controls(15.8642,1.8370)and(15.9678,1.7868)..(16.0274,1.6973)..controls
(16.0891,1.6100)and(16.1045,1.5141)..(16.1045,1.2719)--(16.1045,-.0306)--(16.8145,-.0306)--(16.8145,1.5206)..controls
(16.8145,2.0833)and(16.4948,2.4303)..(15.9678,2.4303)..controls(15.7187,2.4303)and(15.5732,2.3648)..(15.3064,2.1270)--
(15.3064,2.3605)--(14.6163,2.3605)--cycle(19.7048,3.2725)--(18.9927,3.2725)--(18.9927,2.1815)..controls
(18.8229,2.3561)and(18.6334,2.4303)..(18.3732,2.4303)..controls(17.7206,2.4303)and(17.2907,1.9264)..(17.2907,1.1628)..controls
(17.2907,.4100)and(17.7161,-.0961)..(18.3578,-.0961)..controls(18.6532,-.0961)and(18.8428,-.0067)..(19.0236,.2268)--
(19.0236,-.0306)--(19.7048,-.0306)--(19.7048,3.2725)--cycle(18.5032,1.8632)..controls(18.8142,1.8632)and(19.0192,1.5839)..
(19.0192,1.1585)..controls(19.0192,.7526)and(18.8075,.4733)..(18.5032,.4733)..controls(18.1968,.4733)and(17.9917,.7526)..
(17.9917,1.1694)..controls(17.9917,1.5839)and(18.1968,1.8632)..(18.5032,1.8632)(22.5445,2.3605)--(21.8324,2.3605)--
(21.8324,1.0144)..controls(21.8324,.7766)and(21.8236,.7221)..(21.7575,.6370)..controls(21.6935,.5497)and(21.5833,.4995)..
(21.4531,.4995)..controls(21.3231,.4995)and(21.2063,.5497)..(21.1423,.6370)..controls(21.0762,.7221)and(21.0673,.7809)..
(21.0673,1.0144)--(21.0673,2.3605)--(20.3552,2.3605)--(20.3552,.8617)..controls(20.3552,.5191)and
(20.4214,.3162)..(20.5867,.1526)..controls(20.7455,-.0067)and(20.9770,-.0961)..(21.2283,-.0961)..
controls(21.5215,-.0961)and(21.6979,-.0067)..(21.8677,.2312)--(21.8677,-.0306)--(22.5445,-.0306)--
(22.5445,2.3605)--cycle(25.1836,1.6450)..controls(25.1240,2.1466)and(24.7426,2.4259)..(24.1231,2.4259)..controls
(23.4815,2.4259)and(23.0913,2.1314)..(23.0913,1.6537)..controls(23.0913,1.2719)and(23.2963,1.0799)..(23.8255,.9642)--
(24.2664,.8661)..controls(24.4583,.8203)and(24.5376,.7570)..(24.5376,.6479)..controls(24.5376,.5082)and(24.3877,.4144)..
(24.1672,.4144)..controls(23.8806,.4144)and(23.7307,.5235)..(23.6909,.7461)--(23.0252,.7461)..controls(23.0649,.2159)and
(23.4815,-.0961)..(24.1518,-.0961)..controls(24.8242,-.0961)and(25.2387,.2224)..(25.2387,.7264)..controls(25.2387,.9206)and
(25.1748,1.0995)..(25.0579,1.2086)..controls(24.9543,1.3177)and(24.8043,1.3809)..(24.5067,1.4399)--(24.0614,1.5359)..controls
(23.8365,1.5839)and(23.7659,1.6297)..(23.7659,1.7191)..controls(23.7659,1.8370)and(23.9026,1.9155)..(24.1077,1.9155)..controls
(24.3436,1.9155)and(24.4869,1.8217)..(24.5177,1.6450)--(25.1836,1.6450)--cycle(27.0223,2.3300)--(26.5858,2.3300)--
(26.5858,3.0892)--(25.8759,3.0892)--(25.8759,2.3300)--(25.5341,2.3300)--(25.5341,1.8370)--
(25.8759,1.8370)--(25.8759,.7461)..controls(25.8759,.3751)and(25.9045,.2464)..(26.0147,.1264)..controls(26.1206,.0130)and
(26.2749,-.0306)..(26.5858,-.0306)--(27.0223,-.0306)--(27.0223,.4995)--(26.7665,.4995)..controls(26.6012,.4995)and
(26.5858,.5279)..(26.5858,.9053)--(26.5858,1.8370)--(27.0223,1.8370)--(27.0223,2.3300)--cycle(27.5823,2.3605)--
(27.5823,-.0306)--(28.2945,-.0306)--(28.2945,.6435)..controls(28.2945,1.1082)and(28.3187,1.3308)..(28.3892,1.4900)..controls
(28.4686,1.6690)and(28.6693,1.7781)..(28.9140,1.7781)..controls(28.9646,1.7781)and(29.0110,1.7737)..(29.0948,1.7628)--
(29.0948,2.4259)..controls(28.5788,2.4303)and(28.4003,2.3212)..(28.2591,1.9373)--(28.2790,2.3605)--
(27.5823,2.3605)--cycle(30.2677,2.3605)--(29.5555,2.3605)--(29.5555,-.0306)--(30.2677,-.0306)--(30.2677,2.3605)--
cycle(30.2677,3.2725)--(29.5555,3.2725)--(29.5555,2.6921)--(30.2677,2.6921)--(30.2677,3.2725)--cycle
(33.1823,.9599)..controls(33.1823,1.2762)and(33.1470,1.4900)..(33.0720,1.6886)..controls(32.8979,2.1619)and(32.5055,2.4259)..
(31.9851,2.4259)..controls(31.2598,2.4259)and(30.7483,1.9068)..(30.7483,1.1628)..controls(30.7483,.4100)and(31.2444,-.0961)..
(31.9895,-.0961)..controls(32.5672,-.0961)and(33.0169,.2006)..(33.1514,.6675)--(32.4305,.6675)..controls(32.3313,.5191)and
(32.2012,.4537)..(32.0116,.4537)..controls(31.7051,.4537)and(31.5089,.6326)..(31.4648,.9599)--(33.1823,.9599)--cycle
(31.4693,1.4552)..controls(31.5244,1.7323)and(31.7051,1.8915)..(31.9807,1.8915)..controls(32.2563,1.8915)and(32.4216,1.7323)..
(32.4504,1.4552)--(31.4693,1.4552)--cycle(34.4037,3.2725)--(33.6938,3.2725)--(33.6938,-.0306)--(34.4037,-.0306)--
(34.4037,3.2725)--cycle(35.7927,3.2725)--(35.0806,3.2725)--(35.0806,-.0306)--(35.7927,-.0306)--
(35.7927,3.2725)--cycle(37.0846,1.6100)..controls(37.1133,1.8021)and(37.2544,1.8959)..(37.5102,1.8959)..controls(37.7460,1.8959)and
(37.8850,1.8130)..(37.8850,1.6734)..controls(37.8850,1.5795)and(37.8299,1.5359)..(37.6689,1.5097)--(37.2853,1.4464)..controls
(36.6084,1.3373)and(36.3218,1.1039)..(36.3218,.6566)..controls(36.3218,.2071)and(36.6790,-.0961)..(37.2081,-.0961)..controls
(37.4992,-.0961)and(37.6645,-.0373)..(37.9048,.1570)..controls(37.9313,.0675)and(37.9313,.0522)..(37.9599,-.0306)--
(38.6875,-.0306)..controls(38.6059,.0871)and(38.5971,.1221)..(38.5971,.3795)--(38.5971,1.4814)..controls(38.5971,1.8370)and
(38.5310,2.0245)..(38.3568,2.1772)..controls(38.1649,2.3452)and(37.8850,2.4303)..(37.5190,2.4303)..controls(36.8378,2.4303)and
(36.4938,2.1619)..(36.4475,1.6100)--(37.0846,1.6100)--cycle(37.9048,.7417)..controls(37.7901,.5388)and
(37.6204,.4385)..(37.3845,.4385)..controls(37.1640,.4385)and(37.0229,.5344)..(37.0229,.6915)..controls
(37.0229,.8355)and(37.1331,.9206)..(37.3889,.9795)--(37.6446,1.0341)..controls(37.7659,1.0580)and
(37.8299,1.0799)..(37.9048,1.1082)--(37.9048,.7417)--cycle(41.0906,3.2725)--(40.3785,3.2725)--(40.3785,-.0306)--
(41.0906,-.0306)--(41.0906,1.3112)..controls(41.0906,1.5643)and(41.1061,1.6341)..(41.1854,1.7126)..controls(41.2604,1.7934)and
(41.3772,1.8370)..(41.4963,1.8370)..controls(41.6176,1.8370)and(41.7168,1.7934)..(41.7763,1.7126)..controls(41.8425,1.6297)and
(41.8578,1.5403)..(41.8578,1.3112)--(41.8578,-.0306)--(42.5678,-.0306)--(42.5678,1.4399)..controls(42.5678,1.8021)and
(42.5082,2.0027)..(42.3539,2.1728)..controls(42.1974,2.3365)and(41.9725,2.4303)..(41.7322,2.4303)..controls(41.4809,2.4303)and
(41.2913,2.3452)..(41.0906,2.1576)--(41.0906,3.2725)--cycle(44.3822,2.4259)..controls(43.6305,2.4259)and(43.0992,1.9024)..
(43.0992,1.1694)..controls(43.0992,.4253)and(43.6305,-.0961)..(44.3822,-.0961)..controls(45.1275,-.0961)and(45.6677,.4253)..
(45.6677,1.1476)..controls(45.6677,1.9068)and(45.1473,2.4259)..(44.3822,2.4259)(44.3822,1.8676)..controls(44.7460,1.8676)and
(44.9533,1.6144)..(44.9533,1.1541)..controls(44.9533,.7221)and(44.7417,.4646)..(44.3822,.4646)..controls(44.0207,.4646)and
(43.8157,.7221)..(43.8157,1.1694)..controls(43.8157,1.6100)and(44.0207,1.8676)..(44.3822,1.8676)(44.1905,3.2376)--
(43.5401,3.2376)--(43.5401,2.6419)--(44.1905,2.6419)--(44.1905,3.2376)--cycle(45.2289,3.2376)--
(44.5763,3.2376)--(44.5763,2.6419)--(45.2289,2.6419)--(45.2289,3.2376)--cycle(47.8370,2.3452)--(47.8569,2.0528)..controls
(47.6761,2.3103)and(47.4622,2.4259)..(47.1514,2.4259)..controls(46.5341,2.4259)and(46.0733,1.9221)..(46.0733,1.2523)..controls
(46.0733,.5780)and(46.5297,.0980)..(47.1669,.0980)..controls(47.4358,.0980)and(47.6056,.1613)..(47.8173,.3555)--
(47.8173,.1962)..controls(47.8173,-.0416)and(47.7930,-.1245)..(47.6960,-.2096)..controls(47.6166,-.2794)and(47.4976,-.3143)..
(47.3454,-.3143)..controls(47.1117,-.3143)and(46.9706,-.2402)..(46.9199,-.0896)--(46.1835,-.0896)..controls(46.2342,-.5805)and
(46.6399,-.8532)..(47.3168,-.8532)..controls(47.7378,-.8532)and(48.0685,-.7441)..(48.2868,-.5325)..controls(48.4588,-.3688)and
(48.5139,-.1943)..(48.5139,.1962)--(48.5139,2.3452)--(47.8370,2.3452)--cycle(47.2903,1.8567)..controls(47.6056,1.8567)
and(47.8260,1.6144)..(47.8260,1.2719)..controls(47.8260,.9053)and(47.6122,.6675)..
(47.2859,.6675)..controls(46.9706,.6675)and(46.7501,.9097)..(46.7501,1.2632)..controls(46.7501,1.6144)
and(46.9706,1.8567)..(47.2903,1.8567)(51.1728,1.6450)..controls(51.1133,2.1466)and(50.7318,2.4259)..
(50.1102,2.4259)..controls(49.4708,2.4259)and(49.0783,2.1314)..(49.0783,1.6537)..controls(49.0783,1.2719)and(49.2856,1.0799)..
(49.8147,.9642)--(50.2556,.8661)..controls(50.4475,.8203)and(50.5268,.7570)..(50.5268,.6479)..controls(50.5268,.5082)and
(50.3769,.4144)..(50.1564,.4144)..controls(49.8698,.4144)and(49.7199,.5235)..(49.6802,.7461)--(49.0144,.7461)..controls
(49.0541,.2159)and(49.4708,-.0961)..(50.1410,-.0961)..controls(50.8113,-.0961)and(51.2279,.2224)..(51.2279,.7264)..controls
(51.2279,.9206)and(51.1640,1.0995)..(51.0472,1.2086)..controls(50.9435,1.3177)and(50.7914,1.3809)..(50.4960,1.4399)--
(50.0506,1.5359)..controls(49.8257,1.5839)and(49.7552,1.6297)..(49.7552,1.7191)..controls(49.7552,1.8370)and(49.8897,1.9155)..
(50.0969,1.9155)..controls(50.3306,1.9155)and(50.4761,1.8217)..(50.5070,1.6450)--(51.1728,1.6450)--cycle(53.2210,1.4508)--
(54.1425,2.3605)--(53.2607,2.3605)--(52.5199,1.5403)--(52.5199,3.2725)--(51.8078,3.2725)--(51.8078,-.0306)--
(52.5199,-.0306)--(52.5199,.7679)--(52.7514,.9904)--(53.3511,-.0306)--(54.2220,-.0306)--(53.2210,1.4508)--cycle
(55.6307,2.4259)..controls(54.8790,2.4259)and(54.3476,1.9024)..(54.3476,1.1694)..controls(54.3476,.4253)and(54.8790,-.0961)..
(55.6307,-.0961)..controls(56.3759,-.0961)and(56.9183,.4253)..(56.9183,1.1476)..controls(56.9183,1.9068)and(56.3958,2.4259)..
(55.6307,2.4259)(55.6307,1.8676)..controls(55.9968,1.8676)and(56.2018,1.6144)..(56.2018,1.1541)..controls(56.2018,.7221)and
(55.9901,.4646)..(55.6307,.4646)..controls(55.2692,.4646)and(55.0641,.7221)..(55.0641,1.1694)..controls(55.0641,1.6100)and
(55.2692,1.8676)..(55.6307,1.8676)(58.1353,3.2725)--(57.4232,3.2725)--(57.4232,-.0306)--
(58.1353,-.0306)--(58.1353,3.2725)--cycle(59.4273,1.6100)..controls(59.4559,1.8021)and(59.5971,1.8959)
..(59.8528,1.8959)..controls(60.0887,1.8959)and(60.2276,1.8130)..(60.2276,1.6734)..controls(60.2276,1.5795)and
(60.1725,1.5359)..(60.0137,1.5097)--(59.6279,1.4464)..controls(58.9511,1.3373)and(58.6645,1.1039)..(58.6645,.6566)..controls
(58.6645,.2071)and(59.0216,-.0961)..(59.5530,-.0961)..controls(59.8417,-.0961)and(60.0071,-.0373)..(60.2475,.1570)..controls
(60.2739,.0675)and(60.2739,.0522)..(60.3026,-.0306)--(61.0301,-.0306)..controls(60.9485,.0871)and(60.9397,.1221)..
(60.9397,.3795)--(60.9397,1.4814)..controls(60.9397,1.8370)and(60.8735,2.0245)..(60.6994,2.1772)..controls(60.5076,2.3452)and
(60.2276,2.4303)..(59.8616,2.4303)..controls(59.1803,2.4303)and(58.8364,2.1619)..(58.7901,1.6100)--(59.4273,1.6100)--cycle
(60.2475,.7417)..controls(60.1328,.5388)and(59.9630,.4385)..(59.7271,.4385)..controls
(59.5066,.4385)and(59.3677,.5344)..(59.3677,.6915)..controls(59.3677,.8355)and(59.4758,.9206)..
(59.7315,.9795)--(59.9873,1.0341)..controls(60.1086,1.0580)and(60.1725,1.0799)..(60.2475,1.1082)--(60.2475,.7417)--cycle
(61.6210,2.3605)--(61.6210,-.0306)--(62.3309,-.0306)--(62.3309,1.3112)..controls(62.3309,1.5206)and(62.3574,1.6188)..
(62.4367,1.7082)..controls(62.5117,1.7934)and(62.6220,1.8370)..(62.7432,1.8370)..controls(62.8666,1.8370)and(62.9725,1.7868)..
(63.0320,1.6973)..controls(63.0937,1.6100)and(63.1070,1.5141)..(63.1070,1.2719)--(63.1070,-.0306)--(63.8191,-.0306)--
(63.8191,1.5206)..controls(63.8191,2.0833)and(63.4994,2.4303)..(62.9725,2.4303)..controls(62.7233,2.4303)and(62.5779,2.3648)..
(62.3110,2.1270)--(62.3110,2.3605)--(61.6210,2.3605)--cycle;
}
% School of Art and Design
\newcommand{\TAIKEN}[1]{%
\fill[color={#1}] (2.5000,2.2300)..controls(2.4714,2.5114)
and(2.4207,2.6794)..(2.3215,2.8386)..controls
(2.1165,3.1703)and(1.7241,3.3383)..(1.1685,3.3383)..controls(.3284,3.3383)and(-.1743,2.9565)..(-.1743,2.3172)..controls
(-.1743,2.0534)and(-.0772,1.8155)..(.0926,1.6715)..controls(.2425,1.5428)and(.4629,1.4490)..(.8179,1.3639)--
(1.4242,1.2155)..controls(1.6601,1.1566)and(1.7858,1.0409)..(1.7858,.8773)..controls(1.7858,.6504)and(1.5499,.5064)..
(1.1640,.5064)..controls(.7076,.5064)and(.4916,.6744)..(.4784,1.0518)--(-.2735,1.0518)..controls(-.2690,.3122)and
(.2535,-.1132)..(1.1530,-.1132)..controls(2.0194,-.1132)and(2.5484,.3079)..(2.5484,.9930)..controls(2.5484,1.2548)and
(2.4670,1.4686)..(2.2950,1.6214)..controls(2.1363,1.7697)and(1.9312,1.8591)..(1.5587,1.9486)--(.8840,2.1014)..controls
(.6790,2.1515)and(.5776,2.2430)..(.5776,2.3827)..controls(.5776,2.5900)and(.7936,2.7186)..(1.1486,2.7186)..controls
(1.5256,2.7186)and(1.7504,2.5550)..(1.7504,2.2845)--(1.7504,2.2300)--(2.5000,2.2300)--cycle
(5.2977,1.4926)..controls(5.2536,2.0621)and(4.8237,2.4176)..(4.1909,2.4176)..controls(3.4259,2.4176)and(2.9651,1.9377)..
(2.9651,1.1500)..controls(2.9651,.3821)and(3.4303,-.1023)..(4.1667,-.1023)..controls(4.8082,-.1023)and(5.2294,.2380)..
(5.3286,.8424)--(4.6385,.8773)..controls(4.5812,.5959)and(4.4423,.4671)..(4.1866,.4671)..controls(3.8559,.4671)and
(3.6816,.7137)..(3.6816,1.1697)..controls(3.6816,1.6061)and(3.8559,1.8505)..(4.1821,1.8505)..controls(4.4181,1.8505)and
(4.5812,1.7152)..(4.6231,1.4926)--(5.2977,1.4926)--cycle(6.5566,3.2641)--(5.8444,3.2641)--
(5.8444,-.0391)--(6.5566,-.0391)--(6.5566,1.3050)..controls(6.5566,1.5581)and(6.5698,1.6257)..(6.6514,1.7064)..controls
(6.7263,1.7850)and(6.8410,1.8308)..(6.9623,1.8308)..controls(7.0813,1.8308)and(7.1827,1.7850)..(7.2423,1.7064)..controls
(7.3062,1.6214)and(7.3216,1.5319)..(7.3216,1.3050)--(7.3216,-.0391)--(8.0338,-.0391)--(8.0338,1.4337)..controls
(8.0338,1.7959)and(7.9720,1.9988)..(7.8177,2.1668)..controls(7.6633,2.3281)and(7.4363,2.4219)..(7.1960,2.4219)..controls
(6.9468,2.4219)and(6.7551,2.3368)..(6.5566,2.1515)--(6.5566,3.2641)--cycle(9.8703,2.4176)..controls
(9.1207,2.4176)and(8.5893,1.8941)..(8.5893,1.1609)..controls(8.5893,.4170)and(9.1207,-.1023)..(9.8703,-.1023)..controls
(10.6177,-.1023)and(11.1578,.4170)..(11.1578,1.1414)..controls(11.1578,1.8985)and(10.6375,2.4176)..(9.8703,2.4176)
(9.8703,1.8591)..controls(10.2363,1.8591)and(10.4413,1.6061)..(10.4413,1.1457)..controls(10.4413,.7137)and(10.2318,.4562)..
(9.8703,.4562)..controls(9.5110,.4562)and(9.3059,.7137)..(9.3059,1.1609)..controls(9.3059,1.6017)and(9.5110,1.8591)..
(9.8703,1.8591)(12.8753,2.4176)..controls(12.1257,2.4176)and(11.5944,1.8941)..(11.5944,1.1609)..controls(11.5944,.4170)and
(12.1257,-.1023)..(12.8753,-.1023)..controls(13.6228,-.1023)and(14.1629,.4170)..(14.1629,1.1414)..controls(14.1629,1.8985)and
(13.6426,2.4176)..(12.8753,2.4176)(12.8753,1.8591)..controls(13.2413,1.8591)and(13.4464,1.6061)..
(13.4464,1.1457)..controls(13.4464,.7137)and(13.2369,.4562)..(12.8753,.4562)..controls
(12.5160,.4562)and(12.3110,.7137)..(12.3110,1.1609)..controls(12.3110,1.6017)and(12.5160,1.8591)..
(12.8753,1.8591)(15.4306,3.2641)--(14.7184,3.2641)--(14.7184,-.0391)--(15.4306,-.0391)--(15.4306,3.2641)--cycle
(18.1953,2.4176)..controls(17.4435,2.4176)and(16.9121,1.8941)..(16.9121,1.1609)..controls(16.9121,.4170)and(17.4435,-.1023)..
(18.1953,-.1023)..controls(18.9405,-.1023)and(19.4829,.4170)..(19.4829,1.1414)..controls(19.4829,1.8985)and(18.9625,2.4176)..
(18.1953,2.4176)(18.1953,1.8591)..controls(18.5613,1.8591)and(18.7664,1.6061)..(18.7664,1.1457)..
controls(18.7664,.7137)and(18.5569,.4562)..(18.1953,.4562)..controls(17.8338,.4562)and
(17.6287,.7137)..(17.6287,1.1609)..controls(17.6287,1.6017)and(17.8338,1.8591)..(18.1953,1.8591)
(21.2753,2.3238)--(20.8145,2.3238)--(20.8145,2.4918)..controls(20.8145,2.6292)and(20.9005,2.7056)..
(21.0659,2.7056)--(21.2753,2.7056)--(21.2753,3.2641)--(20.8851,3.2641)..controls(20.3582,3.2641)and(20.1046,3.0110)..