bolognese 1.6 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +10 -7
- data/lib/bolognese/readers/citeproc_reader.rb +4 -2
- data/lib/bolognese/readers/codemeta_reader.rb +4 -2
- data/lib/bolognese/readers/datacite_reader.rb +18 -13
- data/lib/bolognese/readers/ris_reader.rb +4 -2
- data/lib/bolognese/readers/schema_org_reader.rb +7 -2
- data/lib/bolognese/utils.rb +95 -0
- data/lib/bolognese/version.rb +1 -1
- data/resources/oecd/for-mappings.json +1101 -0
- data/resources/oecd/fos-mappings.json +198 -0
- data/spec/fixtures/datacite-funderIdentifier.xml +4 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/hsh_to_fos_for_match.yml +44 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/hsh_to_fos_match.yml +44 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/hsh_to_fos_no_match.yml +44 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/name_to_fos_for_match.yml +44 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/name_to_fos_match.yml +44 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/name_to_fos_no_match.yml +44 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/even_more_subject_scheme_FOR.yml +97 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/more_subject_scheme_FOR.yml +107 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/subject_scheme_FOR.yml +110 -0
- data/spec/readers/datacite_reader_spec.rb +101 -1
- data/spec/readers/schema_org_reader_spec.rb +15 -1
- data/spec/utils_spec.rb +50 -0
- data/spec/writers/datacite_writer_spec.rb +8 -0
- data/spec/writers/schema_org_writer_spec.rb +2 -0
- metadata +13 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49f153c7bf6a7dd69a2cf35844b9fe303574ebeb6f515a00581cea60955dc6d6
|
|
4
|
+
data.tar.gz: ebc11d65b789fb08e97dafa25c2e9e0b2ddfb6085011478498f2e619ebdd605c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d30e6e90b55e93bf4febdef8cf5fe3aa17e1821e2ee317f521957cdee0e811f8f94ed07f929b974ea967a8e5e4b7f0c8e7c08f47bc9bee681e72702f263ac80e
|
|
7
|
+
data.tar.gz: e30113a9e7ceddb8772a8e26310c7bc9ecdb349c93a33596c4d2ff0167c12650631e7dee7860c32a2e4dd8323453ed6acd7315c292060aef5a03954fbca61682
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
bolognese (1.6)
|
|
4
|
+
bolognese (1.6.2)
|
|
5
5
|
activesupport (>= 4.2.5)
|
|
6
6
|
benchmark_methods (~> 0.7)
|
|
7
7
|
bibtex-ruby (>= 5.1.0)
|
|
@@ -30,7 +30,7 @@ PATH
|
|
|
30
30
|
GEM
|
|
31
31
|
remote: https://rubygems.org/
|
|
32
32
|
specs:
|
|
33
|
-
activesupport (6.0.3)
|
|
33
|
+
activesupport (6.0.3.1)
|
|
34
34
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
35
35
|
i18n (>= 0.7, < 2)
|
|
36
36
|
minitest (~> 5.1)
|
|
@@ -123,25 +123,28 @@ GEM
|
|
|
123
123
|
rack-test (0.8.3)
|
|
124
124
|
rack (>= 1.0, < 3)
|
|
125
125
|
rake (12.3.3)
|
|
126
|
-
rdf (3.1.
|
|
126
|
+
rdf (3.1.2)
|
|
127
127
|
hamster (~> 3.0)
|
|
128
128
|
link_header (~> 0.0, >= 0.0.8)
|
|
129
129
|
rdf-aggregate-repo (3.1.0)
|
|
130
130
|
rdf (~> 3.1)
|
|
131
|
-
rdf-rdfa (3.1.
|
|
131
|
+
rdf-rdfa (3.1.1)
|
|
132
132
|
haml (~> 5.1)
|
|
133
133
|
htmlentities (~> 4.3)
|
|
134
|
-
rdf (~> 3.1)
|
|
134
|
+
rdf (~> 3.1, >= 3.1.2)
|
|
135
135
|
rdf-aggregate-repo (~> 3.1)
|
|
136
|
+
rdf-vocab (~> 3.1, >= 3.1.5)
|
|
136
137
|
rdf-xsd (~> 3.1)
|
|
137
138
|
rdf-rdfxml (3.1.0)
|
|
138
139
|
htmlentities (~> 4.3)
|
|
139
140
|
rdf (~> 3.1)
|
|
140
141
|
rdf-rdfa (~> 3.1)
|
|
141
142
|
rdf-xsd (~> 3.1)
|
|
142
|
-
rdf-turtle (3.1.
|
|
143
|
+
rdf-turtle (3.1.1)
|
|
143
144
|
ebnf (~> 1.2)
|
|
144
|
-
rdf (~> 3.1)
|
|
145
|
+
rdf (~> 3.1, >= 3.1.2)
|
|
146
|
+
rdf-vocab (3.1.5)
|
|
147
|
+
rdf (~> 3.1, >= 3.1.2)
|
|
145
148
|
rdf-xsd (3.1.0)
|
|
146
149
|
rdf (~> 3.1)
|
|
147
150
|
rspec (3.9.0)
|
|
@@ -100,8 +100,10 @@ module Bolognese
|
|
|
100
100
|
doi = Array.wrap(identifiers).find { |r| r["identifierType"] == "DOI" }.to_h.fetch("identifier", nil)
|
|
101
101
|
|
|
102
102
|
state = id.present? || read_options.present? ? "findable" : "not_found"
|
|
103
|
-
subjects = Array.wrap(meta.fetch("categories", nil)).
|
|
104
|
-
|
|
103
|
+
subjects = Array.wrap(meta.fetch("categories", nil)).reduce([]) do |sum, subject|
|
|
104
|
+
sum += name_to_fos(subject)
|
|
105
|
+
|
|
106
|
+
sum
|
|
105
107
|
end
|
|
106
108
|
|
|
107
109
|
{ "id" => id,
|
|
@@ -57,8 +57,10 @@ module Bolognese
|
|
|
57
57
|
"bibtex" => Bolognese::Utils::SO_TO_BIB_TRANSLATIONS[schema_org] || "misc",
|
|
58
58
|
"ris" => Bolognese::Utils::SO_TO_RIS_TRANSLATIONS[schema_org] || "GEN"
|
|
59
59
|
}.compact
|
|
60
|
-
subjects = Array.wrap(meta.fetch("tags", nil)).
|
|
61
|
-
|
|
60
|
+
subjects = Array.wrap(meta.fetch("tags", nil)).reduce([]) do |sum, subject|
|
|
61
|
+
sum += name_to_fos(subject)
|
|
62
|
+
|
|
63
|
+
sum
|
|
62
64
|
end
|
|
63
65
|
|
|
64
66
|
has_title = meta.fetch("title", nil)
|
|
@@ -93,7 +93,7 @@ module Bolognese
|
|
|
93
93
|
"bibtex" => Bolognese::Utils::CR_TO_BIB_TRANSLATIONS[resource_type.to_s.underscore.camelcase] || Bolognese::Utils::SO_TO_BIB_TRANSLATIONS[schema_org] || "misc",
|
|
94
94
|
"ris" => Bolognese::Utils::CR_TO_RIS_TRANSLATIONS[resource_type.to_s.underscore.camelcase] || Bolognese::Utils::DC_TO_RIS_TRANSLATIONS[resource_type_general.to_s.dasherize] || "GEN"
|
|
95
95
|
}.compact
|
|
96
|
-
|
|
96
|
+
|
|
97
97
|
titles = Array.wrap(meta.dig("titles", "title")).map do |r|
|
|
98
98
|
if r.blank?
|
|
99
99
|
nil
|
|
@@ -122,15 +122,17 @@ module Bolognese
|
|
|
122
122
|
{ "rights" => r["__content__"], "rightsUri" => normalize_url(r["rightsURI"]), "lang" => r["lang"] }.compact
|
|
123
123
|
end
|
|
124
124
|
end.compact
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
{ "subject" => sanitize(k["__content__"]), "subjectScheme" => k["subjectScheme"], "schemeUri" => k["schemeURI"], "valueUri" => k["valueURI"], "lang" => k["lang"] }.compact
|
|
125
|
+
|
|
126
|
+
subjects = Array.wrap(meta.dig("subjects", "subject")).reduce([]) do |sum, subject|
|
|
127
|
+
if subject.is_a?(String)
|
|
128
|
+
sum += name_to_fos(subject)
|
|
129
|
+
elsif subject.is_a?(Hash)
|
|
130
|
+
sum += hsh_to_fos(subject)
|
|
132
131
|
end
|
|
133
|
-
|
|
132
|
+
|
|
133
|
+
sum
|
|
134
|
+
end.uniq
|
|
135
|
+
|
|
134
136
|
dates = Array.wrap(meta.dig("dates", "date")).map do |r|
|
|
135
137
|
if r.is_a?(Hash) && date = sanitize(r["__content__"]).presence
|
|
136
138
|
if Date.edtf(date).present? || Bolognese::Utils::UNKNOWN_INFORMATION.key?(date)
|
|
@@ -164,12 +166,15 @@ module Bolognese
|
|
|
164
166
|
funding_references = Array.wrap(meta.dig("fundingReferences", "fundingReference")).compact.map do |fr|
|
|
165
167
|
scheme_uri = parse_attributes(fr["funderIdentifier"], content: "schemeURI")
|
|
166
168
|
funder_identifier = parse_attributes(fr["funderIdentifier"])
|
|
167
|
-
|
|
168
|
-
|
|
169
|
+
funder_identifier_type = parse_attributes(fr["funderIdentifier"], content: "funderIdentifierType")
|
|
170
|
+
if funder_identifier_type != "Other"
|
|
171
|
+
funder_identifier = !funder_identifier.to_s.start_with?("https://","http://") && scheme_uri.present? ? normalize_id(scheme_uri + funder_identifier) : normalize_id(funder_identifier)
|
|
172
|
+
end
|
|
173
|
+
|
|
169
174
|
{
|
|
170
175
|
"funderName" => fr["funderName"],
|
|
171
176
|
"funderIdentifier" => funder_identifier,
|
|
172
|
-
"funderIdentifierType" =>
|
|
177
|
+
"funderIdentifierType" => funder_identifier_type,
|
|
173
178
|
"awardNumber" => parse_attributes(fr["awardNumber"]),
|
|
174
179
|
"awardUri" => parse_attributes(fr["awardNumber"], content: "awardURI"),
|
|
175
180
|
"awardTitle" => fr["awardTitle"] }.compact
|
|
@@ -181,7 +186,7 @@ module Bolognese
|
|
|
181
186
|
rid = ri["__content__"]
|
|
182
187
|
end
|
|
183
188
|
|
|
184
|
-
{
|
|
189
|
+
{
|
|
185
190
|
"relatedIdentifier" => rid,
|
|
186
191
|
"relatedIdentifierType" => ri["relatedIdentifierType"],
|
|
187
192
|
"relationType" => ri["relationType"],
|
|
@@ -82,8 +82,10 @@ module Bolognese
|
|
|
82
82
|
nil
|
|
83
83
|
end
|
|
84
84
|
state = meta.fetch("DO", nil).present? || read_options.present? ? "findable" : "not_found"
|
|
85
|
-
subjects = Array.wrap(meta.fetch("KW", nil)).
|
|
86
|
-
|
|
85
|
+
subjects = Array.wrap(meta.fetch("KW", nil)).reduce([]) do |sum, subject|
|
|
86
|
+
sum += name_to_fos(subject)
|
|
87
|
+
|
|
88
|
+
sum
|
|
87
89
|
end
|
|
88
90
|
|
|
89
91
|
{ "id" => id,
|
|
@@ -150,8 +150,13 @@ module Bolognese
|
|
|
150
150
|
"geoLocationBox" => geo_location_box
|
|
151
151
|
}.compact
|
|
152
152
|
end
|
|
153
|
-
|
|
154
|
-
|
|
153
|
+
|
|
154
|
+
# handle keywords as array and as comma-separated string
|
|
155
|
+
subjects = meta.fetch("keywords", nil)
|
|
156
|
+
subjects = subjects.to_s.split(", ") if subjects.is_a?(String)
|
|
157
|
+
subjects = Array.wrap(subjects).reduce([]) do |sum, subject|
|
|
158
|
+
sum += name_to_fos(subject)
|
|
159
|
+
sum
|
|
155
160
|
end
|
|
156
161
|
|
|
157
162
|
{ "id" => id,
|
data/lib/bolognese/utils.rb
CHANGED
|
@@ -1056,5 +1056,100 @@ module Bolognese
|
|
|
1056
1056
|
error_array
|
|
1057
1057
|
end
|
|
1058
1058
|
|
|
1059
|
+
def name_to_fos(name)
|
|
1060
|
+
# first find subject in Fields of Science (OECD)
|
|
1061
|
+
fos = JSON.load(File.read(File.expand_path('../../../resources/oecd/fos-mappings.json', __FILE__))).fetch("fosFields")
|
|
1062
|
+
|
|
1063
|
+
subject = fos.find { |l| l["fosLabel"] == name || "FOS: " + l["fosLabel"] == name }
|
|
1064
|
+
|
|
1065
|
+
if subject
|
|
1066
|
+
return [{
|
|
1067
|
+
"subject" => sanitize(name) },
|
|
1068
|
+
{
|
|
1069
|
+
"subject" => "FOS: " + subject["fosLabel"],
|
|
1070
|
+
"subjectScheme" => "Fields of Science and Technology (FOS)",
|
|
1071
|
+
"schemeUri" => "http://www.oecd.org/science/inno/38235147.pdf"
|
|
1072
|
+
}]
|
|
1073
|
+
end
|
|
1074
|
+
|
|
1075
|
+
# if not found, look in Fields of Research (Australian and New Zealand Standard Research Classification)
|
|
1076
|
+
# and map to Fields of Science. Add an extra entry for the latter
|
|
1077
|
+
fores = JSON.load(File.read(File.expand_path('../../../resources/oecd/for-mappings.json', __FILE__)))
|
|
1078
|
+
for_fields = fores.fetch("forFields")
|
|
1079
|
+
for_disciplines = fores.fetch("forDisciplines")
|
|
1080
|
+
|
|
1081
|
+
subject = for_fields.find { |l| l["forLabel"] == name } ||
|
|
1082
|
+
for_disciplines.find { |l| l["forLabel"] == name }
|
|
1083
|
+
|
|
1084
|
+
if subject
|
|
1085
|
+
[{
|
|
1086
|
+
"subject" => sanitize(name) },
|
|
1087
|
+
{
|
|
1088
|
+
"subject" => "FOS: " + subject["fosLabel"],
|
|
1089
|
+
"subjectScheme" => "Fields of Science and Technology (FOS)",
|
|
1090
|
+
"schemeUri" => "http://www.oecd.org/science/inno/38235147.pdf"
|
|
1091
|
+
}]
|
|
1092
|
+
else
|
|
1093
|
+
[{ "subject" => sanitize(name) }]
|
|
1094
|
+
end
|
|
1095
|
+
end
|
|
1096
|
+
|
|
1097
|
+
def hsh_to_fos(hsh)
|
|
1098
|
+
# first find subject in Fields of Science (OECD)
|
|
1099
|
+
fos = JSON.load(File.read(File.expand_path('../../../resources/oecd/fos-mappings.json', __FILE__))).fetch("fosFields")
|
|
1100
|
+
subject = fos.find { |l| l["fosLabel"] == hsh["__content__"] || "FOS: " + l["fosLabel"] == hsh["__content__"] }
|
|
1101
|
+
|
|
1102
|
+
if subject
|
|
1103
|
+
return [{
|
|
1104
|
+
"subject" => sanitize(hsh["__content__"]),
|
|
1105
|
+
"subjectScheme" => hsh["subjectScheme"],
|
|
1106
|
+
"schemeUri" => hsh["schemeURI"],
|
|
1107
|
+
"valueUri" => hsh["valueURI"],
|
|
1108
|
+
"lang" => hsh["lang"] }.compact,
|
|
1109
|
+
{
|
|
1110
|
+
"subject" => "FOS: " + subject["fosLabel"],
|
|
1111
|
+
"subjectScheme" => "Fields of Science and Technology (FOS)",
|
|
1112
|
+
"schemeUri" => "http://www.oecd.org/science/inno/38235147.pdf" }.compact]
|
|
1113
|
+
end
|
|
1114
|
+
|
|
1115
|
+
# if not found, look in Fields of Research (Australian and New Zealand Standard Research Classification)
|
|
1116
|
+
# and map to Fields of Science. Add an extra entry for the latter
|
|
1117
|
+
fores = JSON.load(File.read(File.expand_path('../../../resources/oecd/for-mappings.json', __FILE__)))
|
|
1118
|
+
for_fields = fores.fetch("forFields")
|
|
1119
|
+
for_disciplines = fores.fetch("forDisciplines")
|
|
1120
|
+
|
|
1121
|
+
# try to extract forId
|
|
1122
|
+
if hsh["subjectScheme"] == "FOR"
|
|
1123
|
+
for_id = hsh["__content__"].split(" ").first
|
|
1124
|
+
for_id = for_id.rjust(6, "0")
|
|
1125
|
+
|
|
1126
|
+
subject = for_fields.find { |l| l["forId"] == for_id } ||
|
|
1127
|
+
for_disciplines.find { |l| l["forId"] == for_id[0..3] }
|
|
1128
|
+
else
|
|
1129
|
+
subject = for_fields.find { |l| l["forLabel"] == hsh["__content__"] } ||
|
|
1130
|
+
for_disciplines.find { |l| l["forLabel"] == hsh["__content__"] }
|
|
1131
|
+
end
|
|
1132
|
+
|
|
1133
|
+
if subject
|
|
1134
|
+
[{
|
|
1135
|
+
"subject" => sanitize(hsh["__content__"]),
|
|
1136
|
+
"subjectScheme" => hsh["subjectScheme"],
|
|
1137
|
+
"schemeUri" => hsh["schemeURI"],
|
|
1138
|
+
"valueUri" => hsh["valueURI"],
|
|
1139
|
+
"lang" => hsh["lang"] }.compact,
|
|
1140
|
+
{
|
|
1141
|
+
"subject" => "FOS: " + subject["fosLabel"],
|
|
1142
|
+
"subjectScheme" => "Fields of Science and Technology (FOS)",
|
|
1143
|
+
"schemeUri" => "http://www.oecd.org/science/inno/38235147.pdf"
|
|
1144
|
+
}]
|
|
1145
|
+
else
|
|
1146
|
+
[{
|
|
1147
|
+
"subject" => sanitize(hsh["__content__"]),
|
|
1148
|
+
"subjectScheme" => hsh["subjectScheme"],
|
|
1149
|
+
"schemeUri" => hsh["schemeURI"],
|
|
1150
|
+
"valueUri" => hsh["valueURI"],
|
|
1151
|
+
"lang" => hsh["lang"] }.compact]
|
|
1152
|
+
end
|
|
1153
|
+
end
|
|
1059
1154
|
end
|
|
1060
1155
|
end
|
data/lib/bolognese/version.rb
CHANGED
|
@@ -0,0 +1,1101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mappingListVersion": "1.0",
|
|
3
|
+
"originalUrl": "https://www.abs.gov.au/AUSSTATS/subscriber.nsf/log?openagent&12970%20(2008)%20FOS%20(2007)%20Correspondence%20Table.xls",
|
|
4
|
+
"forFields": [
|
|
5
|
+
{
|
|
6
|
+
"forId": "060102",
|
|
7
|
+
"forLabel": "Bioinformatics",
|
|
8
|
+
"fosId": "1.2",
|
|
9
|
+
"fosLabel": "Computer and information sciences"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"forId": "029901",
|
|
13
|
+
"forLabel": "Biological Physics",
|
|
14
|
+
"fosId": "1.6",
|
|
15
|
+
"fosLabel": "Biological sciences"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"forId": "050202",
|
|
19
|
+
"forLabel": "Conservation and Biodiversity",
|
|
20
|
+
"fosId": "1.6",
|
|
21
|
+
"fosLabel": "Biological sciences"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"forId": "091007",
|
|
25
|
+
"forLabel": "Manufacturing Robotics and Mechatronics (excl. Automotive Mechatronics)",
|
|
26
|
+
"fosId": "2.2",
|
|
27
|
+
"fosLabel": "Electrical engineering, electronic engineering, information engineering"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"forId": "091302",
|
|
31
|
+
"forLabel": "Automation and Control Engineering",
|
|
32
|
+
"fosId": "2.2",
|
|
33
|
+
"fosLabel": "Electrical engineering, electronic engineering, information engineering"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"forId": "020304",
|
|
37
|
+
"forLabel": "Thermodynamics and Statistical Physics",
|
|
38
|
+
"fosId": "2.3",
|
|
39
|
+
"fosLabel": "Mechanical engineering"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"forId": "091012",
|
|
43
|
+
"forLabel": "Textile Technology",
|
|
44
|
+
"fosId": "2.5",
|
|
45
|
+
"fosLabel": "Materials engineering"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"forId": "090201",
|
|
49
|
+
"forLabel": "Automotive Combustion and Fuel Engineering (incl. Alternative/Renewable Fuels)",
|
|
50
|
+
"fosId": "2.7",
|
|
51
|
+
"fosLabel": "Environmental engineering"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"forId": "090405",
|
|
55
|
+
"forLabel": "Non-automotive Combustion and Fuel Engineering",
|
|
56
|
+
"fosId": "2.7",
|
|
57
|
+
"fosLabel": "Environmental engineering"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"forId": "030405",
|
|
61
|
+
"forLabel": "Molecular Medicine",
|
|
62
|
+
"fosId": "3.1",
|
|
63
|
+
"fosLabel": "Basic medicine"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"forId": "110311",
|
|
67
|
+
"forLabel": "Medical Genetics (excl. Cancer Genetics)",
|
|
68
|
+
"fosId": "3.1",
|
|
69
|
+
"fosLabel": "Basic medicine"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"forId": "110701",
|
|
73
|
+
"forLabel": "Allergy",
|
|
74
|
+
"fosId": "3.2",
|
|
75
|
+
"fosLabel": "Clinical medicine"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"forId": "110708",
|
|
79
|
+
"forLabel": "Transplantation Immunology",
|
|
80
|
+
"fosId": "3.2",
|
|
81
|
+
"fosLabel": "Clinical medicine"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"forId": "110904",
|
|
85
|
+
"forLabel": "Neurology and Neuromuscular Diseases",
|
|
86
|
+
"fosId": "3.2",
|
|
87
|
+
"fosLabel": "Clinical medicine"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"forId": "110309",
|
|
91
|
+
"forLabel": "Infectious Diseases",
|
|
92
|
+
"fosId": "3.3",
|
|
93
|
+
"fosLabel": "Health sciences"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"forId": "110803",
|
|
97
|
+
"forLabel": "Medical Parasitology",
|
|
98
|
+
"fosId": "3.3",
|
|
99
|
+
"fosLabel": "Health sciences"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"forId": "120101",
|
|
103
|
+
"forLabel": "Architectural Design",
|
|
104
|
+
"fosId": "6.4",
|
|
105
|
+
"fosLabel": "Arts (arts, history of arts, performing arts, music)"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"forId": "220106",
|
|
109
|
+
"forLabel": "Medical Ethics",
|
|
110
|
+
"fosId": "3.3",
|
|
111
|
+
"fosLabel": "Health sciences"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"forId": "111404",
|
|
115
|
+
"forLabel": "Reproduction",
|
|
116
|
+
"fosId": "3.4",
|
|
117
|
+
"fosLabel": "Medical biotechnology"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"forId": "111505",
|
|
121
|
+
"forLabel": "Pharmacogenomics",
|
|
122
|
+
"fosId": "3.4",
|
|
123
|
+
"fosLabel": "Medical biotechnology"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"forId": "039902",
|
|
127
|
+
"forLabel": "Forensic Chemistry",
|
|
128
|
+
"fosId": "3.5",
|
|
129
|
+
"fosLabel": "Other medical sciences"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"forId": "069901",
|
|
133
|
+
"forLabel": "Forensic Biology",
|
|
134
|
+
"fosId": "3.5",
|
|
135
|
+
"fosLabel": "Other medical sciences"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"forId": "170104",
|
|
139
|
+
"forLabel": "Forensic Psychology",
|
|
140
|
+
"fosId": "3.5",
|
|
141
|
+
"fosLabel": "Other medical sciences"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"forId": "220205",
|
|
145
|
+
"forLabel": "History and Philosophy of Medicine",
|
|
146
|
+
"fosId": "3.5",
|
|
147
|
+
"fosLabel": "Other medical sciences"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"forId": "080602",
|
|
151
|
+
"forLabel": "Computer-Human Interaction",
|
|
152
|
+
"fosId": "5.1",
|
|
153
|
+
"fosLabel": "Psychology"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"forDisciplines": [
|
|
157
|
+
{
|
|
158
|
+
"forId": "0101",
|
|
159
|
+
"forLabel": "Pure Mathematics",
|
|
160
|
+
"fosId": "1.1",
|
|
161
|
+
"fosLabel": "Mathematics"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"forId": "0102",
|
|
165
|
+
"forLabel": "Applied Mathematics",
|
|
166
|
+
"fosId": "1.1",
|
|
167
|
+
"fosLabel": "Mathematics"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"forId": "0103",
|
|
171
|
+
"forLabel": "Numerical and Computational Mathematics",
|
|
172
|
+
"fosId": "1.1",
|
|
173
|
+
"fosLabel": "Mathematics"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"forId": "0104",
|
|
177
|
+
"forLabel": "Statistics",
|
|
178
|
+
"fosId": "1.1",
|
|
179
|
+
"fosLabel": "Mathematics"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"forId": "0105",
|
|
183
|
+
"forLabel": "Mathematical Physics",
|
|
184
|
+
"fosId": "1.1",
|
|
185
|
+
"fosLabel": "Mathematics"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"forId": "0199",
|
|
189
|
+
"forLabel": "Other Mathematical Sciences",
|
|
190
|
+
"fosId": "1.1",
|
|
191
|
+
"fosLabel": "Mathematics"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"forId": "0201",
|
|
195
|
+
"forLabel": "Astronomical and Space Sciences",
|
|
196
|
+
"fosId": "1.3",
|
|
197
|
+
"fosLabel": "Physical sciences"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"forId": "0202",
|
|
201
|
+
"forLabel": "Atomic, Molecular, Nuclear, Particle and Plasma Physics",
|
|
202
|
+
"fosId": "1.3",
|
|
203
|
+
"fosLabel": "Physical sciences"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"forId": "0203",
|
|
207
|
+
"forLabel": "Classical Physics",
|
|
208
|
+
"fosId": "1.3",
|
|
209
|
+
"fosLabel": "Physical sciences"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"forId": "0204",
|
|
213
|
+
"forLabel": "Condensed Matter Physics",
|
|
214
|
+
"fosId": "1.3",
|
|
215
|
+
"fosLabel": "Physical sciences"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"forId": "0205",
|
|
219
|
+
"forLabel": "Optical Physics",
|
|
220
|
+
"fosId": "1.3",
|
|
221
|
+
"fosLabel": "Physical sciences"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"forId": "0206",
|
|
225
|
+
"forLabel": "Quantum Physics",
|
|
226
|
+
"fosId": "1.3",
|
|
227
|
+
"fosLabel": "Physical sciences"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"forId": "0299",
|
|
231
|
+
"forLabel": "Other Physical Sciences",
|
|
232
|
+
"fosId": "1.3",
|
|
233
|
+
"fosLabel": "Physical sciences"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"forId": "0301",
|
|
237
|
+
"forLabel": "Analytical Chemistry",
|
|
238
|
+
"fosId": "1.4",
|
|
239
|
+
"fosLabel": "Chemical sciences"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"forId": "0302",
|
|
243
|
+
"forLabel": "Inorganic Chemistry",
|
|
244
|
+
"fosId": "1.4",
|
|
245
|
+
"fosLabel": "Chemical sciences"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"forId": "0303",
|
|
249
|
+
"forLabel": "Macromolecular and Materials Chemistry",
|
|
250
|
+
"fosId": "1.4",
|
|
251
|
+
"fosLabel": "Chemical sciences"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"forId": "0304",
|
|
255
|
+
"forLabel": "Medicinal and Biomolecular Chemistry",
|
|
256
|
+
"fosId": "1.4",
|
|
257
|
+
"fosLabel": "Chemical sciences"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"forId": "0305",
|
|
261
|
+
"forLabel": "Organic Chemistry",
|
|
262
|
+
"fosId": "1.4",
|
|
263
|
+
"fosLabel": "Chemical sciences"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"forId": "0306",
|
|
267
|
+
"forLabel": "Physical Chemistry (incl. Structural)",
|
|
268
|
+
"fosId": "1.4",
|
|
269
|
+
"fosLabel": "Chemical sciences"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"forId": "0307",
|
|
273
|
+
"forLabel": "Theoretical and Computational Chemistry",
|
|
274
|
+
"fosId": "1.4",
|
|
275
|
+
"fosLabel": "Chemical sciences"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"forId": "0399",
|
|
279
|
+
"forLabel": "Other Chemical Sciences",
|
|
280
|
+
"fosId": "1.4",
|
|
281
|
+
"fosLabel": "Chemical sciences"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"forId": "0401",
|
|
285
|
+
"forLabel": "Atmospheric Sciences",
|
|
286
|
+
"fosId": "1.5",
|
|
287
|
+
"fosLabel": "Earth and related environmental sciences"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"forId": "0402",
|
|
291
|
+
"forLabel": "Geochemistry",
|
|
292
|
+
"fosId": "1.5",
|
|
293
|
+
"fosLabel": "Earth and related environmental sciences"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"forId": "0403",
|
|
297
|
+
"forLabel": "Geology",
|
|
298
|
+
"fosId": "1.5",
|
|
299
|
+
"fosLabel": "Earth and related environmental sciences"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"forId": "0404",
|
|
303
|
+
"forLabel": "Geophysics",
|
|
304
|
+
"fosId": "1.5",
|
|
305
|
+
"fosLabel": "Earth and related environmental sciences"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"forId": "0405",
|
|
309
|
+
"forLabel": "Oceanography",
|
|
310
|
+
"fosId": "1.5",
|
|
311
|
+
"fosLabel": "Earth and related environmental sciences"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"forId": "0406",
|
|
315
|
+
"forLabel": "Physical Geography and Environmental Geoscience",
|
|
316
|
+
"fosId": "1.5",
|
|
317
|
+
"fosLabel": "Earth and related environmental sciences"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"forId": "0499",
|
|
321
|
+
"forLabel": "Other Earth Sciences",
|
|
322
|
+
"fosId": "1.5",
|
|
323
|
+
"fosLabel": "Earth and related environmental sciences"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"forId": "0501",
|
|
327
|
+
"forLabel": "Ecological Applications",
|
|
328
|
+
"fosId": "1.5",
|
|
329
|
+
"fosLabel": "Earth and related environmental sciences"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"forId": "0502",
|
|
333
|
+
"forLabel": "Environmental Science and Management",
|
|
334
|
+
"fosId": "1.5",
|
|
335
|
+
"fosLabel": "Earth and related environmental sciences"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"forId": "0503",
|
|
339
|
+
"forLabel": "Soil Sciences",
|
|
340
|
+
"fosId": "4.1",
|
|
341
|
+
"fosLabel": "Agriculture, forestry and fisheries"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"forId": "0599",
|
|
345
|
+
"forLabel": "Other Environmental Sciences",
|
|
346
|
+
"fosId": "1.5",
|
|
347
|
+
"fosLabel": "Earth and related environmental sciences"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"forId": "0601",
|
|
351
|
+
"forLabel": "Biochemistry and Cell Biology",
|
|
352
|
+
"fosId": "1.6",
|
|
353
|
+
"fosLabel": "Biological sciences"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"forId": "0602",
|
|
357
|
+
"forLabel": "Ecology",
|
|
358
|
+
"fosId": "1.6",
|
|
359
|
+
"fosLabel": "Biological sciences"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"forId": "0603",
|
|
363
|
+
"forLabel": "Evolutionary Biology",
|
|
364
|
+
"fosId": "1.6",
|
|
365
|
+
"fosLabel": "Biological sciences"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"forId": "0604",
|
|
369
|
+
"forLabel": "Genetics",
|
|
370
|
+
"fosId": "1.6",
|
|
371
|
+
"fosLabel": "Biological sciences"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"forId": "0605",
|
|
375
|
+
"forLabel": "Microbiology",
|
|
376
|
+
"fosId": "1.6",
|
|
377
|
+
"fosLabel": "Biological sciences"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"forId": "0606",
|
|
381
|
+
"forLabel": "Physiology",
|
|
382
|
+
"fosId": "1.6",
|
|
383
|
+
"fosLabel": "Biological sciences"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"forId": "0607",
|
|
387
|
+
"forLabel": "Plant Biology",
|
|
388
|
+
"fosId": "1.6",
|
|
389
|
+
"fosLabel": "Biological sciences"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"forId": "0608",
|
|
393
|
+
"forLabel": "Zoology",
|
|
394
|
+
"fosId": "1.6",
|
|
395
|
+
"fosLabel": "Biological sciences"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"forId": "0699",
|
|
399
|
+
"forLabel": "Other Biological Sciences",
|
|
400
|
+
"fosId": "1.6",
|
|
401
|
+
"fosLabel": "Biological sciences"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"forId": "0701",
|
|
405
|
+
"forLabel": "Agriculture, Land,and Farm Management",
|
|
406
|
+
"fosId": "4.5",
|
|
407
|
+
"fosLabel": "Other agricultural sciences"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"forId": "0702",
|
|
411
|
+
"forLabel": "Animal Production",
|
|
412
|
+
"fosId": "4.2",
|
|
413
|
+
"fosLabel": "Animal and dairy science"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"forId": "0703",
|
|
417
|
+
"forLabel": "Crop and Pasture Production",
|
|
418
|
+
"fosId": "4.1",
|
|
419
|
+
"fosLabel": "Agriculture, forestry and fisheries"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"forId": "0704",
|
|
423
|
+
"forLabel": "Fisheries Sciences",
|
|
424
|
+
"fosId": "4.1",
|
|
425
|
+
"fosLabel": "Agriculture, forestry and fisheries"
|
|
426
|
+
},
|
|
427
|
+
|
|
428
|
+
{
|
|
429
|
+
"forId": "0705",
|
|
430
|
+
"forLabel": "Forestry Sciences",
|
|
431
|
+
"fosId": "4.1",
|
|
432
|
+
"fosLabel": "Agriculture, forestry and fisheries"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"forId": "0706",
|
|
436
|
+
"forLabel": "Horticultural Production",
|
|
437
|
+
"fosId": "4.1",
|
|
438
|
+
"fosLabel": "Agriculture, forestry and fisheries"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"forId": "0707",
|
|
442
|
+
"forLabel": "Veterinary Sciences",
|
|
443
|
+
"fosId": "4.3",
|
|
444
|
+
"fosLabel": "Veterinary sciences"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"forId": "0799",
|
|
448
|
+
"forLabel": "Other Agricultural and Veterinary Sciences",
|
|
449
|
+
"fosId": "4.5",
|
|
450
|
+
"fosLabel": "Other agricultural sciences"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"forId": "0801",
|
|
454
|
+
"forLabel": "Artificial Intelligence and Image Processing",
|
|
455
|
+
"fosId": "1.2",
|
|
456
|
+
"fosLabel": "Computer and information sciences"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"forId": "0802",
|
|
460
|
+
"forLabel": "Computation Theory and Mathematics",
|
|
461
|
+
"fosId": "1.2",
|
|
462
|
+
"fosLabel": "Computer and information sciences"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"forId": "0803",
|
|
466
|
+
"forLabel": "Computer Software",
|
|
467
|
+
"fosId": "1.2",
|
|
468
|
+
"fosLabel": "Computer and information sciences"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"forId": "0804",
|
|
472
|
+
"forLabel": "Data Format",
|
|
473
|
+
"fosId": "1.2",
|
|
474
|
+
"fosLabel": "Computer and information sciences"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"forId": "0805",
|
|
478
|
+
"forLabel": "Distributed Computing",
|
|
479
|
+
"fosId": "1.2",
|
|
480
|
+
"fosLabel": "Computer and information sciences"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"forId": "0806",
|
|
484
|
+
"forLabel": "Information Systems",
|
|
485
|
+
"fosId": "1.2",
|
|
486
|
+
"fosLabel": "Computer and information sciences"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"forId": "0807",
|
|
490
|
+
"forLabel": "Library and Information Studies",
|
|
491
|
+
"fosId": "5.8",
|
|
492
|
+
"fosLabel": "Media and communications"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"forId": "0899",
|
|
496
|
+
"forLabel": "Other Information and Computing Sciences",
|
|
497
|
+
"fosId": "1.2",
|
|
498
|
+
"fosLabel": "Computer and information sciences"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"forId": "0901",
|
|
502
|
+
"forLabel": "Aerospace Engineering",
|
|
503
|
+
"fosId": "2.3",
|
|
504
|
+
"fosLabel": "Mechanical engineering"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"forId": "0902",
|
|
508
|
+
"forLabel": "Automotive Engineering",
|
|
509
|
+
"fosId": "2.3",
|
|
510
|
+
"fosLabel": "Mechanical engineering"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"forId": "0903",
|
|
514
|
+
"forLabel": "Biomedical Engineering",
|
|
515
|
+
"fosId": "2.6",
|
|
516
|
+
"fosLabel": "Medical engineering"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"forId": "0904",
|
|
520
|
+
"forLabel": "Chemical Engineering",
|
|
521
|
+
"fosId": "2.4",
|
|
522
|
+
"fosLabel": "Chemical engineering"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"forId": "0905",
|
|
526
|
+
"forLabel": "Civil Engineering",
|
|
527
|
+
"fosId": "2.1",
|
|
528
|
+
"fosLabel": "Civil engineering"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"forId": "0906",
|
|
532
|
+
"forLabel": "Electrical and Electronic Engineering",
|
|
533
|
+
"fosId": "2.2",
|
|
534
|
+
"fosLabel": "Electrical engineering, electronic engineering, information engineering"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"forId": "0907",
|
|
538
|
+
"forLabel": "Environmental Engineering",
|
|
539
|
+
"fosId": "2.7",
|
|
540
|
+
"fosLabel": "Environmental engineering"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"forId": "0908",
|
|
544
|
+
"forLabel": "Food Sciences",
|
|
545
|
+
"fosId": "2.11",
|
|
546
|
+
"fosLabel": "Other engineering and technologies"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"forId": "0909",
|
|
550
|
+
"forLabel": "Geomatic Engineering",
|
|
551
|
+
"fosId": "2.7",
|
|
552
|
+
"fosLabel": "Environmental engineering"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"forId": "0910",
|
|
556
|
+
"forLabel": "Manufacturing Engineering",
|
|
557
|
+
"fosId": "2.2",
|
|
558
|
+
"fosLabel": "Electrical engineering, electronic engineering, information engineering"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"forId": "0911",
|
|
562
|
+
"forLabel": "Maritime Engineering",
|
|
563
|
+
"fosId": "2.7",
|
|
564
|
+
"fosLabel": "Environmental engineering"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"forId": "0912",
|
|
568
|
+
"forLabel": "Materials Engineering",
|
|
569
|
+
"fosId": "2.5",
|
|
570
|
+
"fosLabel": "Materials engineering"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"forId": "0913",
|
|
574
|
+
"forLabel": "Mechanical Engineering",
|
|
575
|
+
"fosId": "2.3",
|
|
576
|
+
"fosLabel": "Mechanical engineering"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"forId": "0914",
|
|
580
|
+
"forLabel": "Resources Engineering and Extractive Metallurgy",
|
|
581
|
+
"fosId": "2.7",
|
|
582
|
+
"fosLabel": "Environmental engineering"
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"forId": "0915",
|
|
586
|
+
"forLabel": "Interdisciplinary Engineering",
|
|
587
|
+
"fosId": "2.11",
|
|
588
|
+
"fosLabel": "Other engineering and technologies"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"forId": "0999",
|
|
592
|
+
"forLabel": "Other Engineering",
|
|
593
|
+
"fosId": "2.11",
|
|
594
|
+
"fosLabel": "Other engineering and technologies"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"forId": "1001",
|
|
598
|
+
"forLabel": "Agricultural Biotechnology",
|
|
599
|
+
"fosId": "4.4",
|
|
600
|
+
"fosLabel": "Agricultural biotechnology"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"forId": "1002",
|
|
604
|
+
"forLabel": "Environmental Biotechnology",
|
|
605
|
+
"fosId": "2.8",
|
|
606
|
+
"fosLabel": "Environmental biotechnology"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"forId": "1003",
|
|
610
|
+
"forLabel": "Industrial Biotechnology",
|
|
611
|
+
"fosId": "2.9",
|
|
612
|
+
"fosLabel": "Industrial biotechnology"
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"forId": "1004",
|
|
616
|
+
"forLabel": "Medical Biotechnology",
|
|
617
|
+
"fosId": "3.4",
|
|
618
|
+
"fosLabel": "Medical biotechnology"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"forId": "1005",
|
|
622
|
+
"forLabel": "Communication Technologies",
|
|
623
|
+
"fosId": "2.2",
|
|
624
|
+
"fosLabel": "Electrical engineering, electronic engineering, information engineering"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"forId": "1006",
|
|
628
|
+
"forLabel": "Computer Hardware",
|
|
629
|
+
"fosId": "2.2",
|
|
630
|
+
"fosLabel": "Electrical engineering, electronic engineering, information engineering"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"forId": "1007",
|
|
634
|
+
"forLabel": "Nanotechnology",
|
|
635
|
+
"fosId": "2.10",
|
|
636
|
+
"fosLabel": "Nanotechnology"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"forId": "1099",
|
|
640
|
+
"forLabel": "Other Technology",
|
|
641
|
+
"fosId": "2.11",
|
|
642
|
+
"fosLabel": "Other engineering and technologies"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"forId": "1101",
|
|
646
|
+
"forLabel": "Medical Biochemistry and Metabolomics",
|
|
647
|
+
"fosId": "3.2",
|
|
648
|
+
"fosLabel": "Clinical medicine"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"forId": "1102",
|
|
652
|
+
"forLabel": "Cardiorespiratory Medicine and Haematology",
|
|
653
|
+
"fosId": "3.2",
|
|
654
|
+
"fosLabel": "Clinical medicine"
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"forId": "1103",
|
|
658
|
+
"forLabel": "Clinical Sciences",
|
|
659
|
+
"fosId": "3.2",
|
|
660
|
+
"fosLabel": "Clinical medicine"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"forId": "1104",
|
|
664
|
+
"forLabel": "Complementary and Alternative Medicine",
|
|
665
|
+
"fosId": "3.2",
|
|
666
|
+
"fosLabel": "Clinical medicine"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"forId": "1105",
|
|
670
|
+
"forLabel": "Dentistry",
|
|
671
|
+
"fosId": "3.2",
|
|
672
|
+
"fosLabel": "Clinical medicine"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"forId": "1106",
|
|
676
|
+
"forLabel": "Human Movement and Sports Science",
|
|
677
|
+
"fosId": "3.3",
|
|
678
|
+
"fosLabel": "Health sciences"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"forId": "1107",
|
|
682
|
+
"forLabel": "Immunology",
|
|
683
|
+
"fosId": "3.2",
|
|
684
|
+
"fosLabel": "Clinical medicine"
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"forId": "1108",
|
|
688
|
+
"forLabel": "Medical Microbiology",
|
|
689
|
+
"fosId": "3.3",
|
|
690
|
+
"fosLabel": "Health sciences"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"forId": "1109",
|
|
694
|
+
"forLabel": "Neurosciences",
|
|
695
|
+
"fosId": "3.2",
|
|
696
|
+
"fosLabel": "Clinical medicine"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"forId": "1110",
|
|
700
|
+
"forLabel": "Nursing",
|
|
701
|
+
"fosId": "3.3",
|
|
702
|
+
"fosLabel": "Health sciences"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"forId": "1111",
|
|
706
|
+
"forLabel": "Nutrition and Dietetics",
|
|
707
|
+
"fosId": "3.3",
|
|
708
|
+
"fosLabel": "Health sciences"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"forId": "1112",
|
|
712
|
+
"forLabel": "Oncology and Carcinogenesis",
|
|
713
|
+
"fosId": "3.2",
|
|
714
|
+
"fosLabel": "Clinical medicine"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"forId": "1113",
|
|
718
|
+
"forLabel": "Ophthalmology and Optometry",
|
|
719
|
+
"fosId": "3.2",
|
|
720
|
+
"fosLabel": "Clinical medicine"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"forId": "1114",
|
|
724
|
+
"forLabel": "Paediatrics and Reproductive Medicine",
|
|
725
|
+
"fosId": "3.2",
|
|
726
|
+
"fosLabel": "Clinical medicine"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"forId": "1115",
|
|
730
|
+
"forLabel": "Pharmacology and Pharmaceutical Sciences",
|
|
731
|
+
"fosId": "3.2",
|
|
732
|
+
"fosLabel": "Clinical medicine"
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"forId": "1116",
|
|
736
|
+
"forLabel": "Medical Physiology",
|
|
737
|
+
"fosId": "3.1",
|
|
738
|
+
"fosLabel": "Basic medicine"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"forId": "1117",
|
|
742
|
+
"forLabel": "Public Health and Health Services",
|
|
743
|
+
"fosId": "3.3",
|
|
744
|
+
"fosLabel": "Health sciences"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"forId": "1199",
|
|
748
|
+
"forLabel": "Other Medical and Health Sciences",
|
|
749
|
+
"fosId": "3.5",
|
|
750
|
+
"fosLabel": "Other medical sciences"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"forId": "1201",
|
|
754
|
+
"forLabel": "Architecture",
|
|
755
|
+
"fosId": "2.1",
|
|
756
|
+
"fosLabel": "Civil engineering"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"forId": "1202",
|
|
760
|
+
"forLabel": "Building",
|
|
761
|
+
"fosId": "2.1",
|
|
762
|
+
"fosLabel": "Civil engineering"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"forId": "1204",
|
|
766
|
+
"forLabel": "Engineering Design",
|
|
767
|
+
"fosId": "2.11",
|
|
768
|
+
"fosLabel": "Other engineering and technologies"
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"forId": "1203",
|
|
772
|
+
"forLabel": "Design Practice and Management",
|
|
773
|
+
"fosId": "6.4",
|
|
774
|
+
"fosLabel": "Arts (arts, history of arts, performing arts, music)"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"forId": "1205",
|
|
778
|
+
"forLabel": "Urban and Regional Planning",
|
|
779
|
+
"fosId": "5.7",
|
|
780
|
+
"fosLabel": "Social and economic geography"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"forId": "1299",
|
|
784
|
+
"forLabel": "Other Built Environment and Design",
|
|
785
|
+
"fosId": "2.1",
|
|
786
|
+
"fosLabel": "Civil engineering"
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"forId": "1301",
|
|
790
|
+
"forLabel": "Education Systems",
|
|
791
|
+
"fosId": "5.3",
|
|
792
|
+
"fosLabel": "Educational sciences"
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"forId": "1302",
|
|
796
|
+
"forLabel": "Curriculum and Pedagogy",
|
|
797
|
+
"fosId": "5.3",
|
|
798
|
+
"fosLabel": "Educational sciences"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"forId": "1303",
|
|
802
|
+
"forLabel": "Specialist Studies in Education",
|
|
803
|
+
"fosId": "5.3",
|
|
804
|
+
"fosLabel": "Educational sciences"
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
"forId": "1399",
|
|
808
|
+
"forLabel": "Other Education",
|
|
809
|
+
"fosId": "5.3",
|
|
810
|
+
"fosLabel": "Educational sciences"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"forId": "1401",
|
|
814
|
+
"forLabel": "Economic Theory",
|
|
815
|
+
"fosId": "5.2",
|
|
816
|
+
"fosLabel": "Economics and business"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"forId": "1402",
|
|
820
|
+
"forLabel": "Applied Economics",
|
|
821
|
+
"fosId": "5.2",
|
|
822
|
+
"fosLabel": "Economics and business"
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"forId": "1403",
|
|
826
|
+
"forLabel": "Econometrics",
|
|
827
|
+
"fosId": "5.2",
|
|
828
|
+
"fosLabel": "Economics and business"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"forId": "1499",
|
|
832
|
+
"forLabel": "Other Economics",
|
|
833
|
+
"fosId": "5.2",
|
|
834
|
+
"fosLabel": "Economics and business"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"forId": "1501",
|
|
838
|
+
"forLabel": "Accounting, Auditing and Accountability",
|
|
839
|
+
"fosId": "5.2",
|
|
840
|
+
"fosLabel": "Economics and business"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"forId": "1502",
|
|
844
|
+
"forLabel": "Banking, Finance and Investment",
|
|
845
|
+
"fosId": "5.2",
|
|
846
|
+
"fosLabel": "Economics and business"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"forId": "1503",
|
|
850
|
+
"forLabel": "Business and Management",
|
|
851
|
+
"fosId": "5.2",
|
|
852
|
+
"fosLabel": "Economics and business"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"forId": "1504",
|
|
856
|
+
"forLabel": "Commercial Services",
|
|
857
|
+
"fosId": "5.2",
|
|
858
|
+
"fosLabel": "Economics and business"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"forId": "1505",
|
|
862
|
+
"forLabel": "Marketing",
|
|
863
|
+
"fosId": "5.2",
|
|
864
|
+
"fosLabel": "Economics and business"
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"forId": "1506",
|
|
868
|
+
"forLabel": "Tourism",
|
|
869
|
+
"fosId": "5.2",
|
|
870
|
+
"fosLabel": "Economics and business"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"forId": "1507",
|
|
874
|
+
"forLabel": "Transportation and Freight Services",
|
|
875
|
+
"fosId": "5.2",
|
|
876
|
+
"fosLabel": "Economics and business"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"forId": "1599",
|
|
880
|
+
"forLabel": "Other Commerce, Management, Tourism and Services",
|
|
881
|
+
"fosId": "5.2",
|
|
882
|
+
"fosLabel": "Economics and business"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"forId": "1601",
|
|
886
|
+
"forLabel": "Anthropology",
|
|
887
|
+
"fosId": "5.4",
|
|
888
|
+
"fosLabel": "Sociology"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"forId": "1602",
|
|
892
|
+
"forLabel": "Criminology",
|
|
893
|
+
"fosId": "5.5",
|
|
894
|
+
"fosLabel": "Law"
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"forId": "1603",
|
|
898
|
+
"forLabel": "Demography",
|
|
899
|
+
"fosId": "5.4",
|
|
900
|
+
"fosLabel": "Sociology"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"forId": "1604",
|
|
904
|
+
"forLabel": "Human Geography",
|
|
905
|
+
"fosId": "5.7",
|
|
906
|
+
"fosLabel": "Social and economic geography"
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"forId": "1605",
|
|
910
|
+
"forLabel": "Policy and Administration",
|
|
911
|
+
"fosId": "5.6",
|
|
912
|
+
"fosLabel": "Political science"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"forId": "1606",
|
|
916
|
+
"forLabel": "Political Science",
|
|
917
|
+
"fosId": "5.6",
|
|
918
|
+
"fosLabel": "Political science"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"forId": "1607",
|
|
922
|
+
"forLabel": "Social Work",
|
|
923
|
+
"fosId": "5.4",
|
|
924
|
+
"fosLabel": "Sociology"
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
"forId": "1608",
|
|
928
|
+
"forLabel": "Sociology",
|
|
929
|
+
"fosId": "5.4",
|
|
930
|
+
"fosLabel": "Sociology"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"forId": "1699",
|
|
934
|
+
"forLabel": "Other Studies in Human Society",
|
|
935
|
+
"fosId": "5.4",
|
|
936
|
+
"fosLabel": "Sociology"
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
"forId": "1701",
|
|
940
|
+
"forLabel": "Psychology",
|
|
941
|
+
"fosId": "5.1",
|
|
942
|
+
"fosLabel": "Psychology"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"forId": "1702",
|
|
946
|
+
"forLabel": "Cognitive Sciences",
|
|
947
|
+
"fosId": "5.1",
|
|
948
|
+
"fosLabel": "Psychology"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"forId": "1799",
|
|
952
|
+
"forLabel": "Other Psychology and Cognitive Sciences",
|
|
953
|
+
"fosId": "5.1",
|
|
954
|
+
"fosLabel": "Psychology"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"forId": "1801",
|
|
958
|
+
"forLabel": "Law",
|
|
959
|
+
"fosId": "5.5",
|
|
960
|
+
"fosLabel": "Law"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"forId": "1802",
|
|
964
|
+
"forLabel": "Maori Law",
|
|
965
|
+
"fosId": "5.5",
|
|
966
|
+
"fosLabel": "Law"
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"forId": "1899",
|
|
970
|
+
"forLabel": "Other Law and Legal Studies",
|
|
971
|
+
"fosId": "5.5",
|
|
972
|
+
"fosLabel": "Law"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"forId": "1901",
|
|
976
|
+
"forLabel": "Art Theory and Criticism",
|
|
977
|
+
"fosId": "6.4",
|
|
978
|
+
"fosLabel": "Arts (arts, history of arts, performing arts, music)"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"forId": "1902",
|
|
982
|
+
"forLabel": "Film, Television and Digital Media",
|
|
983
|
+
"fosId": "6.4",
|
|
984
|
+
"fosLabel": "Arts (arts, history of arts, performing arts, music)"
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"forId": "1903",
|
|
988
|
+
"forLabel": "Journalism and Professional Writing",
|
|
989
|
+
"fosId": "5.8",
|
|
990
|
+
"fosLabel": "Media and communications"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"forId": "1904",
|
|
994
|
+
"forLabel": "Performing Arts and Creative Writing",
|
|
995
|
+
"fosId": "6.4",
|
|
996
|
+
"fosLabel": "Arts (arts, history of arts, performing arts, music)"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"forId": "1905",
|
|
1000
|
+
"forLabel": "Visual Arts and Crafts",
|
|
1001
|
+
"fosId": "6.4",
|
|
1002
|
+
"fosLabel": "Arts (arts, history of arts, performing arts, music)"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"forId": "1999",
|
|
1006
|
+
"forLabel": "Other Studies in Creative Arts and Writing",
|
|
1007
|
+
"fosId": "6.4",
|
|
1008
|
+
"fosLabel": "Arts (arts, history of arts, performing arts, music)"
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"forId": "2001",
|
|
1012
|
+
"forLabel": "Communication and Media Studies",
|
|
1013
|
+
"fosId": "5.8",
|
|
1014
|
+
"fosLabel": "Media and communications"
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"forId": "2002",
|
|
1018
|
+
"forLabel": "Cultural Studies",
|
|
1019
|
+
"fosId": "6.5",
|
|
1020
|
+
"fosLabel": "Other humanities"
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"forId": "2003",
|
|
1024
|
+
"forLabel": "Language Studies",
|
|
1025
|
+
"fosId": "6.2",
|
|
1026
|
+
"fosLabel": "Languages and literature"
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
"forId": "2004",
|
|
1030
|
+
"forLabel": "Linguistics",
|
|
1031
|
+
"fosId": "6.2",
|
|
1032
|
+
"fosLabel": "Languages and literature"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"forId": "2005",
|
|
1036
|
+
"forLabel": "Literary Studies",
|
|
1037
|
+
"fosId": "6.2",
|
|
1038
|
+
"fosLabel": "Languages and literature"
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
"forId": "2099",
|
|
1042
|
+
"forLabel": "Other Language, Communication and Culture",
|
|
1043
|
+
"fosId": "6.2",
|
|
1044
|
+
"fosLabel": "Languages and literature"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"forId": "2101",
|
|
1048
|
+
"forLabel": "Archaelogy",
|
|
1049
|
+
"fosId": "6.1",
|
|
1050
|
+
"fosLabel": "History and archaeology"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"forId": "2102",
|
|
1054
|
+
"forLabel": "Curatorial and Related Studies",
|
|
1055
|
+
"fosId": "5.8",
|
|
1056
|
+
"fosLabel": "Media and communications"
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"forId": "2103",
|
|
1060
|
+
"forLabel": "Historical Studies",
|
|
1061
|
+
"fosId": "6.1",
|
|
1062
|
+
"fosLabel": "History and archaeology"
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"forId": "2199",
|
|
1066
|
+
"forLabel": "Other History and Archaelogy",
|
|
1067
|
+
"fosId": "6.1",
|
|
1068
|
+
"fosLabel": "History and archaeology"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"forId": "2201",
|
|
1072
|
+
"forLabel": "Applied Ethics",
|
|
1073
|
+
"fosId": "6.3",
|
|
1074
|
+
"fosLabel": "Philosophy, ethics and religion"
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"forId": "2202",
|
|
1078
|
+
"forLabel": "History and Philosophy of Specific Fields",
|
|
1079
|
+
"fosId": "6.3",
|
|
1080
|
+
"fosLabel": "Philosophy, ethics and religion"
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
"forId": "2203",
|
|
1084
|
+
"forLabel": "Philosophy",
|
|
1085
|
+
"fosId": "6.3",
|
|
1086
|
+
"fosLabel": "Philosophy, ethics and religion"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"forId": "2204",
|
|
1090
|
+
"forLabel": "Religion and Religious Studies",
|
|
1091
|
+
"fosId": "6.3",
|
|
1092
|
+
"fosLabel": "Philosophy, ethics and religion"
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"forId": "2299",
|
|
1096
|
+
"forLabel": "Other Philosophy and Religious Studies",
|
|
1097
|
+
"fosId": "6.3",
|
|
1098
|
+
"fosLabel": "Philosophy, ethics and religion"
|
|
1099
|
+
}
|
|
1100
|
+
]
|
|
1101
|
+
}
|