-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnew_all_majors_in_one.js
1804 lines (1779 loc) · 71.8 KB
/
new_all_majors_in_one.js
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
export const majors = [
{ "name": "Agricultural Science", "core": [
{ "name": "Agricultural Systems Analysis" },
{ "name": "Livestock Production Systems" },
{ "name": "Plant Pathology" },
{ "name": "Irrigation and Water Management" },
{ "name": "Soil Management" },
{ "name": "Managing Production Animal Health" },
{ "name": "Applications in Precision Agriculture" },
]},
{ "name": "Animal Health and Disease", "core": [
{ "name": "Animal Disease Biotechnology 1" },
{ "name": "Animal Disease Biotechnology 2" },
{ "name": "Production Animal Health" },
{ "name": "Health Disease in Wildlife Populations" },
]},
{ "name": "Animal Science and Management", "core": [
{ "name": "Animal Systems Analysis" },
{ "name": "Applied Animal Behaviour" },
{ "name": "Livestock Production Systems" },
{ "name": "Animal Disease Biotechnology 1" },
{ "name": "Animal Disease Biotechnology 2" },
{ "name": "Applied Animal Reproduction Genetics" },
{ "name": "Production Animal Physiology" },
{ "name": "Production Animal Health" },
{ "name": "Managing Production Animal Health" },
{ "name": "Applications in Precision Agriculture" },
]},
{ "name": "Biochemistry and Molecular Biology", "core": [
{ "name": "Protein Structure and Function" },
{ "name": "Functional Genomics and Bioinformatics" },
{ "name": "Molecular Aspects of Cell Biology" },
{ "name": "Cell Signalling and Neurochemistry" },
{ "name": "Cellular Metabolism and Disease" },
{ "name": "Biomedical Science Research Project" },
{ "name": "Medical Microbiology: Parasitology" },
]},
{ "name": "Bioengineering Systems", "core": [
{ "name": "Biosystems Design" },
{ "name": "Introduction to Biomaterials" },
{ "name": "Introduction to Biomaterials" },
]},
{ "name": "Biotechnology", "core": [
{ "name": "Trends Issues in Agrifood Biotech" },
{ "name": "Functional Foods" },
{ "name": "Functional Genomics and Bioinformatics" },
{ "name": "Biotechnology in Practice" },
{ "name": "Animal Disease Biotechnology 1" },
{ "name": "Animal Disease Biotechnology 2" },
{ "name": "Biotechnology in Practice" },
{ "name": "Protein Structure and Function" },
{ "name": "Advanced Techniques in Molecular Science" },
{ "name": "Functional Genomics and Bioinformatics" },
{ "name": "Biotechnology in Practice" },
{ "name": "Principles of Immunology" },
{ "name": "Medical Microbiology: Bacteriology" },
{ "name": "Techniques in Immunology" },
{ "name": "Techniques in Microbiology" },
{ "name": "Biotechnology in Practice" },
{ "name": "Drugs in Biomedical Experiments" },
{ "name": "Drug Treatment of Disease" },
{ "name": "Drugs Affecting the Nervous System" },
{ "name": "Drugs: From Discovery to Market" },
{ "name": "Biotechnology in Practice" },
{ "name": "Concepts in Cell Developmental Biology" },
{ "name": "Developmental Biology" },
{ "name": "Reproductive Physiology" },
{ "name": "Molecular Aspects of Cell Biology" },
{ "name": "Genes: Organisation and Function" },
{ "name": "Experimental Reproductive Physiology" },
{ "name": "Plant Molecular Biology Biotechnology" },
{ "name": "Stem Cells in Development Regeneration" },
{ "name": "Biotechnology in Practice" },
{ "name": "Genes: Organisation and Function" },
{ "name": "Evolutionary Genetics and Genomics" },
{ "name": "Genetic Analysis" },
{ "name": "Biotechnology in Practice" },
{ "name": "Reactivity and Mechanism" },
{ "name": "Analytical Environmental Chemistry" },
{ "name": "Specialised Topics in Chemistry " },
{ "name": "Specialised Topics in Chemistry " },
]},
{ "name": "Cell and Developmental Biology", "core": [
{ "name": "Concepts in Cell Developmental Biology" },
{ "name": "Functional Genomics and Bioinformatics" },
{ "name": "Cell Signalling and Neurochemistry" },
{ "name": "Experimental Reproductive Physiology" },
{ "name": "Biomedical Science Research Project" },
{ "name": "Genes: Organisation and Function" },
{ "name": "Principles of Immunology" },
{ "name": "Developmental Neurobiology" },
{ "name": "Neurophysiology: Neurons and Circuits" },
{ "name": "Mechanisms of Human Disease" },
]},
{ "name": "Chemical Systems", "core": [
{ "name": "Reactor Engineering" },
{ "name": "Heat and Mass Transport Processes" },
{ "name": "Safety and Sustainability Case Studies" },
{ "name": "Fluid Mechanics" },
]},
{ "name": "Chemistry", "core": [
{ "name": "Advanced Practical Chemistry" },
{ "name": "Reactivity and Mechanism" },
{ "name": "Specialised Topics in Chemistry " },
{ "name": "Specialised Topics in Chemistry " },
{ "name": "Analytical Environmental Chemistry" },
{ "name": "Calculus 1" },
{ "name": "Calculus 2" },
{ "name": "Linear Algebra" },
{ "name": "Physics 11: Fundamentals" },
{ "name": "Reactivity and Mechanism" },
{ "name": "Advanced Practical Chemistry" },
{ "name": "Drugs: From Discovery to Market" },
{ "name": "Drugs in Biomedical Experiments" },
{ "name": "Calculus 1" },
{ "name": "Calculus 2" },
{ "name": "Linear Algebra" },
{ "name": "Physics 11: Fundamentals" },
]},
{ "name": "Civil Systems", "core": [
{ "name": "Engineering Risk Analysis" },
{ "name": "Systems Modelling and Design" },
{ "name": "Structural Theory and Design" },
{ "name": "Fluid Mechanics" },
]},
{ "name": "Climate and Weather", "core": [
{ "name": "Dynamical Meteorology and Oceanography" },
{ "name": "Modern and Future Climate" },
{ "name": "Atmosphere Ocean Interaction" },
{ "name": "Atmospheric Processes and Composition" },
]},
{ "name": "Computational Biology", "core": [
{ "name": "Biological Modelling and Simulation" },
{ "name": "Case Studies In Computational Biology" },
{ "name": "Statistical Genomics" },
]},
{ "name": "Computing and Software Systems", "core": [
{ "name": "Software Modelling and Design" },
{ "name": "Computer Systems" },
{ "name": "IT Project" },
{ "name": "Models of Computation" },
]},
{ "name": "Data Science", "core": [
{ "name": "Machine Learning" },
{ "name": "Linear Statistical Models" },
{ "name": "Modern Applied Statistics" },
{ "name": "Applied Data Science" },
]},
{ "name": "Ecology and Evolutionary Biology", "core": [
{ "name": "Ecology in Changing Environments" },
]},
{ "name": "Ecosystem Science", "core": [
{ "name": "Landscape Ecosystem Project" },
{ "name": "Green Infrastructure Technologies" },
{ "name": "Urban Forest Ecosystems" },
{ "name": "Ecology of Urban Landscapes" },
{ "name": "Landscape Ecosystem Project" },
{ "name": "Forest Systems" },
{ "name": "Vegetation Management and Conservation" },
{ "name": "Field Botany" },
{ "name": "Applied Ecology" },
{ "name": "Environmental Risk Assessment" },
{ "name": "Urban Forest Ecosystems" },
{ "name": "Nature, Conservation and Society" },
]},
{ "name": "Electrical Systems", "core": [
{ "name": "Electrical Network Analysis and Design" },
{ "name": "Electrical Device Modelling" },
{ "name": "Signals and Systems" },
{ "name": "Electronic System Implementation" },
]},
{ "name": "Environmental Engineering Systems", "core": [
{ "name": "Fluid Mechanics" },
{ "name": "Biotransport Processes" },
{ "name": "Environmental Eng Systems Capstone" },
{ "name": "Systems Modelling and Design" },
]},
{ "name": "Environmental Science", "core": [
{ "name": "Environmental Risk Assessment" },
{ "name": "Problem Solving in Environmental Science" },
{ "name": "Vegetation Management and Conservation" },
{ "name": "Applied Ecology" },
{ "name": "Ecology in Changing Environments" },
{ "name": "Marine Ecosystems: Ecology Management" },
{ "name": "Green Infrastructure Technologies" },
{ "name": "Ecology of Urban Landscapes" },
{ "name": "Landscape Ecosystem Project" },
{ "name": "Forest Systems" },
{ "name": "Urban Forest Ecosystems" },
{ "name": "Riverine Landscapes: Hydrology Ecology" },
{ "name": "Biogeography and Ecology of Fire" },
{ "name": "Geobiology: Fossils Environments" },
{ "name": "Environmental Risk Assessment" },
{ "name": "Problem Solving in Environmental Science" },
{ "name": "Atmospheric Processes and Composition" },
{ "name": "Analytical Environmental Chemistry" },
{ "name": "Hydrogeology/Environmental Geochemistry" },
{ "name": "Landscape Ecosystem Project" },
{ "name": "Geomorphology: Catchment to Coast" },
{ "name": "Tectonics Geodynamics" },
{ "name": "Sedimentary Geology" },
{ "name": "Applied Geophysics" },
{ "name": "Geobiology: Fossils Environments" },
{ "name": "Imaging the Environment" },
{ "name": "The Disaster Resilient City" },
{ "name": "Environmental Risk Assessment" },
{ "name": "Problem Solving in Environmental Science" },
{ "name": "Dynamical Meteorology and Oceanography" },
{ "name": "Atmosphere Ocean Interaction" },
{ "name": "Ecology in Changing Environments" },
{ "name": "Global Climate Change in Context" },
{ "name": "Environmental Risk Assessment" },
{ "name": "Problem Solving in Environmental Science" },
{ "name": "Nature, Conservation and Society" },
{ "name": "Sustainable Development" },
]},
{ "name": "Food Science", "core": [
{ "name": "Advanced Food Analysis" },
{ "name": "Food Processing Preservation" },
{ "name": "Food Research Development" },
{ "name": "Functional Foods" },
]},
{ "name": "Forest Science", "core": [
]},
{ "name": "Genetics", "core": [
{ "name": "Evolutionary Genetics and Genomics" },
{ "name": "Genes: Organisation and Function" },
{ "name": "Genetic Analysis" },
{ "name": "Molecular Aspects of Cell Biology" },
{ "name": "Concepts in Cell Developmental Biology" },
{ "name": "Ecology in Changing Environments" },
{ "name": "Evolution and the Human Condition" },
{ "name": "Medical Microbiology: Bacteriology" },
{ "name": "Plant Evolution" },
{ "name": "Principles of Immunology" },
{ "name": "Protein Structure and Function" },
{ "name": "Human and Medical Genetics" },
{ "name": "Reproductive Physiology" },
{ "name": "Science Research Project" },
{ "name": "Science and Technology Internship" },
]},
{ "name": "Geography", "core": [
{ "name": "Global Climate Change in Context" },
{ "name": "Biogeography and Ecology of Fire" },
{ "name": "China Field Class" },
{ "name": "East Timor Field Class" },
{ "name": "Local Sites, Global Connections" },
{ "name": "Arid Australia Field Class" },
{ "name": "Geomorphology: Catchment to Coast" },
{ "name": "Sustainable Development" },
{ "name": "The Disaster Resilient City" },
{ "name": "Riverine Landscapes: Hydrology Ecology" },
{ "name": "Africa: Environment, Development, People" },
{ "name": "Spatial Modelling for Nature and People" },
]},
{ "name": "Geology", "core": [
{ "name": "Tectonics Geodynamics" },
{ "name": "Sedimentary Geology" },
{ "name": "Hydrogeology/Environmental Geochemistry" },
{ "name": "Geochemistry Petrogenesis" },
{ "name": "Applied Geophysics" },
{ "name": "Economic Geology" },
{ "name": "Advanced Field Geology" },
{ "name": "Science Research Project" },
{ "name": "Geobiology: Fossils Environments" },
]},
{ "name": "Human Nutrition", "core": [
{ "name": "Advanced Topics in Nutrition" },
{ "name": "Monitoring Food and Nutrition Intake" },
{ "name": "Lifestage Nutrition" },
{ "name": "Molecular Nutrition and Genomics" },
{ "name": "Cellular Metabolism and Disease" },
]},
{ "name": "Human Structure and Function", "core": [
{ "name": "Human Locomotor Systems" },
{ "name": "Viscera and Visceral Systems" },
{ "name": "Developmental Neurobiology" },
{ "name": "Developmental Biology" },
{ "name": "Visual Neuroscience" },
{ "name": "Mechanisms of Human Disease" },
{ "name": "Principles of Neuroscience" },
{ "name": "Neurophysiology: Neurons and Circuits" },
{ "name": "Techniques for Investigation of Disease" },
{ "name": "Biomedical Science Research Project" },
{ "name": "Advanced Human Physiology" },
{ "name": "Clinical and Translational Physiology" },
{ "name": "Physiology: Adapting to Challenges" },
]},
{ "name": "Immunology", "core": [
{ "name": "Principles of Immunology" },
{ "name": "Medical and Applied Immunology" },
{ "name": "Techniques in Immunology" },
{ "name": "Medical Microbiology: Bacteriology" },
{ "name": "Medical Microbiology: Virology" },
{ "name": "Protein Structure and Function" },
{ "name": "Functional Genomics and Bioinformatics" },
{ "name": "Molecular Aspects of Cell Biology" },
{ "name": "Cell Signalling and Neurochemistry" },
{ "name": "Genes: Organisation and Function" },
{ "name": "Concepts in Cell Developmental Biology" },
{ "name": "Mechanisms of Human Disease" },
{ "name": "Medical Microbiology: Parasitology" },
{ "name": "Principles of Neuroscience" },
{ "name": "Cellular Metabolism and Disease" },
{ "name": "Drug Treatment of Disease" },
]},
{ "name": "Infection and Immunity", "core": [
{ "name": "Principles of Immunology" },
{ "name": "Medical Microbiology: Bacteriology" },
{ "name": "Medical Microbiology: Virology" },
{ "name": "Medical Microbiology: Parasitology" },
]},
{ "name": "Informatics", "core": [
]},
{ "name": "Marine Biology", "core": [
{ "name": "Marine Botany" },
{ "name": "Marine Ecosystems: Ecology Management" },
{ "name": "Experimental Marine Biology" },
{ "name": "Analytical Environmental Chemistry" },
{ "name": "Applied Ecology" },
{ "name": "Ecology in Changing Environments" },
{ "name": "Geomorphology: Catchment to Coast" },
{ "name": "Imaging the Environment" },
]},
{ "name": "Mathematical Physics", "core": [
{ "name": "Quantum Physics" },
{ "name": "Complex Analysis" },
]},
{ "name": "Mathematics and Statistics", "core": [
{ "name": "Complex Analysis" },
{ "name": "Metric and Hilbert Spaces" },
{ "name": "Algebra" },
{ "name": "Graph Theory" },
{ "name": "Discrete Mathematics" },
{ "name": "Geometry" },
{ "name": "Complex Analysis" },
{ "name": "Numerical Methods Scientific Computing" },
{ "name": "Stochastic Modelling" },
{ "name": "Applied Mathematical Modelling" },
{ "name": "Methods of Mathematical Physics" },
{ "name": "Discrete Mathematics" },
{ "name": "Techniques in Operations Research" },
{ "name": "Complex Analysis" },
{ "name": "Stochastic Modelling" },
{ "name": "Graph Theory" },
{ "name": "Decision Making" },
{ "name": "Linear Statistical Models" },
{ "name": "Linear Statistical Models" },
{ "name": "Stochastic Modelling" },
{ "name": "Probability for Inference" },
{ "name": "Modern Applied Statistics" },
]},
{ "name": "Mechanical Systems", "core": [
{ "name": "Mechanics Materials" },
{ "name": "Thermodynamics and Fluid Mechanics" },
{ "name": "Mechanical Systems Design" },
{ "name": "Systems Modelling and Analysis" },
]},
{ "name": "Mechatronics Systems", "core": [
{ "name": "Analog and Digital Electronics Concepts" },
{ "name": "Numerical Algorithms in Engineering" },
{ "name": "Systems Modelling and Analysis" },
{ "name": "Mechanical Systems Design" },
]},
{ "name": "Microbiology", "core": [
{ "name": "Medical Microbiology: Bacteriology" },
{ "name": "Medical Microbiology: Virology" },
{ "name": "Medical Microbiology: Parasitology" },
{ "name": "Techniques in Microbiology" },
]},
{ "name": "Neuroscience", "core": [
{ "name": "Neurophysiology: Neurons and Circuits" },
{ "name": "Principles of Neuroscience" },
{ "name": "Developmental Neurobiology" },
{ "name": "Complex Functions in Neuroscience" },
{ "name": "Visual Neuroscience" },
{ "name": "Drugs Affecting the Nervous System" },
{ "name": "Cell Signalling and Neurochemistry" },
{ "name": "Biomedical Science Research Project" },
{ "name": "Real and Artificial Neural Networks" },
{ "name": "Auditory Neuroscience" },
]},
{ "name": "Pathology", "core": [
{ "name": "Mechanisms of Human Disease" },
{ "name": "Techniques for Investigation of Disease" },
{ "name": "Frontiers in Human Disease" },
{ "name": "Advanced Investigation of Human Disease" },
{ "name": "Biomedical Science Research Project" },
]},
{ "name": "Pharmacology", "core": [
{ "name": "Drugs in Biomedical Experiments" },
{ "name": "Drugs Affecting the Nervous System" },
{ "name": "Drug Treatment of Disease" },
{ "name": "Drugs: From Discovery to Market" },
]},
{ "name": "Physics", "core": [
{ "name": "Quantum Physics" },
{ "name": "Reactivity and Mechanism" },
{ "name": "Electrodynamics" },
{ "name": "Statistical Physics" },
{ "name": "Quantum Physics" },
{ "name": "Laboratory and Computational Physics 3" },
{ "name": "Statistical Physics" },
{ "name": "Electrodynamics" },
]},
{ "name": "Physiology", "core": [
{ "name": "Advanced Human Physiology" },
{ "name": "Human Locomotor Systems" },
{ "name": "Viscera and Visceral Systems" },
{ "name": "Reproductive Physiology" },
{ "name": "Neurophysiology: Neurons and Circuits" },
{ "name": "Principles of Neuroscience" },
{ "name": "Complex Functions in Neuroscience" },
{ "name": "Experimental Physiology" },
{ "name": "Biomedical Science Research Project" },
{ "name": "Mechanisms of Human Disease" },
{ "name": "Drug Treatment of Disease" },
{ "name": "Clinical and Translational Physiology" },
{ "name": "Physiology: Adapting to Challenges" },
]},
{ "name": "Plant Science", "core": [
{ "name": "Plant Evolution" },
{ "name": "Marine Botany" },
{ "name": "Vegetation Management and Conservation" },
{ "name": "Plant Molecular Biology Biotechnology" },
{ "name": "Field Botany" },
{ "name": "Science Research Project" },
{ "name": "Plant Pathology" },
{ "name": "Ecology in Changing Environments" },
{ "name": "Forest Systems" },
]},
{ "name": "Psychology", "core": [
{ "name": "The Unconscious Mind" },
{ "name": "Lifespan Social Emotional Development" },
{ "name": "Perception, Memory and Cognition" },
{ "name": "Neuroscience and the Mind" },
{ "name": "The Psychopathology of Everyday Life" },
{ "name": "Development of the Thinking Child" },
{ "name": "The Integrated Brain" },
{ "name": "Trends in Personality& Social Psychology" },
{ "name": "Research Methods for Human Inquiry" },
{ "name": "Psychological Science: Theory Practice" },
{ "name": "The Unconscious Mind" },
{ "name": "Lifespan Social Emotional Development" },
{ "name": "Perception, Memory and Cognition" },
{ "name": "Neuroscience and the Mind" },
{ "name": "The Psychopathology of Everyday Life" },
{ "name": "Development of the Thinking Child" },
{ "name": "The Integrated Brain" },
{ "name": "Trends in Personality& Social Psychology" },
]},
{ "name": "Spatial Systems", "core": [
{ "name": "Engineering Risk Analysis" },
{ "name": "Imaging the Environment" },
{ "name": "Integrated Spatial Systems" },
{ "name": "Land Administration Systems" },
]},
{ "name": "Veterinary BioSciences", "core": [
{ "name": "Veterinary Bioscience:Respiratory System" },
{ "name": "Veterinary Bioscience: Cells to Systems" },
{ "name": "Animal Production Systems 2" },
{ "name": "Introduction to Professional Practice" },
{ "name": "Animal Production Systems 1" },
{ "name": "Veterinary Bioscience: Cardiovasc System" },
{ "name": "Veterinary Bioscience: Digestive System" },
{ "name": "Veterinary Bioscience: Metabolism" },
]},
{ "name": "Zoology", "core": [
{ "name": "Experimental Reproductive Physiology" },
{ "name": "Experimental Animal Behaviour" },
{ "name": "Experimental Marine Biology" },
{ "name": "Tropical Field Ecology" },
{ "name": "Reproductive Physiology" },
{ "name": "Experimental Reproductive Physiology" },
{ "name": "Developmental Biology" },
{ "name": "Applied Ecology" },
{ "name": "Ecology in Changing Environments" },
{ "name": "Marine Ecosystems: Ecology Management" },
{ "name": "Evolutionary Genetics and Genomics" },
{ "name": "Science Research Project" },
{ "name": "Evolution and the Human Condition" },
{ "name": "Animal Behaviour" },
{ "name": "Experimental Animal Behaviour" },
{ "name": "Experimental Marine Biology" },
{ "name": "Tropical Field Ecology" },
]},
{ "name": "Accounting", "core": [
{ "name": "Accounting Reports and Analysis" },
{ "name": "Introductory Financial Accounting" },
{ "name": "Cost Management" },
{ "name": "Intermediate Financial Accounting" },
{ "name": "Accounting Information: Risks Controls" },
]},
{ "name": "Actuarial Studies", "core": [
{ "name": "Introductory Financial Mathematics" },
{ "name": "Stochastic Techniques in Insurance" },
{ "name": "Topics in Actuarial Studies" },
{ "name": "Actuarial Modelling " },
{ "name": "Actuarial Modelling II" },
{ "name": "Contingencies" },
{ "name": "Actuarial Statistics" },
{ "name": "Intermediate Financial Mathematics" },
{ "name": "Actuarial Modelling III" },
{ "name": "Actuarial Analytics and Data " },
]},
{ "name": "Economics", "core": [
]},
{ "name": "Finance", "core": [
{ "name": "Investments" },
{ "name": "Derivative Securities" },
{ "name": "Entrepreneurial Finance" },
{ "name": "Street Finance" },
{ "name": "Ethics in Finance" },
{ "name": "Algorithmic Trading" },
{ "name": "Essentials of Corporate Valuation" },
{ "name": "Foundations of FinTech" },
]},
{ "name": "Management", "core": [
{ "name": "Business Judgement" },
{ "name": "Managing Globally" },
{ "name": "Managing Entrepreneurship and Innovation" },
{ "name": "Managing Supply Chain Networks" },
{ "name": "Management Consulting" },
{ "name": "Managing for Competitive Advantage" },
{ "name": "Managing Work and Your Career" },
{ "name": "Global Management Consulting" },
{ "name": "The Future of Work" },
]},
{ "name": "Marketing", "core": [
{ "name": "Business Judgement" },
{ "name": "Service and Relationship Marketing" },
{ "name": "Retailing" },
{ "name": "Digital Marketing" },
{ "name": "Advertising and Promotions" },
{ "name": "Product Management" },
{ "name": "Business and Marketing Ethics" },
]},
{ "name": "Architecture", "core": [
{ "name": "Construction Design" },
{ "name": "Design Studio Delta" },
{ "name": "Design Studio Epsilon" },
{ "name": "Global Foundations of Design" },
{ "name": "Understanding the Built Environment" },
{ "name": "Foundations of Design: Representation" },
{ "name": "Construction as Alchemy" },
{ "name": "Design Studio Alpha" },
{ "name": "Economics and Cities" },
{ "name": "Introduction to Urban Planning" },
{ "name": "Principles of Building" },
{ "name": "Natural History" },
{ "name": "Design Studio Beta" },
{ "name": "Design Studio Gamma" },
{ "name": "Modern Architecture: MoMo to PoMo" },
{ "name": "Digital Design" },
{ "name": "Construction Analysis" },
{ "name": "Cities: From Local to Global" },
{ "name": "Environmental Building Systems" },
{ "name": "Design and Property Industry Studies" },
{ "name": "Construction of Residential Buildings" },
{ "name": "Construction of Concrete Buildings" },
{ "name": "Measurement of Building Designs" },
{ "name": "Finance for Built Environment" },
{ "name": "Design and Property Principles" },
{ "name": "Design and Property Industry Studies" },
{ "name": "Design Studio Delta" },
{ "name": "Design Studio Epsilon" },
{ "name": "Construction Design" },
{ "name": "Landscape Studio: Urban Open Space" },
{ "name": "Landscape Studio: Designed Ecologies" },
{ "name": "Construction Contract Administration" },
{ "name": "Industry Partner project Studio" },
{ "name": "Steel and Concrete Structural Systems" },
{ "name": "Construction Management" },
{ "name": "Planning Scenario and Policy Workshop" },
{ "name": "Urban Precinct Studio" },
{ "name": "Property Case Studies" },
{ "name": "Valuation of Land and Buildings" },
{ "name": "Sustainable Management of Design Assets" },
{ "name": "Design and Property Studio" },
{ "name": "Cities Past and Future" },
{ "name": "Designing Living Systems" },
{ "name": "Urban Design for People and Places" },
{ "name": "Calculus 1" },
{ "name": "Calculus 2" },
{ "name": "Linear Algebra" },
{ "name": "Engineering Mathematics" },
{ "name": "Physics 1" },
{ "name": "Foundations of Algorithms" },
{ "name": "Media Computation" },
{ "name": "Fundamentals of Interaction Design" },
{ "name": "Statics" },
{ "name": "Engineering Mechanics" },
{ "name": "Earth Processes for Engineering" },
{ "name": "Engineering Materials" },
{ "name": "Foundations of Electrical Networks" },
{ "name": "Applications of GIS" },
{ "name": "Surveying and Mapping" },
{ "name": "Database Systems" },
{ "name": "Design of Algorithms" },
{ "name": "Elements of Data Processing" },
{ "name": "Engineering Computation" },
{ "name": "Engineering Risk Analysis" },
{ "name": "Structural Theory and Design" },
{ "name": "Systems Modelling and Design" },
{ "name": "Fluid Mechanics" },
{ "name": "Mechanics Materials" },
{ "name": "Thermodynamics and Fluid Mechanics" },
{ "name": "Mechanical Design" },
{ "name": "Imaging the Environment" },
{ "name": "Land Administration Systems" },
{ "name": "Integrated Spatial Systems" },
{ "name": "Web Information Technologies" },
{ "name": "Graphics and Interaction" },
{ "name": "Computer Systems" },
{ "name": "IT Project" },
{ "name": "Engineering Mathematics" },
{ "name": "Usability Evaluation Methods" },
{ "name": "Interactive Technology Project" },
{ "name": "Mapping Environments" },
{ "name": "Game Design" },
{ "name": "Critical and Theoretical Studies 1" },
{ "name": "Critical and Theoretical Studies 2" },
{ "name": "Critical and Theoretical Studies 3" },
{ "name": "Graphic Design Studio 11: Image Text" },
{ "name": "Graphic Design Studio 22: Image Media" },
{ "name": "Colour Studio" },
{ "name": "Photomedia Studio" },
{ "name": "The Power of Text and Image" },
{ "name": "Graphic Design Studio 3" },
{ "name": "Sound in Performance" },
{ "name": "The Figure in Performance" },
{ "name": "Light Studio" },
{ "name": "Light in Performance" },
{ "name": "Space Studio" },
{ "name": "Space in Performance" },
{ "name": "Performance Design Studio" },
{ "name": "Principles of Marketing" },
{ "name": "Principles of Business Law" },
]},
{ "name": "Civil Systems", "core": [
{ "name": "Engineering Risk Analysis" },
{ "name": "Systems Modelling and Design" },
{ "name": "Structural Theory and Design" },
{ "name": "Fluid Mechanics" },
]},
{ "name": "Computing", "core": [
{ "name": "Web Information Technologies" },
{ "name": "Computer Systems" },
{ "name": "IT Project" },
{ "name": "Graphics and Interaction" },
{ "name": "Global Foundations of Design" },
{ "name": "Understanding the Built Environment" },
{ "name": "Foundations of Design: Representation" },
{ "name": "Construction as Alchemy" },
{ "name": "Design Studio Alpha" },
{ "name": "Economics and Cities" },
{ "name": "Introduction to Urban Planning" },
{ "name": "Principles of Building" },
{ "name": "Natural History" },
{ "name": "Design Studio Beta" },
{ "name": "Design Studio Gamma" },
{ "name": "Modern Architecture: MoMo to PoMo" },
{ "name": "Digital Design" },
{ "name": "Construction Analysis" },
{ "name": "Cities: From Local to Global" },
{ "name": "Environmental Building Systems" },
{ "name": "Design and Property Industry Studies" },
{ "name": "Construction of Residential Buildings" },
{ "name": "Construction of Concrete Buildings" },
{ "name": "Measurement of Building Designs" },
{ "name": "Finance for Built Environment" },
{ "name": "Design and Property Principles" },
{ "name": "Design and Property Industry Studies" },
{ "name": "Design Studio Delta" },
{ "name": "Design Studio Epsilon" },
{ "name": "Construction Design" },
{ "name": "Landscape Studio: Urban Open Space" },
{ "name": "Landscape Studio: Designed Ecologies" },
{ "name": "Construction Contract Administration" },
{ "name": "Industry Partner project Studio" },
{ "name": "Steel and Concrete Structural Systems" },
{ "name": "Construction Management" },
{ "name": "Planning Scenario and Policy Workshop" },
{ "name": "Urban Precinct Studio" },
{ "name": "Property Case Studies" },
{ "name": "Valuation of Land and Buildings" },
{ "name": "Sustainable Management of Design Assets" },
{ "name": "Design and Property Studio" },
{ "name": "Cities Past and Future" },
{ "name": "Designing Living Systems" },
{ "name": "Urban Design for People and Places" },
{ "name": "Calculus 1" },
{ "name": "Calculus 2" },
{ "name": "Linear Algebra" },
{ "name": "Engineering Mathematics" },
{ "name": "Physics 1" },
{ "name": "Foundations of Algorithms" },
{ "name": "Media Computation" },
{ "name": "Fundamentals of Interaction Design" },
{ "name": "Statics" },
{ "name": "Engineering Mechanics" },
{ "name": "Earth Processes for Engineering" },
{ "name": "Engineering Materials" },
{ "name": "Foundations of Electrical Networks" },
{ "name": "Applications of GIS" },
{ "name": "Surveying and Mapping" },
{ "name": "Database Systems" },
{ "name": "Design of Algorithms" },
{ "name": "Elements of Data Processing" },
{ "name": "Engineering Computation" },
{ "name": "Engineering Risk Analysis" },
{ "name": "Structural Theory and Design" },
{ "name": "Systems Modelling and Design" },
{ "name": "Fluid Mechanics" },
{ "name": "Mechanics Materials" },
{ "name": "Thermodynamics and Fluid Mechanics" },
{ "name": "Mechanical Design" },
{ "name": "Imaging the Environment" },
{ "name": "Land Administration Systems" },
{ "name": "Integrated Spatial Systems" },
{ "name": "Web Information Technologies" },
{ "name": "Graphics and Interaction" },
{ "name": "Computer Systems" },
{ "name": "IT Project" },
{ "name": "Engineering Mathematics" },
{ "name": "Usability Evaluation Methods" },
{ "name": "Interactive Technology Project" },
{ "name": "Mapping Environments" },
{ "name": "Game Design" },
{ "name": "Critical and Theoretical Studies 1" },
{ "name": "Critical and Theoretical Studies 2" },
{ "name": "Critical and Theoretical Studies 3" },
{ "name": "Graphic Design Studio 11: Image Text" },
{ "name": "Graphic Design Studio 22: Image Media" },
{ "name": "Colour Studio" },
{ "name": "Photomedia Studio" },
{ "name": "The Power of Text and Image" },
{ "name": "Graphic Design Studio 3" },
{ "name": "Sound in Performance" },
{ "name": "The Figure in Performance" },
{ "name": "Light Studio" },
{ "name": "Light in Performance" },
{ "name": "Space Studio" },
{ "name": "Space in Performance" },
{ "name": "Performance Design Studio" },
{ "name": "Principles of Marketing" },
{ "name": "Principles of Business Law" },
]},
{ "name": "Construction", "core": [
{ "name": "Construction Management" },
{ "name": "Steel and Concrete Structural Systems" },
{ "name": "Construction Contract Administration" },
{ "name": "Industry Partner project Studio" },
{ "name": "Global Foundations of Design" },
{ "name": "Understanding the Built Environment" },
{ "name": "Foundations of Design: Representation" },
{ "name": "Construction as Alchemy" },
{ "name": "Design Studio Alpha" },
{ "name": "Economics and Cities" },
{ "name": "Introduction to Urban Planning" },
{ "name": "Principles of Building" },
{ "name": "Natural History" },
{ "name": "Design Studio Beta" },
{ "name": "Design Studio Gamma" },
{ "name": "Modern Architecture: MoMo to PoMo" },
{ "name": "Digital Design" },
{ "name": "Construction Analysis" },
{ "name": "Cities: From Local to Global" },
{ "name": "Environmental Building Systems" },
{ "name": "Design and Property Industry Studies" },
{ "name": "Construction of Residential Buildings" },
{ "name": "Construction of Concrete Buildings" },
{ "name": "Measurement of Building Designs" },
{ "name": "Finance for Built Environment" },
{ "name": "Design and Property Principles" },
{ "name": "Design and Property Industry Studies" },
{ "name": "Design Studio Delta" },
{ "name": "Design Studio Epsilon" },
{ "name": "Construction Design" },
{ "name": "Landscape Studio: Urban Open Space" },
{ "name": "Landscape Studio: Designed Ecologies" },
{ "name": "Construction Contract Administration" },
{ "name": "Industry Partner project Studio" },
{ "name": "Steel and Concrete Structural Systems" },
{ "name": "Construction Management" },
{ "name": "Planning Scenario and Policy Workshop" },
{ "name": "Urban Precinct Studio" },
{ "name": "Property Case Studies" },
{ "name": "Valuation of Land and Buildings" },
{ "name": "Sustainable Management of Design Assets" },
{ "name": "Design and Property Studio" },
{ "name": "Cities Past and Future" },
{ "name": "Designing Living Systems" },
{ "name": "Urban Design for People and Places" },
{ "name": "Calculus 1" },
{ "name": "Calculus 2" },
{ "name": "Linear Algebra" },
{ "name": "Engineering Mathematics" },
{ "name": "Physics 1" },
{ "name": "Foundations of Algorithms" },
{ "name": "Media Computation" },
{ "name": "Fundamentals of Interaction Design" },
{ "name": "Statics" },
{ "name": "Engineering Mechanics" },
{ "name": "Earth Processes for Engineering" },
{ "name": "Engineering Materials" },
{ "name": "Foundations of Electrical Networks" },
{ "name": "Applications of GIS" },
{ "name": "Surveying and Mapping" },
{ "name": "Database Systems" },
{ "name": "Design of Algorithms" },
{ "name": "Elements of Data Processing" },
{ "name": "Engineering Computation" },
{ "name": "Engineering Risk Analysis" },
{ "name": "Structural Theory and Design" },
{ "name": "Systems Modelling and Design" },
{ "name": "Fluid Mechanics" },
{ "name": "Mechanics Materials" },
{ "name": "Thermodynamics and Fluid Mechanics" },
{ "name": "Mechanical Design" },
{ "name": "Imaging the Environment" },
{ "name": "Land Administration Systems" },
{ "name": "Integrated Spatial Systems" },
{ "name": "Web Information Technologies" },
{ "name": "Graphics and Interaction" },
{ "name": "Computer Systems" },
{ "name": "IT Project" },
{ "name": "Engineering Mathematics" },
{ "name": "Usability Evaluation Methods" },
{ "name": "Interactive Technology Project" },
{ "name": "Mapping Environments" },
{ "name": "Game Design" },
{ "name": "Critical and Theoretical Studies 1" },
{ "name": "Critical and Theoretical Studies 2" },
{ "name": "Critical and Theoretical Studies 3" },
{ "name": "Graphic Design Studio 11: Image Text" },
{ "name": "Graphic Design Studio 22: Image Media" },
{ "name": "Colour Studio" },
{ "name": "Photomedia Studio" },
{ "name": "The Power of Text and Image" },
{ "name": "Graphic Design Studio 3" },
{ "name": "Sound in Performance" },
{ "name": "The Figure in Performance" },
{ "name": "Light Studio" },
{ "name": "Light in Performance" },
{ "name": "Space Studio" },
{ "name": "Space in Performance" },
{ "name": "Performance Design Studio" },
{ "name": "Principles of Marketing" },
{ "name": "Principles of Business Law" },
]},
{ "name": "Digital Technologies", "core": [
{ "name": "Web Information Technologies" },
{ "name": "Game Design" },
{ "name": "Interactive Technology Project" },
{ "name": "Global Foundations of Design" },
{ "name": "Understanding the Built Environment" },
{ "name": "Foundations of Design: Representation" },
{ "name": "Construction as Alchemy" },
{ "name": "Design Studio Alpha" },
{ "name": "Economics and Cities" },
{ "name": "Introduction to Urban Planning" },
{ "name": "Principles of Building" },
{ "name": "Natural History" },
{ "name": "Design Studio Beta" },
{ "name": "Design Studio Gamma" },
{ "name": "Modern Architecture: MoMo to PoMo" },
{ "name": "Digital Design" },
{ "name": "Construction Analysis" },
{ "name": "Cities: From Local to Global" },
{ "name": "Environmental Building Systems" },
{ "name": "Design and Property Industry Studies" },
{ "name": "Construction of Residential Buildings" },
{ "name": "Construction of Concrete Buildings" },
{ "name": "Measurement of Building Designs" },
{ "name": "Finance for Built Environment" },
{ "name": "Design and Property Principles" },
{ "name": "Design and Property Industry Studies" },
{ "name": "Design Studio Delta" },
{ "name": "Design Studio Epsilon" },
{ "name": "Construction Design" },
{ "name": "Landscape Studio: Urban Open Space" },
{ "name": "Landscape Studio: Designed Ecologies" },
{ "name": "Construction Contract Administration" },
{ "name": "Industry Partner project Studio" },
{ "name": "Steel and Concrete Structural Systems" },
{ "name": "Construction Management" },
{ "name": "Planning Scenario and Policy Workshop" },
{ "name": "Urban Precinct Studio" },
{ "name": "Property Case Studies" },
{ "name": "Valuation of Land and Buildings" },
{ "name": "Sustainable Management of Design Assets" },
{ "name": "Design and Property Studio" },
{ "name": "Cities Past and Future" },
{ "name": "Designing Living Systems" },
{ "name": "Urban Design for People and Places" },
{ "name": "Calculus 1" },
{ "name": "Calculus 2" },
{ "name": "Linear Algebra" },
{ "name": "Engineering Mathematics" },
{ "name": "Physics 1" },
{ "name": "Foundations of Algorithms" },
{ "name": "Media Computation" },
{ "name": "Fundamentals of Interaction Design" },
{ "name": "Statics" },
{ "name": "Engineering Mechanics" },
{ "name": "Earth Processes for Engineering" },
{ "name": "Engineering Materials" },
{ "name": "Foundations of Electrical Networks" },
{ "name": "Applications of GIS" },
{ "name": "Surveying and Mapping" },
{ "name": "Database Systems" },
{ "name": "Design of Algorithms" },
{ "name": "Elements of Data Processing" },
{ "name": "Engineering Computation" },
{ "name": "Engineering Risk Analysis" },
{ "name": "Structural Theory and Design" },
{ "name": "Systems Modelling and Design" },
{ "name": "Fluid Mechanics" },
{ "name": "Mechanics Materials" },
{ "name": "Thermodynamics and Fluid Mechanics" },
{ "name": "Mechanical Design" },
{ "name": "Imaging the Environment" },
{ "name": "Land Administration Systems" },
{ "name": "Integrated Spatial Systems" },
{ "name": "Web Information Technologies" },
{ "name": "Graphics and Interaction" },
{ "name": "Computer Systems" },
{ "name": "IT Project" },
{ "name": "Engineering Mathematics" },
{ "name": "Usability Evaluation Methods" },
{ "name": "Interactive Technology Project" },
{ "name": "Mapping Environments" },
{ "name": "Game Design" },
{ "name": "Critical and Theoretical Studies 1" },
{ "name": "Critical and Theoretical Studies 2" },
{ "name": "Critical and Theoretical Studies 3" },
{ "name": "Graphic Design Studio 11: Image Text" },
{ "name": "Graphic Design Studio 22: Image Media" },
{ "name": "Colour Studio" },
{ "name": "Photomedia Studio" },
{ "name": "The Power of Text and Image" },
{ "name": "Graphic Design Studio 3" },
{ "name": "Sound in Performance" },
{ "name": "The Figure in Performance" },
{ "name": "Light Studio" },
{ "name": "Light in Performance" },
{ "name": "Space Studio" },
{ "name": "Space in Performance" },
{ "name": "Performance Design Studio" },
{ "name": "Principles of Marketing" },
{ "name": "Principles of Business Law" },
]},
{ "name": "Graphic Design", "core": [
{ "name": "Infographics Studio" },
{ "name": "Branding" },
{ "name": "Graphic Design Studio 3" },
{ "name": "Global Foundations of Design" },
{ "name": "Understanding the Built Environment" },
{ "name": "Foundations of Design: Representation" },
{ "name": "Construction as Alchemy" },
{ "name": "Design Studio Alpha" },
{ "name": "Economics and Cities" },
{ "name": "Introduction to Urban Planning" },
{ "name": "Principles of Building" },
{ "name": "Natural History" },
{ "name": "Design Studio Beta" },
{ "name": "Design Studio Gamma" },
{ "name": "Modern Architecture: MoMo to PoMo" },
{ "name": "Digital Design" },
{ "name": "Construction Analysis" },
{ "name": "Cities: From Local to Global" },
{ "name": "Environmental Building Systems" },
{ "name": "Design and Property Industry Studies" },
{ "name": "Construction of Residential Buildings" },
{ "name": "Construction of Concrete Buildings" },
{ "name": "Measurement of Building Designs" },
{ "name": "Finance for Built Environment" },
{ "name": "Design and Property Principles" },
{ "name": "Design and Property Industry Studies" },
{ "name": "Design Studio Delta" },
{ "name": "Design Studio Epsilon" },
{ "name": "Construction Design" },
{ "name": "Landscape Studio: Urban Open Space" },
{ "name": "Landscape Studio: Designed Ecologies" },
{ "name": "Construction Contract Administration" },
{ "name": "Industry Partner project Studio" },
{ "name": "Steel and Concrete Structural Systems" },