thoth_api/subject/
model.rs

1use phf::phf_map;
2use phf::Map;
3use serde::{Deserialize, Serialize};
4use std::fmt;
5use std::str::FromStr;
6use uuid::Uuid;
7
8use crate::errors::Result;
9use crate::errors::ThothError;
10#[cfg(feature = "backend")]
11use crate::schema::subject;
12
13#[cfg_attr(feature = "backend", derive(DbEnum, juniper::GraphQLEnum))]
14#[cfg_attr(feature = "backend", DieselType = "Subject_type")]
15#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)]
16#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
17pub enum SubjectType {
18    Bic,
19    Bisac,
20    Thema,
21    Lcc,
22    Custom,
23    Keyword,
24}
25
26#[cfg_attr(feature = "backend", derive(Queryable))]
27pub struct Subject {
28    pub subject_id: Uuid,
29    pub work_id: Uuid,
30    pub subject_type: SubjectType,
31    pub subject_code: String,
32    pub subject_ordinal: i32,
33}
34
35#[cfg_attr(
36    feature = "backend",
37    derive(juniper::GraphQLInputObject, Insertable),
38    table_name = "subject"
39)]
40pub struct NewSubject {
41    pub work_id: Uuid,
42    pub subject_type: SubjectType,
43    pub subject_code: String,
44    pub subject_ordinal: i32,
45}
46
47#[cfg_attr(
48    feature = "backend",
49    derive(juniper::GraphQLInputObject, AsChangeset),
50    changeset_options(treat_none_as_null = "true"),
51    table_name = "subject"
52)]
53pub struct PatchSubject {
54    pub subject_id: Uuid,
55    pub work_id: Uuid,
56    pub subject_type: SubjectType,
57    pub subject_code: String,
58    pub subject_ordinal: i32,
59}
60
61pub fn check_subject(subject_type: &SubjectType, code: &str) -> Result<()> {
62    let valid = match &subject_type {
63        SubjectType::Bic => BIC_CODES.contains_key::<str>(&code),
64        SubjectType::Bisac => BISAC_CODES.contains_key::<str>(&code),
65        SubjectType::Thema => THEMA_CODES.contains_key::<str>(&code),
66        SubjectType::Lcc => true,
67        SubjectType::Custom => true,
68        SubjectType::Keyword => true,
69    };
70    if valid {
71        Ok(())
72    } else {
73        Err(ThothError::InvalidSubjectCode(code.to_string(), subject_type.to_string()).into())
74    }
75}
76
77impl Default for SubjectType {
78    fn default() -> SubjectType {
79        SubjectType::Keyword
80    }
81}
82
83impl fmt::Display for SubjectType {
84    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
85        match self {
86            SubjectType::Bic => write!(f, "BIC"),
87            SubjectType::Bisac => write!(f, "BISAC"),
88            SubjectType::Thema => write!(f, "Thema"),
89            SubjectType::Lcc => write!(f, "LCC"),
90            SubjectType::Custom => write!(f, "Custom"),
91            SubjectType::Keyword => write!(f, "Keyword"),
92        }
93    }
94}
95
96impl FromStr for SubjectType {
97    type Err = ThothError;
98
99    fn from_str(input: &str) -> std::result::Result<SubjectType, ThothError> {
100        match input {
101            "BIC" => Ok(SubjectType::Bic),
102            "BISAC" => Ok(SubjectType::Bisac),
103            "Thema" => Ok(SubjectType::Thema),
104            "LCC" => Ok(SubjectType::Lcc),
105            "Custom" => Ok(SubjectType::Custom),
106            "Keyword" => Ok(SubjectType::Keyword),
107            _ => Err(ThothError::InvalidSubjectType(input.to_string())),
108        }
109    }
110}
111
112#[test]
113fn test_subjecttype_default() {
114    let subjecttype: SubjectType = Default::default();
115    assert_eq!(subjecttype, SubjectType::Keyword);
116}
117
118#[test]
119fn test_subjecttype_display() {
120    assert_eq!(format!("{}", SubjectType::Bic), "BIC");
121    assert_eq!(format!("{}", SubjectType::Bisac), "BISAC");
122    assert_eq!(format!("{}", SubjectType::Thema), "Thema");
123    assert_eq!(format!("{}", SubjectType::Lcc), "LCC");
124    assert_eq!(format!("{}", SubjectType::Custom), "Custom");
125    assert_eq!(format!("{}", SubjectType::Keyword), "Keyword");
126}
127
128#[test]
129fn test_subjecttype_fromstr() {
130    assert_eq!(SubjectType::from_str("BIC").unwrap(), SubjectType::Bic);
131    assert_eq!(SubjectType::from_str("BISAC").unwrap(), SubjectType::Bisac);
132    assert_eq!(SubjectType::from_str("Thema").unwrap(), SubjectType::Thema);
133    assert_eq!(SubjectType::from_str("LCC").unwrap(), SubjectType::Lcc);
134    assert_eq!(
135        SubjectType::from_str("Custom").unwrap(),
136        SubjectType::Custom
137    );
138    assert_eq!(
139        SubjectType::from_str("Keyword").unwrap(),
140        SubjectType::Keyword
141    );
142
143    assert!(SubjectType::from_str("bic").is_err());
144    assert!(SubjectType::from_str("Library of Congress Subject Code").is_err());
145}
146
147#[test]
148fn test_check_subject() {
149    assert!(check_subject(&SubjectType::Bic, "HRQX9").is_ok());
150    assert!(check_subject(&SubjectType::Bisac, "BIB004060").is_ok());
151    assert!(check_subject(&SubjectType::Thema, "ATXZ1").is_ok());
152    assert!(check_subject(&SubjectType::Custom, "A custom subject").is_ok());
153    assert!(check_subject(&SubjectType::Keyword, "keyword").is_ok());
154
155    assert!(check_subject(&SubjectType::Bic, "ABCD0").is_err());
156    assert!(check_subject(&SubjectType::Bisac, "BLA123456").is_err());
157    assert!(check_subject(&SubjectType::Thema, "AHBW").is_err());
158}
159
160static THEMA_CODES: Map<&'static str, &'static str> = phf_map! {
161    "A" => "The Arts",
162    "AB" => "The arts: general issues",
163    "ABA" => "Theory of art",
164    "ABC" => "Conservation, restoration & care of artworks",
165    "ABK" => "Forgery, falsification & theft of artworks",
166    "ABQ" => "Art: financial aspects",
167    "AF" => "Fine arts: art forms",
168    "AFC" => "Painting & paintings",
169    "AFCC" => "Paintings & painting in watercolours",
170    "AFCL" => "Paintings & painting in oils",
171    "AFCM" => "Murals & wall paintings",
172    "AFF" => "Drawing & drawings",
173    "AFH" => "Prints & printmaking",
174    "AFJ" => "Other graphic art forms",
175    "AFK" => "Non-graphic art forms",
176    "AFKB" => "Sculpture",
177    "AFKC" => "Carvings: artworks",
178    "AFKG" => "Precious metal, precious stones & jewellery: artworks & design",
179    "AFKN" => "Installation art",
180    "AFKP" => "Performance art",
181    "AFKV" => "Electronic, holographic & video art",
182    "AFP" => "Ceramic & glass: artworks",
183    "AFT" => "Decorative arts",
184    "AFW" => "Textile artworks",
185    "AG" => "Fine arts: treatments & subjects",
186    "AGA" => "History of art",
187    "AGB" => "Individual artists, art monographs",
188    "AGC" => "Exhibition catalogues & specific collections",
189    "AGH" => "Human figures depicted in art",
190    "AGHF" => "Portraits & self-portraiture in art",
191    "AGHN" => "Nudes depicted in art",
192    "AGHX" => "Erotic art",
193    "AGK" => "Small-scale, secular & domestic scenes in art",
194    "AGN" => "Nature in art",
195    "AGNA" => "Animals in art",
196    "AGNB" => "Botanical art",
197    "AGNL" => "Landscapes / seascapes",
198    "AGNS" => "Still life",
199    "AGP" => "Man-made objects depicted in art (cityscapes, machines, etc)",
200    "AGR" => "Religious art",
201    "AGZ" => "Art techniques & principles",
202    "AJ" => "Photography & photographs",
203    "AJC" => "Photographs: collections",
204    "AJCD" => "Individual photographers",
205    "AJCP" => "Photography: portraits & self-portraiture",
206    "AJCX" => "Erotic & nude photography",
207    "AJF" => "Photojournalism",
208    "AJT" => "Photographic equipment & techniques: general",
209    "AJTA" => "Camera-specific manuals",
210    "AJTF" => "Photography: specific techniques",
211    "AJTV" => "Video photography / videography",
212    "AK" => "Industrial / commercial art & design",
213    "AKB" => "Individual designers",
214    "AKC" => "Graphic design",
215    "AKD" => "Typography & lettering",
216    "AKH" => "Book design",
217    "AKHM" => "Manuscripts and illumination",
218    "AKL" => "Illustration & commercial art",
219    "AKLB" => "Illustration",
220    "AKLC" => "Comic book & cartoon art",
221    "AKLC1" => "Graphic novel & Manga artwork",
222    "AKLF" => "Computer game art",
223    "AKLP" => "Poster art",
224    "AKP" => "Product design",
225    "AKR" => "Furniture design",
226    "AKT" => "Fashion & textiles",
227    "AKTR" => "National or regional costume",
228    "AM" => "Architecture",
229    "AMA" => "Theory of architecture",
230    "AMB" => "Individual architects & architectural firms",
231    "AMC" => "Architectural structure & design",
232    "AMCD" => "Architectural details, components and motifs",
233    "AMCR" => "Environmentally-friendly (‘green’) architecture & design",
234    "AMD" => "Architecture: professional practice",
235    "AMG" => "Architecture: public buildings",
236    "AMK" => "Architecture: residential buildings, domestic buildings",
237    "AMKH" => "Architecture: holiday homes & cabins",
238    "AMKL" => "Architecture: castles & fortifications",
239    "AMKS" => "Architecture: palaces, stately homes & mansions",
240    "AMN" => "Architecture: religious buildings",
241    "AMR" => "Architecture: interior design",
242    "AMV" => "Landscape architecture & design",
243    "AMVD" => "City & town planning: architectural aspects",
244    "AMX" => "History of architecture",
245    "AT" => "Performing arts",
246    "ATC" => "Individual actors & performers",
247    "ATD" => "Theatre studies",
248    "ATDC" => "Acting techniques",
249    "ATDF" => "Theatre direction & production",
250    "ATDH" => "Theatre: technical & background skills",
251    "ATDS" => "Theatre management",
252    "ATF" => "Films, cinema",
253    "ATFA" => "Film history, theory & criticism",
254    "ATFB" => "Individual film directors, film-makers",
255    "ATFD" => "Film scripts & screenplays",
256    "ATFG" => "Film guides & reviews",
257    "ATFN" => "Film: styles & genres",
258    "ATFR" => "Documentary films",
259    "ATFV" => "Animated films",
260    "ATFV1" => "Anime",
261    "ATFX" => "Film production: technical & background skills",
262    "ATJ" => "Television",
263    "ATJD" => "Television screenplays, scripts & performances",
264    "ATJS" => "Television drama",
265    "ATJX" => "Television production: technical & background skills",
266    "ATL" => "Radio",
267    "ATLD" => "Radio plays, scripts & performances",
268    "ATN" => "Internet & digital media: arts & performance",
269    "ATQ" => "Dance",
270    "ATQC" => "Choreography",
271    "ATQL" => "Ballet",
272    "ATQR" => "Ballroom dancing",
273    "ATQT" => "Contemporary dance",
274    "ATQV" => "Dancers / choreographers",
275    "ATQZ" => "Folk dancing",
276    "ATX" => "Other performing arts",
277    "ATXC" => "Circus & circus skills",
278    "ATXD" => "Comedy & stand-up",
279    "ATXF" => "Conjuring & magic",
280    "ATXM" => "Puppetry, miniature & toy theatre",
281    "ATXP" => "Pageants, parades, festivals",
282    "ATXZ" => "Animal spectacles, performing animals",
283    "ATXZ1" => "Bullfighting",
284    "AV" => "Music",
285    "AVA" => "Theory of music & musicology",
286    "AVC" => "Music reviews & criticism",
287    "AVD" => "Discographies & buyer’s guides",
288    "AVL" => "Music: styles & genres",
289    "AVLA" => "Art music, orchestral & formal music",
290    "AVLC" => "Choral music",
291    "AVLF" => "Opera",
292    "AVLK" => "Sacred & religious music",
293    "AVLM" => "Music of film & stage",
294    "AVLP" => "Popular music",
295    "AVLT" => "Traditional & folk music",
296    "AVLW" => "World music & regional styles",
297    "AVLX" => "Electronic music",
298    "AVM" => "History of music",
299    "AVN" => "Composers & songwriters",
300    "AVP" => "Musicians, singers, bands & groups",
301    "AVQ" => "Musical scores, lyrics & libretti",
302    "AVQS" => "Songbooks",
303    "AVR" => "Musical instruments",
304    "AVRG" => "Keyboard instruments",
305    "AVRG1" => "Piano",
306    "AVRJ" => "Percussion instruments",
307    "AVRL" => "String instruments",
308    "AVRL1" => "Guitar",
309    "AVRL2" => "Plucked instruments",
310    "AVRL3" => "Violin",
311    "AVRN" => "Wind instruments",
312    "AVRQ" => "Mechanical musical instruments",
313    "AVRS" => "Electronic musical instruments",
314    "AVS" => "Techniques of music / music tutorials / teaching of music",
315    "AVSA" => "Singing: techniques",
316    "AVX" => "Music recording & reproduction",
317    "C" => "Language & Linguistics",
318    "CB" => "Language: reference & general",
319    "CBD" => "Dictionaries",
320    "CBDX" => "Bilingual & multilingual dictionaries",
321    "CBF" => "Thesauri",
322    "CBG" => "Usage & grammar guides",
323    "CBP" => "Speaking in public: advice & guides",
324    "CBV" => "Creative writing & creative writing guides",
325    "CBVS" => "Screenwriting techniques",
326    "CBW" => "Writing & editing guides",
327    "CBX" => "Language: history & general works",
328    "CF" => "Linguistics",
329    "CFA" => "Philosophy of language",
330    "CFB" => "Sociolinguistics",
331    "CFC" => "Literacy",
332    "CFD" => "Psycholinguistics & cognitive linguistics",
333    "CFDC" => "Language acquisition",
334    "CFDM" => "Bilingualism & multilingualism",
335    "CFF" => "Historical & comparative linguistics",
336    "CFFD" => "Dialect, slang & jargon",
337    "CFG" => "Semantics, discourse analysis, stylistics",
338    "CFH" => "Phonetics, phonology",
339    "CFK" => "Grammar, syntax & morphology",
340    "CFL" => "Palaeography",
341    "CFLA" => "Writing systems, alphabets",
342    "CFM" => "Lexicography",
343    "CFP" => "Translation & interpretation",
344    "CFX" => "Computational & corpus linguistics",
345    "CFZ" => "Sign languages, Braille & other linguistic communication",
346    "CJ" => "Language teaching & learning",
347    "CJA" => "Language teaching theory & methods",
348    "CJB" => "Language teaching & learning material & coursework",
349    "CJBG" => "Language learning: grammar, vocabulary & pronunciation",
350    "CJBR" => "Language readers",
351    "CJBT" => "Language self-study",
352    "CJC" => "Language learning: specific skills",
353    "CJCK" => "Language learning: speaking skills",
354    "CJCL" => "Language learning: listening skills",
355    "CJCR" => "Language learning: reading skills",
356    "CJCW" => "Language learning: writing skills",
357    "CJP" => "Language learning for specific purposes",
358    "CJPD" => "Language learning for business",
359    "CJPG" => "Language learning for technical & scientific purposes",
360    "D" => "Biography, Literature & Literary studies",
361    "DB" => "Ancient, classical & mediaeval texts",
362    "DBS" => "Sagas & epics",
363    "DBSG" => "Ancient Greek & Roman legends",
364    "DBSN" => "Icelandic & Old Norse sagas",
365    "DC" => "Poetry",
366    "DCA" => "Classic & pre-20th century poetry",
367    "DCC" => "Modern & contemporary poetry (c 1900 onwards)",
368    "DCF" => "Poetry by individual poets",
369    "DCQ" => "Poetry anthologies (various poets)",
370    "DD" => "Plays, playscripts",
371    "DDA" => "Classic & pre-20th century plays",
372    "DDC" => "Modern & contemporary plays (c 1900 onwards)",
373    "DDL" => "Comedic plays",
374    "DDT" => "Tragic plays",
375    "DN" => "Biography & non-fiction prose",
376    "DNB" => "Biography: general",
377    "DNBA" => "Autobiography: general",
378    "DNBB" => "Biography: business & industry",
379    "DNBB1" => "Autobiography: business & industry",
380    "DNBF" => "Biography: arts & entertainment",
381    "DNBF1" => "Autobiography: arts & entertainment",
382    "DNBH" => "Biography: historical, political & military",
383    "DNBH1" => "Autobiography: historical, political & military",
384    "DNBL" => "Biography: literary",
385    "DNBL1" => "Autobiography: literary",
386    "DNBM" => "Biography: philosophy & social sciences",
387    "DNBM1" => "Autobiography: philosophy & social sciences",
388    "DNBP" => "Biography: adventurers & explorers",
389    "DNBP1" => "Autobiography: adventurers & explorers",
390    "DNBR" => "Biography: royalty",
391    "DNBR1" => "Autobiography: royalty",
392    "DNBS" => "Biography: sport",
393    "DNBS1" => "Autobiography: sport",
394    "DNBT" => "Biography: science, technology & medicine",
395    "DNBT1" => "Autobiography: science, technology & medicine",
396    "DNBX" => "Biography: religious & spiritual",
397    "DNBX1" => "Autobiography: religious & spiritual",
398    "DNBZ" => "Collected biographies",
399    "DNC" => "Memoirs",
400    "DND" => "Diaries, letters & journals",
401    "DNG" => "Animal life stories",
402    "DNL" => "Literary essays",
403    "DNP" => "Reportage & collected journalism",
404    "DNS" => "Speeches",
405    "DNT" => "Anthologies: general",
406    "DNX" => "True stories: general",
407    "DNXC" => "True crime",
408    "DNXC3" => "True crime: serial killers & murderers",
409    "DNXH" => "True stories of discovery",
410    "DNXM" => "True war & combat stories",
411    "DNXP" => "True stories of heroism, endurance & survival",
412    "DNXR" => "True stories of survival of abuse & injustice",
413    "DNXZ" => "Erotic confessions & true stories",
414    "DS" => "Literature: history & criticism",
415    "DSA" => "Literary theory",
416    "DSB" => "Literary studies: general",
417    "DSBB" => "Literary studies: ancient, classical & mediaeval",
418    "DSBC" => "Literary studies: c 1400 to c 1600",
419    "DSBD" => "Literary studies: c 1600 to c 1800",
420    "DSBF" => "Literary studies: c 1800 to c 1900",
421    "DSBH" => "Literary studies: c 1900 to c 2000",
422    "DSBH5" => "Literary studies: post-colonial literature",
423    "DSBJ" => "Literary studies: from c 2000",
424    "DSC" => "Literary studies: poetry & poets",
425    "DSG" => "Literary studies: plays & playwrights",
426    "DSK" => "Literary studies: fiction, novelists & prose writers",
427    "DSM" => "Comparative literature",
428    "DSR" => "Literary reference works",
429    "DSRC" => "Literary companions, book reviews & guides",
430    "DSY" => "Children’s & teenage literature studies: general",
431    "DSYC" => "Children’s & teenage book reviews & guides",
432    "F" => "Fiction & Related items",
433    "FB" => "Fiction: general & literary",
434    "FBA" => "Modern & contemporary fiction",
435    "FBAN" => "‘Street’ fiction",
436    "FBC" => "Classic fiction",
437    "FC" => "Biographical fiction",
438    "FD" => "Speculative fiction",
439    "FDB" => "Dystopian & utopian fiction",
440    "FDK" => "Alternative history fiction",
441    "FF" => "Crime & mystery fiction",
442    "FFC" => "Classic crime & mystery fiction",
443    "FFD" => "Crime & mystery: private investigator / amateur detectives",
444    "FFH" => "Historical crime & mysteries",
445    "FFJ" => "Crime & mystery: cosy mystery",
446    "FFK" => "Comic (humorous) crime & mystery",
447    "FFL" => "Crime & mystery: hard-boiled crime, noir fiction",
448    "FFP" => "Crime & mystery: police procedural",
449    "FFS" => "Crime & mystery: women sleuths",
450    "FG" => "Sports fiction",
451    "FH" => "Thriller / suspense fiction",
452    "FHD" => "Espionage & spy thriller",
453    "FHK" => "Technothriller",
454    "FHP" => "Political / legal thriller",
455    "FHQ" => "Esoteric thriller",
456    "FHX" => "Psychological thriller",
457    "FJ" => "Adventure fiction",
458    "FJH" => "Historical adventure fiction",
459    "FJM" => "War, combat & military fiction",
460    "FJMC" => "Napoleonic War fiction",
461    "FJMF" => "First World War fiction",
462    "FJMS" => "Second World War fiction",
463    "FJMV" => "Vietnam War fiction",
464    "FJN" => "Sea stories",
465    "FJW" => "Adventure fiction: Westerns",
466    "FK" => "Horror & supernatural fiction",
467    "FKC" => "Classic horror & ghost stories",
468    "FKM" => "Contemporary horror & ghost stories",
469    "FKW" => "Occult fiction",
470    "FL" => "Science fiction",
471    "FLC" => "Classic science fiction",
472    "FLG" => "Science fiction: time travel",
473    "FLM" => "Science fiction: steampunk",
474    "FLP" => "Science fiction: near-future",
475    "FLPB" => "Science fiction: cyberpunk / biopunk",
476    "FLQ" => "Science fiction: apocalyptic & post-apocalyptic",
477    "FLR" => "Science fiction: military",
478    "FLS" => "Science fiction: space opera",
479    "FLU" => "Science fiction: aliens / UFOs",
480    "FLW" => "Science fiction: space exploration",
481    "FM" => "Fantasy",
482    "FMB" => "Epic fantasy / heroic fantasy",
483    "FMH" => "Historical fantasy",
484    "FMK" => "Comic (humorous) fantasy",
485    "FMM" => "Magical realism",
486    "FMR" => "Fantasy romance",
487    "FMT" => "Dark fantasy",
488    "FMW" => "Contemporary fantasy",
489    "FMX" => "Urban fantasy",
490    "FN" => "Myths & fairy tales",
491    "FP" => "Erotic fiction",
492    "FQ" => "Contemporary lifestyle fiction",
493    "FR" => "Romance",
494    "FRD" => "Contemporary romance",
495    "FRF" => "Romance: wholesome",
496    "FRH" => "Historical romance",
497    "FRJ" => "Romance: ‘western’, rural or ‘outback’",
498    "FRM" => "Romantic suspense",
499    "FRP" => "Romance in uniform",
500    "FRQ" => "Romance: medical",
501    "FRT" => "Romance: fantasy & paranormal",
502    "FRU" => "Romance: time travel",
503    "FRV" => "Dark romance",
504    "FRX" => "Erotic romance",
505    "FS" => "Family life fiction",
506    "FT" => "Generational sagas",
507    "FU" => "Humorous fiction",
508    "FUP" => "Satirical fiction & parodies",
509    "FV" => "Historical fiction",
510    "FW" => "Religious & spiritual fiction",
511    "FX" => "Fiction: narrative themes",
512    "FXB" => "Narrative theme: Coming of age",
513    "FXD" => "Narrative theme: Love & relationships",
514    "FXE" => "Narrative theme: Environmental issues",
515    "FXL" => "Narrative theme: Death, grief, loss",
516    "FXM" => "Narrative theme: Interior life",
517    "FXP" => "Narrative theme: Politics",
518    "FXR" => "Narrative theme: Sense of place",
519    "FXS" => "Narrative theme: Social issues",
520    "FY" => "Fiction: special features",
521    "FYB" => "Short stories",
522    "FYD" => "Epistolary fiction",
523    "FYH" => "Fiction: pastiche",
524    "FYM" => "Fiction: mashup",
525    "FYR" => "Category fiction",
526    "FYT" => "Fiction in translation",
527    "FYV" => "Fiction: inspired by or adapted from",
528    "FZ" => "Fiction companions",
529    "G" => "Reference, Information & Interdisciplinary subjects",
530    "GB" => "Encyclopaedias & reference works",
531    "GBA" => "General encyclopaedias",
532    "GBC" => "Reference works",
533    "GBCB" => "Dictionaries of biography",
534    "GBCD" => "Subject dictionaries",
535    "GBCQ" => "Quotations, proverbs & sayings",
536    "GBCR" => "Bibliographies, catalogues",
537    "GBCS" => "Serials, periodicals, abstracts, indexes",
538    "GBCT" => "Directories",
539    "GBCY" => "Yearbooks, annuals, almanacs",
540    "GBD" => "Miscellanies & compendia",
541    "GL" => "Library & information sciences / Museology",
542    "GLC" => "Library, archive & information management",
543    "GLCA" => "Information retrieval & access",
544    "GLF" => "IT, Internet & electronic resources in libraries",
545    "GLH" => "Acquisitions & collection development",
546    "GLK" => "Bibliographic & subject control",
547    "GLM" => "Library & information services",
548    "GLP" => "Archiving, preservation & digitization",
549    "GLZ" => "Museology & heritage studies",
550    "GP" => "Research & information: general",
551    "GPF" => "Information theory",
552    "GPFC" => "Cybernetics & systems theory",
553    "GPH" => "Data analysis: general",
554    "GPJ" => "Coding theory & cryptology",
555    "GPQ" => "Decision theory: general",
556    "GPQD" => "Risk assessment",
557    "GPS" => "Research methods: general",
558    "GT" => "Interdisciplinary studies",
559    "GTB" => "History of scholarship (principally of social sciences & humanities)",
560    "GTC" => "Communication studies",
561    "GTD" => "Semiotics / semiology",
562    "GTK" => "Cognitive studies",
563    "GTM" => "Regional studies",
564    "GTP" => "Development studies",
565    "GTQ" => "Globalization",
566    "GTT" => "Flags, emblems, symbols, logos",
567    "GTU" => "Peace studies & conflict resolution",
568    "GTV" => "Institutions & learned societies: general",
569    "GTZ" => "General studies",
570    "J" => "Society & Social Sciences",
571    "JB" => "Society & culture: general",
572    "JBC" => "Cultural & media studies",
573    "JBCC" => "Cultural studies",
574    "JBCC1" => "Popular culture",
575    "JBCC2" => "Material culture",
576    "JBCC3" => "Cultural studies: fashion & society",
577    "JBCC4" => "Cultural studies: food & society",
578    "JBCC6" => "Cultural studies: customs & traditions",
579    "JBCC9" => "History of ideas",
580    "JBCT" => "Media studies",
581    "JBCT1" => "Media studies: internet, digital media & society",
582    "JBCT2" => "Media studies: TV & society",
583    "JBCT3" => "Media studies: advertising & society",
584    "JBCT4" => "Media studies: journalism",
585    "JBF" => "Social & ethical issues",
586    "JBFA" => "Social discrimination & equal treatment",
587    "JBFB" => "Social Integration & assimilation",
588    "JBFC" => "Poverty & precarity",
589    "JBFD" => "Housing & homelessness",
590    "JBFF" => "Social impact of disasters",
591    "JBFG" => "Refugees & political asylum",
592    "JBFG1" => "Aiding escape & evasion",
593    "JBFH" => "Migration, immigration & emigration",
594    "JBFJ" => "Human trafficking",
595    "JBFK" => "Violence & abuse in society",
596    "JBFK1" => "Child abuse",
597    "JBFK2" => "Sexual abuse & harassment",
598    "JBFK3" => "Domestic abuse",
599    "JBFK4" => "Bullying & harassment",
600    "JBFM" => "Disability: social aspects",
601    "JBFN" => "Health, illness & addiction: social aspects",
602    "JBFQ" => "Social mobility",
603    "JBFS" => "Consumerism",
604    "JBFU" => "Animals & society",
605    "JBFV" => "Ethical issues & debates",
606    "JBFV1" => "Ethical issues: abortion & birth control",
607    "JBFV2" => "Ethical issues: capital punishment",
608    "JBFV3" => "Ethical issues: censorship",
609    "JBFV4" => "Ethical issues: euthanasia & right to die",
610    "JBFV5" => "Ethical issues: scientific, technological & medical developments",
611    "JBFW" => "Sex & sexuality, social aspects",
612    "JBFX" => "Social attitudes",
613    "JBFZ" => "Social forecasting, future studies",
614    "JBG" => "Popular beliefs & controversial knowledge",
615    "JBGB" => "Folklore, myths & legends",
616    "JBGX" => "Conspiracy theories",
617    "JBS" => "Social groups",
618    "JBSA" => "Social classes",
619    "JBSC" => "Rural communities",
620    "JBSD" => "Urban communities",
621    "JBSF" => "Gender studies, gender groups",
622    "JBSF1" => "Gender studies: women & girls",
623    "JBSF11" => "Feminism & feminist theory",
624    "JBSF2" => "Gender studies: men & boys",
625    "JBSF3" => "Gender studies: transgender, transsexual, intersex people",
626    "JBSJ" => "Gay & Lesbian studies / LGBTQ studies",
627    "JBSL" => "Ethnic studies",
628    "JBSL1" => "Ethnic groups & multicultural studies",
629    "JBSL11" => "Indigenous peoples",
630    "JBSL13" => "Mixed heritage / mixed race groups or people",
631    "JBSP" => "Age groups & generations",
632    "JBSP1" => "Age groups: children",
633    "JBSP2" => "Age groups: adolescents",
634    "JBSP3" => "Age groups: adults",
635    "JBSP4" => "Age groups: the elderly",
636    "JBSR" => "Social groups: religious groups & communities",
637    "JBSW" => "Social groups: alternative lifestyles",
638    "JBSX" => "Secret societies",
639    "JBSY" => "Social groups: clubs & societies",
640    "JH" => "Sociology & anthropology",
641    "JHB" => "Sociology",
642    "JHBA" => "Social theory",
643    "JHBC" => "Social research & statistics",
644    "JHBD" => "Population & demography",
645    "JHBK" => "Sociology: family & relationships",
646    "JHBL" => "Sociology: work & labour",
647    "JHBS" => "Sociology: sport & leisure",
648    "JHBZ" => "Sociology: death & dying",
649    "JHM" => "Anthropology",
650    "JHMC" => "Social & cultural anthropology",
651    "JK" => "Social services & welfare, criminology",
652    "JKS" => "Social welfare & social services",
653    "JKSB" => "Welfare & benefit systems",
654    "JKSB1" => "Child welfare",
655    "JKSF" => "Adoption & fostering",
656    "JKSG" => "Care of the elderly",
657    "JKSM" => "Care of the mentally ill",
658    "JKSN" => "Social work",
659    "JKSN1" => "Charities, voluntary services & philanthropy",
660    "JKSN2" => "Social counselling & advice services",
661    "JKSR" => "Aid & relief programmes",
662    "JKSW" => "Emergency services",
663    "JKSW1" => "Police & security services",
664    "JKSW2" => "Fire services",
665    "JKSW3" => "Ambulance & rescue services",
666    "JKV" => "Crime & criminology",
667    "JKVC" => "Causes & prevention of crime",
668    "JKVF" => "Criminal investigation & detection",
669    "JKVF1" => "Forensic science",
670    "JKVG" => "Drugs trade / drug trafficking",
671    "JKVJ" => "Street crime",
672    "JKVK" => "Corporate crime / white-collar crime",
673    "JKVM" => "Organized crime",
674    "JKVP" => "Penology & punishment",
675    "JKVQ" => "Offenders",
676    "JKVQ1" => "Rehabilitation of offenders",
677    "JKVQ2" => "Juvenile offenders",
678    "JKVS" => "Probation services",
679    "JKVV" => "Victimology & victims of crime",
680    "JM" => "Psychology",
681    "JMA" => "Psychological theory, systems, schools & viewpoints",
682    "JMAF" => "Psychoanalytical & Freudian psychology",
683    "JMAF1" => "Lacanian psychoanalysis",
684    "JMAJ" => "Analytical & Jungian psychology",
685    "JMAL" => "Behaviourism, Behavioural theory",
686    "JMAN" => "Humanistic psychology",
687    "JMAP" => "Positive psychology",
688    "JMAQ" => "Cognitivism, cognitive theory",
689    "JMB" => "Psychological methodology",
690    "JMBT" => "Psychological testing & measurement",
691    "JMC" => "Child, developmental & lifespan psychology",
692    "JMD" => "Psychology of ageing",
693    "JMF" => "Family psychology",
694    "JMG" => "Psychology of gender",
695    "JMH" => "Social, group or collective psychology",
696    "JMHC" => "Interpersonal communication & skills",
697    "JMJ" => "Occupational & industrial psychology",
698    "JMK" => "Criminal or forensic psychology",
699    "JML" => "Experimental psychology",
700    "JMM" => "Physiological & neuro-psychology, biopsychology",
701    "JMP" => "Abnormal psychology",
702    "JMQ" => "Psychology: emotions",
703    "JMR" => "Cognition & cognitive psychology",
704    "JMS" => "Psychology: the self, ego, identity, personality",
705    "JMT" => "Psychology: states of consciousness",
706    "JMU" => "Psychology: sexual behaviour",
707    "JMX" => "Parapsychological studies",
708    "JN" => "Education",
709    "JNA" => "Philosophy & theory of education",
710    "JNAM" => "Moral & social purpose of education",
711    "JNB" => "History of education",
712    "JNC" => "Educational psychology",
713    "JND" => "Educational systems & structures",
714    "JNDG" => "Curriculum planning & development",
715    "JNDH" => "Education: examinations & assessment",
716    "JNE" => "Social pedagogy",
717    "JNF" => "Educational strategies & policy",
718    "JNFC" => "Counselling of students",
719    "JNFK" => "Educational strategies & policy: inclusion",
720    "JNG" => "Early childhood care & education",
721    "JNH" => "Home schooling",
722    "JNK" => "Educational administration & organization",
723    "JNKG" => "Funding of education & student finance",
724    "JNKH" => "Teaching staff",
725    "JNL" => "Schools & pre-schools",
726    "JNLA" => "Pre-school & kindergarten",
727    "JNLB" => "Primary & middle schools",
728    "JNLC" => "Secondary schools",
729    "JNLP" => "Independent schools, private education",
730    "JNLR" => "Faith (religious) schools",
731    "JNLV" => "Outdoor schools / education",
732    "JNM" => "Higher & further education, tertiary education",
733    "JNMT" => "Teacher training",
734    "JNP" => "Adult education, continuous learning",
735    "JNQ" => "Open learning, distance education",
736    "JNR" => "Careers guidance",
737    "JNRD" => "Work experience, placements & internships",
738    "JNRV" => "Industrial or vocational training",
739    "JNS" => "Teaching of students with different educational needs",
740    "JNSC" => "Teaching of students with physical impairment or disability",
741    "JNSG" => "Teaching of students with learning difficulties",
742    "JNSL" => "Teaching of students with social, emotional or behavioural difficulties",
743    "JNSP" => "Teaching of gifted or talented students",
744    "JNSR" => "Remedial education & teaching",
745    "JNT" => "Teaching skills & techniques",
746    "JNTC" => "Competence development",
747    "JNTP" => "Project-based learning",
748    "JNU" => "Teaching of a specific subject",
749    "JNUM" => "Teachers’ classroom resources & material",
750    "JNUM1" => "Lesson plans",
751    "JNV" => "Educational equipment & technology, computer-aided learning (CAL)",
752    "JNW" => "Extra-curricular activities",
753    "JNZ" => "Study & learning skills: general",
754    "JP" => "Politics & government",
755    "JPA" => "Political science & theory",
756    "JPB" => "Comparative politics",
757    "JPF" => "Political ideologies",
758    "JPFB" => "Anarchism",
759    "JPFC" => "Marxism & Communism",
760    "JPFF" => "Socialism & left-of-centre democratic ideologies",
761    "JPFK" => "Liberalism & centre democratic ideologies",
762    "JPFM" => "Conservatism & right-of-centre democratic ideologies",
763    "JPFN" => "Nationalism",
764    "JPFQ" => "Fascism & Nazism",
765    "JPFR" => "Religious & theocratic ideologies",
766    "JPH" => "Political structure & processes",
767    "JPHC" => "Constitution: government & the state",
768    "JPHF" => "Elections & referenda",
769    "JPHL" => "Political leaders & leadership",
770    "JPHV" => "Political structures: democracy",
771    "JPHX" => "Political structures: totalitarianism & dictatorship",
772    "JPL" => "Political parties",
773    "JPN" => "Indigenous people: government",
774    "JPP" => "Public administration",
775    "JPQ" => "Central / national / federal government",
776    "JPQB" => "Central / national / federal government policies",
777    "JPR" => "Regional, state & other local government",
778    "JPRB" => "Regional, state & other local government policies",
779    "JPS" => "International relations",
780    "JPSD" => "Diplomacy",
781    "JPSF" => "Arms negotiation & control",
782    "JPSH" => "Espionage & secret services",
783    "JPSL" => "Geopolitics",
784    "JPSN" => "International institutions",
785    "JPT" => "Municipal / city government",
786    "JPV" => "Political control & freedoms",
787    "JPVC" => "Civics & citizenship",
788    "JPVH" => "Human rights, civil rights",
789    "JPVR" => "Political oppression & persecution",
790    "JPW" => "Political activism",
791    "JPWA" => "Public opinion & polls",
792    "JPWC" => "Political campaigning & advertising",
793    "JPWG" => "Pressure groups, protest movements & non-violent action",
794    "JPWH" => "Non-governmental organizations (NGOs)",
795    "JPWL" => "Terrorism, armed struggle",
796    "JPWQ" => "Revolutionary groups & movements",
797    "JPWS" => "Armed conflict",
798    "JPZ" => "Political corruption",
799    "JW" => "Warfare & defence",
800    "JWA" => "Theory of warfare & military science",
801    "JWC" => "Military forces & sectors",
802    "JWCD" => "Land forces & warfare",
803    "JWCG" => "Irregular or guerrilla forces & warfare",
804    "JWCK" => "Naval forces & warfare",
805    "JWCM" => "Air forces & warfare",
806    "JWCS" => "Special & elite forces",
807    "JWJ" => "Military administration",
808    "JWK" => "Military & defence strategy",
809    "JWKF" => "Military intelligence",
810    "JWL" => "War & defence operations",
811    "JWLF" => "Battles & campaigns",
812    "JWLP" => "Peacekeeping operations",
813    "JWM" => "Weapons & equipment",
814    "JWMC" => "Chemical & biological weapons",
815    "JWMN" => "Nuclear weapons",
816    "JWMV" => "Military vehicles",
817    "JWT" => "Military institutions",
818    "JWTU" => "Military uniforms / insignia",
819    "JWX" => "Other warfare & defence issues",
820    "JWXF" => "Arms trade",
821    "JWXK" => "War crimes",
822    "JWXN" => "Mercenaries",
823    "JWXR" => "Prisoners of war",
824    "JWXT" => "Mutiny",
825    "JWXV" => "Military veterans",
826    "JWXZ" => "Combat / defence skills & manuals",
827    "K" => "Economics, Finance, Business & Management",
828    "KC" => "Economics",
829    "KCA" => "Economic theory & philosophy",
830    "KCB" => "Macroeconomics",
831    "KCBM" => "Monetary economics",
832    "KCC" => "Microeconomics",
833    "KCD" => "Economics of industrial organization",
834    "KCF" => "Labour / income economics",
835    "KCG" => "Economic growth",
836    "KCH" => "Econometrics & economic statistics",
837    "KCJ" => "Economic forecasting",
838    "KCK" => "Behavioural economics",
839    "KCL" => "International economics",
840    "KCM" => "Development economics & emerging economies",
841    "KCLT" => "International trade & commerce",
842    "KCP" => "Political economy",
843    "KCS" => "Economic systems & structures",
844    "KCSA" => "Capitalism",
845    "KCSD" => "Mixed economic systems",
846    "KCSG" => "Planned economic systems",
847    "KCV" => "Economics of specific sectors",
848    "KCVD" => "Agricultural economics",
849    "KCVG" => "Environmental economics",
850    "KCVJ" => "Health economics",
851    "KCVK" => "Welfare economics",
852    "KCVM" => "Digital or internet economics",
853    "KCVP" => "Knowledge economics",
854    "KCVS" => "Urban economics",
855    "KCX" => "Economic & financial crises & disasters",
856    "KCY" => "Popular economics",
857    "KCZ" => "Economic history",
858    "KF" => "Finance & accounting",
859    "KFC" => "Accounting",
860    "KFCC" => "Cost accounting",
861    "KFCF" => "Financial accounting",
862    "KFCM" => "Management accounting & bookkeeping",
863    "KFCP" => "Public finance accounting",
864    "KFCR" => "Financial reporting, financial statements",
865    "KFCX" => "Accounting: study & revision guides",
866    "KFF" => "Finance",
867    "KFFD" => "Public finance & taxation",
868    "KFFH" => "Corporate finance",
869    "KFFJ" => "Currency / Foreign exchange",
870    "KFFK" => "Banking",
871    "KFFL" => "Credit & credit institutions",
872    "KFFM" => "Investment & securities",
873    "KFFN" => "Insurance & actuarial studies",
874    "KFFP" => "Pensions",
875    "KFFR" => "Property & real estate",
876    "KFFX" => "Banking & finance: study & revision guides",
877    "KJ" => "Business & Management",
878    "KJB" => "Business studies: general",
879    "KJBX" => "Business & management: study & revision guides",
880    "KJC" => "Business strategy",
881    "KJD" => "Business innovation",
882    "KJDD" => "Disruptive innovation",
883    "KJE" => "E-commerce: business aspects",
884    "KJF" => "Business competition",
885    "KJG" => "Business ethics & social responsibility",
886    "KJH" => "Entrepreneurship",
887    "KJJ" => "Business & the environment; ‘green’ approaches to business",
888    "KJK" => "International business",
889    "KJL" => "Consultancy",
890    "KJM" => "Management & management techniques",
891    "KJMB" => "Management: leadership & motivation",
892    "KJMD" => "Management decision making",
893    "KJMK" => "Knowledge management",
894    "KJMP" => "Project management",
895    "KJMQ" => "Quality Assurance (QA) & Total Quality Management (TQM)",
896    "KJMT" => "Time management",
897    "KJMV" => "Management of specific areas",
898    "KJMV1" => "Budgeting & financial management",
899    "KJMV2" => "Personnel & human resources management",
900    "KJMV21" => "Performance management / appraisals",
901    "KJMV22" => "Diversity, inclusivity in the workplace",
902    "KJMV4" => "Management of real estate, property & plant",
903    "KJMV5" => "Production & quality control management",
904    "KJMV6" => "Research & development management",
905    "KJMV7" => "Sales & marketing management",
906    "KJMV8" => "Purchasing & supply management",
907    "KJMV9" => "Distribution & logistics management",
908    "KJN" => "Business negotiation",
909    "KJP" => "Business communication & presentation",
910    "KJQ" => "Business mathematics & systems",
911    "KJR" => "Corporate governance: role & responsibilities of boards & directors",
912    "KJS" => "Sales & marketing",
913    "KJSA" => "Advertising",
914    "KJSC" => "Brands & branding",
915    "KJSG" => "Web-marketing",
916    "KJSJ" => "Direct marketing / telemarketing",
917    "KJSM" => "Market research",
918    "KJSP" => "Public relations",
919    "KJSU" => "Customer services",
920    "KJT" => "Operational research",
921    "KJU" => "Organizational theory & behaviour",
922    "KJV" => "Ownership & organization of enterprises",
923    "KJVB" => "Takeovers, mergers & buy-outs",
924    "KJVD" => "Privatization",
925    "KJVF" => "Franchises",
926    "KJVG" => "Multinationals",
927    "KJVN" => "Public ownership / nationalization",
928    "KJVP" => "Monopolies",
929    "KJVS" => "Small businesses & self-employment",
930    "KJVT" => "Outsourcing",
931    "KJVV" => "Joint ventures",
932    "KJVW" => "Employee-ownership & co-operatives",
933    "KJVX" => "Non-profitmaking organizations",
934    "KJW" => "Office & workplace",
935    "KJWB" => "Office management",
936    "KJWF" => "Office systems & equipment",
937    "KJWS" => "Secretarial, clerical & office skills",
938    "KJWX" => "Working patterns & practices",
939    "KJZ" => "History of specific companies / corporate history",
940    "KN" => "Industry & industrial studies",
941    "KNA" => "Agribusiness & primary industries",
942    "KNAC" => "Agriculture, agribusiness & food production industries",
943    "KNAF" => "Fisheries & related industries",
944    "KNAL" => "Forestry industry",
945    "KNAT" => "Extractive industries",
946    "KNB" => "Energy industries & utilities",
947    "KNBL" => "Electrical power generation & distribution industries",
948    "KNBP" => "Petroleum, oil & gas industries",
949    "KNBT" => "Alternative & renewable energy industries",
950    "KNBW" => "Water industries",
951    "KND" => "Manufacturing industries",
952    "KNDC" => "Chemical, biotechnology & pharmaceutical industries",
953    "KNDD" => "Apparel, garment & textile industries",
954    "KNDR" => "Vehicle manufacturing industries",
955    "KNG" => "Transport industries",
956    "KNJ" => "Construction & heavy industry",
957    "KNJC" => "Construction & building industry",
958    "KNJH" => "Iron, steel & other metal industries",
959    "KNP" => "Retail & wholesale industries",
960    "KNS" => "Hospitality & service industries",
961    "KNSB" => "Food & drink service industries",
962    "KNSG" => "Hospitality, leisure & tourism industries",
963    "KNSJ" => "Events management industry",
964    "KNSX" => "Fashion & beauty industries",
965    "KNT" => "Media, entertainment, information & communication industries",
966    "KNTC" => "Film, TV & Radio industries",
967    "KNTF" => "Music industry",
968    "KNTP" => "Publishing industry & journalism",
969    "KNTP1" => "Publishing & book trade",
970    "KNTP2" => "News media & journalism",
971    "KNTV" => "Computer & video game industry",
972    "KNTX" => "Information technology industries",
973    "KNV" => "Civil service & public sector",
974    "KNX" => "Industrial relations, occupational health & safety",
975    "KNXC" => "Health & safety in the workplace",
976    "KNXN" => "Industrial arbitration & negotiation",
977    "KNXU" => "Trade unions",
978    "L" => "Law",
979    "LA" => "Jurisprudence & general issues",
980    "LAB" => "Methods, theory & philosophy of law",
981    "LAF" => "Systems of law",
982    "LAFC" => "Systems of law: common law",
983    "LAFD" => "Systems of law: civil codes / civil law",
984    "LAFR" => "Systems of law: Roman law",
985    "LAFS" => "Systems of law: Islamic law",
986    "LAFT" => "Systems of law: Jewish Law",
987    "LAFX" => "Systems of law: ecclesiastical (canon) law",
988    "LAM" => "Comparative law",
989    "LAQ" => "Law & society, sociology of law",
990    "LAQG" => "Law & society, gender issues",
991    "LAR" => "Legal aspects of criminology",
992    "LAS" => "Legal skills & practice",
993    "LASD" => "Legal skills: advocacy",
994    "LASH" => "Legal skills: drafting & legal writing",
995    "LASK" => "Legal skills: negotiating and interviewing",
996    "LASN" => "Legal skills: research methods",
997    "LASP" => "Legal practice: paralegals & paralegalism",
998    "LAT" => "Legal profession: general",
999    "LATC" => "Legal ethics & professional conduct",
1000    "LAY" => "Law as it applies to other professions & disciplines",
1001    "LAZ" => "Legal history",
1002    "LB" => "International law",
1003    "LBB" => "Public international law",
1004    "LBBC" => "Public international law: treaties & other sources",
1005    "LBBC1" => "Public International law: customary law",
1006    "LBBD" => "Public international law: diplomatic law",
1007    "LBBF" => "Public international law: jurisdiction & immunities",
1008    "LBBJ" => "Public international law: territory & statehood",
1009    "LBBK" => "Public international law: law of the sea",
1010    "LBBL" => "Public International law: health",
1011    "LBBM" => "Public international law: economic & trade",
1012    "LBBM1" => "Public international law, economic & trade: tariffs",
1013    "LBBM3" => "Public international law, economic & trade: investment treaties & disputes",
1014    "LBBM5" => "Public international law: energy & natural resources",
1015    "LBBM7" => "Public international law, economic & trade: corporations",
1016    "LBBP" => "Public international law: environment",
1017    "LBBP1" => "Public international law, environment: agricultural law",
1018    "LBBQ" => "Public international law: administration",
1019    "LBBR" => "Public international law: human rights",
1020    "LBBR1" => "Public international law, human rights: labour & social",
1021    "LBBS" => "Public international law: humanitarian law",
1022    "LBBU" => "Public international law: international organizations & institutions",
1023    "LBBV" => "Public international law: responsibility of states & other entities",
1024    "LBBZ" => "Public international law: criminal law",
1025    "LBD" => "International law: transport, communications & commerce",
1026    "LBDA" => "International law, transport: space & aerospace law",
1027    "LBDK" => "International law: transnational commerce & international sale of goods law",
1028    "LBDM" => "International law, transport & commerce: maritime law",
1029    "LBDT" => "International law: communications, telecommunications & media",
1030    "LBG" => "Private international law & conflict of laws",
1031    "LBH" => "International law: international disputes & civil procedure",
1032    "LBHG" => "International law: courts & procedures",
1033    "LBHT" => "International law: arbitration",
1034    "LBJ" => "International law: intellectual property",
1035    "LBK" => "International law: sports",
1036    "LBL" => "International law reports",
1037    "LN" => "Laws of specific jurisdictions & specific areas of law",
1038    "LNA" => "Legal systems: general",
1039    "LNAA" => "Legal systems: courts & procedures",
1040    "LNAA1" => "Legal systems: judicial powers",
1041    "LNAA2" => "Legal systems: law of contempt",
1042    "LNAC" => "Legal systems: civil procedure, litigation & dispute resolution",
1043    "LNAC1" => "Civil remedies",
1044    "LNAC12" => "Restitution",
1045    "LNAC14" => "Damages & compensation",
1046    "LNAC16" => "Injunctions & other orders",
1047    "LNAC3" => "Civil procedure: law of evidence",
1048    "LNAC4" => "Civil procedure: investigation & specific proceedings",
1049    "LNAC5" => "Arbitration, mediation & alternative dispute resolution",
1050    "LNAF" => "Legal systems: costs & funding",
1051    "LNAL" => "Legal systems: regulation of legal profession",
1052    "LNB" => "Private or civil law: general",
1053    "LNBA" => "Legal entity (natural & legal persons)",
1054    "LNBB" => "Civil registration system",
1055    "LNC" => "Company, commercial & competition law: general",
1056    "LNCB" => "Commercial law",
1057    "LNCB1" => "Franchising law",
1058    "LNCB2" => "E-commerce law",
1059    "LNCB3" => "Sale of goods law",
1060    "LNCB4" => "Outsourcing law",
1061    "LNCB5" => "Shipping law",
1062    "LNCB6" => "Aviation law",
1063    "LNCB7" => "Catering, restaurants & crafts law",
1064    "LNCC" => "Regulatory compliance",
1065    "LNCD" => "Company law",
1066    "LNCD1" => "Mergers & acquisitions law",
1067    "LNCE" => "Registry & proceedings law",
1068    "LNCF" => "Partnership & cooperative law",
1069    "LNCG" => "Transformation law, change of corporate form",
1070    "LNCH" => "Competition law / Antitrust law",
1071    "LNCJ" => "Contract law",
1072    "LNCK" => "Company & business offences",
1073    "LNCL" => "Agency law",
1074    "LNCN" => "Procurement law",
1075    "LNCQ" => "Construction & engineering law",
1076    "LNCQ1" => "Private construction & engineering law",
1077    "LNCQ2" => "Public construction law",
1078    "LNCR" => "Energy & natural resources law",
1079    "LND" => "Constitutional & administrative law: general",
1080    "LNDA" => "Citizenship & nationality law",
1081    "LNDA1" => "Immigration law",
1082    "LNDA3" => "Asylum law",
1083    "LNDB" => "Administrative jurisdiction & public administration",
1084    "LNDB1" => "Administrative law, general",
1085    "LNDB2" => "Administrative procedure & courts",
1086    "LNDB3" => "State & public properties & assets",
1087    "LNDB4" => "Sanctioning power of the administration",
1088    "LNDB5" => "Compulsory expropriation, compulsory purchase, eminent domain",
1089    "LNDB6" => "Making of rules & administrative acts",
1090    "LNDB7" => "Regulation of public services",
1091    "LNDB8" => "Law of science & research, university college law",
1092    "LNDC" => "Law: Human rights & civil liberties",
1093    "LNDC1" => "Constitutional law & human rights",
1094    "LNDC2" => "Privacy law",
1095    "LNDC4" => "Freedom of expression law",
1096    "LNDC5" => "History of constitution & comparative constitutional law",
1097    "LNDE" => "Civil & Public Servants law",
1098    "LNDF" => "Freedom of information law",
1099    "LNDG" => "Religious law & concordats",
1100    "LNDH" => "Government powers",
1101    "LNDJ" => "State liability & compensation law",
1102    "LNDK" => "Military & defence law & civilian service law",
1103    "LNDL" => "Safety & police law, regulatory & weapons law",
1104    "LNDM" => "Judicial review",
1105    "LNDP" => "Parliamentary & legislative practice",
1106    "LNDS" => "Election law",
1107    "LNDU" => "Local government law",
1108    "LNDV" => "Regional government law",
1109    "LNDX" => "Constitution",
1110    "LNE" => "Economic administrative law & public commercial law",
1111    "LNEA" => "Financial administration & public finance law",
1112    "LNEB" => "Foreign economics & customs law",
1113    "LNEC" => "Law of allowances & subsidies",
1114    "LNEF" => "Public procurement, services & supplies",
1115    "LNF" => "Criminal law: procedure & offences",
1116    "LNFB" => "Criminal justice law",
1117    "LNFG" => "Criminal law: offences against the government",
1118    "LNFG1" => "Offences against the State, against public administration & the administration of justice",
1119    "LNFG2" => "Offences against land use & city planning, monument, land & environment protection",
1120    "LNFJ" => "Criminal law: offences against the person",
1121    "LNFJ1" => "Harassment & stalking",
1122    "LNFJ2" => "Gender violence",
1123    "LNFL" => "Criminal law: offences against property",
1124    "LNFN" => "Fraud",
1125    "LNFQ" => "Juvenile criminal law",
1126    "LNFR" => "Offences against public health, safety, order",
1127    "LNFS" => "Criminal law: additional penalty law",
1128    "LNFT" => "Road traffic law, motoring offences",
1129    "LNFU" => "Criminal law: fiscal offences",
1130    "LNFV" => "Criminal law: terrorism law",
1131    "LNFW" => "Corruption",
1132    "LNFX" => "Criminal procedure",
1133    "LNFX1" => "Sentencing & punishment",
1134    "LNFX3" => "Criminal procedure: law of evidence",
1135    "LNFX31" => "Criminal procedure: investigation & specific proceedings",
1136    "LNFX5" => "Police law & police procedures",
1137    "LNFX51" => "Police law: preliminary injunction",
1138    "LNFX7" => "Prison law",
1139    "LNFY" => "Jury trials",
1140    "LNH" => "Employment & labour law: general",
1141    "LNHD" => "Discrimination in employment & harassment law",
1142    "LNHH" => "Occupational health & safety law, working time law",
1143    "LNHJ" => "Labour rules violations & penalties",
1144    "LNHR" => "Industrial relations & trade unions law",
1145    "LNHU" => "Employment contracts",
1146    "LNHW" => "Law of professional training",
1147    "LNHX" => "Employment & labour law: procedure, dispute resolution",
1148    "LNJ" => "Entertainment & media law",
1149    "LNJD" => "Defamation law, slander & libel",
1150    "LNJS" => "Sport & the law",
1151    "LNJX" => "Advertising, marketing & sponsorship law",
1152    "LNK" => "Environment, transport & planning law: general",
1153    "LNKF" => "Agricultural law",
1154    "LNKG" => "Animal law",
1155    "LNKJ" => "Environment law",
1156    "LNKK" => "Disaster control & fire protection law",
1157    "LNKN" => "Nature conservation law",
1158    "LNKP" => "Water & wastewater law",
1159    "LNKT" => "Transport law",
1160    "LNKV" => "Ways & highways law",
1161    "LNKW" => "Planning law",
1162    "LNKX" => "Protection of historic buildings & cultural assets",
1163    "LNL" => "Law: equity & trusts, foundations",
1164    "LNM" => "Family law",
1165    "LNMB" => "Family law: marriage, separation & divorce",
1166    "LNMC" => "Family law: cohabitation",
1167    "LNMF" => "Family law: same-sex partnership",
1168    "LNMI" => "Family law: financial statement between spouses",
1169    "LNMK" => "Family law: children",
1170    "LNP" => "Financial law: general",
1171    "LNPA" => "Accounting & auditing law",
1172    "LNPB" => "Banking law",
1173    "LNPC" => "Bankruptcy & insolvency",
1174    "LNPC1" => "Bankruptcy law: extrajudicial procedures",
1175    "LNPD" => "Capital markets & securities law & regulation",
1176    "LNPF" => "Financial services law & regulation",
1177    "LNPN" => "Insurance law",
1178    "LNPP" => "Pensions, old-age provisions & private compensation",
1179    "LNQ" => "IT & Communications law / Postal laws & regulations",
1180    "LNQD" => "Data protection law",
1181    "LNQE" => "Computer crime, cybercrime",
1182    "LNR" => "Intellectual property law",
1183    "LNRC" => "Copyright law",
1184    "LNRD" => "Patents law",
1185    "LNRF" => "Trademarks law",
1186    "LNRL" => "Designs law",
1187    "LNRV" => "Confidential information law",
1188    "LNS" => "Property law: general",
1189    "LNSH" => "Land & real estate law",
1190    "LNSH1" => "Ownership & mortgage law",
1191    "LNSH3" => "Landlord & tenant law",
1192    "LNSH5" => "Conveyancing law",
1193    "LNSH7" => "Rating & valuation law",
1194    "LNSH9" => "Housing law",
1195    "LNSP" => "Personal property law",
1196    "LNT" => "Social law & Medical law",
1197    "LNTC" => "Charity law",
1198    "LNTD" => "Education law",
1199    "LNTH" => "Social security & welfare law",
1200    "LNTH1" => "Social insurance law",
1201    "LNTJ" => "Public health & safety law",
1202    "LNTM" => "Medical & healthcare law",
1203    "LNTM1" => "Mental health law",
1204    "LNTM2" => "Regulation of medicines & medical devices",
1205    "LNTN" => "Pharmaceutical law",
1206    "LNTQ" => "Disability & the law",
1207    "LNTS" => "Law & the elderly",
1208    "LNTU" => "Consumer protection law",
1209    "LNTV" => "Food law",
1210    "LNTX" => "Licensing, gaming & club law",
1211    "LNU" => "Taxation & duties law",
1212    "LNUC" => "Corporate & business tax",
1213    "LNUD" => "Local taxation, charges, public prices, excise duties",
1214    "LNUP" => "Personal tax",
1215    "LNUS" => "Sales tax, tariffs & customs duties",
1216    "LNUT" => "Trusts & estates taxation, gift tax",
1217    "LNUU" => "Real estate tax, property valuation",
1218    "LNUV" => "Excise taxes",
1219    "LNUW" => "Other transaction taxes",
1220    "LNUX" => "International taxation law",
1221    "LNUY" => "Taxation procedure",
1222    "LNV" => "Law of torts, damages & compensation",
1223    "LNVC" => "Negligence",
1224    "LNVF" => "Nuisance",
1225    "LNVJ" => "Personal injury",
1226    "LNW" => "Law: wills, probate, succession",
1227    "LNX" => "Public Law",
1228    "LNZ" => "Primary sources of law",
1229    "LNZC" => "Sources of law: case law, precedent",
1230    "LNZL" => "Sources of law: legislation",
1231    "LW" => "Shariah law",
1232    "LWF" => "Shariah law: four Schools of Fiqh",
1233    "LWFA" => "Shariah law: Al-Shafi’i School of Fiqh",
1234    "LWFB" => "Shariah law: Al-Hanbali School of Fiqh",
1235    "LWFC" => "Shariah law: Al-Maaliki School of Fiqh",
1236    "LWFD" => "Shariah law: Al-Hanafi School of Fiqh",
1237    "LWK" => "Shariah law: key topics & practice",
1238    "LWKF" => "Shariah law: family relations",
1239    "LWKG" => "Shariah law: crime & punishment",
1240    "LWKH" => "Shariah law: inheritance & disposal of property",
1241    "LWKL" => "Shariah law: economics & finance",
1242    "LWKM" => "Shariah law: dietary",
1243    "LWKN" => "Shariah law: alcohol & gambling",
1244    "LWKP" => "Shariah law: customs & behaviour",
1245    "LWKR" => "Shariah law: administration of justice (including penalties & apostasy)",
1246    "LWKT" => "Shariah law: Islamic rituals",
1247    "LWKT1" => "Shariah law: Islamic rituals: purification",
1248    "LWKT2" => "Shariah law: Islamic rituals: jihad",
1249    "LWKT3" => "Shariah law: Islamic rituals: prayer & funeral prayer",
1250    "LWKT4" => "Shariah law: Islamic rituals: zakat (alms)",
1251    "LWKT5" => "Shariah law: Islamic rituals: fasting",
1252    "LWKT6" => "Shariah law: Islamic rituals: pilgrimage",
1253    "LX" => "Law: study & revision guides",
1254    "M" => "Medicine & Nursing",
1255    "MB" => "Medicine: general issues",
1256    "MBD" => "Medical profession",
1257    "MBDC" => "Medical ethics & professional conduct",
1258    "MBDP" => "Doctor/patient relationship",
1259    "MBDS" => "Patient safety",
1260    "MBF" => "Medical & health informatics",
1261    "MBG" => "Medical equipment & techniques",
1262    "MBGL" => "Medical laboratory testing & techniques",
1263    "MBGR" => "Medical research",
1264    "MBGR1" => "Clinical trials",
1265    "MBGT" => "Telemedicine",
1266    "MBN" => "Public health & preventive medicine",
1267    "MBNC" => "Medical screening",
1268    "MBNH" => "Personal & public health / health education",
1269    "MBNH1" => "Hygiene",
1270    "MBNH2" => "Environmental factors",
1271    "MBNH3" => "Dietetics & nutrition",
1272    "MBNH4" => "Birth control, contraception, family planning",
1273    "MBNH9" => "Health psychology",
1274    "MBNK" => "Vaccination",
1275    "MBNS" => "Epidemiology & medical statistics",
1276    "MBP" => "Health systems & services",
1277    "MBPA" => "Primary care medicine, primary health care",
1278    "MBPC" => "General practice",
1279    "MBPK" => "Mental health services",
1280    "MBPM" => "Medical administration & management",
1281    "MBPN" => "Residential care",
1282    "MBPR" => "Medical insurance",
1283    "MBQ" => "Medicolegal issues",
1284    "MBS" => "Medical sociology",
1285    "MBX" => "History of medicine",
1286    "MF" => "Pre-clinical medicine: basic sciences",
1287    "MFC" => "Anatomy",
1288    "MFCC" => "Cytology",
1289    "MFCH" => "Histology",
1290    "MFCR" => "Regional anatomy",
1291    "MFCX" => "Dissection",
1292    "MFG" => "Physiology",
1293    "MFGC" => "Cellular physiology",
1294    "MFGG" => "Regional physiology",
1295    "MFGM" => "Metabolism",
1296    "MFGV" => "Biomechanics, human kinetics",
1297    "MFK" => "Human reproduction, growth & development",
1298    "MFKC" => "Reproductive medicine",
1299    "MFKC1" => "Infertility & fertilization",
1300    "MFKC3" => "Embryology",
1301    "MFKH" => "Human growth & development",
1302    "MFKH3" => "Maturation & ageing",
1303    "MFN" => "Medical genetics",
1304    "MJ" => "Clinical & internal medicine",
1305    "MJA" => "Medical diagnosis",
1306    "MJAD" => "Examination of patients",
1307    "MJC" => "Diseases & disorders",
1308    "MJCG" => "Congenital diseases & disorders",
1309    "MJCG1" => "Hereditary diseases & disorders",
1310    "MJCJ" => "Infectious & contagious diseases",
1311    "MJCJ1" => "Venereal diseases",
1312    "MJCJ2" => "HIV/AIDS",
1313    "MJCJ3" => "Hospital infections",
1314    "MJCL" => "Oncology",
1315    "MJCL1" => "Radiotherapy",
1316    "MJCL2" => "Chemotherapy",
1317    "MJCM" => "Immunology",
1318    "MJCM1" => "Allergies",
1319    "MJD" => "Cardiovascular medicine",
1320    "MJE" => "Musculoskeletal medicine",
1321    "MJF" => "Haematology",
1322    "MJG" => "Endocrinology",
1323    "MJGD" => "Diabetes",
1324    "MJH" => "Gastroenterology",
1325    "MJJ" => "Hepatology",
1326    "MJK" => "Dermatology",
1327    "MJL" => "Respiratory medicine",
1328    "MJM" => "Rheumatology",
1329    "MJP" => "Otorhinolaryngology (ENT)",
1330    "MJPD" => "Audiology & otology",
1331    "MJQ" => "Ophthalmology",
1332    "MJR" => "Renal medicine & nephrology",
1333    "MJRD" => "Haemodialysis",
1334    "MJS" => "Urology & urogenital medicine",
1335    "MK" => "Medical specialties, branches of medicine",
1336    "MKA" => "Anaesthetics",
1337    "MKAL" => "Pain & pain management",
1338    "MKB" => "Palliative medicine",
1339    "MKC" => "Gynaecology & obstetrics",
1340    "MKCM" => "Materno-foetal medicine / perinatology",
1341    "MKD" => "Paediatric medicine",
1342    "MKDN" => "Neonatal medicine",
1343    "MKE" => "Dentistry",
1344    "MKEP" => "Oral & maxillofacial surgery",
1345    "MKF" => "Pathology",
1346    "MKFC" => "Cytopathology",
1347    "MKFH" => "Histopathology",
1348    "MKFK" => "Chronic disease",
1349    "MKFM" => "Medical microbiology & virology",
1350    "MKFP" => "Medical parasitology",
1351    "MKFS" => "Psychosomatics",
1352    "MKG" => "Pharmacology",
1353    "MKGT" => "Medical toxicology",
1354    "MKGW" => "Psychopharmacology",
1355    "MKH" => "Regenerative medicine",
1356    "MKHC" => "Regenerative medicine: stem cells",
1357    "MKJ" => "Neurology & clinical neurophysiology",
1358    "MKJA" => "Autism & Asperger’s Syndrome",
1359    "MKJD" => "Alzheimer’s & dementia",
1360    "MKL" => "Psychiatry",
1361    "MKLD" => "Psychiatric & mental disorders",
1362    "MKM" => "Clinical psychology",
1363    "MKMT" => "Psychotherapy",
1364    "MKMT1" => "Psychotherapy: general",
1365    "MKMT2" => "Psychotherapy: group",
1366    "MKMT3" => "Psychotherapy: child & adolescent",
1367    "MKMT4" => "Psychotherapy: couples & families",
1368    "MKMT5" => "Psychotherapy: counselling",
1369    "MKMT6" => "Cognitive behavioural therapy",
1370    "MKN" => "Geriatric medicine",
1371    "MKP" => "Accident & emergency medicine",
1372    "MKPB" => "Trauma & shock",
1373    "MKPD" => "Burns",
1374    "MKPL" => "Intensive care medicine",
1375    "MKR" => "Nuclear medicine",
1376    "MKS" => "Medical imaging",
1377    "MKSF" => "Medical imaging: ultrasonics",
1378    "MKSG" => "Medical imaging: nuclear magnetic resonance (NMR / MRI)",
1379    "MKSH" => "Medical imaging: radiology",
1380    "MKSJ" => "Medical imaging: tomography",
1381    "MKT" => "Forensic medicine",
1382    "MKV" => "Environmental medicine",
1383    "MKVB" => "Aviation & space medicine",
1384    "MKVD" => "Diving & hyperbaric medicine",
1385    "MKVP" => "Occupational medicine",
1386    "MKVQ" => "Travel medicine / emporiatrics",
1387    "MKVT" => "Tropical medicine",
1388    "MKW" => "Sports injuries & medicine",
1389    "MKZ" => "Therapy & therapeutics",
1390    "MKZD" => "Eating disorders & therapy",
1391    "MKZF" => "Obesity: treatment & therapy",
1392    "MKZL" => "Speech & language disorders & therapy",
1393    "MKZR" => "Addiction & therapy",
1394    "MKZS" => "Sleep disorders & therapy",
1395    "MKZV" => "Gene therapy",
1396    "MN" => "Surgery",
1397    "MNB" => "Surgical techniques",
1398    "MNC" => "General surgery",
1399    "MND" => "Abdominal surgery",
1400    "MNG" => "Gastrointestinal & colorectal surgery",
1401    "MNH" => "Cardiothoracic surgery",
1402    "MNJ" => "Vascular surgery",
1403    "MNK" => "Surgical oncology",
1404    "MNL" => "Critical care surgery",
1405    "MNN" => "Neurosurgery",
1406    "MNP" => "Plastic & reconstructive surgery",
1407    "MNPC" => "Cosmetic surgery",
1408    "MNQ" => "Transplant surgery",
1409    "MNS" => "Surgical orthopaedics & fractures",
1410    "MNZ" => "Peri-operative care",
1411    "MQ" => "Nursing & ancillary services",
1412    "MQC" => "Nursing",
1413    "MQCA" => "Nursing fundamentals & skills",
1414    "MQCB" => "Nursing research & theory",
1415    "MQCH" => "Nurse/patient relationship",
1416    "MQCL" => "Nursing specialties",
1417    "MQCL1" => "Accident & emergency nursing",
1418    "MQCL2" => "Intensive care nursing",
1419    "MQCL3" => "Paediatric nursing",
1420    "MQCL4" => "Geriatric nursing",
1421    "MQCL5" => "Psychiatric nursing",
1422    "MQCL6" => "Surgical nursing",
1423    "MQCL9" => "Terminal care nursing",
1424    "MQCM" => "Nursing pharmacology",
1425    "MQCW" => "Nursing sociology",
1426    "MQCX" => "Community nursing",
1427    "MQCZ" => "Nursing management & leadership",
1428    "MQD" => "Midwifery",
1429    "MQDB" => "Birthing methods",
1430    "MQF" => "First aid & paramedical services",
1431    "MQG" => "Medical assistants",
1432    "MQH" => "Radiography",
1433    "MQK" => "Chiropody & podiatry",
1434    "MQP" => "Pharmacy / dispensing",
1435    "MQR" => "Optometry / opticians",
1436    "MQS" => "Physiotherapy",
1437    "MQT" => "Occupational therapy",
1438    "MQTC" => "Creative therapy (eg art, music, drama)",
1439    "MQU" => "Medical counselling",
1440    "MQV" => "Rehabilitation",
1441    "MQVB" => "Rehabilitation: brain & spinal injuries",
1442    "MQW" => "Biomedical engineering",
1443    "MQWB" => "Orthotics",
1444    "MQWP" => "Prosthetics",
1445    "MQZ" => "Mortuary practice",
1446    "MR" => "Medical study & revision guides & reference material",
1447    "MRG" => "Medical study & revision guides",
1448    "MRGD" => "Medical revision aids: MRCP",
1449    "MRGK" => "Medical revision aids: MRCS",
1450    "MRGL" => "Medical revision aids: PLAB",
1451    "MRT" => "Medical charts, colour atlases",
1452    "MX" => "Complementary medicine",
1453    "MXH" => "Chiropractic & osteopathy",
1454    "MZ" => "Veterinary medicine",
1455    "MZC" => "Veterinary medicine: small animals (pets)",
1456    "MZD" => "Veterinary medicine: large animals (domestic / farm)",
1457    "MZDH" => "Equine veterinary medicine",
1458    "MZF" => "Veterinary medicine: laboratory animals",
1459    "MZG" => "Veterinary medicine: exotic & zoo animals",
1460    "MZH" => "Veterinary anatomy & physiology",
1461    "MZK" => "Veterinary pathology & histology",
1462    "MZL" => "Veterinary nutrition",
1463    "MZM" => "Veterinary medicine: infectious diseases & therapeutics",
1464    "MZMP" => "Veterinary bacteriology, virology, parasitology",
1465    "MZP" => "Veterinary pharmacology",
1466    "MZR" => "Veterinary radiology",
1467    "MZS" => "Veterinary surgery",
1468    "MZSN" => "Veterinary anaesthetics",
1469    "MZT" => "Veterinary dentistry",
1470    "MZV" => "Veterinary nursing",
1471    "MZX" => "Complementary medicine for animals",
1472    "N" => "History & Archaeology",
1473    "NH" => "History",
1474    "NHA" => "History: theory & methods",
1475    "NHAH" => "Historiography",
1476    "NHAP" => "Historical research: source documents",
1477    "NHB" => "General & world history",
1478    "NHC" => "Ancient history",
1479    "NHD" => "European history",
1480    "NHDA" => "European history: the Romans",
1481    "NHDC" => "European history: the Celts",
1482    "NHDE" => "European history: the Vikings",
1483    "NHDG" => "European history: the Normans",
1484    "NHDJ" => "European history: mediaeval period, middle ages",
1485    "NHDL" => "European history: Renaissance",
1486    "NHDN" => "European history: Reformation",
1487    "NHF" => "Asian history",
1488    "NHG" => "Middle Eastern history",
1489    "NHH" => "African history",
1490    "NHHA" => "African history: pre-colonial period",
1491    "NHK" => "History of the Americas",
1492    "NHKA" => "History of the Americas: pre-Columbian period",
1493    "NHM" => "Australasian & Pacific history",
1494    "NHQ" => "History of specific lands",
1495    "NHT" => "History: specific events & topics",
1496    "NHTB" => "Social & cultural history",
1497    "NHTD" => "Oral history",
1498    "NHTF" => "History: plagues, diseases etc",
1499    "NHTG" => "Genealogy, heraldry, names & honours",
1500    "NHTK" => "Industrialization & industrial history",
1501    "NHTM" => "Maritime history",
1502    "NHTP" => "Historical geography",
1503    "NHTP1" => "Historical maps & atlases",
1504    "NHTQ" => "Colonialism & imperialism",
1505    "NHTR" => "National liberation & independence, post-colonialism",
1506    "NHTS" => "Slavery & abolition of slavery",
1507    "NHTT" => "Invasion & occupation",
1508    "NHTV" => "Revolutions, uprisings, rebellions",
1509    "NHTW" => "The Cold War",
1510    "NHTZ" => "Genocide & ethnic cleansing",
1511    "NHTZ1" => "The Holocaust",
1512    "NHW" => "Military history",
1513    "NHWA" => "Ancient warfare",
1514    "NHWF" => "Early modern warfare (including gunpowder warfare)",
1515    "NHWL" => "Modern warfare",
1516    "NHWR" => "Specific wars & campaigns",
1517    "NHWR1" => "Specific battles",
1518    "NHWR3" => "Civil wars",
1519    "NHWR5" => "First World War",
1520    "NHWR7" => "Second World War",
1521    "NHWR9" => "Military history: post-WW2 conflicts",
1522    "NK" => "Archaeology",
1523    "NKA" => "Archaeological theory",
1524    "NKD" => "Archaeology by period / region",
1525    "NKL" => "Landscape archaeology",
1526    "NKP" => "Environmental archaeology",
1527    "NKR" => "Underwater archaeology",
1528    "NKT" => "Industrial archaeology",
1529    "NKV" => "Battlefield archaeology",
1530    "NKX" => "Archaeological science, methodology & techniques",
1531    "P" => "Mathematics & Science",
1532    "PB" => "Mathematics",
1533    "PBB" => "Philosophy of mathematics",
1534    "PBC" => "Mathematical foundations",
1535    "PBCD" => "Mathematical logic",
1536    "PBCH" => "Set theory",
1537    "PBCN" => "Number systems",
1538    "PBD" => "Discrete mathematics",
1539    "PBF" => "Algebra",
1540    "PBG" => "Groups & group theory",
1541    "PBH" => "Number theory",
1542    "PBJ" => "Pre-calculus",
1543    "PBK" => "Calculus & mathematical analysis",
1544    "PBKA" => "Calculus",
1545    "PBKB" => "Real analysis, real variables",
1546    "PBKD" => "Complex analysis, complex variables",
1547    "PBKF" => "Functional analysis & transforms",
1548    "PBKJ" => "Differential calculus & equations",
1549    "PBKL" => "Integral calculus & equations",
1550    "PBKQ" => "Calculus of variations",
1551    "PBKS" => "Numerical analysis",
1552    "PBM" => "Geometry",
1553    "PBMB" => "Trigonometry",
1554    "PBMH" => "Euclidean geometry",
1555    "PBML" => "Non-Euclidean geometry",
1556    "PBMP" => "Differential & Riemannian geometry",
1557    "PBMS" => "Analytic geometry",
1558    "PBMW" => "Algebraic geometry",
1559    "PBMX" => "Fractal geometry",
1560    "PBP" => "Topology",
1561    "PBPD" => "Algebraic topology",
1562    "PBPH" => "Analytic topology",
1563    "PBT" => "Probability & statistics",
1564    "PBTB" => "Bayesian inference",
1565    "PBU" => "Optimization",
1566    "PBUD" => "Game theory",
1567    "PBUH" => "Linear programming",
1568    "PBV" => "Combinatorics & graph theory",
1569    "PBW" => "Applied mathematics",
1570    "PBWH" => "Mathematical modelling",
1571    "PBWL" => "Stochastics",
1572    "PBWR" => "Nonlinear science",
1573    "PBWS" => "Chaos theory",
1574    "PBWX" => "Fuzzy set theory",
1575    "PBX" => "History of mathematics",
1576    "PD" => "Science: general issues",
1577    "PDA" => "Philosophy of science",
1578    "PDC" => "Scientific nomenclature & classification",
1579    "PDD" => "Scientific standards, measurement etc",
1580    "PDE" => "Maths for scientists",
1581    "PDG" => "Industrial applications of scientific research & technological innovation",
1582    "PDJ" => "Regulation of science & experimentation",
1583    "PDK" => "Science funding & policy",
1584    "PDM" => "Scientific research",
1585    "PDN" => "Scientific equipment, experiments & techniques",
1586    "PDR" => "Impact of science & technology on society",
1587    "PDT" => "Nanosciences",
1588    "PDX" => "History of science",
1589    "PDZ" => "Popular science",
1590    "PDZM" => "Popular and recreational mathematics",
1591    "PG" => "Astronomy, space & time",
1592    "PGC" => "Theoretical & mathematical astronomy",
1593    "PGG" => "Astronomical observation: observatories, equipment & methods",
1594    "PGK" => "Cosmology & the universe",
1595    "PGM" => "Galaxies & stars",
1596    "PGS" => "Solar system: the Sun & planets",
1597    "PGT" => "Astronomical charts & atlases",
1598    "PGZ" => "Time (chronology), time systems & standards",
1599    "PH" => "Physics",
1600    "PHD" => "Classical mechanics",
1601    "PHDB" => "Elementary mechanics",
1602    "PHDD" => "Analytical mechanics",
1603    "PHDF" => "Physics: Fluid mechanics",
1604    "PHDS" => "Wave mechanics (vibration & acoustics)",
1605    "PHDT" => "Dynamics & statics",
1606    "PHDV" => "Gravity",
1607    "PHDY" => "Energy",
1608    "PHF" => "Materials / States of matter",
1609    "PHFB" => "Low temperature physics",
1610    "PHFC" => "Condensed matter physics (liquid state & solid state physics)",
1611    "PHFC1" => "Soft matter physics",
1612    "PHFC2" => "Mesoscopic physics",
1613    "PHFG" => "Physics of gases",
1614    "PHFP" => "Plasma physics",
1615    "PHH" => "Thermodynamics & heat",
1616    "PHJ" => "Optical physics",
1617    "PHJL" => "Laser physics",
1618    "PHK" => "Electricity, electromagnetism & magnetism",
1619    "PHM" => "Atomic & molecular physics",
1620    "PHN" => "Nuclear physics",
1621    "PHP" => "Particle & high-energy physics",
1622    "PHQ" => "Quantum physics (quantum mechanics & quantum field theory)",
1623    "PHR" => "Relativity physics",
1624    "PHS" => "Statistical physics",
1625    "PHU" => "Mathematical physics",
1626    "PHV" => "Applied physics",
1627    "PHVB" => "Astrophysics",
1628    "PHVD" => "Medical physics",
1629    "PHVG" => "Geophysics",
1630    "PHVJ" => "Atmospheric physics",
1631    "PHVN" => "Biophysics",
1632    "PHVQ" => "Chemical physics",
1633    "PHVS" => "Cryogenics",
1634    "PN" => "Chemistry",
1635    "PNB" => "Medicinal chemistry",
1636    "PNC" => "Environmental chemistry",
1637    "PND" => "Food chemistry",
1638    "PNF" => "Analytical chemistry",
1639    "PNFC" => "Chromatography",
1640    "PNFR" => "Magnetic resonance",
1641    "PNFS" => "Spectrum analysis, spectrochemistry, mass spectrometry",
1642    "PNK" => "Inorganic chemistry",
1643    "PNN" => "Organic chemistry",
1644    "PNND" => "Organometallic chemistry",
1645    "PNNP" => "Polymer chemistry",
1646    "PNR" => "Physical chemistry",
1647    "PNRA" => "Computational chemistry",
1648    "PNRC" => "Colloid chemistry",
1649    "PNRD" => "Catalysis",
1650    "PNRD1" => "Bio-catalysis",
1651    "PNRE" => "Experimental chemistry",
1652    "PNRH" => "Electrochemistry & magnetochemistry",
1653    "PNRL" => "Nuclear chemistry, photochemistry & radiation",
1654    "PNRP" => "Quantum & theoretical chemistry",
1655    "PNRR" => "Physical organic chemistry",
1656    "PNRS" => "Solid state chemistry",
1657    "PNRW" => "Thermochemistry & chemical thermodynamics",
1658    "PNRX" => "Surface chemistry & adsorption",
1659    "PNT" => "Crystallography",
1660    "PNV" => "Chemistry of minerals, crystals & gems",
1661    "PS" => "Biology, life sciences",
1662    "PSA" => "Life sciences: general issues",
1663    "PSAB" => "Taxonomy & systematics",
1664    "PSAD" => "Bioethics",
1665    "PSAF" => "Ecological science, the Biosphere",
1666    "PSAG" => "Xenobiotics",
1667    "PSAJ" => "Evolution",
1668    "PSAK" => "Genetics (non-medical)",
1669    "PSAN" => "Neurosciences",
1670    "PSAN1" => "Cellular & molecular neuroscience",
1671    "PSAN2" => "Developmental neuroscience",
1672    "PSAN3" => "Neuroimaging & neuroanatomy",
1673    "PSAN4" => "Sensory & motor systems",
1674    "PSAN5" => "Cognitive & behavioural neuroscience",
1675    "PSAX" => "Computational biology / bioinformatics",
1676    "PSB" => "Biochemistry",
1677    "PSC" => "Developmental biology",
1678    "PSD" => "Molecular biology",
1679    "PSE" => "Chemical biology",
1680    "PSF" => "Cellular biology (cytology)",
1681    "PSG" => "Microbiology (non-medical)",
1682    "PSGN" => "Protozoa",
1683    "PSP" => "Hydrobiology",
1684    "PSPA" => "Phycology (algae & seaweed)",
1685    "PSPF" => "Freshwater biology",
1686    "PSPM" => "Marine biology",
1687    "PSQ" => "Mycology, fungi",
1688    "PST" => "Botany & plant sciences",
1689    "PSTB" => "Plant biology",
1690    "PSTH" => "Flowering plants (angiosperms)",
1691    "PSTJ" => "Conifers & gymnosperms",
1692    "PSTM" => "Ferns, mosses & liverworts",
1693    "PSV" => "Zoology & animal sciences",
1694    "PSVA" => "Zoology: invertebrates",
1695    "PSVA2" => "Insects (entomology)",
1696    "PSVA4" => "Crustaceans (carcinology)",
1697    "PSVA6" => "Molluscs (malacology)",
1698    "PSVA8" => "Arachnids (arachnology)",
1699    "PSVC" => "Zoology: fishes (ichthyology)",
1700    "PSVF" => "Zoology: amphibians & reptiles (herpetology)",
1701    "PSVJ" => "Zoology: birds (ornithology)",
1702    "PSVM" => "Zoology: mammals (mammalogy)",
1703    "PSVM1" => "Zoology: marsupials & monotremes",
1704    "PSVM2" => "Zoology: marine & freshwater mammals",
1705    "PSVM3" => "Zoology: primates (primatology)",
1706    "PSVP" => "Ethology & animal behaviour",
1707    "PSX" => "Human biology",
1708    "PSXE" => "Evolutionary anthropology",
1709    "Q" => "Philosophy & Religion",
1710    "QD" => "Philosophy",
1711    "QDH" => "History of philosophy, philosophical traditions",
1712    "QDHA" => "Ancient philosophy",
1713    "QDHC" => "East Asian & Indian philosophy",
1714    "QDHC2" => "Yoga (as a philosophy)",
1715    "QDHF" => "Mediaeval philosophy",
1716    "QDHH" => "Humanist philosophy",
1717    "QDHK" => "Islamic & Arab philosophy",
1718    "QDHM" => "Western philosophy: Enlightenment",
1719    "QDHR" => "Modern philosophy: since c 1800",
1720    "QDHR1" => "Idealism",
1721    "QDHR3" => "Pragmatism",
1722    "QDHR5" => "Phenomenology & Existentialism",
1723    "QDHR7" => "Structuralism & Post-structuralism",
1724    "QDHR9" => "Analytical philosophy & Logical Positivism",
1725    "QDT" => "Topics in philosophy",
1726    "QDTJ" => "Philosophy: metaphysics & ontology",
1727    "QDTK" => "Philosophy: epistemology & theory of knowledge",
1728    "QDTL" => "Philosophy: logic",
1729    "QDTM" => "Philosophy of mind",
1730    "QDTN" => "Philosophy: aesthetics",
1731    "QDTQ" => "Ethics & moral philosophy",
1732    "QDTS" => "Social & political philosophy",
1733    "QDX" => "Popular philosophy",
1734    "QR" => "Religion & beliefs",
1735    "QRA" => "Religion: general",
1736    "QRAB" => "Philosophy of religion",
1737    "QRAB1" => "Nature & existence of God",
1738    "QRAC" => "Comparative religion",
1739    "QRAF" => "Interfaith relations",
1740    "QRAM" => "Religious issues & debates",
1741    "QRAM1" => "Religious ethics",
1742    "QRAM2" => "Religion & politics",
1743    "QRAM3" => "Religion & science",
1744    "QRAM6" => "Religious fundamentalism",
1745    "QRAM7" => "Blasphemy, heresy, apostasy",
1746    "QRAM9" => "Religious intolerance & persecution",
1747    "QRAX" => "History of religion",
1748    "QRD" => "Hinduism",
1749    "QRDB" => "Hinduism: branches & groups",
1750    "QRDF" => "Hindu sacred texts",
1751    "QRDF1" => "Hindu texts: Vedas, Upanishads",
1752    "QRDF2" => "Hindu texts: Bhagavad Gita",
1753    "QRDP" => "Hindu life & practice",
1754    "QRF" => "Buddhism",
1755    "QRFB" => "Buddhism: branches & groups",
1756    "QRFB1" => "Theravada Buddhism",
1757    "QRFB2" => "Mahayana Buddhism",
1758    "QRFB21" => "Tibetan Buddhism",
1759    "QRFB23" => "Zen Buddhism",
1760    "QRFF" => "Buddhist sacred texts",
1761    "QRFP" => "Buddhist life & practice",
1762    "QRJ" => "Judaism",
1763    "QRJB" => "Judaism: branches & groups",
1764    "QRJB1" => "Orthodox Judaism",
1765    "QRJB3" => "Liberal & Reform Judaism",
1766    "QRJF" => "Judaism: sacred texts",
1767    "QRJF1" => "Jewish texts: Tanakh, Torah, Nevi’im, Ketuvim",
1768    "QRJF5" => "Rabbinic literature",
1769    "QRJP" => "Judaism: life & practice",
1770    "QRM" => "Christianity",
1771    "QRMB" => "Christian Churches, denominations, groups",
1772    "QRMB1" => "Roman Catholicism, Roman Catholic Church",
1773    "QRMB2" => "Orthodox & Oriental Orthodox Churches",
1774    "QRMB3" => "Protestantism & Protestant Churches",
1775    "QRMB31" => "Anglican & Episcopalian Churches",
1776    "QRMB32" => "Baptist Churches",
1777    "QRMB33" => "Calvinist, Reformed & Presbyterian Churches",
1778    "QRMB34" => "Lutheran Churches",
1779    "QRMB35" => "Methodist Churches",
1780    "QRMB36" => "Pentecostal Churches",
1781    "QRMB37" => "Quakers (Religious Society of Friends)",
1782    "QRMB39" => "Other Nonconformist & Evangelical Churches",
1783    "QRMB5" => "Denominations of American origin",
1784    "QRMB8" => "Christian & quasi-Christian cults & sects",
1785    "QRMB9" => "Ecumenism",
1786    "QRMF" => "Christianity: sacred texts",
1787    "QRMF1" => "Bibles",
1788    "QRMF12" => "Old Testaments",
1789    "QRMF13" => "New Testaments",
1790    "QRMF19" => "Bible readings, selections & meditations",
1791    "QRMP" => "Christian life & practice",
1792    "QRMP1" => "Christian sacraments",
1793    "QRP" => "Islam",
1794    "QRPB" => "Islam: branches & groups",
1795    "QRPB1" => "Islamic groups: Sunni, Alsalaf",
1796    "QRPB2" => "Islamic groups: Khawarij, Kharijite",
1797    "QRPB3" => "Islamic groups: Shi’ah, Shi’ite",
1798    "QRPB4" => "Islamic groups: Sufis",
1799    "QRPF" => "Islamic sacred texts",
1800    "QRPF1" => "The Koran (Qur’an)",
1801    "QRPP" => "Islamic life & practice",
1802    "QRR" => "Other World religions",
1803    "QRRB" => "Baha’i",
1804    "QRRC" => "Jainism",
1805    "QRRD" => "Sikhism",
1806    "QRRF" => "Zoroastrianism",
1807    "QRRL" => "East Asian religions",
1808    "QRRL1" => "Confucianism",
1809    "QRRL3" => "Shintoism",
1810    "QRRL5" => "Taoism",
1811    "QRRL6" => "Chinese folk religion",
1812    "QRRM" => "Afro-American religions",
1813    "QRRN" => "Traditional African religions & mythologies",
1814    "QRRT" => "Tribal religions",
1815    "QRS" => "Ancient religions & mythologies",
1816    "QRSA" => "Ancient Egyptian religion & mythology",
1817    "QRSG" => "Ancient Greek religion & mythology",
1818    "QRSL" => "Roman religion & mythology",
1819    "QRST" => "Celtic religion & mythology",
1820    "QRSW" => "Norse religion & mythology",
1821    "QRV" => "Aspects of religion",
1822    "QRVA" => "Sacred texts",
1823    "QRVC" => "Criticism & exegesis of sacred texts",
1824    "QRVG" => "Theology",
1825    "QRVH" => "Sermons",
1826    "QRVJ" => "Prayers & liturgical material",
1827    "QRVJ1" => "Worship, rites & ceremonies",
1828    "QRVJ2" => "Prayer & prayerbooks",
1829    "QRVJ3" => "Devotional material",
1830    "QRVK" => "Spirituality & religious experience",
1831    "QRVK2" => "Mysticism",
1832    "QRVK4" => "Miracles, apparitions & religious phenomena",
1833    "QRVP" => "Religious life & practice",
1834    "QRVP1" => "Pilgrimage",
1835    "QRVP2" => "Religious Festivals",
1836    "QRVP3" => "Religious instruction",
1837    "QRVP4" => "Fasting & abstinence",
1838    "QRVP5" => "Religious counselling",
1839    "QRVP7" => "Religious aspects of sexuality, gender & relationships",
1840    "QRVS" => "Religious institutions & organizations",
1841    "QRVS1" => "Religious & spiritual figures",
1842    "QRVS2" => "Religious social & pastoral thought & activity",
1843    "QRVS3" => "Religious ministry",
1844    "QRVS4" => "Religious mission & conversion",
1845    "QRVS5" => "Religious communities & monasticism",
1846    "QRVX" => "Personal religious testimony & popular inspirational works",
1847    "QRY" => "Alternative belief systems",
1848    "QRYA" => "Humanist & secular alternatives to religion",
1849    "QRYA5" => "Agnosticism & atheism",
1850    "QRYC" => "Eclectic & esoteric religions & belief systems",
1851    "QRYC1" => "Gnosticism",
1852    "QRYC5" => "Theosophy & Anthroposophy",
1853    "QRYM" => "Contemporary non-Christian & para-Christian cults & sects",
1854    "QRYM2" => "Spiritualism",
1855    "QRYX" => "Occult studies",
1856    "QRYX2" => "Magic, alchemy & hermetic thought",
1857    "QRYX5" => "Witchcraft",
1858    "QRYX9" => "Satanism & demonology",
1859    "R" => "Earth Sciences, Geography, Environment, Planning",
1860    "RB" => "Earth sciences",
1861    "RBC" => "Volcanology & seismology",
1862    "RBG" => "Geology, geomorphology & the lithosphere",
1863    "RBGB" => "Sedimentology & pedology",
1864    "RBGD" => "Geomorphology & geological surface processes",
1865    "RBGF" => "Historical geology",
1866    "RBGG" => "Petrology, petrography & mineralogy",
1867    "RBGH" => "Stratigraphy",
1868    "RBGK" => "Geochemistry",
1869    "RBGL" => "Economic geology",
1870    "RBK" => "Hydrology & the hydrosphere",
1871    "RBKC" => "Oceanography (seas & oceans)",
1872    "RBKF" => "Limnology (inland waters)",
1873    "RBP" => "Meteorology & climatology",
1874    "RBX" => "Palaeontology",
1875    "RG" => "Geography",
1876    "RGB" => "Physical geography & topography",
1877    "RGBA" => "Arid zones, deserts",
1878    "RGBC" => "Plains & grasslands",
1879    "RGBC1" => "Prairies",
1880    "RGBC2" => "Savanna",
1881    "RGBD" => "Tundra",
1882    "RGBF" => "Wetlands, swamps, fens",
1883    "RGBG" => "Rivers & lakes",
1884    "RGBL" => "Forests & woodland",
1885    "RGBL1" => "Rainforest",
1886    "RGBL2" => "Mixed forest",
1887    "RGBL3" => "Broadleaf forest",
1888    "RGBL4" => "Boreal, coniferous forest",
1889    "RGBP" => "Coastlines",
1890    "RGBR" => "Coral reefs",
1891    "RGBS" => "Mountains",
1892    "RGBU" => "Glaciers & ice caps",
1893    "RGC" => "Human geography",
1894    "RGCD" => "Development & environmental geography",
1895    "RGCG" => "Population & migration geography",
1896    "RGCM" => "Economic geography",
1897    "RGCP" => "Political geography",
1898    "RGCS" => "Social geography",
1899    "RGCT" => "Tourism geography",
1900    "RGCU" => "Settlement, urban & rural geography",
1901    "RGL" => "Regional geography",
1902    "RGM" => "Biogeography",
1903    "RGR" => "Geographical discovery & exploration",
1904    "RGV" => "Cartography, map-making & projections",
1905    "RGW" => "Geographical information systems & remote sensing",
1906    "RGX" => "Geographical reference works",
1907    "RGXB" => "World atlases / world maps",
1908    "RGXH" => "Geographical maps (specialist)",
1909    "RGXM" => "Naval & marine charts",
1910    "RGXP" => "Place names & gazetteers",
1911    "RN" => "The environment",
1912    "RNA" => "Environmentalist thought & ideology",
1913    "RNB" => "Environmentalist, conservationist & Green organizations",
1914    "RNC" => "Applied ecology",
1915    "RNCB" => "Biodiversity",
1916    "RND" => "Environmental policy & protocols",
1917    "RNF" => "Environmental management",
1918    "RNFD" => "Drought & water supply",
1919    "RNFF" => "Food security & supply",
1920    "RNFY" => "Energy resources",
1921    "RNH" => "Waste management",
1922    "RNK" => "Conservation of the environment",
1923    "RNKH" => "Conservation of wildlife & habitats",
1924    "RNKH1" => "Endangered species & extinction of species",
1925    "RNP" => "Pollution & threats to the environment",
1926    "RNPD" => "Deforestation",
1927    "RNPG" => "Climate change",
1928    "RNQ" => "Nuclear issues",
1929    "RNR" => "Natural disasters",
1930    "RNT" => "Social impact of environmental issues",
1931    "RNU" => "Sustainability",
1932    "RP" => "Regional & area planning",
1933    "RPC" => "Urban & municipal planning",
1934    "RPG" => "Rural planning",
1935    "RPT" => "Transport planning & policy",
1936    "S" => "Sports & Active outdoor recreation",
1937    "SC" => "Sport: general",
1938    "SCB" => "Sporting events & management",
1939    "SCBB" => "Olympic & Paralympic games",
1940    "SCBG" => "Sports governing bodies",
1941    "SCBM" => "Sports management & facilities",
1942    "SCBT" => "Sports teams & clubs",
1943    "SCBV" => "Sporting venues",
1944    "SCG" => "Sports training & coaching",
1945    "SCGF" => "Sport science, physical education",
1946    "SCGP" => "Sports psychology",
1947    "SCK" => "Drug abuse in sport",
1948    "SCL" => "Parasport",
1949    "SCX" => "History of sport",
1950    "SF" => "Ball sports / ball games",
1951    "SFB" => "Football variants & related games",
1952    "SFBC" => "Association football (Soccer)",
1953    "SFBD" => "American football",
1954    "SFBF" => "Australian Rules football",
1955    "SFBH" => "Canadian football",
1956    "SFBK" => "Gaelic football",
1957    "SFBT" => "Rugby Union",
1958    "SFBV" => "Rugby League",
1959    "SFC" => "Baseball",
1960    "SFD" => "Cricket",
1961    "SFH" => "Golf",
1962    "SFJ" => "Field hockey",
1963    "SFK" => "Lacrosse",
1964    "SFL" => "Hurling",
1965    "SFM" => "Basketball",
1966    "SFN" => "Netball",
1967    "SFP" => "Volleyball",
1968    "SFQ" => "Handball",
1969    "SFT" => "Racket games",
1970    "SFTA" => "Tennis",
1971    "SFTB" => "Badminton",
1972    "SFTC" => "Squash & rackets (racquets)",
1973    "SFTD" => "Table tennis",
1974    "SFV" => "Bowls, bowling, petanque",
1975    "SFX" => "Snooker, billiards, pool",
1976    "SH" => "Athletics, gymnastics & related sports",
1977    "SHB" => "Track & field sports, athletics",
1978    "SHBF" => "Marathon & cross-country running",
1979    "SHBM" => "Multidiscipline sports",
1980    "SHG" => "Gymnastics",
1981    "SHP" => "Weightlifting",
1982    "SK" => "Equestrian & animal sports",
1983    "SKG" => "Horse racing",
1984    "SKL" => "Riding, showjumping & horsemanship",
1985    "SKR" => "Dog racing",
1986    "SM" => "Vehicle sports",
1987    "SMC" => "Air sports & recreations",
1988    "SMF" => "Motor sports",
1989    "SMFA" => "Car racing",
1990    "SMFC" => "Motor rallying / rally driving",
1991    "SMFF" => "Stock car & hot rod racing",
1992    "SMFK" => "Motorcycle racing",
1993    "SMQ" => "Cycle racing",
1994    "SMQB" => "BMX cycling",
1995    "SMX" => "Rollerblading, skateboarding, etc",
1996    "SP" => "Water sports & recreations",
1997    "SPC" => "Swimming & diving",
1998    "SPCA" => "Underwater (sub-aqua) swimming",
1999    "SPCA1" => "Scuba diving",
2000    "SPCA2" => "Snorkelling",
2001    "SPCD" => "Diving",
2002    "SPCS" => "Swimming",
2003    "SPG" => "Surfing, windsurfing, water skiing",
2004    "SPN" => "Boating: Sport & leisure",
2005    "SPND" => "Motor / power boating & cruising",
2006    "SPNG" => "Sailing / yachting",
2007    "SPNK" => "Canoeing & kayaking",
2008    "SPNL" => "Rowing & sculling",
2009    "SR" => "Combat sports & self-defence",
2010    "SRB" => "Boxing",
2011    "SRC" => "Wrestling",
2012    "SRF" => "Fencing",
2013    "SRM" => "Martial arts",
2014    "SRMA" => "Aikido",
2015    "SRMC" => "Capoeira",
2016    "SRMJ" => "Judo",
2017    "SRMK" => "Ju-jitsu",
2018    "SRML" => "Karate",
2019    "SRMM" => "Kendo",
2020    "SRMN" => "Chinese martial arts / Kung-fu",
2021    "SRMN1" => "Tai Chi",
2022    "SRMN2" => "Qigong",
2023    "SRMS" => "Sumo",
2024    "SRMT" => "Taekwondo",
2025    "SRMV" => "Mixed martial arts",
2026    "ST" => "Winter sports",
2027    "STA" => "Skiing",
2028    "STAA" => "Alpine skiing",
2029    "STAB" => "Biathlon",
2030    "STAN" => "Nordic skiing",
2031    "STAN1" => "Cross-country skiing",
2032    "STAN2" => "Ski jumping",
2033    "STC" => "Snowboarding",
2034    "STG" => "Ice-skating",
2035    "STH" => "Speed skating",
2036    "STJ" => "Figure skating",
2037    "STK" => "Ice hockey",
2038    "STL" => "Sledding",
2039    "STLN" => "Sled dog racing",
2040    "STP" => "Curling",
2041    "SV" => "Field sports: fishing, hunting, shooting",
2042    "SVF" => "Fishing, angling",
2043    "SVFF" => "Fly fishing",
2044    "SVFS" => "Sea fishing",
2045    "SVH" => "Hunting or shooting animals & game",
2046    "SVHH" => "Professional qualifications for hunting / shooting",
2047    "SVR" => "Archery",
2048    "SVS" => "Small firearms, guns & other equipment",
2049    "SVT" => "Target shooting",
2050    "SX" => "Other sports & competitive activities",
2051    "SXB" => "Bodybuilding",
2052    "SXD" => "Darts",
2053    "SXE" => "eSports / Professional video gaming",
2054    "SXQ" => "Extreme sports",
2055    "SZ" => "Active outdoor pursuits",
2056    "SZC" => "Walking, hiking, trekking",
2057    "SZD" => "Cycling: general & touring",
2058    "SZE" => "Running & jogging",
2059    "SZG" => "Climbing & mountaineering",
2060    "SZK" => "Orienteering",
2061    "SZN" => "Caving & potholing",
2062    "SZR" => "Camping",
2063    "SZV" => "Outdoor survival skills",
2064    "T" => "Technology, Engineering, Agriculture, Industrial processes",
2065    "TB" => "Technology: general issues",
2066    "TBC" => "Engineering: general",
2067    "TBD" => "Technical design",
2068    "TBDG" => "Ergonomics",
2069    "TBG" => "Engineering graphics & draughting / technical drawing",
2070    "TBJ" => "Maths for engineers",
2071    "TBM" => "Instruments & instrumentation engineering",
2072    "TBMM" => "Engineering measurement & calibration",
2073    "TBN" => "Nanotechnology",
2074    "TBR" => "Intermediate technology",
2075    "TBX" => "History of engineering & technology",
2076    "TBY" => "Inventions & inventors",
2077    "TC" => "Biochemical engineering",
2078    "TCB" => "Biotechnology",
2079    "TCBG" => "Genetic engineering",
2080    "TCBS" => "Biosensors",
2081    "TD" => "Industrial chemistry & manufacturing technologies",
2082    "TDC" => "Industrial chemistry & chemical engineering",
2083    "TDCA" => "Agrichemicals",
2084    "TDCF" => "Fuels & petrochemicals",
2085    "TDCJ" => "Dyestuffs, pigments & paint technology",
2086    "TDCP" => "Plastics & polymers",
2087    "TDCQ" => "Ceramic & glass technology",
2088    "TDCT" => "Food & beverage technology",
2089    "TDCT1" => "Food & beverage safety",
2090    "TDCT2" => "Food & beverage processing & engineering",
2091    "TDCW" => "Pharmaceutical chemistry & technology",
2092    "TDCX" => "Process engineering technology & techniques",
2093    "TDP" => "Other manufacturing technologies",
2094    "TDPF" => "Textiles & fibres",
2095    "TDPJ" => "Timber & wood processing",
2096    "TDPJ1" => "Paper & pulp manufacture & processing",
2097    "TDPM" => "Metals technology / metallurgy",
2098    "TDPP" => "Printing & reprographic technologies",
2099    "TDPT" => "3D Printing",
2100    "TG" => "Mechanical engineering & materials",
2101    "TGB" => "Mechanical engineering",
2102    "TGBF" => "Tribology (friction & lubrication)",
2103    "TGBN" => "Engines & power transmission",
2104    "TGM" => "Materials science",
2105    "TGMB" => "Engineering thermodynamics",
2106    "TGMD" => "Engineering: Mechanics of solids",
2107    "TGMF" => "Engineering: Mechanics of fluids",
2108    "TGMF1" => "Aerodynamics",
2109    "TGMF2" => "Hydraulics / Pneumatics",
2110    "TGML" => "Engineering applications of bio-materials",
2111    "TGMM" => "Engineering applications of electronic, magnetic, optical materials",
2112    "TGMP" => "Engineering applications of polymers & composites",
2113    "TGMS" => "Engineering applications of surface coatings & films",
2114    "TGMT" => "Testing of materials",
2115    "TGP" => "Production & industrial engineering",
2116    "TGPC" => "Computer aided manufacture (CAM)",
2117    "TGPQ" => "Industrial quality control",
2118    "TGPR" => "Reliability engineering",
2119    "TGX" => "Engineering skills & trades",
2120    "TH" => "Energy technology & engineering",
2121    "THF" => "Fossil fuel technologies",
2122    "THFG" => "Gas technology",
2123    "THFP" => "Petroleum technology",
2124    "THFS" => "Solid fuel technology",
2125    "THK" => "Nuclear power & engineering",
2126    "THN" => "Heat transfer processes",
2127    "THR" => "Electrical engineering",
2128    "THRM" => "Electric motors",
2129    "THRX" => "Electrician skills & trades",
2130    "THV" => "Alternative & renewable energy sources & technology",
2131    "THVB" => "Biofuels",
2132    "THVS" => "Solar power",
2133    "THVW" => "Wind power",
2134    "THY" => "Energy, power generation, distribution & storage",
2135    "THYC" => "Energy efficiency",
2136    "TJ" => "Electronics & communications engineering",
2137    "TJF" => "Electronics engineering",
2138    "TJFC" => "Electronics: circuits & components",
2139    "TJFD" => "Electronic devices & materials",
2140    "TJFM" => "Automatic control engineering",
2141    "TJFM1" => "Robotics",
2142    "TJFN" => "Microwave technology",
2143    "TJK" => "Communications engineering / telecommunications",
2144    "TJKD" => "Radar technology",
2145    "TJKR" => "Radio technology",
2146    "TJKS" => "Satellite communication technology",
2147    "TJKT" => "Telephone technology",
2148    "TJKT1" => "Mobile phone technology",
2149    "TJKV" => "Television technology",
2150    "TJKW" => "WAP (wireless) technology",
2151    "TJS" => "Sensors",
2152    "TN" => "Civil engineering, surveying & building",
2153    "TNC" => "Structural engineering",
2154    "TNCB" => "Surveying, quantity surveying",
2155    "TNCC" => "Soil & rock mechanics",
2156    "TNCE" => "Earthquake engineering",
2157    "TNCJ" => "Bridges",
2158    "TNF" => "Hydraulic engineering",
2159    "TNFL" => "Flood control",
2160    "TNH" => "Highway & traffic engineering",
2161    "TNK" => "Building construction & materials",
2162    "TNKA" => "Accessibility in buildings & building design",
2163    "TNKE" => "Building physics & energy-efficient construction",
2164    "TNKF" => "Fire protection & safety",
2165    "TNKH" => "Heating, lighting, ventilation",
2166    "TNKP" => "Construction planning",
2167    "TNKR" => "Building redevelopment",
2168    "TNKS" => "Security & fire alarm systems",
2169    "TNKX" => "Conservation of buildings & building materials",
2170    "TNT" => "Building skills & trades",
2171    "TQ" => "Environmental science, engineering & technology",
2172    "TQD" => "Environmental monitoring",
2173    "TQK" => "Pollution control",
2174    "TQS" => "Sanitary & municipal engineering",
2175    "TQSR" => "Waste treatment & disposal",
2176    "TQSW" => "Water supply & treatment",
2177    "TR" => "Transport technology & trades",
2178    "TRC" => "Automotive technology & trades",
2179    "TRCS" => "Automotive (motor mechanic) skills",
2180    "TRCT" => "Road transport & haulage trades",
2181    "TRF" => "Railway technology, engineering & trades",
2182    "TRFT" => "Railway trades",
2183    "TRL" => "Shipbuilding technology, engineering & trades",
2184    "TRLD" => "Ship design & naval architecture",
2185    "TRLN" => "Navigation & seamanship",
2186    "TRLT" => "Maritime & nautical trades",
2187    "TRP" => "Aerospace & aviation technology",
2188    "TRPS" => "Aviation skills & piloting",
2189    "TRT" => "Intelligent & automated transport system technology",
2190    "TT" => "Other technologies & applied sciences",
2191    "TTA" => "Acoustic & sound engineering",
2192    "TTB" => "Applied optics",
2193    "TTBF" => "Fibre optics",
2194    "TTBL" => "Laser technology & holography",
2195    "TTBM" => "Imaging systems & technology",
2196    "TTBS" => "Scanning systems & technology",
2197    "TTD" => "Space science",
2198    "TTDS" => "Astronautics",
2199    "TTDX" => "Space exploration",
2200    "TTM" => "Military engineering",
2201    "TTMW" => "Ordnance, weapons technology",
2202    "TTP" => "Explosives technology & pyrotechnics",
2203    "TTS" => "Marine engineering",
2204    "TTU" => "Mining technology & engineering",
2205    "TTV" => "Other vocational technologies & trades",
2206    "TTVC" => "Hotel, hospitality & catering trades",
2207    "TTVC2" => "Catering & food preparation skills & trades",
2208    "TTVH" => "Hairdressing, salon & beauty therapy skills",
2209    "TTVR" => "Traditional trades & skills",
2210    "TTVS" => "Security, safety & protection skills / professions",
2211    "TTVT" => "Caretakers, janitors, housekeepers, cleaners & related skills",
2212    "TTW" => "Assistive technology",
2213    "TTX" => "Taxidermy",
2214    "TV" => "Agriculture & farming",
2215    "TVB" => "Agricultural science",
2216    "TVBP" => "Soil science & management",
2217    "TVD" => "Agricultural engineering & machinery",
2218    "TVDR" => "Irrigation",
2219    "TVF" => "Sustainable agriculture",
2220    "TVG" => "Organic farming",
2221    "TVH" => "Animal husbandry",
2222    "TVHB" => "Animal breeding",
2223    "TVHF" => "Dairy farming",
2224    "TVHH" => "Apiculture (beekeeping)",
2225    "TVHP" => "Poultry farming",
2226    "TVK" => "Agronomy & crop production",
2227    "TVM" => "Smallholdings",
2228    "TVP" => "Pest control",
2229    "TVQ" => "Tropical agriculture: practice & techniques",
2230    "TVR" => "Forestry & silviculture: practice & techniques",
2231    "TVS" => "Commercial horticulture",
2232    "TVSH" => "Hydroponics / hydroculture",
2233    "TVSW" => "Viticulture",
2234    "TVT" => "Aquaculture & fish-farming: practice & techniques",
2235    "TVU" => "Urban farming / urban agriculture",
2236    "U" => "Computing & Information Technology",
2237    "UB" => "Information technology: general topics",
2238    "UBH" => "Health & safety aspects of IT",
2239    "UBJ" => "Ethical & social aspects of IT",
2240    "UBL" => "Legal aspects of IT",
2241    "UBM" => "Maker and hacker culture",
2242    "UBW" => "Internet: general works",
2243    "UD" => "Computing & IT: consumer and user guides",
2244    "UDA" => "Personal organization software & apps",
2245    "UDB" => "Internet guides & online services",
2246    "UDBA" => "Online shopping & auctions",
2247    "UDBD" => "Internet searching",
2248    "UDBG" => "Internet gambling",
2249    "UDBM" => "Online finance & investing",
2250    "UDBR" => "Internet browsers",
2251    "UDBS" => "Social media / social networking",
2252    "UDBV" => "Virtual worlds",
2253    "UDD" => "Online safety & behaviour",
2254    "UDF" => "Email: consumer / user guides",
2255    "UDH" => "E-book readers, tablets & other portable devices: consumer / user guides",
2256    "UDM" => "Digital music & audio: consumer / user guides",
2257    "UDQ" => "Digital video: consumer / user guides",
2258    "UDT" => "Mobile phones & smartphones: consumer / user guides",
2259    "UDV" => "Digital TV & media centres: consumer / user guides",
2260    "UDX" => "Computer games / online games: strategy guides",
2261    "UDY" => "Virtual assistants: consumer / guides",
2262    "UF" => "Business applications",
2263    "UFB" => "Integrated software packages",
2264    "UFC" => "Spreadsheet software",
2265    "UFD" => "Word processing software",
2266    "UFG" => "Presentation graphics software",
2267    "UFK" => "Accounting software",
2268    "UFL" => "Enterprise software",
2269    "UFLS" => "SAP (Systems, applications & products in databases)",
2270    "UFM" => "Mathematical & statistical software",
2271    "UFP" => "Project management software",
2272    "UFS" => "Collaboration & group software",
2273    "UG" => "Graphical & digital media applications",
2274    "UGB" => "Web graphics & design",
2275    "UGC" => "Computer-aided design (CAD)",
2276    "UGD" => "Desktop publishing",
2277    "UGG" => "Computer games design",
2278    "UGK" => "3D graphics & modelling",
2279    "UGL" => "Illustration & drawing software",
2280    "UGM" => "Digital music: professional",
2281    "UGN" => "Digital animation",
2282    "UGP" => "Photo & image editing",
2283    "UGV" => "Digital video: professional",
2284    "UK" => "Computer hardware",
2285    "UKC" => "Supercomputers",
2286    "UKD" => "Mainframes & minicomputers",
2287    "UKF" => "Servers",
2288    "UKG" => "Grid & parallel computing",
2289    "UKM" => "Embedded systems",
2290    "UKN" => "Network hardware",
2291    "UKP" => "Personal computers",
2292    "UKPC" => "PCs (IBM-compatible personal computers)",
2293    "UKPM" => "Macintosh",
2294    "UKR" => "Maintenance & repairs",
2295    "UKS" => "Storage media & peripherals",
2296    "UKX" => "Utilities & tools",
2297    "UL" => "Operating systems",
2298    "ULD" => "Microsoft (Windows) operating systems",
2299    "ULH" => "Apple operating systems",
2300    "ULJ" => "Open source & other operating systems",
2301    "ULJL" => "Linux",
2302    "ULP" => "Mobile & other handheld operating systems",
2303    "ULQ" => "IBM mainframe operating systems",
2304    "ULR" => "Real time operating systems",
2305    "UM" => "Computer programming / software engineering",
2306    "UMA" => "Programming techniques",
2307    "UMB" => "Algorithms & data structures",
2308    "UMC" => "Compilers & interpreters",
2309    "UMF" => "Agile programming",
2310    "UMG" => "Aspect programming / AOP",
2311    "UMH" => "Extreme programming",
2312    "UMJ" => "Functional programming",
2313    "UMK" => "Games development & programming",
2314    "UMKB" => "2D graphics: games programming",
2315    "UMKC" => "3D graphics: games programming",
2316    "UMKL" => "Level design: games programming",
2317    "UML" => "Graphics programming",
2318    "UMN" => "Object-oriented programming (OOP)",
2319    "UMP" => "Microsoft programming",
2320    "UMPN" => ".Net programming",
2321    "UMPW" => "Windows programming",
2322    "UMQ" => "Macintosh programming",
2323    "UMR" => "Network programming",
2324    "UMS" => "Mobile & handheld device programming / Apps programming",
2325    "UMT" => "Database programming",
2326    "UMW" => "Web programming",
2327    "UMWS" => "Web services",
2328    "UMX" => "Programming & scripting languages: general",
2329    "UMZ" => "Software Engineering",
2330    "UMZL" => "Unified Modeling Language (UML)",
2331    "UMZT" => "Software testing & verification",
2332    "UMZW" => "Object oriented software engineering",
2333    "UN" => "Databases",
2334    "UNA" => "Database design & theory",
2335    "UNAN" => "NoSQL databases",
2336    "UNAR" => "Relational databases",
2337    "UNC" => "Data capture & analysis",
2338    "UND" => "Data warehousing",
2339    "UNF" => "Data mining",
2340    "UNH" => "Information retrieval",
2341    "UNJ" => "Object-oriented databases",
2342    "UNK" => "Distributed databases",
2343    "UNKD" => "Distributed ledgers",
2344    "UNKP" => "Peer-to-peer networks",
2345    "UNN" => "Databases & the Web",
2346    "UNS" => "Database software",
2347    "UP" => "Practical applications of information technology",
2348    "UQ" => "Computer certification",
2349    "UQF" => "Computer certification: Microsoft",
2350    "UQJ" => "Computer certification: Cisco",
2351    "UQL" => "Computer certification: ECDL",
2352    "UQR" => "Computer certification: CompTIA",
2353    "UQT" => "Computer certification: CLAiT",
2354    "UR" => "Computer security",
2355    "URD" => "Privacy & data protection",
2356    "URH" => "Computer fraud & hacking",
2357    "URJ" => "Computer viruses, Trojans & worms",
2358    "URQ" => "Firewalls",
2359    "URS" => "Spam",
2360    "URW" => "Spyware",
2361    "URY" => "Data encryption",
2362    "UT" => "Computer networking & communications",
2363    "UTC" => "Cloud computing",
2364    "UTD" => "Client–Server networking",
2365    "UTE" => "System administration",
2366    "UTF" => "Network management",
2367    "UTFB" => "Computer systems back-up & data recovery",
2368    "UTG" => "Grid computing",
2369    "UTM" => "Electronic mail (email): professional",
2370    "UTN" => "Network security",
2371    "UTP" => "Networking standards & protocols",
2372    "UTR" => "Distributed systems",
2373    "UTS" => "Networking packages",
2374    "UTV" => "Virtualization",
2375    "UTW" => "WAP networking & applications",
2376    "UTX" => "EDI (electronic data interchange)",
2377    "UX" => "Applied computing",
2378    "UXA" => "Computer applications in the arts & humanities",
2379    "UXJ" => "Computer applications in the social & behavioural sciences",
2380    "UXT" => "Computer applications in industry & technology",
2381    "UY" => "Computer science",
2382    "UYA" => "Mathematical theory of computation",
2383    "UYAM" => "Maths for computer scientists",
2384    "UYD" => "Systems analysis & design",
2385    "UYF" => "Computer architecture & logic design",
2386    "UYFL" => "Assembly languages",
2387    "UYFP" => "Parallel processing",
2388    "UYM" => "Computer modelling & simulation",
2389    "UYQ" => "Artificial intelligence",
2390    "UYQE" => "Expert systems / knowledge-based systems",
2391    "UYQL" => "Natural language & machine translation",
2392    "UYQM" => "Machine learning",
2393    "UYQN" => "Neural networks & fuzzy systems",
2394    "UYQP" => "Pattern recognition",
2395    "UYQS" => "Speech recognition",
2396    "UYQV" => "Computer vision",
2397    "UYS" => "Signal processing",
2398    "UYT" => "Image processing",
2399    "UYU" => "Audio processing",
2400    "UYV" => "Virtual reality",
2401    "UYW" => "Augmented reality (AR)",
2402    "UYZ" => "Human–computer interaction",
2403    "UYZF" => "Information visualization",
2404    "UYZG" => "User interface design & usability",
2405    "UYZM" => "Information architecture",
2406    "V" => "Health, Relationships & Personal development",
2407    "VF" => "Family & health",
2408    "VFB" => "Personal safety",
2409    "VFD" => "Popular medicine & health",
2410    "VFDF" => "First aid for the home",
2411    "VFDJ" => "Children’s health",
2412    "VFDM" => "Men’s health",
2413    "VFDW" => "Women’s health",
2414    "VFDW2" => "Menopause",
2415    "VFG" => "Home nursing & caring",
2416    "VFJ" => "Coping with personal & health issues",
2417    "VFJB" => "Coping with illness & specific health conditions",
2418    "VFJB1" => "Coping with allergies, including food allergies",
2419    "VFJB2" => "Coping with back problems",
2420    "VFJB3" => "Coping with cancer",
2421    "VFJB4" => "Coping with heart conditions",
2422    "VFJB5" => "Coping with diabetes",
2423    "VFJB6" => "Coping with Alzheimer’s & dementia",
2424    "VFJD" => "Coping with disability",
2425    "VFJG" => "Coping with ageing",
2426    "VFJJ" => "Coping with eating disorders",
2427    "VFJK" => "Coping with drug & alcohol problems",
2428    "VFJL" => "Coping with addiction",
2429    "VFJM" => "Coping with abuse",
2430    "VFJP" => "Coping with anxiety & phobias",
2431    "VFJQ" => "Coping with mental health issues",
2432    "VFJQ1" => "Coping with depression & other mood disorders",
2433    "VFJR" => "Coping with neurodevelopmental issues",
2434    "VFJR1" => "Coping with autism / Asperger’s",
2435    "VFJR2" => "Coping with ADHD",
2436    "VFJR3" => "Coping with dyslexia & learning difficulties",
2437    "VFJR4" => "Coping with communication difficulties",
2438    "VFJS" => "Coping with stress",
2439    "VFJT" => "Coping with loneliness / solitude",
2440    "VFJV" => "Coping with sleep problems",
2441    "VFJX" => "Coping with death & bereavement",
2442    "VFJX1" => "Coping with suicide",
2443    "VFL" => "Giving up smoking",
2444    "VFM" => "Fitness & diet",
2445    "VFMD" => "Diets & dieting",
2446    "VFMG" => "Exercise & workout books",
2447    "VFMG1" => "Yoga for exercise",
2448    "VFMG2" => "Weight training",
2449    "VFMS" => "Massage",
2450    "VFV" => "Family & relationships: advice & issues",
2451    "VFVC" => "Sex & sexuality: advice & issues",
2452    "VFVG" => "Dating, relationships, living together & marriage: advice",
2453    "VFVJ" => "Involuntary childlessness: advice & issues",
2454    "VFVK" => "Adoption & fostering: advice & issues",
2455    "VFVM" => "Solo lifestyles: advice & issues",
2456    "VFVS" => "Separation & divorce: advice & issues",
2457    "VFVX" => "Intergenerational relationships: advice & issues",
2458    "VFX" => "Parenting: advice & issues",
2459    "VFXB" => "Pregnancy, birth & baby care: advice & issues",
2460    "VFXB1" => "Baby names: guides for parents",
2461    "VFXC" => "Child care & upbringing: advice for parents",
2462    "VFXC1" => "Teenagers: advice for parents",
2463    "VS" => "Self-help, personal development & practical advice",
2464    "VSB" => "Personal finance",
2465    "VSC" => "Advice on careers & achieving success",
2466    "VSCB" => "Job hunting / changing careers",
2467    "VSD" => "Law, citizenship & rights for the lay person",
2468    "VSF" => "Roadcraft & driving",
2469    "VSG" => "Consumer advice",
2470    "VSH" => "Housing & property for the individual: buying/selling & legal aspects",
2471    "VSK" => "Advice on education",
2472    "VSKB" => "Student life",
2473    "VSL" => "Adult literacy guides & handbooks",
2474    "VSN" => "Adult numeracy guides & handbooks",
2475    "VSP" => "Popular psychology",
2476    "VSPD" => "Mindfulness",
2477    "VSPM" => "Assertiveness, motivation, self-esteem & positive mental attitude",
2478    "VSPT" => "Memory improvement & thinking techniques",
2479    "VSPX" => "Neuro Linguistic Programming (NLP)",
2480    "VSR" => "Retirement",
2481    "VSS" => "Soft skills & dealing with other people",
2482    "VSW" => "Living & working in other countries: practical advice",
2483    "VSZ" => "Self-sufficiency & ‘green’ lifestyle",
2484    "VX" => "Mind, body, spirit",
2485    "VXA" => "Mind, body, spirit: thought & practice",
2486    "VXF" => "Fortune-telling & divination",
2487    "VXFA" => "Astrology",
2488    "VXFA1" => "Star signs & horoscopes",
2489    "VXFC" => "Fortune-telling by cards (cartomancy)",
2490    "VXFC1" => "Tarot",
2491    "VXFD" => "The I Ching",
2492    "VXFG" => "Graphology",
2493    "VXFJ" => "Divination from physical attributes",
2494    "VXFJ1" => "Palmistry, chiromancy",
2495    "VXFJ2" => "Phrenology & physiognomy",
2496    "VXFN" => "Numerology",
2497    "VXFT" => "Clairvoyance & precognition",
2498    "VXH" => "Complementary therapies, healing & health",
2499    "VXHA" => "Acupuncture",
2500    "VXHC" => "Aromatherapy & essential oils",
2501    "VXHF" => "Nature therapy",
2502    "VXHH" => "Homoeopathy",
2503    "VXHJ" => "Reflexology",
2504    "VXHK" => "Reiki",
2505    "VXHT" => "Traditional medicine & herbal remedies",
2506    "VXK" => "Earth energies",
2507    "VXM" => "Mind, body, spirit: meditation & visualization",
2508    "VXN" => "Dreams & their interpretation",
2509    "VXP" => "Psychic powers & psychic phenomena",
2510    "VXPC" => "Crystals & colour-healing",
2511    "VXPH" => "Chakras, auras & spiritual energy",
2512    "VXPJ" => "Astral projection & out-of-body experiences",
2513    "VXPR" => "The afterlife, reincarnation & past lives",
2514    "VXPS" => "Spirit guides, angels & channelling",
2515    "VXQ" => "Unexplained phenomena / the paranormal",
2516    "VXQB" => "UFOs & extraterrestrial beings",
2517    "VXQG" => "Ghosts & poltergeists",
2518    "VXQM" => "Monsters, mythical & legendary beings",
2519    "VXQM1" => "Mythical creatures: Dragons",
2520    "VXQM2" => "Mythical creatures: Vampires, werewolves & other shapeshifters",
2521    "VXQM3" => "Mythical creatures: Zombies & the undead",
2522    "VXV" => "Feng Shui & approaches to living space design & style",
2523    "VXW" => "Mysticism, magic & occult interests",
2524    "VXWK" => "Kabbalah: popular works",
2525    "VXWM" => "Magic, spells & alchemy",
2526    "VXWS" => "Shamanism, paganism & druidry",
2527    "VXWT" => "Witchcraft & wicca",
2528    "W" => "Lifestyle, Hobbies & Leisure",
2529    "WB" => "Cookery / food & drink etc",
2530    "WBA" => "General cookery & recipes",
2531    "WBAC" => "Comfort food and food nostalgia",
2532    "WBB" => "TV / celebrity chef cookbooks",
2533    "WBC" => "Cooking for one",
2534    "WBD" => "Budget cookery",
2535    "WBF" => "Quick & easy cookery",
2536    "WBH" => "Health & wholefood cookery",
2537    "WBHS" => "Cookery for specific diets & conditions",
2538    "WBJ" => "Vegetarian cookery",
2539    "WBJK" => "Vegan cookery",
2540    "WBK" => "Organic food / organic cookery",
2541    "WBN" => "National, regional & ethnic cuisine",
2542    "WBNB" => "Street food",
2543    "WBQ" => "Cookery for/with children",
2544    "WBR" => "Cooking for parties & special occasions",
2545    "WBS" => "Cooking with specific gadgets",
2546    "WBT" => "Cookery / food by ingredient",
2547    "WBTB" => "Cookery / food by ingredient: meat & game",
2548    "WBTC" => "Cookery / food by ingredient: chicken & other poultry",
2549    "WBTF" => "Cookery / food by ingredient: fish & seafood",
2550    "WBTH" => "Cookery / food by ingredient: herbs, spices, oils & vinegars",
2551    "WBTJ" => "Cookery / food by ingredient: rice, grains, pulses, nuts & seeds",
2552    "WBTM" => "Cookery / food by ingredient: fruit & vegetables",
2553    "WBTP" => "Cookery / food by ingredient: pasta & noodles",
2554    "WBTR" => "Cookery / food by ingredient: egg, cheese & dairy products",
2555    "WBTX" => "Cookery / food by ingredient: chocolate",
2556    "WBV" => "Cookery dishes & courses",
2557    "WBVD" => "Cookery dishes & courses: soups & starters",
2558    "WBVG" => "Cookery dishes & courses: salads & vegetables",
2559    "WBVH" => "Cookery dishes & courses: sauces",
2560    "WBVM" => "Cookery dishes & courses: main courses",
2561    "WBVQ" => "Cookery dishes & courses: desserts",
2562    "WBVS" => "Baking, bread, cakes & pastry",
2563    "WBVS1" => "Cakes & cake decoration, icing & sugarcraft",
2564    "WBW" => "Cookery: preserving & freezing",
2565    "WBX" => "Food & drink: beverages",
2566    "WBXD" => "Food & drink: alcoholic beverages",
2567    "WBXD1" => "Food & drink: wines",
2568    "WBXD2" => "Food & drink: beers & ciders",
2569    "WBXD3" => "Food & drink: spirits, liqueurs & cocktails",
2570    "WBXN" => "Food & drink: non-alcoholic beverages",
2571    "WBXN1" => "Tea & coffee",
2572    "WBXN3" => "Juices & smoothies",
2573    "WBZ" => "Cigars & smoking",
2574    "WC" => "Antiques & collectables",
2575    "WCB" => "Antiques & collectables: buyer’s guides",
2576    "WCC" => "Care & restoration of antiques",
2577    "WCF" => "Collecting coins, banknotes, medals & other related items",
2578    "WCG" => "Collecting stamps, philately",
2579    "WCJ" => "Antique clocks, watches, musical boxes & automata",
2580    "WCK" => "Militaria, arms & armour",
2581    "WCL" => "Antique furniture / furniture collecting",
2582    "WCN" => "Antiques & collectables: ceramics, glass & other related items",
2583    "WCNC" => "Antiques & collectables: ceramics, porcelain & pottery",
2584    "WCNG" => "Antiques & collectables: glass",
2585    "WCP" => "Antiques & collectables: jewellery",
2586    "WCR" => "Antiques & collectables: gold, silver & other metals (other than jewellery)",
2587    "WCRB" => "Antiques & collectables: buttons, badges, pins & related small items",
2588    "WCS" => "Antiques & collectables: books, manuscripts, ephemera & printed matter",
2589    "WCT" => "Antiques & collectables: sports memorabilia",
2590    "WCU" => "Antiques & collectables: pictures, prints & maps",
2591    "WCV" => "Antiques & collectables: carpets, rugs & textiles",
2592    "WCW" => "Antiques & collectables: toys, games, dolls & models",
2593    "WCX" => "Antiques & collectables: instruments, implements & tools",
2594    "WCXM" => "Antiques & collectables: musical instruments",
2595    "WCXS" => "Antiques & collectables: scientific instruments",
2596    "WD" => "Hobbies, quizzes & games",
2597    "WDH" => "Hobbies",
2598    "WDHB" => "Model-making & construction",
2599    "WDHM" => "Model railways",
2600    "WDHR" => "Radio-controlled models",
2601    "WDHW" => "Role-playing, war games & fantasy sports",
2602    "WDJ" => "3D images & optical illusions",
2603    "WDK" => "Puzzles & quizzes",
2604    "WDKC" => "Crosswords & word games",
2605    "WDKN" => "Sudoku & number puzzles",
2606    "WDKX" => "Trivia & quiz question books",
2607    "WDM" => "Indoor games",
2608    "WDMC" => "Card games",
2609    "WDMC1" => "Card games: Bridge",
2610    "WDMC2" => "Card games: Poker",
2611    "WDMG" => "Board games",
2612    "WDMG1" => "Board games: Chess",
2613    "WDP" => "Gambling: theories & methods",
2614    "WF" => "Handicrafts, decorative arts & crafts",
2615    "WFA" => "Painting & art manuals",
2616    "WFB" => "Needlework & fabric crafts",
2617    "WFBC" => "Embroidery crafts",
2618    "WFBL" => "Lace & lacemaking",
2619    "WFBQ" => "Quiltmaking, patchwork & applique",
2620    "WFBS" => "Knitting & crochet",
2621    "WFBS1" => "Knitting",
2622    "WFBS2" => "Crochet",
2623    "WFBV" => "Fabric dyeing",
2624    "WFBW" => "Sewing",
2625    "WFC" => "Ropework, knots & macramé",
2626    "WFF" => "Rug & carpetmaking",
2627    "WFG" => "Spinning & weaving",
2628    "WFH" => "Toys: making & decorating",
2629    "WFJ" => "Jewellery & beadcraft",
2630    "WFK" => "Decorative finishes & surfaces",
2631    "WFN" => "Pottery, ceramics & glass crafts",
2632    "WFP" => "Decorative metalwork",
2633    "WFQ" => "Decorative woodwork",
2634    "WFS" => "Carving & modelling, moulding & casting",
2635    "WFT" => "Book & paper crafts",
2636    "WFTM" => "Origami & paper engineering",
2637    "WFU" => "Calligraphy & hand-lettering",
2638    "WFV" => "Rural crafts",
2639    "WFW" => "Flower arranging & floral crafts",
2640    "WFX" => "Adult colouring & activity books",
2641    "WG" => "Transport: general interest",
2642    "WGC" => "Road & motor vehicles: general interest",
2643    "WGCB" => "Motor cars: general interest",
2644    "WGCF" => "Buses, trams & commercial vehicles: general interest",
2645    "WGCK" => "Motorcycles: general interest",
2646    "WGCQ" => "Road & motor vehicles: Camper vans, Recreational vehicles",
2647    "WGCT" => "Tractors & farm vehicles: general interest",
2648    "WGCV" => "Vehicle maintenance & manuals",
2649    "WGD" => "Bicycles & non-motorised transport: general interest & maintenance",
2650    "WGF" => "Trains & railways: general interest",
2651    "WGFD" => "Locomotives & rolling stock",
2652    "WGFL" => "Urban rail transit systems",
2653    "WGG" => "Ships & boats: general interest",
2654    "WGGB" => "Boats",
2655    "WGGD" => "Ships: Liners & other ocean-going vessels",
2656    "WGGP" => "Ships & boats: certification and licences",
2657    "WGGV" => "Boatbuilding & maintenance",
2658    "WGM" => "Aircraft & aviation",
2659    "WH" => "Humour",
2660    "WHG" => "TV tie-in humour",
2661    "WHJ" => "Jokes & riddles",
2662    "WHL" => "Slang & dialect humour",
2663    "WHP" => "Parodies & spoofs: non-fiction",
2664    "WHX" => "Humour collections & anthologies",
2665    "WJ" => "Lifestyle & personal style guides",
2666    "WJF" => "Fashion & style guides",
2667    "WJH" => "Cosmetics, hair & beauty",
2668    "WJK" => "Interior design, decor & style guides",
2669    "WJS" => "Shopping guides",
2670    "WJW" => "Weddings, wedding planners",
2671    "WJX" => "Parties, etiquette & entertaining",
2672    "WJXC" => "Manners: guides & advice",
2673    "WJXF" => "Table settings & arts of the table",
2674    "WK" => "Home & house maintenance",
2675    "WKD" => "DIY: general",
2676    "WKDM" => "DIY: house maintenance manuals",
2677    "WKDW" => "DIY: carpentry & woodworking",
2678    "WKH" => "Household hints",
2679    "WKR" => "Home renovation & extension",
2680    "WKU" => "Outdoor & recreational areas: design & maintenance",
2681    "WM" => "Gardening",
2682    "WMB" => "Gardens (descriptions, history etc)",
2683    "WMD" => "Garden design & planning",
2684    "WMF" => "Greenhouses, conservatories, patios",
2685    "WMP" => "Gardening: plants & cultivation guides",
2686    "WMPC" => "Gardening: flowers & ornamental plants",
2687    "WMPF" => "Gardening: fruit & vegetable",
2688    "WMPS" => "Gardening: trees & shrubs",
2689    "WMPY" => "Gardening: pests & diseases",
2690    "WMQ" => "Specialized gardening methods",
2691    "WMQB" => "Bonsai",
2692    "WMQF" => "Organic gardening",
2693    "WMQL" => "Landscape gardening",
2694    "WMQN" => "Natural & wild gardening",
2695    "WMQP" => "Gardening with native plants",
2696    "WMQR" => "Container gardening",
2697    "WMQR1" => "Indoor gardening",
2698    "WMQW" => "Water gardens, pools",
2699    "WMT" => "Allotments / Community gardens",
2700    "WN" => "Nature & the natural world: general interest",
2701    "WNA" => "Dinosaurs & the prehistoric world: general interest",
2702    "WNC" => "Wildlife: general interest",
2703    "WNCB" => "Wildlife: birds & birdwatching: general interest",
2704    "WNCF" => "Wildlife: mammals: general interest",
2705    "WNCK" => "Wildlife: reptiles & amphibians: general interest",
2706    "WNCN" => "Wildlife: butterflies, other insects & spiders: general interest",
2707    "WNCS" => "Wildlife: aquatic creatures: general interest",
2708    "WNCS1" => "Sea life & the seashore: general interest",
2709    "WNCS2" => "Freshwater life: general interest",
2710    "WND" => "The countryside, country life: general interest",
2711    "WNF" => "Farm & working animals: general interest",
2712    "WNG" => "Domestic animals & pets",
2713    "WNGC" => "Cats as pets",
2714    "WNGD" => "Dogs as pets",
2715    "WNGD1" => "Dog obedience & training",
2716    "WNGF" => "Fishes as pets & aquaria",
2717    "WNGH" => "Horses & ponies: general interest",
2718    "WNGK" => "Birds, including cage birds, as pets",
2719    "WNGR" => "Rabbits & rodents as pets",
2720    "WNGS" => "Reptiles & amphibians as pets",
2721    "WNGX" => "Insects & spiders as pets",
2722    "WNH" => "Zoos & wildlife parks: general interest",
2723    "WNJ" => "National parks & nature reserves: general interest",
2724    "WNP" => "Trees, wildflowers & plants: general interest",
2725    "WNR" => "Rocks, minerals & fossils: general interest",
2726    "WNW" => "The Earth: natural history: general interest",
2727    "WNWM" => "Weather & climate: general interest",
2728    "WNX" => "Popular astronomy & space",
2729    "WQ" => "Local & family history, nostalgia",
2730    "WQH" => "Local history",
2731    "WQN" => "Nostalgia: general",
2732    "WQP" => "Places in old photographs",
2733    "WQY" => "Family history, tracing ancestors",
2734    "WT" => "Travel & holiday",
2735    "WTD" => "Travel tips & advice: general",
2736    "WTH" => "Travel & holiday guides",
2737    "WTHA" => "Travel guides: adventure holidays",
2738    "WTHB" => "Travel guides: business travel",
2739    "WTHC" => "Travel guides: eco-tourism, ‘green’ tourism",
2740    "WTHD" => "Travel guides: food & drink regions",
2741    "WTHE" => "Travel guides: activity holidays",
2742    "WTHF" => "Travel guides: holidays with children / family holidays",
2743    "WTHG" => "Travel guides: budget travel",
2744    "WTHH" => "Travel guides: hotel & holiday accommodation guides",
2745    "WTHH1" => "Travel guides: caravan & camp-site guides",
2746    "WTHK" => "Travel guides: beaches & coastal areas",
2747    "WTHM" => "Travel guides: museums, historic sites, galleries etc",
2748    "WTHR" => "Travel guides: restaurants & cafes",
2749    "WTHT" => "Travel guides: theme parks & funfairs",
2750    "WTHW" => "Travel guides: routes & ways",
2751    "WTHX" => "Travel guides: cruises",
2752    "WTK" => "Language phrasebooks",
2753    "WTL" => "Travel writing",
2754    "WTLC" => "Classic travel writing",
2755    "WTLP" => "Expeditions: popular accounts",
2756    "WTM" => "Places & peoples: general & pictorial works",
2757    "WTR" => "Travel maps & atlases",
2758    "WTRD" => "Road atlases & maps",
2759    "WTRM" => "Travel maps",
2760    "WTRS" => "Street maps & city plans",
2761    "WZ" => "Miscellaneous items",
2762    "WZG" => "Gift books",
2763    "WZS" => "Stationery items",
2764    "WZSN" => "Blank stationery items",
2765    "X" => "Graphic novels, Comic books, Cartoons",
2766    "XA" => "Graphic novel & Comic book: types",
2767    "XAB" => "European tradition graphic novels",
2768    "XAD" => "European tradition comic books, Bandes dessinées",
2769    "XADC" => "European comic books: general, classic, all ages",
2770    "XAK" => "American / British style comic books & graphic novels",
2771    "XAKC" => "American comic books: classic, Golden Age",
2772    "XAM" => "Manga & Asian style comics",
2773    "XAMC" => "Manga: Kodomo",
2774    "XAMF" => "Manga: Shōjo",
2775    "XAMG" => "Manga: Shōnen",
2776    "XAML" => "Manga: Seinen",
2777    "XAMR" => "Manga: Josei",
2778    "XAMT" => "Manga: Yaoi",
2779    "XAMV" => "Manga: Bara",
2780    "XAMX" => "Manga: adult (erotic, extreme violence)",
2781    "XAMX2" => "Manga: hentai manga",
2782    "XAMY" => "Manga: Yuri",
2783    "XQ" => "Graphic novel & Comic book: genres",
2784    "XQA" => "Graphic novel / Comic book: memoirs, true stories & non-fiction",
2785    "XQB" => "Graphic novel / Comic book: literary adaptations",
2786    "XQC" => "Graphic novel / Comic book: inspired by or adapted from",
2787    "XQD" => "Graphic novel / Comic book: crime, mystery & thrillers",
2788    "XQG" => "Graphic novel / Comic book: action & adventure",
2789    "XQGW" => "Graphic novel / Comic book: Westerns",
2790    "XQH" => "Graphic novel / Comic book: horror",
2791    "XQK" => "Graphic novel / Comic book: super-heroes & super-villains",
2792    "XQL" => "Graphic novel / Comic book: science fiction",
2793    "XQM" => "Graphic novel / Comic book: fantasy, esoteric",
2794    "XQN" => "Graphic novel / Comic book: anthropomorphic / animal stories",
2795    "XQR" => "Graphic novel / Comic book: romance",
2796    "XQS" => "Graphic novel / Comic book: school / college life",
2797    "XQT" => "Graphic novel / Comic book: humorous",
2798    "XQV" => "Graphic novel / Comic book: historical",
2799    "XQX" => "Graphic novel / Comic book: adult",
2800    "XQXE" => "Graphic novel / Comic book: adult – erotic",
2801    "XQXV" => "Graphic novel / Comic book: adult – extreme violence / gore",
2802    "XR" => "Graphic novel & comic books: guides & reviews",
2803    "XRM" => "Manga guides & reviews",
2804    "XY" => "Strip cartoons",
2805    "Y" => "Children’s, Teenage & Educational",
2806    "YB" => "Books for very young children, children’s picture books & activity books",
2807    "YBC" => "Children’s picture books",
2808    "YBCB" => "Baby books",
2809    "YBCH" => "Picture books: character books",
2810    "YBCS" => "Picture storybooks",
2811    "YBCS1" => "Picture storybooks: bedtime stories & dreams",
2812    "YBCS2" => "Picture storybooks: imagination & play",
2813    "YBG" => "Children’s interactive & activity books & packs",
2814    "YBGC" => "Colouring books",
2815    "YBGH" => "Children’s activity books: hidden object",
2816    "YBL" => "Early years / early learning concepts",
2817    "YBLA" => "Early years: letters & words",
2818    "YBLB" => "Early years: verse, rhymes & wordplay",
2819    "YBLC" => "Early years: numbers & counting",
2820    "YBLD" => "Early years: colours",
2821    "YBLF" => "Early years: opposites",
2822    "YBLH" => "Early years: size, shapes & patterns",
2823    "YBLJ" => "Early years: time & seasons",
2824    "YBLL" => "Early years: nature & animals",
2825    "YBLM" => "Early years: daily routine",
2826    "YBLN" => "Early years: first experiences",
2827    "YBLN1" => "Early years: the body & the senses",
2828    "YBLP" => "Early years: people who help us",
2829    "YBLQ" => "Early years: family",
2830    "YBLT" => "Early years: things that go",
2831    "YD" => "Children’s / Teenage poetry, anthologies, annuals",
2832    "YDA" => "Children’s / Teenage: Annuals",
2833    "YDC" => "Children’s / Teenage: Anthologies",
2834    "YDP" => "Children’s / Teenage: Poetry",
2835    "YF" => "Children’s / Teenage fiction & true stories",
2836    "YFA" => "Children’s / Teenage fiction: Classic fiction",
2837    "YFB" => "Children’s / Teenage fiction: General fiction",
2838    "YFC" => "Children’s / Teenage fiction: Action & adventure stories",
2839    "YFCA" => "Children’s / Teenage fiction: Interactive adventure stories",
2840    "YFCB" => "Children’s / Teenage fiction: Thrillers",
2841    "YFCF" => "Children’s / Teenage fiction: Crime & mystery fiction",
2842    "YFCW" => "Children’s / Teenage fiction: Military & war fiction",
2843    "YFD" => "Children’s / Teenage fiction: Horror & ghost stories, chillers",
2844    "YFE" => "Children’s / Teenage fiction: Speculative, dystopian & utopian fiction",
2845    "YFG" => "Children’s / Teenage fiction: Science fiction",
2846    "YFGS" => "Children’s / Teenage fiction: Steampunk",
2847    "YFH" => "Children’s / Teenage fiction: Fantasy",
2848    "YFHD" => "Children’s / Teenage fiction: Magical realism",
2849    "YFHR" => "Children’s / Teenage fiction: Fantasy romance",
2850    "YFJ" => "Children’s / Teenage fiction: Traditional stories",
2851    "YFK" => "Children’s / Teenage fiction: Religious fiction",
2852    "YFM" => "Children’s / Teenage fiction: Romance, love & relationships stories",
2853    "YFN" => "Children’s / Teenage fiction: Family & home stories",
2854    "YFP" => "Children’s / Teenage fiction: Nature & animal stories",
2855    "YFQ" => "Children’s / Teenage fiction: Humorous stories",
2856    "YFR" => "Children’s / Teenage fiction: Sporting stories",
2857    "YFS" => "Children’s / Teenage fiction: School stories",
2858    "YFT" => "Children’s / Teenage fiction: Historical fiction",
2859    "YFU" => "Children’s / Teenage fiction: Short stories",
2860    "YFV" => "Children’s / Teenage fiction: Stories in verse",
2861    "YFX" => "Children’s / Teenage fiction: Biographical fiction",
2862    "YFY" => "Children’s / Teenage: True stories told as fiction",
2863    "YFZ" => "Children’s / Teenage fiction: Special features & related items",
2864    "YFZR" => "Children’s / Teenage category fiction",
2865    "YFZV" => "Children’s / Teenage fiction: Inspired by or adapted from",
2866    "YFZZ" => "Children’s / Teenage fiction: Companion works",
2867    "YN" => "Children’s / Teenage: General interest",
2868    "YNA" => "Children’s / Teenage general interest: Art & artists",
2869    "YNB" => "Children’s / Teenage general interest: Biography & autobiography",
2870    "YNC" => "Children’s / Teenage general interest: Music",
2871    "YNCS" => "Songbooks for children",
2872    "YND" => "Children’s / Teenage general interest: Drama & performing",
2873    "YNDB" => "Children’s / Teenage general interest: Dance, ballet",
2874    "YNDS" => "Children’s / Teenage general interest: Playscripts",
2875    "YNF" => "Children’s / Teenage general interest: Television, video & film",
2876    "YNG" => "Children’s / Teenage general interest: General knowledge & interesting facts",
2877    "YNGL" => "Children’s / Teenage general interest: Information resources",
2878    "YNH" => "Children’s / Teenage general interest: History & the past",
2879    "YNHA" => "Children’s / Teenage general interest: Adventurers & outlaws",
2880    "YNHA1" => "Children’s / Teenage general interest: Pirates",
2881    "YNHD" => "Children’s / Teenage general interest: Discovery & exploration",
2882    "YNHP" => "Children’s / Teenage general interest: Lives of children in the past",
2883    "YNJ" => "Children’s / Teenage general interest: Warfare, battles, armed forces",
2884    "YNJC" => "Children’s / Teenage general interest: Castles & knights",
2885    "YNK" => "Children’s / Teenage general interest: Work & society",
2886    "YNKA" => "Children’s / Teenage general interest: Politics",
2887    "YNKC" => "Children’s / Teenage general interest: Law, police & crime",
2888    "YNL" => "Children’s / Teenage general interest: Literature, books & writers",
2889    "YNM" => "Children’s / Teenage general interest: Places & peoples",
2890    "YNMC" => "Children’s / Teenage general interest: Countries, cultures & national identity",
2891    "YNMD" => "Children’s / Teenage general interest: Celebrations, holidays, festivals & special events",
2892    "YNMF" => "Children’s / Teenage general interest: Girls & women",
2893    "YNMH" => "Children’s / Teenage general interest: Boys & men",
2894    "YNMK" => "Children’s / Teenage general interest: City & town life",
2895    "YNML" => "Children’s / Teenage general interest: Rural & farm life",
2896    "YNMW" => "Children’s / Teenage general interest: Queens, kings, princesses, princes etc",
2897    "YNN" => "Children’s / Teenage general interest: Nature, animals, the natural world",
2898    "YNNA" => "Children’s / Teenage general interest: Dinosaurs & prehistoric world",
2899    "YNNB" => "Children’s / Teenage general interest: Wildlife & habitats",
2900    "YNNB1" => "Children’s / Teenage general interest: Wildlife & habitats: Oceans & seas",
2901    "YNNB2" => "Children’s / Teenage general interest: Wildlife & habitats: Jungles & tropical forests",
2902    "YNNB3" => "Children’s / Teenage general interest: Wildlife & habitats: Deserts",
2903    "YNNB9" => "Children’s / Teenage general interest: Wildlife & habitats: Ice, snow & tundra",
2904    "YNNC" => "Children’s / Teenage general interest: Ecosystems",
2905    "YNNF" => "Children’s / Teenage general interest: Farm animals",
2906    "YNNH" => "Children’s / Teenage general interest: Pets & pet care",
2907    "YNNH1" => "Children’s / Teenage general interest: Pets & pet care: Dogs",
2908    "YNNH2" => "Children’s / Teenage general interest: Pets & pet care: Cats",
2909    "YNNH3" => "Children’s / Teenage general interest: Pets & pet care: Rabbits & rodents",
2910    "YNNH4" => "Children’s / Teenage general interest: Pets & pet care: Horses & ponies",
2911    "YNNH5" => "Children’s / Teenage general interest: Pets & pet care: Birds",
2912    "YNNJ" => "Children’s / Teenage general interest: Mammals",
2913    "YNNJ1" => "Children’s / Teenage general interest: Freshwater & marine mammals",
2914    "YNNJ14" => "Children’s / Teenage general interest: Whales, dolphins & porpoises",
2915    "YNNJ2" => "Children’s / Teenage general interest: Large land mammals",
2916    "YNNJ21" => "Children’s / Teenage general interest: Dogs & wolves",
2917    "YNNJ22" => "Children’s / Teenage general interest: Cats including big cats",
2918    "YNNJ23" => "Children’s / Teenage general interest: Bears",
2919    "YNNJ24" => "Children’s / Teenage general interest: Ponies & horses",
2920    "YNNJ25" => "Children’s / Teenage general interest: Cows & cattle",
2921    "YNNJ26" => "Children’s / Teenage general interest: Pigs, hogs & boars",
2922    "YNNJ27" => "Children’s / Teenage general interest: Sheep & goats",
2923    "YNNJ29" => "Children’s / Teenage general interest: Apes, monkeys & lemurs",
2924    "YNNJ3" => "Children’s / Teenage general interest: Small land mammals",
2925    "YNNJ31" => "Children’s / Teenage general interest: Rodents & rabbits",
2926    "YNNJ9" => "Children’s / Teenage general interest: Marsupials, platypuses & echidnas",
2927    "YNNK" => "Children’s / Teenage general interest: Birds",
2928    "YNNL" => "Children’s / Teenage general interest: Insects, spiders, minibeasts",
2929    "YNNM" => "Children’s / Teenage general interest: Reptiles & amphibians",
2930    "YNNS" => "Children’s / Teenage general interest: Fish & marine life",
2931    "YNNT" => "Children’s / Teenage general interest: Plants & trees",
2932    "YNNV" => "Children’s / Teenage general interest: Rocks, weather & physical world",
2933    "YNNZ" => "Children’s / Teenage general interest: Space, stars & the solar system",
2934    "YNP" => "Children’s / Teenage general interest: Practical interests",
2935    "YNPC" => "Children’s / Teenage general interest: Cooking & food",
2936    "YNPG" => "Children’s / Teenage general interest: Gardening",
2937    "YNPH" => "Children’s / Teenage general interest: Handicrafts",
2938    "YNPH1" => "Children’s / Teenage general interest: Woodworking, model-making",
2939    "YNPH2" => "Children’s / Teenage general interest: Needlecraft & fabric crafts",
2940    "YNPJ" => "Children’s / Teenage general interest: Clothing & fashion",
2941    "YNPK" => "Children’s / Teenage general interest: Money",
2942    "YNQ" => "Children’s / Teenage: Youth clubs, societies, groups & organisations",
2943    "YNR" => "Children’s / Teenage general interest: Religion & beliefs",
2944    "YNRD" => "Children’s / Teenage general interest: Hinduism",
2945    "YNRF" => "Children’s / Teenage general interest: Buddhism",
2946    "YNRJ" => "Children’s / Teenage general interest: Judaism",
2947    "YNRM" => "Children’s / Teenage general interest: Christianity",
2948    "YNRP" => "Children’s / Teenage general interest: Islam",
2949    "YNRR" => "Children’s / Teenage general interest: Other religions",
2950    "YNRU" => "Children’s / Teenage general interest: Ancient religions & mythologies",
2951    "YNRX" => "Children’s / Teenage general interest: Religious texts, prayers & devotional material",
2952    "YNT" => "Children’s / Teenage general interest: Science & technology",
2953    "YNTA" => "Children’s / Teenage general interest: Science: The human body",
2954    "YNTC" => "Children’s / Teenage general interest: Computing & Information Technology",
2955    "YNTC1" => "Children’s / Teenage general interest: Programming & scripting languages",
2956    "YNTC2" => "Children’s / Teenage general interest: Social media",
2957    "YNTD" => "Children’s / Teenage general interest: Inventors, inventions & experiments",
2958    "YNTG" => "Children’s / Teenage general interest: Machines & how things work",
2959    "YNTM" => "Children’s / Teenage general interest: Mathematics & numbers",
2960    "YNTP" => "Children’s / Teenage general interest: Buildings & construction",
2961    "YNTR" => "Children’s / Teenage general interest: Transport & vehicles",
2962    "YNTT" => "Children’s / Teenage general interest: Time travel",
2963    "YNU" => "Children’s / Teenage general interest: Humour & jokes",
2964    "YNUC" => "Children’s / Teenage general interest: Cartoons & comic strips",
2965    "YNV" => "Children’s / Teenage general interest: Hobbies, quizzes, toys & games",
2966    "YNVD" => "Children’s / Teenage general interest: Toys",
2967    "YNVD1" => "Children’s / Teenage general interest: Dolls, figures & similar toys",
2968    "YNVD2" => "Children’s / Teenage general interest: Stuffed or soft toys",
2969    "YNVD3" => "Children’s / Teenage general interest: Building bricks, blocks & construction toys",
2970    "YNVP" => "Children’s / Teenage general interest: Puzzle books",
2971    "YNVU" => "Children’s / Teenage general interest: Computer & video games",
2972    "YNW" => "Children’s / Teenage general interest: Sports & outdoor recreation",
2973    "YNWD" => "Children’s / Teenage general interest: Ball games & sports",
2974    "YNWD1" => "Children’s / Teenage general interest: Ball games & sports: Association football (Soccer)",
2975    "YNWD2" => "Children’s / Teenage general interest: Ball games & sports: American Football",
2976    "YNWD3" => "Children’s / Teenage general interest: Ball games & sports: Baseball & Softball",
2977    "YNWD4" => "Children’s / Teenage general interest: Ball games & sports: Basketball",
2978    "YNWD6" => "Children’s / Teenage general interest: Ball games & sports: Volleyball",
2979    "YNWD8" => "Children’s/Teenage general interest: Ball games & sports: Handball",
2980    "YNWG" => "Children’s / Teenage general interest: Athletics & gymnastics",
2981    "YNWM" => "Children’s / Teenage general interest: Winter sports",
2982    "YNWM1" => "Children’s / Teenage general interest: Winter sports: Skiing",
2983    "YNWM2" => "Children’s / Teenage general interest: Winter sports: Ice hockey",
2984    "YNWW" => "Children’s / Teenage general interest: Swimming & water sports",
2985    "YNWY" => "Children’s / Teenage general interest: Cycling, rollerskating & skateboarding",
2986    "YNWZ" => "Children’s / Teenage general interest: Sports teams & clubs",
2987    "YNX" => "Children’s / Teenage general interest: Mysteries & the unexplained",
2988    "YNXB" => "Children’s / Teenage general interest: Supernatural & mythological creatures",
2989    "YNXB1" => "Children’s / Teenage general interest: Dragons",
2990    "YNXB2" => "Children’s / Teenage general interest: Vampires, werewolves & shapeshifters",
2991    "YNXB3" => "Children’s / Teenage general interest: Zombies, ghosts & the undead",
2992    "YNXB4" => "Children’s / Teenage general interest: Fairies, elves, etc",
2993    "YNXF" => "Children’s / Teenage general interest: UFOs & extraterrestrial beings",
2994    "YNXW" => "Children’s / Teenage general interest: Witches, wizards & magicians",
2995    "YP" => "Educational material",
2996    "YPA" => "Educational: Arts, general",
2997    "YPAB" => "Educational: Art & design",
2998    "YPAD" => "Educational: Music",
2999    "YPAF" => "Educational: Drama & performance arts",
3000    "YPAG" => "Educational: Fashion & textile",
3001    "YPAK" => "Educational: Handicrafts",
3002    "YPC" => "Educational: Language, literature & literacy",
3003    "YPCA" => "Educational: First / native language",
3004    "YPCA1" => "Educational: First / native language: Basic literacy",
3005    "YPCA2" => "Educational: First / native language: Reading & writing skills",
3006    "YPCA21" => "Educational: First / native language: Readers & reading schemes",
3007    "YPCA22" => "Educational: First / native language: Handwriting skills",
3008    "YPCA23" => "Educational: First / native language: Spelling & vocabulary",
3009    "YPCA4" => "Educational: First / native language: Grammar & punctuation",
3010    "YPCA5" => "Educational: First / native language: Speaking skills",
3011    "YPCA9" => "Educational: First / native language: Literature studies",
3012    "YPCA91" => "Educational: First / native language: School editions of literature texts",
3013    "YPCK" => "Educational: Modern (non-native) languages",
3014    "YPCK2" => "Educational: Modern (non-native) languages: Language learning",
3015    "YPCK21" => "Educational: Modern (non-native) languages: Language learning: grammar, vocabulary and pronunciation",
3016    "YPCK22" => "Educational: Modern (non-native) languages: Language learning: readers",
3017    "YPCK9" => "Educational: Modern (non-native) languages: Literature studies",
3018    "YPCK91" => "Educational: Modern (non-native) languages: School editions of literature texts",
3019    "YPCS" => "Educational: Classical & ancient languages",
3020    "YPCS4" => "Educational: Classical & ancient languages: Language learning",
3021    "YPCS9" => "Educational: Classical & ancient languages: Literature studies",
3022    "YPCS91" => "Educational: Classical & ancient languages: School editions of classical texts",
3023    "YPJ" => "Educational: Humanities & social sciences, general",
3024    "YPJH" => "Educational: History",
3025    "YPJJ" => "Educational: Social sciences, social studies",
3026    "YPJJ1" => "Educational: Politics & constitution",
3027    "YPJJ3" => "Educational: Citizenship & social education",
3028    "YPJJ4" => "Educational: Local / integrated studies",
3029    "YPJJ5" => "Educational: Psychology",
3030    "YPJJ6" => "Educational: Personal & health education",
3031    "YPJK" => "Educational: Media studies",
3032    "YPJL" => "Educational: Philosophy & ethics",
3033    "YPJM" => "Educational: Law / legal studies",
3034    "YPJN" => "Educational: Religious studies",
3035    "YPJN1" => "Educational: Religious studies: Hinduism",
3036    "YPJN2" => "Educational: Religious studies: Buddhism",
3037    "YPJN3" => "Educational: Religious studies: Judaism",
3038    "YPJN4" => "Educational: Religious studies: Christianity",
3039    "YPJN5" => "Educational: Religious studies: Islam",
3040    "YPJN9" => "Educational: Religious studies: Other religions",
3041    "YPJT" => "Educational: Geography",
3042    "YPJV" => "Educational: Business studies & economics",
3043    "YPJV1" => "Educational: Economics",
3044    "YPJV2" => "Educational: Business administration & office skills",
3045    "YPJV3" => "Educational: Accounting",
3046    "YPM" => "Educational: Mathematics, science & technology, general",
3047    "YPMF" => "Educational: Mathematics & numeracy",
3048    "YPMF1" => "Educational: Mathematics & numeracy: arithmetic / times tables",
3049    "YPMP" => "Educational: Sciences, general science",
3050    "YPMP1" => "Educational: Biology",
3051    "YPMP3" => "Educational: Chemistry",
3052    "YPMP5" => "Educational: Physics",
3053    "YPMP51" => "Educational: Astronomy",
3054    "YPMP6" => "Educational: Environmental science",
3055    "YPMT" => "Educational: Technology",
3056    "YPMT2" => "Educational: Design & technology",
3057    "YPMT3" => "Educational: Engineering",
3058    "YPMT4" => "Educational: Food technology, cooking skills",
3059    "YPMT5" => "Educational: Electronics",
3060    "YPMT6" => "Educational: IT & computing, ICT",
3061    "YPMT7" => "Educational: Technical drawing",
3062    "YPMT8" => "Educational: Woodwork, metalwork, etc",
3063    "YPW" => "Educational: Vocational & other subjects",
3064    "YPWB" => "Education: Family & consumer sciences / domestic management",
3065    "YPWC" => "Educational: Other vocational education & training",
3066    "YPWC1" => "Educational: Health & social care",
3067    "YPWC2" => "Educational: Child care / Child development",
3068    "YPWC3" => "Educational: Sales & retail skills",
3069    "YPWC4" => "Educational: Hospitality",
3070    "YPWC5" => "Educational: Hairdressing, salon & beauty therapy skills",
3071    "YPWC9" => "Educational: Work experience / Careers",
3072    "YPWF" => "Educational: Physical education",
3073    "YPWL" => "Educational: General studies / study skills general",
3074    "YPZ" => "Educational: study & revision guides",
3075    "YPZN" => "Education: Non-Verbal reasoning",
3076    "YPZP" => "Education: Verbal reasoning",
3077    "YR" => "Children’s / Teenage reference material",
3078    "YRD" => "Children’s / Teenage reference: Dictionaries and language reference",
3079    "YRDC" => "Children’s / Teenage reference: Picture dictionaries",
3080    "YRDL" => "Children’s / Teenage reference: Bilingual / multilingual dictionaries",
3081    "YRDM" => "Children’s / Teenage reference: Non-native language study and reference",
3082    "YRE" => "Children’s / Teenage reference: Encyclopaedias, general reference",
3083    "YRG" => "Children’s / Teenage reference: Subject-specific reference",
3084    "YRW" => "Children’s / Teenage reference: Atlases & maps",
3085    "YX" => "Children’s / Teenage: Personal & social topics",
3086    "YXA" => "Children’s / Teenage personal & social topics: Body & health",
3087    "YXAB" => "Children’s / Teenage personal & social topics: Fitness, exercise & healthy eating",
3088    "YXAX" => "Children’s / Teenage personal & social topics: Sex education & the facts of life",
3089    "YXB" => "Children’s / Teenage personal & social topics: LGBT",
3090    "YXC" => "Children’s / Teenage personal & social topics: Gender identity",
3091    "YXD" => "Children’s / Teenage personal & social topics: Self-awareness & self-esteem",
3092    "YXE" => "Children’s / Teenage personal & social topics: Emotions, moods & feelings",
3093    "YXF" => "Children’s / Teenage personal & social topics: Families & family issues",
3094    "YXFD" => "Children’s / Teenage personal & social topics: Divorce, separation, family break-up",
3095    "YXFF" => "Children’s / Teenage personal & social topics: Adoption / fostering",
3096    "YXFS" => "Children’s / Teenage personal & social topics: New baby",
3097    "YXG" => "Children’s / Teenage personal & social topics: Death & bereavement",
3098    "YXGS" => "Children’s / Teenage personal & social topics: Suicide",
3099    "YXH" => "Children’s / Teenage personal & social topics: Relationships (non-family)",
3100    "YXHB" => "Children’s / Teenage personal & social topics: Friends & friendship issues",
3101    "YXHL" => "Children’s / Teenage personal & social topics: Dating, relationships & love",
3102    "YXHY" => "Children’s / Teenage personal & social topics: Teenage pregnancy",
3103    "YXJ" => "Children’s / Teenage personal & social topics: Drugs & addiction",
3104    "YXK" => "Children’s / Teenage personal & social topics: Disability & special needs",
3105    "YXL" => "Children’s / Teenage personal & social topics: Physical & mental health conditions",
3106    "YXLB" => "Children’s / Teenage personal & social topics: Illness & specific physical health conditions",
3107    "YXLB1" => "Children’s / Teenage personal & social topics: Cancer",
3108    "YXLD" => "Children’s / Teenage personal & social topics: Mental health",
3109    "YXLD1" => "Children’s / Teenage personal & social topics: Eating disorders",
3110    "YXLD2" => "Children’s / Teenage personal & social topics: Anxiety, depression & self-harm",
3111    "YXLD6" => "Children’s / Teenage personal & social topics: Positive / good mental health",
3112    "YXN" => "Children’s / Teenage personal & social topics: Racism & multiculturalism",
3113    "YXP" => "Children’s / Teenage personal & social topics: Diversity / inclusivity",
3114    "YXPB" => "Children’s / Teenage personal & social topics: Prejudice & intolerance",
3115    "YXQ" => "Children’s / Teenage personal & social topics: Bullying, violence, abuse & peer pressure",
3116    "YXQD" => "Children’s / Teenage personal & social topics: Abuse",
3117    "YXQF" => "Children’s / Teenage personal & social topics: Bullying & harassment",
3118    "YXR" => "Children’s / Teenage personal & social topics: Personal safety",
3119    "YXS" => "Children’s / Teenage personal & social topics: Runaways",
3120    "YXT" => "Children’s / Teenage personal & social topics: Truancy & school problems",
3121    "YXV" => "Teenage personal & social topics: Advice on careers & further education, leaving school",
3122    "YXW" => "Children’s / Teenage personal & social topics: First experiences & growing up",
3123    "YXZ" => "Children’s / Teenage: Social issues",
3124    "YXZG" => "Children’s / Teenage social issues: Environment & green issues",
3125    "YXZM" => "Children’s / Teenage social issues: Migration & refugees",
3126    "YXZR" => "Children’s / Teenage social issues: Religious issues",
3127    "YXZW" => "Children’s / Teenage social issues: War & conflict issues",
3128    "YZ" => "Children’s / Teenage stationery & miscellaneous items",
3129    "YZG" => "Children’s gift books",
3130    "YZS" => "Children’s stationery items",
3131    "YZSN" => "Blank children’s stationery items",
3132    "1A" => "World",
3133    "1D" => "Europe",
3134    "1DD" => "Western Europe",
3135    "1DDB" => "Belgium",
3136    "1DDB‑BE‑B" => "Brussels",
3137    "1DDB‑BE‑F" => "Flanders",
3138    "1DDB‑BE‑FA" => "Antwerp (Province)",
3139    "1DDB‑BE‑FAA" => "Antwerp",
3140    "1DDB‑BE‑FB" => "Flemish Brabant",
3141    "1DDB‑BE‑FBA" => "Leuven",
3142    "1DDB‑BE‑FC" => "Limburg (BE)",
3143    "1DDB‑BE‑FCA" => "Hasselt",
3144    "1DDB‑BE‑FD" => "East Flanders",
3145    "1DDB‑BE‑FDA" => "Ghent",
3146    "1DDB‑BE‑FE" => "West Flanders",
3147    "1DDB‑BE‑FEA" => "Bruges",
3148    "1DDB‑BE‑W" => "Wallonia / Wallonie",
3149    "1DDB‑BE‑WA" => "Wallonian Brabant",
3150    "1DDB‑BE‑WAA" => "Wavre",
3151    "1DDB‑BE‑WB" => "Hainaut",
3152    "1DDB‑BE‑WBA" => "Mons",
3153    "1DDB‑BE‑WBB" => "Charleroi",
3154    "1DDB‑BE‑WC" => "Liège (Province)",
3155    "1DDB‑BE‑WCA" => "Liège",
3156    "1DDB‑BE‑WD" => "Luxembourg (Province)",
3157    "1DDB‑BE‑WDA" => "Arlon / Arlen",
3158    "1DDB‑BE‑WE" => "Namur (Province)",
3159    "1DDB‑BE‑WEA" => "Namur",
3160    "1DDF" => "France",
3161    "1DDF‑FR‑X" => "Regions of France",
3162    "1DDF‑FR‑XA" => "Auvergne-Rhône-Alpes",
3163    "1DDF‑FR‑C" => "Auvergne",
3164    "1DDF‑FR‑CA" => "Allier",
3165    "1DDF‑FR‑CAA" => "Moulins",
3166    "1DDF‑FR‑CAB" => "Montluçon",
3167    "1DDF‑FR‑CAC" => "Vichy",
3168    "1DDF‑FR‑CB" => "Cantal",
3169    "1DDF‑FR‑CBA" => "Aurillac",
3170    "1DDF‑FR‑CBB" => "Mauriac",
3171    "1DDF‑FR‑CBC" => "Saint-Flour",
3172    "1DDF‑FR‑CC" => "Haute-Loire",
3173    "1DDF‑FR‑CCA" => "Le Puy-en-Velay",
3174    "1DDF‑FR‑CCB" => "Brioude",
3175    "1DDF‑FR‑CCC" => "Yssingeaux",
3176    "1DDF‑FR‑CD" => "Puy-de-Dôme",
3177    "1DDF‑FR‑CDA" => "Clermont-Ferrand",
3178    "1DDF‑FR‑CDB" => "Ambert",
3179    "1DDF‑FR‑CDC" => "Issoire",
3180    "1DDF‑FR‑CDD" => "Riom",
3181    "1DDF‑FR‑CDE" => "Thiers",
3182    "1DDF‑FR‑V" => "Rhône-Alpes",
3183    "1DDF‑FR‑VA" => "Ain",
3184    "1DDF‑FR‑VAA" => "Bourg-en-Bresse",
3185    "1DDF‑FR‑VAB" => "Belley",
3186    "1DDF‑FR‑VAC" => "Gex",
3187    "1DDF‑FR‑VAD" => "Nantua",
3188    "1DDF‑FR‑VB" => "Ardèche",
3189    "1DDF‑FR‑VBA" => "Privas",
3190    "1DDF‑FR‑VBB" => "Largentière",
3191    "1DDF‑FR‑VBC" => "Tournon-sur-Rhône",
3192    "1DDF‑FR‑VC" => "Drôme",
3193    "1DDF‑FR‑VCA" => "Valence",
3194    "1DDF‑FR‑VCB" => "Die",
3195    "1DDF‑FR‑VCC" => "Nyons",
3196    "1DDF‑FR‑VD" => "Isère",
3197    "1DDF‑FR‑VDA" => "Grenoble",
3198    "1DDF‑FR‑VDB" => "La Tour-du-Pin",
3199    "1DDF‑FR‑VDC" => "Vienne (Isère)",
3200    "1DDF‑FR‑VE" => "Loire",
3201    "1DDF‑FR‑VEA" => "Saint-Étienne",
3202    "1DDF‑FR‑VEB" => "Montbrison",
3203    "1DDF‑FR‑VEC" => "Roanne",
3204    "1DDF‑FR‑VF" => "Rhône",
3205    "1DDF‑FR‑VFA" => "Lyon",
3206    "1DDF‑FR‑VFB" => "Villefranche-sur-Saône",
3207    "1DDF‑FR‑VG" => "Savoy",
3208    "1DDF‑FR‑VGA" => "Chambéry",
3209    "1DDF‑FR‑VGB" => "Albertville",
3210    "1DDF‑FR‑VGC" => "Saint-Jean-de-Maurienne",
3211    "1DDF‑FR‑VH" => "Haute-Savoie",
3212    "1DDF‑FR‑VHA" => "Annecy",
3213    "1DDF‑FR‑VHB" => "Bonneville",
3214    "1DDF‑FR‑VHC" => "Chamonix",
3215    "1DDF‑FR‑VHD" => "Saint-Julien-en-Genevois",
3216    "1DDF‑FR‑VHE" => "Thonon-les-Bains",
3217    "1DDF‑FR‑XAZ" => "Auvergne-Rhône-Alpes: Places of interest",
3218    "1DDF‑FR‑XAZB" => "Bourbonnais",
3219    "1DDF‑FR‑XAZF" => "Forez / Livradois",
3220    "1DDF‑FR‑XAZG" => "Beaujolais",
3221    "1DDF‑FR‑XAZH" => "Dauphiné / Dauphiny",
3222    "1DDF‑FR‑XAZK" => "Chablais",
3223    "1DDF‑FR‑XB" => "Bourgogne-Franche-Comté",
3224    "1DDF‑FR‑E" => "Burgundy",
3225    "1DDF‑FR‑EA" => "Côte-d’Or",
3226    "1DDF‑FR‑EAA" => "Dijon",
3227    "1DDF‑FR‑EAB" => "Beaune",
3228    "1DDF‑FR‑EAC" => "Montbard",
3229    "1DDF‑FR‑EB" => "Nièvre",
3230    "1DDF‑FR‑EBA" => "Nevers",
3231    "1DDF‑FR‑EBB" => "Château-Chinon & the Morvan",
3232    "1DDF‑FR‑EBC" => "Clamecy",
3233    "1DDF‑FR‑EBD" => "Cosne-Cours-sur-Loire",
3234    "1DDF‑FR‑EC" => "Saône-et-Loire",
3235    "1DDF‑FR‑ECA" => "Mâcon & the Mâconnais",
3236    "1DDF‑FR‑ECB" => "Autun",
3237    "1DDF‑FR‑ECC" => "Chalon-sur-Saône & the Chalonnais",
3238    "1DDF‑FR‑ECD" => "Charolles & the Charolais",
3239    "1DDF‑FR‑ECE" => "Louhans",
3240    "1DDF‑FR‑ED" => "Yonne",
3241    "1DDF‑FR‑EDA" => "Auxerre",
3242    "1DDF‑FR‑EDB" => "Avallon",
3243    "1DDF‑FR‑J" => "Franche-Comté",
3244    "1DDF‑FR‑JA" => "Doubs",
3245    "1DDF‑FR‑JAA" => "Montbéliard",
3246    "1DDF‑FR‑JAB" => "Besançon",
3247    "1DDF‑FR‑JAC" => "Pontarlier",
3248    "1DDF‑FR‑JB" => "Jura (39)",
3249    "1DDF‑FR‑JBA" => "Lons-le-Saunier",
3250    "1DDF‑FR‑JBB" => "Dole",
3251    "1DDF‑FR‑JBC" => "Saint-Claude",
3252    "1DDF‑FR‑JC" => "Haute-Saône",
3253    "1DDF‑FR‑JCA" => "Vesoul",
3254    "1DDF‑FR‑JCB" => "Lure",
3255    "1DDF‑FR‑JD" => "Territoire de Belfort",
3256    "1DDF‑FR‑JDA" => "Belfort",
3257    "1DDF‑FR‑XC" => "Occitanie",
3258    "1DDF‑FR‑M" => "Languedoc-Roussillon",
3259    "1DDF‑FR‑MA" => "Aude",
3260    "1DDF‑FR‑MAA" => "Carcassonne",
3261    "1DDF‑FR‑MAB" => "Limoux",
3262    "1DDF‑FR‑MAC" => "Narbonne",
3263    "1DDF‑FR‑MAD" => "Rennes-le-Château",
3264    "1DDF‑FR‑MB" => "Gard",
3265    "1DDF‑FR‑MBA" => "Nîmes",
3266    "1DDF‑FR‑MBB" => "Alès",
3267    "1DDF‑FR‑MBC" => "Le Vigan",
3268    "1DDF‑FR‑MC" => "Hérault",
3269    "1DDF‑FR‑MCA" => "Montpellier",
3270    "1DDF‑FR‑MCB" => "Béziers",
3271    "1DDF‑FR‑MCC" => "Lodève",
3272    "1DDF‑FR‑MD" => "Lozère",
3273    "1DDF‑FR‑MDA" => "Mende",
3274    "1DDF‑FR‑MDB" => "Florac Trois Rivières",
3275    "1DDF‑FR‑ME" => "Pyrénées-Orientales",
3276    "1DDF‑FR‑MEA" => "Perpignan",
3277    "1DDF‑FR‑MEB" => "Céret",
3278    "1DDF‑FR‑MEC" => "Prades",
3279    "1DDF‑FR‑P" => "Midi-Pyrénées",
3280    "1DDF‑FR‑PA" => "Ariège",
3281    "1DDF‑FR‑PAA" => "Foix",
3282    "1DDF‑FR‑PAB" => "Pamiers",
3283    "1DDF‑FR‑PAC" => "Saint-Girons",
3284    "1DDF‑FR‑PB" => "Aveyron",
3285    "1DDF‑FR‑PBA" => "Rodez",
3286    "1DDF‑FR‑PBB" => "Millau",
3287    "1DDF‑FR‑PBC" => "Villefranche-de-Rouergue",
3288    "1DDF‑FR‑PC" => "Haute-Garonne",
3289    "1DDF‑FR‑PCA" => "Toulouse",
3290    "1DDF‑FR‑PCB" => "Muret",
3291    "1DDF‑FR‑PCC" => "Saint-Gaudens",
3292    "1DDF‑FR‑PD" => "Gers",
3293    "1DDF‑FR‑PDA" => "Auch",
3294    "1DDF‑FR‑PDB" => "Condom",
3295    "1DDF‑FR‑PDC" => "Mirande",
3296    "1DDF‑FR‑PE" => "Lot",
3297    "1DDF‑FR‑PEA" => "Cahors",
3298    "1DDF‑FR‑PEB" => "Figeac",
3299    "1DDF‑FR‑PEC" => "Gourdon",
3300    "1DDF‑FR‑PF" => "Hautes-Pyrénées",
3301    "1DDF‑FR‑PFA" => "Tarbes",
3302    "1DDF‑FR‑PFB" => "Argelès-Gazost",
3303    "1DDF‑FR‑PFC" => "Bagnères-de-Bigorre",
3304    "1DDF‑FR‑PFD" => "Lourdes",
3305    "1DDF‑FR‑PG" => "Tarn",
3306    "1DDF‑FR‑PGA" => "Albi",
3307    "1DDF‑FR‑PGB" => "Castres",
3308    "1DDF‑FR‑PH" => "Tarn-et-Garonne",
3309    "1DDF‑FR‑PHA" => "Montauban",
3310    "1DDF‑FR‑PHB" => "Castelsarrasin",
3311    "1DDF‑FR‑XCZ" => "Occitanie: Places of interest",
3312    "1DDF‑FR‑XCZA" => "Armagnac",
3313    "1DDF‑FR‑XCZB" => "Aubrac",
3314    "1DDF‑FR‑XCZC" => "Cévennes",
3315    "1DDF‑FR‑XCZG" => "Gévaudan",
3316    "1DDF‑FR‑XCZL" => "Languedoc",
3317    "1DDF‑FR‑XCZM" => "Canal du Midi",
3318    "1DDF‑FR‑XCZN" => "Causses",
3319    "1DDF‑FR‑XCZQ" => "Quercy",
3320    "1DDF‑FR‑XCZR" => "Roussillion",
3321    "1DDF‑FR‑XE" => "Grand-Est",
3322    "1DDF‑FR‑A" => "Alsace",
3323    "1DDF‑FR‑AA" => "Bas-Rhin",
3324    "1DDF‑FR‑AAA" => "Strasbourg",
3325    "1DDF‑FR‑AAB" => "Haguenau",
3326    "1DDF‑FR‑AAC" => "Molsheim",
3327    "1DDF‑FR‑AAD" => "Saverne",
3328    "1DDF‑FR‑AAE" => "Sélestat",
3329    "1DDF‑FR‑AB" => "Haut-Rhin",
3330    "1DDF‑FR‑ABA" => "Colmar",
3331    "1DDF‑FR‑ABB" => "Altkirch",
3332    "1DDF‑FR‑ABC" => "Mulhouse",
3333    "1DDF‑FR‑ABD" => "Thann",
3334    "1DDF‑FR‑H" => "Champagne-Ardenne",
3335    "1DDF‑FR‑HA" => "Ardennes",
3336    "1DDF‑FR‑HAA" => "Sedan",
3337    "1DDF‑FR‑HAB" => "Charleville-Mézières",
3338    "1DDF‑FR‑HAC" => "Rethel",
3339    "1DDF‑FR‑HAD" => "Vouziers",
3340    "1DDF‑FR‑HB" => "Aube",
3341    "1DDF‑FR‑HBA" => "Troyes",
3342    "1DDF‑FR‑HBB" => "Bar-sur-Aube",
3343    "1DDF‑FR‑HBC" => "Nogent-sur-Seine",
3344    "1DDF‑FR‑HC" => "Marne",
3345    "1DDF‑FR‑HCA" => "Châlons-en-Champagne",
3346    "1DDF‑FR‑HCB" => "Épernay",
3347    "1DDF‑FR‑HCC" => "Reims",
3348    "1DDF‑FR‑HCD" => "Sainte-Menehould",
3349    "1DDF‑FR‑HCE" => "Vitry-le-François",
3350    "1DDF‑FR‑HD" => "Haute-Marne",
3351    "1DDF‑FR‑HDA" => "Chaumont",
3352    "1DDF‑FR‑HDB" => "Langres",
3353    "1DDF‑FR‑HDC" => "Saint-Dizier",
3354    "1DDF‑FR‑O" => "Lorraine",
3355    "1DDF‑FR‑OA" => "Meurthe-et-Moselle",
3356    "1DDF‑FR‑OAA" => "Nancy",
3357    "1DDF‑FR‑OAB" => "Lunéville",
3358    "1DDF‑FR‑OAC" => "Toul",
3359    "1DDF‑FR‑OAD" => "Val-de-Briey",
3360    "1DDF‑FR‑OB" => "Meuse",
3361    "1DDF‑FR‑OBA" => "Bar-le-Duc",
3362    "1DDF‑FR‑OBB" => "Commercy",
3363    "1DDF‑FR‑OBC" => "Verdun",
3364    "1DDF‑FR‑OC" => "Moselle",
3365    "1DDF‑FR‑OCA" => "Metz",
3366    "1DDF‑FR‑OCB" => "Thionville",
3367    "1DDF‑FR‑OCC" => "Sarreguemines",
3368    "1DDF‑FR‑OCD" => "Sarrebourg",
3369    "1DDF‑FR‑OCE" => "Forbach",
3370    "1DDF‑FR‑OD" => "Vosges",
3371    "1DDF‑FR‑ODA" => "Épinal",
3372    "1DDF‑FR‑ODB" => "Neufchâteau",
3373    "1DDF‑FR‑ODC" => "Saint-Dié-des-Vosges",
3374    "1DDF‑FR‑XEZ" => "Grand-Est: Places of interest",
3375    "1DDF‑FR‑XEZC" => "Champagne",
3376    "1DDF‑FR‑XEZV" => "Vosges Mountains",
3377    "1DDF‑FR‑F" => "Brittany",
3378    "1DDF‑FR‑FA" => "Côtes-d’Armor",
3379    "1DDF‑FR‑FAA" => "Saint-Brieuc",
3380    "1DDF‑FR‑FAB" => "Dinan",
3381    "1DDF‑FR‑FAC" => "Guingamp",
3382    "1DDF‑FR‑FAD" => "Lannion",
3383    "1DDF‑FR‑FB" => "Finistère",
3384    "1DDF‑FR‑FBA" => "Quimper",
3385    "1DDF‑FR‑FBB" => "Brest",
3386    "1DDF‑FR‑FBC" => "Châteaulin",
3387    "1DDF‑FR‑FBD" => "Morlaix",
3388    "1DDF‑FR‑FC" => "Ille-et-Vilaine",
3389    "1DDF‑FR‑FCA" => "Rennes",
3390    "1DDF‑FR‑FCB" => "Fougères",
3391    "1DDF‑FR‑FCC" => "Redon",
3392    "1DDF‑FR‑FCD" => "Saint-Malo",
3393    "1DDF‑FR‑FD" => "Morbihan",
3394    "1DDF‑FR‑FDA" => "Vannes",
3395    "1DDF‑FR‑FDB" => "Lorient",
3396    "1DDF‑FR‑FDC" => "Pontivy",
3397    "1DDF‑FR‑FDD" => "Carnac",
3398    "1DDF‑FR‑FZ" => "Brittany: Places of interest",
3399    "1DDF‑FR‑FZC" => "Cornouaille",
3400    "1DDF‑FR‑G" => "Centre-Val de Loire",
3401    "1DDF‑FR‑GA" => "Cher",
3402    "1DDF‑FR‑GAA" => "Saint-Amand-Montrond",
3403    "1DDF‑FR‑GAB" => "Bourges",
3404    "1DDF‑FR‑GAC" => "Vierzon",
3405    "1DDF‑FR‑GAD" => "Sancerre",
3406    "1DDF‑FR‑GB" => "Eure-et-Loir",
3407    "1DDF‑FR‑GBA" => "Chartres",
3408    "1DDF‑FR‑GBB" => "Châteaudun",
3409    "1DDF‑FR‑GBC" => "Dreux",
3410    "1DDF‑FR‑GBD" => "Nogent-le-Rotrou",
3411    "1DDF‑FR‑GC" => "Indre",
3412    "1DDF‑FR‑GCA" => "Châteauroux",
3413    "1DDF‑FR‑GCB" => "Le Blanc",
3414    "1DDF‑FR‑GCC" => "La Châtre",
3415    "1DDF‑FR‑GCD" => "Issoudun",
3416    "1DDF‑FR‑GD" => "Indre-et-Loire",
3417    "1DDF‑FR‑GDA" => "Tours",
3418    "1DDF‑FR‑GDB" => "Chinon",
3419    "1DDF‑FR‑GDC" => "Loches",
3420    "1DDF‑FR‑GE" => "Loir-et-Cher",
3421    "1DDF‑FR‑GEA" => "Blois",
3422    "1DDF‑FR‑GEB" => "Romorantin-Lanthenay",
3423    "1DDF‑FR‑GEC" => "Vendôme",
3424    "1DDF‑FR‑GF" => "Loiret",
3425    "1DDF‑FR‑GFA" => "Orléans",
3426    "1DDF‑FR‑GFB" => "Montargis",
3427    "1DDF‑FR‑GFC" => "Pithiviers",
3428    "1DDF‑FR‑GZ" => "Centre-Val de Loire: Places of interest",
3429    "1DDF‑FR‑GZB" => "Berry",
3430    "1DDF‑FR‑GZS" => "Sologne",
3431    "1DDF‑FR‑GZT" => "Touraine",
3432    "1DDF‑FR‑XH" => "Hauts-de-France",
3433    "1DDF‑FR‑Q" => "Nord-Pas-de-Calais",
3434    "1DDF‑FR‑QA" => "Nord",
3435    "1DDF‑FR‑QAA" => "Lille",
3436    "1DDF‑FR‑QAB" => "Avesnes-sur-Helpe",
3437    "1DDF‑FR‑QAC" => "Cambrai",
3438    "1DDF‑FR‑QAD" => "Douai",
3439    "1DDF‑FR‑QAE" => "Dunkirk",
3440    "1DDF‑FR‑QAF" => "Valenciennes",
3441    "1DDF‑FR‑QB" => "Pas-de-Calais",
3442    "1DDF‑FR‑QBA" => "Arras",
3443    "1DDF‑FR‑QBB" => "Béthune",
3444    "1DDF‑FR‑QBC" => "Boulogne",
3445    "1DDF‑FR‑QBD" => "Calais",
3446    "1DDF‑FR‑QBE" => "Lens",
3447    "1DDF‑FR‑QBF" => "Montreuil",
3448    "1DDF‑FR‑QBG" => "Saint-Omer",
3449    "1DDF‑FR‑S" => "Picardy",
3450    "1DDF‑FR‑SA" => "Aisne",
3451    "1DDF‑FR‑SAA" => "Laon",
3452    "1DDF‑FR‑SAB" => "Château-Thierry",
3453    "1DDF‑FR‑SAC" => "Saint-Quentin",
3454    "1DDF‑FR‑SAD" => "Soissons",
3455    "1DDF‑FR‑SAE" => "Vervins",
3456    "1DDF‑FR‑SB" => "Oise",
3457    "1DDF‑FR‑SBA" => "Beauvais",
3458    "1DDF‑FR‑SBB" => "Clermont",
3459    "1DDF‑FR‑SBC" => "Compiègne",
3460    "1DDF‑FR‑SBD" => "Senlis",
3461    "1DDF‑FR‑SC" => "Somme",
3462    "1DDF‑FR‑SCA" => "Amiens",
3463    "1DDF‑FR‑SCB" => "Abbeville",
3464    "1DDF‑FR‑SCC" => "Montdidier",
3465    "1DDF‑FR‑SCD" => "Péronne",
3466    "1DDF‑FR‑XHZ" => "Hauts-de-France: Places of interest",
3467    "1DDF‑FR‑XHZA" => "Artois",
3468    "1DDF‑FR‑I" => "Corsica",
3469    "1DDF‑FR‑IA" => "Corse-du-Sud",
3470    "1DDF‑FR‑IAA" => "Ajaccio",
3471    "1DDF‑FR‑IAB" => "Sartène",
3472    "1DDF‑FR‑IB" => "Haute-Corse",
3473    "1DDF‑FR‑IBA" => "Bastia",
3474    "1DDF‑FR‑IBB" => "Calvi",
3475    "1DDF‑FR‑IBC" => "Corte",
3476    "1DDF‑FR‑L" => "Île-de-France",
3477    "1DDF‑FR‑LA" => "Paris (75)",
3478    "1DDF‑FR‑LAA" => "Paris",
3479    "1DDF‑FR‑LB" => "Seine-et-Marne",
3480    "1DDF‑FR‑LBA" => "Melun",
3481    "1DDF‑FR‑LBB" => "Fontainebleau",
3482    "1DDF‑FR‑LBC" => "Meaux",
3483    "1DDF‑FR‑LBD" => "Provins",
3484    "1DDF‑FR‑LBE" => "Torcy",
3485    "1DDF‑FR‑LC" => "Yvelines",
3486    "1DDF‑FR‑LCA" => "Versailles",
3487    "1DDF‑FR‑LCB" => "Mantes-la-Jolie",
3488    "1DDF‑FR‑LCC" => "Rambouillet",
3489    "1DDF‑FR‑LCD" => "Saint-Germain-en-Laye",
3490    "1DDF‑FR‑LD" => "Essonne",
3491    "1DDF‑FR‑LDA" => "Évry",
3492    "1DDF‑FR‑LDB" => "Étampes",
3493    "1DDF‑FR‑LDC" => "Palaiseau",
3494    "1DDF‑FR‑LE" => "Hauts-de-Seine",
3495    "1DDF‑FR‑LEA" => "Nanterre",
3496    "1DDF‑FR‑LEB" => "Antony",
3497    "1DDF‑FR‑LEC" => "Boulogne-Billancourt",
3498    "1DDF‑FR‑LF" => "Seine-Saint-Denis",
3499    "1DDF‑FR‑LFA" => "Bobigny",
3500    "1DDF‑FR‑LFB" => "Le Raincy",
3501    "1DDF‑FR‑LFC" => "Saint-Denis",
3502    "1DDF‑FR‑LG" => "Val-de-Marne",
3503    "1DDF‑FR‑LGA" => "Créteil",
3504    "1DDF‑FR‑LGB" => "L’Haÿ-les-Roses",
3505    "1DDF‑FR‑LGC" => "Nogent-sur-Marne",
3506    "1DDF‑FR‑LH" => "Val-d’Oise",
3507    "1DDF‑FR‑LHA" => "Pontoise",
3508    "1DDF‑FR‑LHB" => "Argenteuil",
3509    "1DDF‑FR‑LHC" => "Sarcelles",
3510    "1DDF‑FR‑LZ" => "Î̂le-de-France: Places of interest",
3511    "1DDF‑FR‑LZB" => "Brie",
3512    "1DDF‑FR‑LZV" => "Vexin",
3513    "1DDF‑FR‑XN" => "Normandy",
3514    "1DDF‑FR‑D" => "Basse-Normandie",
3515    "1DDF‑FR‑DA" => "Calvados",
3516    "1DDF‑FR‑DAA" => "Caen",
3517    "1DDF‑FR‑DAB" => "Bayeux",
3518    "1DDF‑FR‑DAC" => "Lisieux",
3519    "1DDF‑FR‑DAD" => "Vire-Normandie",
3520    "1DDF‑FR‑DB" => "Manche",
3521    "1DDF‑FR‑DBA" => "Saint-Lô",
3522    "1DDF‑FR‑DBB" => "Avranches",
3523    "1DDF‑FR‑DBC" => "Cherbourg-en-Cotentin",
3524    "1DDF‑FR‑DBD" => "Coutances",
3525    "1DDF‑FR‑DBE" => "Mont Saint-Michel",
3526    "1DDF‑FR‑DC" => "Orne",
3527    "1DDF‑FR‑DCA" => "Alençon",
3528    "1DDF‑FR‑DCB" => "Argentan",
3529    "1DDF‑FR‑DCC" => "Mortagne-au-Perche",
3530    "1DDF‑FR‑K" => "Haute-Normandie",
3531    "1DDF‑FR‑KA" => "Eure",
3532    "1DDF‑FR‑KAA" => "Évreux",
3533    "1DDF‑FR‑KAB" => "Les Andelys",
3534    "1DDF‑FR‑KAC" => "Bernay",
3535    "1DDF‑FR‑KB" => "Seine-Maritime",
3536    "1DDF‑FR‑KBA" => "Rouen",
3537    "1DDF‑FR‑KBB" => "Dieppe",
3538    "1DDF‑FR‑KBC" => "Le Havre",
3539    "1DDF‑FR‑XNZ" => "Normandy: Places of interest",
3540    "1DDF‑FR‑XNZB" => "Normandy Beaches",
3541    "1DDF‑FR‑XNZD" => "Perche",
3542    "1DDF‑FR‑XNZF" => "Pays d’Auge",
3543    "1DDF‑FR‑XNZH" => "Pays de Caux",
3544    "1DDF‑FR‑XQ" => "Nouvelle-Aquitaine",
3545    "1DDF‑FR‑B" => "Aquitaine",
3546    "1DDF‑FR‑BA" => "Dordogne",
3547    "1DDF‑FR‑BAA" => "Périgueux",
3548    "1DDF‑FR‑BAB" => "Bergerac",
3549    "1DDF‑FR‑BAC" => "Nontron",
3550    "1DDF‑FR‑BAD" => "Sarlat-la-Canéda",
3551    "1DDF‑FR‑BB" => "Gironde",
3552    "1DDF‑FR‑BBA" => "Bordeaux",
3553    "1DDF‑FR‑BBB" => "Arcachon",
3554    "1DDF‑FR‑BBC" => "Blaye",
3555    "1DDF‑FR‑BBD" => "Langon",
3556    "1DDF‑FR‑BBE" => "Lesparre-Médoc",
3557    "1DDF‑FR‑BBF" => "Libourne",
3558    "1DDF‑FR‑BBG" => "Saint-Émilion",
3559    "1DDF‑FR‑BC" => "Landes",
3560    "1DDF‑FR‑BCA" => "Mont-de-Marsan",
3561    "1DDF‑FR‑BCB" => "Dax",
3562    "1DDF‑FR‑BD" => "Lot-et-Garonne",
3563    "1DDF‑FR‑BDA" => "Agen",
3564    "1DDF‑FR‑BDB" => "Marmande",
3565    "1DDF‑FR‑BDC" => "Nérac",
3566    "1DDF‑FR‑BDD" => "Villeneuve-sur-Lot",
3567    "1DDF‑FR‑BE" => "Pyrénées-Atlantiques",
3568    "1DDF‑FR‑BEA" => "Pau",
3569    "1DDF‑FR‑BEB" => "Bayonne",
3570    "1DDF‑FR‑BEC" => "Biarritz",
3571    "1DDF‑FR‑BED" => "Oloron-Sainte-Marie",
3572    "1DDF‑FR‑N" => "Limousin",
3573    "1DDF‑FR‑NA" => "Corrèze",
3574    "1DDF‑FR‑NAA" => "Tulle",
3575    "1DDF‑FR‑NAB" => "Brive-la-Gaillarde",
3576    "1DDF‑FR‑NAC" => "Ussel",
3577    "1DDF‑FR‑NB" => "Creuse",
3578    "1DDF‑FR‑NBA" => "Guéret",
3579    "1DDF‑FR‑NBB" => "Aubusson",
3580    "1DDF‑FR‑NC" => "Haute-Vienne",
3581    "1DDF‑FR‑NCA" => "Limoges",
3582    "1DDF‑FR‑NCB" => "Bellac",
3583    "1DDF‑FR‑NCC" => "Rochechouart",
3584    "1DDF‑FR‑T" => "Poitou-Charentes",
3585    "1DDF‑FR‑TA" => "Charente",
3586    "1DDF‑FR‑TAA" => "Angoulême",
3587    "1DDF‑FR‑TAB" => "Cognac",
3588    "1DDF‑FR‑TAC" => "Confolens",
3589    "1DDF‑FR‑TB" => "Charente-Maritime",
3590    "1DDF‑FR‑TBA" => "La Rochelle",
3591    "1DDF‑FR‑TBB" => "Jonzac",
3592    "1DDF‑FR‑TBC" => "Rochefort",
3593    "1DDF‑FR‑TBD" => "Saint-Jean-d’Angély",
3594    "1DDF‑FR‑TBE" => "Saintes",
3595    "1DDF‑FR‑TC" => "Deux-Sèvres",
3596    "1DDF‑FR‑TCA" => "Niort",
3597    "1DDF‑FR‑TCB" => "Bressuire",
3598    "1DDF‑FR‑TCC" => "Parthenay",
3599    "1DDF‑FR‑TD" => "Vienne (86)",
3600    "1DDF‑FR‑TDA" => "Poitiers",
3601    "1DDF‑FR‑TDB" => "Châtellerault",
3602    "1DDF‑FR‑TDC" => "Montmorillon",
3603    "1DDF‑FR‑XQZ" => "Nouvelle-Aquitaine: Places of interest",
3604    "1DDF‑FR‑XQZB" => "Béarn",
3605    "1DDF‑FR‑XQZD" => "Gascony",
3606    "1DDF‑FR‑XQZG" => "Guyenne",
3607    "1DDF‑FR‑XQZH" => "Navarre (Lower)",
3608    "1DDF‑FR‑XQZJ" => "Périgord",
3609    "1DDF‑FR‑XQZK" => "Poitou",
3610    "1DDF‑FR‑XQZL" => "Lascaux",
3611    "1DDF‑FR‑XQZM" => "La Marche (Province)",
3612    "1DDF‑FR‑R" => "Pays de la Loire",
3613    "1DDF‑FR‑RA" => "Loire-Atlantique",
3614    "1DDF‑FR‑RAA" => "Saint-Nazaire",
3615    "1DDF‑FR‑RAB" => "Nantes",
3616    "1DDF‑FR‑RAC" => "Châteaubriant",
3617    "1DDF‑FR‑RB" => "Maine-et-Loire",
3618    "1DDF‑FR‑RBA" => "Angers",
3619    "1DDF‑FR‑RBB" => "Saumur",
3620    "1DDF‑FR‑RBC" => "Cholet",
3621    "1DDF‑FR‑RBD" => "Segré",
3622    "1DDF‑FR‑RC" => "Mayenne",
3623    "1DDF‑FR‑RCA" => "Laval",
3624    "1DDF‑FR‑RCB" => "Château-Gontier",
3625    "1DDF‑FR‑RD" => "Sarthe",
3626    "1DDF‑FR‑RDA" => "Le Mans",
3627    "1DDF‑FR‑RDB" => "La Flèche",
3628    "1DDF‑FR‑RDC" => "Mamers",
3629    "1DDF‑FR‑RE" => "Vendée",
3630    "1DDF‑FR‑REA" => "La Roche-sur-Yon",
3631    "1DDF‑FR‑REB" => "Fontenay-le-Comte",
3632    "1DDF‑FR‑REC" => "Les Sables-d’Olonne",
3633    "1DDF‑FR‑RZ" => "Pays de la Loire: Places of interest",
3634    "1DDF‑FR‑RZA" => "Anjou",
3635    "1DDF‑FR‑RZM" => "Maine (province)",
3636    "1DDF‑FR‑U" => "Provence-Alpes-Côte d’Azur",
3637    "1DDF‑FR‑UA" => "Alpes-de-Haute-Provence",
3638    "1DDF‑FR‑UAA" => "Digne-les-Bains",
3639    "1DDF‑FR‑UAB" => "Barcelonnette",
3640    "1DDF‑FR‑UAC" => "Castellane",
3641    "1DDF‑FR‑UAD" => "Forcalquier",
3642    "1DDF‑FR‑UB" => "Hautes-Alpes",
3643    "1DDF‑FR‑UBA" => "Gap",
3644    "1DDF‑FR‑UBB" => "Briançon",
3645    "1DDF‑FR‑UC" => "Alpes-Maritimes",
3646    "1DDF‑FR‑UCA" => "Nice",
3647    "1DDF‑FR‑UCB" => "Grasse",
3648    "1DDF‑FR‑UCC" => "Cannes",
3649    "1DDF‑FR‑UD" => "Bouches-du-Rhône",
3650    "1DDF‑FR‑UDA" => "Marseille",
3651    "1DDF‑FR‑UDB" => "Aix-en-Provence",
3652    "1DDF‑FR‑UDC" => "Arles",
3653    "1DDF‑FR‑UDD" => "Istres",
3654    "1DDF‑FR‑UE" => "Var",
3655    "1DDF‑FR‑UEA" => "Toulon",
3656    "1DDF‑FR‑UEB" => "Brignoles",
3657    "1DDF‑FR‑UEC" => "Saint-Tropez",
3658    "1DDF‑FR‑UED" => "Draguignan",
3659    "1DDF‑FR‑UF" => "Vaucluse",
3660    "1DDF‑FR‑UFA" => "Avignon",
3661    "1DDF‑FR‑UFB" => "Apt",
3662    "1DDF‑FR‑UFC" => "Carpentras",
3663    "1DDF‑FR‑UFD" => "Orange",
3664    "1DDF‑FR‑UZ" => "Provence-Alpes-Côte d’Azur: Places of interest",
3665    "1DDF‑FR‑UZC" => "French Riviera / Côte d’Azur",
3666    "1DDF‑FR‑UZD" => "The Luberon",
3667    "1DDF‑FR‑UZF" => "Mercantour",
3668    "1DDF‑FR‑UZG" => "Camargue",
3669    "1DDF‑FR‑UZP" => "Provence",
3670    "1DDF‑FR‑Z" => "France: Places of interest",
3671    "1DDF‑FR‑ZB" => "The Seine",
3672    "1DDF‑FR‑ZD" => "The Dordogne",
3673    "1DDF‑FR‑ZL" => "The Loire & the Loire Valley",
3674    "1DDF‑FR‑ZR" => "The Rhône",
3675    "1DDF‑FR‑ZS" => "Massif Central",
3676    "1DDL" => "Luxembourg",
3677    "1DDM" => "Monaco",
3678    "1DDN" => "Netherlands",
3679    "1DDN‑NL‑A" => "Amsterdam",
3680    "1DDN‑NL‑B" => "North Brabant",
3681    "1DDN‑NL‑BB" => "Breda",
3682    "1DDN‑NL‑BE" => "Eindhoven",
3683    "1DDN‑NL‑BH" => "s-Hertogenbosch",
3684    "1DDN‑NL‑BT" => "Tilburg",
3685    "1DDN‑NL‑D" => "Drenthe",
3686    "1DDN‑NL‑DA" => "Assen",
3687    "1DDN‑NL‑DE" => "Emmen",
3688    "1DDN‑NL‑F" => "Flevoland",
3689    "1DDN‑NL‑FA" => "Almere",
3690    "1DDN‑NL‑FL" => "Lelystad",
3691    "1DDN‑NL‑G" => "Gelderland",
3692    "1DDN‑NL‑GA" => "Arnhem",
3693    "1DDN‑NL‑GD" => "Apeldoorn",
3694    "1DDN‑NL‑GE" => "Ede",
3695    "1DDN‑NL‑GN" => "Nijmegen",
3696    "1DDN‑NL‑H" => "North Holland",
3697    "1DDN‑NL‑HH" => "Haarlem",
3698    "1DDN‑NL‑HM" => "Alkmaar",
3699    "1DDN‑NL‑L" => "Limburg (NL)",
3700    "1DDN‑NL‑LM" => "Maastricht",
3701    "1DDN‑NL‑LV" => "Venlo",
3702    "1DDN‑NL‑N" => "Groningen (province)",
3703    "1DDN‑NL‑NG" => "Groningen",
3704    "1DDN‑NL‑R" => "Friesland",
3705    "1DDN‑NL‑RL" => "Leeuwarden",
3706    "1DDN‑NL‑S" => "South Holland",
3707    "1DDN‑NL‑SA" => "Alphen aan den Rijn",
3708    "1DDN‑NL‑SC" => "Dordrecht",
3709    "1DDN‑NL‑SD" => "Delft",
3710    "1DDN‑NL‑SH" => "The Hague",
3711    "1DDN‑NL‑SL" => "Leiden",
3712    "1DDN‑NL‑SR" => "Rotterdam",
3713    "1DDN‑NL‑SZ" => "Zoetermeer",
3714    "1DDN‑NL‑U" => "Utrecht (province)",
3715    "1DDN‑NL‑UA" => "Amersfoort",
3716    "1DDN‑NL‑UU" => "Utrecht",
3717    "1DDN‑NL‑V" => "Overijssel",
3718    "1DDN‑NL‑VE" => "Enschede",
3719    "1DDN‑NL‑VZ" => "Zwolle",
3720    "1DDN‑NL‑Z" => "Zeeland",
3721    "1DDN‑NL‑ZG" => "Goes",
3722    "1DDN‑NL‑ZM" => "Middelburg",
3723    "1DDN‑NL‑ZV" => "Vlissingen",
3724    "1DDR" => "Ireland",
3725    "1DDR‑IE‑C" => "Connaught",
3726    "1DDR‑IE‑CG" => "County Galway",
3727    "1DDR‑IE‑CGC" => "Connemara",
3728    "1DDR‑IE‑CGD" => "The Twelve Bens",
3729    "1DDR‑IE‑CGG" => "Galway",
3730    "1DDR‑IE‑CL" => "Leitrim",
3731    "1DDR‑IE‑CM" => "Mayo",
3732    "1DDR‑IE‑CR" => "Roscommon",
3733    "1DDR‑IE‑CS" => "Sligo",
3734    "1DDR‑IE‑L" => "Leinster",
3735    "1DDR‑IE‑LC" => "Carlow",
3736    "1DDR‑IE‑LD" => "County Dublin",
3737    "1DDR‑IE‑LDD" => "Dublin",
3738    "1DDR‑IE‑LH" => "Louth",
3739    "1DDR‑IE‑LI" => "Wicklow",
3740    "1DDR‑IE‑LIM" => "The Wicklow Mountains",
3741    "1DDR‑IE‑LK" => "Kildare",
3742    "1DDR‑IE‑LL" => "Laois",
3743    "1DDR‑IE‑LM" => "Meath",
3744    "1DDR‑IE‑LMN" => "Newgrange",
3745    "1DDR‑IE‑LN" => "Longford",
3746    "1DDR‑IE‑LO" => "Offaly",
3747    "1DDR‑IE‑LW" => "Westmeath",
3748    "1DDR‑IE‑LX" => "Wexford",
3749    "1DDR‑IE‑LY" => "Kilkenny",
3750    "1DDR‑IE‑M" => "Munster",
3751    "1DDR‑IE‑MC" => "County Cork",
3752    "1DDR‑IE‑MCC" => "Cork",
3753    "1DDR‑IE‑MK" => "Kerry",
3754    "1DDR‑IE‑MKD" => "Dingle Peninsula",
3755    "1DDR‑IE‑MKK" => "Killarney",
3756    "1DDR‑IE‑MKR" => "Ring of Kerry",
3757    "1DDR‑IE‑MKS" => "Macgillycuddy’s Reeks",
3758    "1DDR‑IE‑ML" => "Clare",
3759    "1DDR‑IE‑MLB" => "The Burren",
3760    "1DDR‑IE‑MM" => "County Limerick",
3761    "1DDR‑IE‑MML" => "Limerick",
3762    "1DDR‑IE‑MT" => "Tipperary",
3763    "1DDR‑IE‑MW" => "Waterford",
3764    "1DDR‑IE‑U" => "Ulster",
3765    "1DDR‑IE‑UC" => "Cavan",
3766    "1DDR‑IE‑UD" => "Donegal",
3767    "1DDR‑IE‑UM" => "Monaghan",
3768    "1DDR‑IE‑Z" => "Ireland: Places of interest",
3769    "1DDR‑IE‑ZA" => "Atlantic Coast of Ireland",
3770    "1DDR‑IE‑ZS" => "The Shannon",
3771    "1DDU" => "United Kingdom, Great Britain",
3772    "1DDU‑GB‑E" => "England",
3773    "1DDU‑GB‑EA" => "East Anglia",
3774    "1DDU‑GB‑EAC" => "Cambridgeshire",
3775    "1DDU‑GB‑EACD" => "Cambridge",
3776    "1DDU‑GB‑EAN" => "Norfolk",
3777    "1DDU‑GB‑EAS" => "Suffolk",
3778    "1DDU‑GB‑EAX" => "Essex",
3779    "1DDU‑GB‑EAZ" => "East Anglia: Places of interest",
3780    "1DDU‑GB‑EAZF" => "The Fens & the Wash",
3781    "1DDU‑GB‑EAZN" => "Norfolk Broads",
3782    "1DDU‑GB‑EM" => "Midlands",
3783    "1DDU‑GB‑EMD" => "Derbyshire",
3784    "1DDU‑GB‑EMDD" => "Derby",
3785    "1DDU‑GB‑EMF" => "Herefordshire",
3786    "1DDU‑GB‑EMH" => "Leicestershire",
3787    "1DDU‑GB‑EMHL" => "Leicester",
3788    "1DDU‑GB‑EML" => "Lincolnshire",
3789    "1DDU‑GB‑EMLL" => "Lincoln (UK)",
3790    "1DDU‑GB‑EMM" => "Northamptonshire",
3791    "1DDU‑GB‑EMN" => "Nottinghamshire",
3792    "1DDU‑GB‑EMNN" => "Nottingham",
3793    "1DDU‑GB‑EMP" => "Shropshire",
3794    "1DDU‑GB‑EMR" => "Rutland",
3795    "1DDU‑GB‑EMS" => "Staffordshire",
3796    "1DDU‑GB‑EMSP" => "Stoke-on-Trent & The Potteries",
3797    "1DDU‑GB‑EMT" => "Worcestershire",
3798    "1DDU‑GB‑EMW" => "Warwickshire, West Midlands",
3799    "1DDU‑GB‑EMWB" => "Birmingham (UK)",
3800    "1DDU‑GB‑EMWC" => "Coventry",
3801    "1DDU‑GB‑EMWS" => "Stratford-upon-Avon",
3802    "1DDU‑GB‑EMWW" => "Wolverhampton & the Black Country",
3803    "1DDU‑GB‑EMZ" => "Midlands: Places of interest",
3804    "1DDU‑GB‑EMZD" => "The Peak District",
3805    "1DDU‑GB‑EMZM" => "Welsh Marches",
3806    "1DDU‑GB‑EN" => "North West England",
3807    "1DDU‑GB‑ENC" => "Cheshire",
3808    "1DDU‑GB‑ENL" => "Lancashire, Greater Manchester, Merseyside",
3809    "1DDU‑GB‑ENLB" => "Blackpool",
3810    "1DDU‑GB‑ENLL" => "Liverpool",
3811    "1DDU‑GB‑ENLM" => "Manchester",
3812    "1DDU‑GB‑ENM" => "Cumbria",
3813    "1DDU‑GB‑ENZ" => "North West England: Places of interest",
3814    "1DDU‑GB‑ENZL" => "The Lake District",
3815    "1DDU‑GB‑ES" => "South & South East England",
3816    "1DDU‑GB‑ESB" => "Berkshire",
3817    "1DDU‑GB‑ESBR" => "Reading",
3818    "1DDU‑GB‑ESBW" => "Windsor",
3819    "1DDU‑GB‑ESD" => "Bedfordshire",
3820    "1DDU‑GB‑ESF" => "Oxfordshire",
3821    "1DDU‑GB‑ESFX" => "Oxford",
3822    "1DDU‑GB‑ESH" => "Hampshire",
3823    "1DDU‑GB‑ESHS" => "Southampton & the Solent",
3824    "1DDU‑GB‑ESK" => "Kent",
3825    "1DDU‑GB‑ESKC" => "Canterbury",
3826    "1DDU‑GB‑ESL" => "London, Greater London",
3827    "1DDU‑GB‑ESLC" => "Central London",
3828    "1DDU‑GB‑ESLCW" => "Westminster",
3829    "1DDU‑GB‑ESLF" => "City of London",
3830    "1DDU‑GB‑ESR" => "Surrey",
3831    "1DDU‑GB‑EST" => "Hertfordshire",
3832    "1DDU‑GB‑ESU" => "Buckinghamshire",
3833    "1DDU‑GB‑ESUB" => "Bletchley Park",
3834    "1DDU‑GB‑ESW" => "Isle of Wight",
3835    "1DDU‑GB‑ESX" => "Sussex",
3836    "1DDU‑GB‑ESXB" => "Brighton & Hove",
3837    "1DDU‑GB‑ESZ" => "South & South East England: Places of interest",
3838    "1DDU‑GB‑ESZD" => "North & South Downs, the Weald",
3839    "1DDU‑GB‑ESZF" => "The New Forest",
3840    "1DDU‑GB‑ESZT" => "The Thames",
3841    "1DDU‑GB‑EW" => "South West England",
3842    "1DDU‑GB‑EWC" => "Cornwall",
3843    "1DDU‑GB‑EWCS" => "Isles of Scilly",
3844    "1DDU‑GB‑EWD" => "Devon",
3845    "1DDU‑GB‑EWDP" => "Plymouth",
3846    "1DDU‑GB‑EWG" => "Gloucestershire",
3847    "1DDU‑GB‑EWS" => "Somerset",
3848    "1DDU‑GB‑EWSB" => "Bristol",
3849    "1DDU‑GB‑EWSG" => "Glastonbury",
3850    "1DDU‑GB‑EWSH" => "Bath",
3851    "1DDU‑GB‑EWT" => "Dorset",
3852    "1DDU‑GB‑EWTB" => "Bournemouth & Poole",
3853    "1DDU‑GB‑EWW" => "Wiltshire",
3854    "1DDU‑GB‑EWWS" => "Salisbury",
3855    "1DDU‑GB‑EWZ" => "South West England: Places of interest",
3856    "1DDU‑GB‑EWZC" => "The Cotswolds",
3857    "1DDU‑GB‑EWZD" => "Jurassic Coast & Purbeck",
3858    "1DDU‑GB‑EWZM" => "Dartmoor, Exmoor & Bodmin Moor",
3859    "1DDU‑GB‑EWZS" => "Stonehenge",
3860    "1DDU‑GB‑EWZW" => "Wessex",
3861    "1DDU‑GB‑EY" => "North & North East England",
3862    "1DDU‑GB‑EYD" => "Durham",
3863    "1DDU‑GB‑EYK" => "Yorkshire",
3864    "1DDU‑GB‑EYKH" => "Hull",
3865    "1DDU‑GB‑EYKK" => "York",
3866    "1DDU‑GB‑EYKL" => "Leeds, Bradford",
3867    "1DDU‑GB‑EYKM" => "Middlesbrough & Teesside",
3868    "1DDU‑GB‑EYKS" => "Sheffield & Rotherham",
3869    "1DDU‑GB‑EYN" => "Northumberland, Tyne & Wear",
3870    "1DDU‑GB‑EYNC" => "Newcastle",
3871    "1DDU‑GB‑EYNS" => "Sunderland & Wearside",
3872    "1DDU‑GB‑EYZ" => "North & North East England: Places of interest",
3873    "1DDU‑GB‑EYZB" => "The Pennines",
3874    "1DDU‑GB‑EYZF" => "North York Moors",
3875    "1DDU‑GB‑EYZH" => "Yorkshire Dales",
3876    "1DDU‑GB‑EYZL" => "Farne Islands & Lindisfarne (Holy Island)",
3877    "1DDU‑GB‑EYZN" => "Northumberland National Park",
3878    "1DDU‑GB‑EYZW" => "Hadrian’s Wall",
3879    "1DDU‑GB‑N" => "Northern Ireland",
3880    "1DDU‑GB‑NB" => "Belfast",
3881    "1DDU‑GB‑NC" => "Antrim",
3882    "1DDU‑GB‑ND" => "Armagh",
3883    "1DDU‑GB‑NE" => "County Derry / County Londonderry",
3884    "1DDU‑GB‑NEC" => "Derry / Londonderry",
3885    "1DDU‑GB‑NG" => "Down",
3886    "1DDU‑GB‑NJ" => "Fermanagh",
3887    "1DDU‑GB‑NT" => "Tyrone",
3888    "1DDU‑GB‑NZ" => "Northern Ireland: Places of interest",
3889    "1DDU‑GB‑NZA" => "Giant’s Causeway, North Antrim Coast & the Glens",
3890    "1DDU‑GB‑NZM" => "Mourne Mountains",
3891    "1DDU‑GB‑NZS" => "Sperrin Mountains",
3892    "1DDU‑GB‑S" => "Scotland",
3893    "1DDU‑GB‑SB" => "Lowland Scotland & Borders",
3894    "1DDU‑GB‑SBR" => "Rhinn of Kells & Galloway Hills",
3895    "1DDU‑GB‑SC" => "Central Scotland",
3896    "1DDU‑GB‑SCD" => "Dundee & Fife",
3897    "1DDU‑GB‑SCE" => "Edinburgh",
3898    "1DDU‑GB‑SCG" => "Glasgow",
3899    "1DDU‑GB‑SCS" => "Stirling",
3900    "1DDU‑GB‑SH" => "Northern Scotland, Highlands & Islands",
3901    "1DDU‑GB‑SHA" => "Aberdeen & Deeside",
3902    "1DDU‑GB‑SHG" => "The Grampians",
3903    "1DDU‑GB‑SHN" => "Loch Ness & the Great Glen",
3904    "1DDU‑GB‑SHV" => "Inverness",
3905    "1DDU‑GB‑SHW" => "Northwest Highlands",
3906    "1DDU‑GB‑SHF" => "Orkney Islands",
3907    "1DDU‑GB‑SHJ" => "Shetland Islands",
3908    "1DDU‑GB‑SHL" => "Western Isles, Outer Hebrides",
3909    "1DDU‑GB‑SHP" => "Inner Hebrides",
3910    "1DDU‑GB‑SHPM" => "Isle of Mull & Iona",
3911    "1DDU‑GB‑SHQ" => "Isle of Skye",
3912    "1DDU‑GB‑SHR" => "Isle of Arran",
3913    "1DDU‑GB‑SHT" => "Loch Lomond & the Trossachs",
3914    "1DDU‑GB‑W" => "Wales",
3915    "1DDU‑GB‑WC" => "Mid Wales",
3916    "1DDU‑GB‑WN" => "North Wales",
3917    "1DDU‑GB‑WNS" => "Snowdonia",
3918    "1DDU‑GB‑WS" => "South Wales",
3919    "1DDU‑GB‑WSC" => "Cardiff",
3920    "1DDU‑GB‑WSG" => "Swansea & the Gower",
3921    "1DDU‑GB‑WSY" => "Brecon Beacons",
3922    "1DDU‑GB‑WV" => "Southwest Wales",
3923    "1DDU‑GB‑WVP" => "Pembrokeshire Coast",
3924    "1DDU‑GB‑X" => "Channel Islands",
3925    "1DDU‑GB‑XG" => "Guernsey",
3926    "1DDU‑GB‑XJ" => "Jersey",
3927    "1DDU‑GB‑Z" => "Isle of Man",
3928    "1DF" => "Central Europe",
3929    "1DFA" => "Austria",
3930    "1DFA‑AT‑B" => "Burgenland",
3931    "1DFA‑AT‑K" => "Carinthia",
3932    "1DFA‑AT‑M" => "Styria",
3933    "1DFA‑AT‑N" => "Lower Austria",
3934    "1DFA‑AT‑R" => "Upper Austria",
3935    "1DFA‑AT‑S" => "Salzburg",
3936    "1DFA‑AT‑T" => "Tyrol",
3937    "1DFA‑AT‑V" => "Vorarlberg",
3938    "1DFA‑AT‑W" => "Vienna",
3939    "1DFG" => "Germany",
3940    "1DFG‑DE‑B" => "Northeast Germany",
3941    "1DFG‑DE‑BE" => "Berlin",
3942    "1DFG‑DE‑BG" => "Brandenburg",
3943    "1DFG‑DE‑BK" => "German Baltic Sea coast & islands",
3944    "1DFG‑DE‑BKA" => "Rügen",
3945    "1DFG‑DE‑BM" => "Mecklenburg-Western Pomerania",
3946    "1DFG‑DE‑BS" => "Saxony-Anhalt",
3947    "1DFG‑DE‑F" => "East Germany",
3948    "1DFG‑DE‑FS" => "Saxony",
3949    "1DFG‑DE‑FSA" => "Leipzig",
3950    "1DFG‑DE‑FSB" => "Dresden",
3951    "1DFG‑DE‑FT" => "Thuringia",
3952    "1DFG‑DE‑T" => "Southeast Germany",
3953    "1DFG‑DE‑TB" => "Bavaria",
3954    "1DFG‑DE‑TBA" => "Lower Bavaria",
3955    "1DFG‑DE‑TBB" => "Upper Bavaria",
3956    "1DFG‑DE‑TBC" => "Munich",
3957    "1DFG‑DE‑TBD" => "Nuremburg",
3958    "1DFG‑DE‑U" => "Southwest Germany",
3959    "1DFG‑DE‑UB" => "Baden-Württemberg",
3960    "1DFG‑DE‑UBA" => "Stuttgart",
3961    "1DFG‑DE‑UH" => "Hesse",
3962    "1DFG‑DE‑UHA" => "Frankfurt",
3963    "1DFG‑DE‑UR" => "Rhineland-Palatinate",
3964    "1DFG‑DE‑URA" => "Palatinate",
3965    "1DFG‑DE‑US" => "Saarland",
3966    "1DFG‑DE‑V" => "Northwest Germany",
3967    "1DFG‑DE‑VA" => "German North Sea coast & islands",
3968    "1DFG‑DE‑VB" => "Bremen",
3969    "1DFG‑DE‑VH" => "Hamburg",
3970    "1DFG‑DE‑VN" => "Lower Saxony",
3971    "1DFG‑DE‑VNA" => "Hanover",
3972    "1DFG‑DE‑VR" => "North Rhine-Westphalia",
3973    "1DFG‑DE‑VRB" => "Düsseldorf",
3974    "1DFG‑DE‑VRC" => "Cologne",
3975    "1DFG‑DE‑VRD" => "Dortmund",
3976    "1DFG‑DE‑VRE" => "Essen",
3977    "1DFG‑DE‑VRR" => "Ruhr district",
3978    "1DFG‑DE‑VS" => "Schleswig-Holstein",
3979    "1DFG‑DE‑X" => "Historical areas within Germany",
3980    "1DFG‑DE‑XA" => "Upper Lusatia",
3981    "1DFG‑DE‑XB" => "Swabia",
3982    "1DFG‑DE‑XC" => "Allgäu",
3983    "1DFH" => "Switzerland",
3984    "1DFH‑CH‑C" => "Espace Mittelland",
3985    "1DFH‑CH‑CB" => "Bern",
3986    "1DFH‑CH‑CF" => "Freiburg",
3987    "1DFH‑CH‑CJ" => "Jura",
3988    "1DFH‑CH‑CN" => "Neuchâtel",
3989    "1DFH‑CH‑CS" => "Solothurn",
3990    "1DFH‑CH‑G" => "Lake Geneva Region",
3991    "1DFH‑CH‑GG" => "Geneva",
3992    "1DFH‑CH‑GV" => "Vaud",
3993    "1DFH‑CH‑GVL" => "Lausanne",
3994    "1DFH‑CH‑GW" => "Valais",
3995    "1DFH‑CH‑N" => "Northwest Switzerland",
3996    "1DFH‑CH‑NA" => "Aargau / Argovie / Argovia",
3997    "1DFH‑CH‑NB" => "Basel-Landschaft",
3998    "1DFH‑CH‑ND" => "Basel",
3999    "1DFH‑CH‑P" => "Eastern Switzerland",
4000    "1DFH‑CH‑PC" => "Appenzell Innerrhoden / Appenzell Rhodes-Intérieures / Appenzello Interno /Appenzell dadens",
4001    "1DFH‑CH‑PD" => "Appenzell Ausserrhoden / Appenzell Rhodes-Extérieures / Appenzello Esterno / Appenzell dador",
4002    "1DFH‑CH‑PG" => "Glarus / Glaris / Glarona / Glaruna",
4003    "1DFH‑CH‑PK" => "Graubünden / Grisons / Grigioni / Grischun",
4004    "1DFH‑CH‑PN" => "St. Gallen / Saint-Gall / San Gallo / Son Gagl",
4005    "1DFH‑CH‑PP" => "Schaffhausen / Schaffhouse / Sciaffusa / Schaffusa",
4006    "1DFH‑CH‑PR" => "Thurgau / Thurgovie / Turgovia / Thurgovia",
4007    "1DFH‑CH‑R" => "Tessin / Ticino",
4008    "1DFH‑CH‑U" => "Central Switzerland",
4009    "1DFH‑CH‑UL" => "Lucerne",
4010    "1DFH‑CH‑UN" => "Nidwalden / Nidwald / Nidvaldo / Sutsilvania",
4011    "1DFH‑CH‑UO" => "Obwalden / Obwald / Obvaldo / Sursilvania",
4012    "1DFH‑CH‑US" => "Schwyz / Schwytz / Svitto / Sviz",
4013    "1DFH‑CH‑UU" => "Uri",
4014    "1DFH‑CH‑UV" => "Zug / Zoug / Zugo",
4015    "1DFH‑CH‑X" => "Zurich",
4016    "1DFL" => "Liechtenstein",
4017    "1DN" => "Northern Europe, Scandinavia",
4018    "1DNC" => "Iceland",
4019    "1DNC‑IS‑R" => "Reykjavík",
4020    "1DND" => "Denmark",
4021    "1DNDF" => "Faroe Islands",
4022    "1DNDF‑FO‑T" => "Thorshavn",
4023    "1DND‑DK‑B" => "Bornholm",
4024    "1DND‑DK‑F" => "Funen and islands",
4025    "1DND‑DK‑FO" => "Odense",
4026    "1DND‑DK‑J" => "Jutland",
4027    "1DND‑DK‑JE" => "Esbjerg",
4028    "1DND‑DK‑JL" => "Alborg",
4029    "1DND‑DK‑JR" => "Arhus",
4030    "1DND‑DK‑L" => "Lolland-Falster",
4031    "1DND‑DK‑S" => "Zealand",
4032    "1DND‑DK‑SK" => "Copenhagen",
4033    "1DND‑DK‑SR" => "Roskilde",
4034    "1DNF" => "Finland",
4035    "1DNF‑FI‑A" => "Southwest Finland",
4036    "1DNF‑FI‑AA" => "Turku",
4037    "1DNF‑FI‑AB" => "Turku archipelago",
4038    "1DNF‑FI‑B" => "Åland",
4039    "1DNF‑FI‑BA" => "Mariehamn",
4040    "1DNF‑FI‑C" => "Uusimaa",
4041    "1DNF‑FI‑CA" => "West Uusimaa",
4042    "1DNF‑FI‑CB" => "Helsinki Region",
4043    "1DNF‑FI‑CBA" => "Helsinki",
4044    "1DNF‑FI‑CBB" => "Espoo",
4045    "1DNF‑FI‑CBC" => "Vantaa",
4046    "1DNF‑FI‑CC" => "East Uusimaa",
4047    "1DNF‑FI‑CCA" => "Porvoo",
4048    "1DNF‑FI‑D" => "Häme",
4049    "1DNF‑FI‑DA" => "Kanta-Häme",
4050    "1DNF‑FI‑DAA" => "Hämeenlinna",
4051    "1DNF‑FI‑DB" => "Päijät-Häme",
4052    "1DNF‑FI‑DBA" => "Lahti",
4053    "1DNF‑FI‑DC" => "Pirkanmaa",
4054    "1DNF‑FI‑DCA" => "Tampere",
4055    "1DNF‑FI‑DD" => "Central Finland",
4056    "1DNF‑FI‑DDA" => "Jyväskylä",
4057    "1DNF‑FI‑H" => "Satakunta",
4058    "1DNF‑FI‑HA" => "Pori",
4059    "1DNF‑FI‑HB" => "Rauma",
4060    "1DNF‑FI‑J" => "Savonia",
4061    "1DNF‑FI‑JA" => "Southern Savonia",
4062    "1DNF‑FI‑JAB" => "Mikkeli",
4063    "1DNF‑FI‑JB" => "Northern Savonia",
4064    "1DNF‑FI‑JBK" => "Kuopio",
4065    "1DNF‑FI‑K" => "Karelia",
4066    "1DNF‑FI‑KA" => "South Karelia",
4067    "1DNF‑FI‑KAB" => "Lappeenranta",
4068    "1DNF‑FI‑KB" => "North Karelia",
4069    "1DNF‑FI‑KBA" => "Joensuu",
4070    "1DNF‑FI‑L" => "Kymenlaakso",
4071    "1DNF‑FI‑LA" => "Kouvola",
4072    "1DNF‑FI‑LB" => "Kotka",
4073    "1DNF‑FI‑M" => "Ostrobothnia",
4074    "1DNF‑FI‑MA" => "Vaasa",
4075    "1DNF‑FI‑N" => "North Ostrobothnia",
4076    "1DNF‑FI‑NA" => "Oulu",
4077    "1DNF‑FI‑P" => "Central Ostrobothnia",
4078    "1DNF‑FI‑PA" => "Kokkola",
4079    "1DNF‑FI‑Q" => "South Ostrobothnia",
4080    "1DNF‑FI‑QA" => "Seinäjoki",
4081    "1DNF‑FI‑R" => "Kainuu",
4082    "1DNF‑FI‑RA" => "Kajaani",
4083    "1DNF‑FI‑S" => "Lappi",
4084    "1DNF‑FI‑SA" => "Rovaniemi",
4085    "1DNF‑FI‑SB" => "Sámi native region of Finland",
4086    "1DNN" => "Norway",
4087    "1DNN‑NO‑D" => "Northern Norway",
4088    "1DNN‑NO‑DF" => "Finnmark",
4089    "1DNN‑NO‑DFV" => "Vadsø",
4090    "1DNN‑NO‑DL" => "Nordland",
4091    "1DNN‑NO‑DLB" => "Bodø",
4092    "1DNN‑NO‑DLN" => "Narvik",
4093    "1DNN‑NO‑DT" => "Troms",
4094    "1DNN‑NO‑DTR" => "Tromsø",
4095    "1DNN‑NO‑J" => "Sørlandet",
4096    "1DNN‑NO‑JA" => "Aust-Agder",
4097    "1DNN‑NO‑JAL" => "Arendal",
4098    "1DNN‑NO‑JG" => "Vest-Agder",
4099    "1DNN‑NO‑JGF" => "Farsund",
4100    "1DNN‑NO‑JGK" => "Kristiansand",
4101    "1DNN‑NO‑JGL" => "Lillesand",
4102    "1DNN‑NO‑T" => "Trøndelag",
4103    "1DNN‑NO‑TD" => "Nord-Trøndelag",
4104    "1DNN‑NO‑TDS" => "Steinkjer",
4105    "1DNN‑NO‑TR" => "Sør-Trøndelag",
4106    "1DNN‑NO‑TRH" => "Trondheim",
4107    "1DNN‑NO‑V" => "Vestlandet",
4108    "1DNN‑NO‑VH" => "Hordaland",
4109    "1DNN‑NO‑VHB" => "Bergen",
4110    "1DNN‑NO‑VM" => "Møre og Romsdal",
4111    "1DNN‑NO‑VMA" => "Ålesund",
4112    "1DNN‑NO‑VMK" => "Kristiansund",
4113    "1DNN‑NO‑VML" => "Molde",
4114    "1DNN‑NO‑VR" => "Rogaland",
4115    "1DNN‑NO‑VRS" => "Stavanger",
4116    "1DNN‑NO‑VW" => "Sogn og Fjordane",
4117    "1DNN‑NO‑X" => "Østlandet",
4118    "1DNN‑NO‑XA" => "Akershus",
4119    "1DNN‑NO‑XB" => "Buskerud",
4120    "1DNN‑NO‑XBD" => "Drammen",
4121    "1DNN‑NO‑XF" => "Oslofjorden",
4122    "1DNN‑NO‑XH" => "Hedmark",
4123    "1DNN‑NO‑XHR" => "Hamar",
4124    "1DNN‑NO‑XP" => "Oppland",
4125    "1DNN‑NO‑XPL" => "Lillehammer",
4126    "1DNN‑NO‑XS" => "Oslo",
4127    "1DNN‑NO‑XT" => "Telemark",
4128    "1DNN‑NO‑XTK" => "Skien",
4129    "1DNN‑NO‑XV" => "Vestfold",
4130    "1DNN‑NO‑XVL" => "Larvik",
4131    "1DNN‑NO‑XVN" => "Sandefjord",
4132    "1DNN‑NO‑XVR" => "Tønsberg",
4133    "1DNN‑NO‑XZ" => "Østfold",
4134    "1DNN‑NO‑XZF" => "Fredrikstad",
4135    "1DNN‑NO‑XZH" => "Halden",
4136    "1DNN‑NO‑XZM" => "Moss",
4137    "1DNN‑NO‑XZS" => "Sarpsborg",
4138    "1DNS" => "Sweden",
4139    "1DNS‑SE‑A" => "Svealand",
4140    "1DNS‑SE‑AA" => "Stockholm",
4141    "1DNS‑SE‑AAA" => "Stockholm archipelago",
4142    "1DNS‑SE‑AB" => "Uppland",
4143    "1DNS‑SE‑ABA" => "Uppsala",
4144    "1DNS‑SE‑AC" => "Södermanland",
4145    "1DNS‑SE‑ACA" => "Nyköping",
4146    "1DNS‑SE‑AD" => "Närke",
4147    "1DNS‑SE‑ADA" => "Örebro",
4148    "1DNS‑SE‑AE" => "Västmanland",
4149    "1DNS‑SE‑AEA" => "Västerås",
4150    "1DNS‑SE‑AF" => "Dalarna",
4151    "1DNS‑SE‑AFA" => "Falun",
4152    "1DNS‑SE‑AG" => "Värmland",
4153    "1DNS‑SE‑AGA" => "Karlstad",
4154    "1DNS‑SE‑AH" => "Bergslagen",
4155    "1DNS‑SE‑B" => "Götaland",
4156    "1DNS‑SE‑BA" => "Skåne",
4157    "1DNS‑SE‑BAA" => "Malmö",
4158    "1DNS‑SE‑BAB" => "Österlen",
4159    "1DNS‑SE‑BB" => "Halland",
4160    "1DNS‑SE‑BBA" => "Halmstad",
4161    "1DNS‑SE‑BC" => "Blekinge",
4162    "1DNS‑SE‑BCA" => "Karlskrona",
4163    "1DNS‑SE‑BD" => "Småland",
4164    "1DNS‑SE‑BDA" => "Växjö",
4165    "1DNS‑SE‑BDB" => "Kalmar",
4166    "1DNS‑SE‑BE" => "Öland",
4167    "1DNS‑SE‑BF" => "Gotland",
4168    "1DNS‑SE‑BFA" => "Visby",
4169    "1DNS‑SE‑BG" => "Östergötland",
4170    "1DNS‑SE‑BGA" => "Linköping",
4171    "1DNS‑SE‑BH" => "Västergötland",
4172    "1DNS‑SE‑BJ" => "Gothenburg",
4173    "1DNS‑SE‑BJA" => "Gothenburg archipelago",
4174    "1DNS‑SE‑BK" => "Bohuslän",
4175    "1DNS‑SE‑BL" => "Dalsland",
4176    "1DNS‑SE‑C" => "Norrland",
4177    "1DNS‑SE‑CA" => "Gästrikland",
4178    "1DNS‑SE‑CAA" => "Gävle",
4179    "1DNS‑SE‑CB" => "Hälsingland",
4180    "1DNS‑SE‑CC" => "Jämtland",
4181    "1DNS‑SE‑CCA" => "Östersund",
4182    "1DNS‑SE‑CD" => "Härjedalen",
4183    "1DNS‑SE‑CE" => "Medelpad",
4184    "1DNS‑SE‑CF" => "Ångermanland",
4185    "1DNS‑SE‑CFA" => "Härnösand",
4186    "1DNS‑SE‑CG" => "Västerbotten",
4187    "1DNS‑SE‑CGA" => "Umeå",
4188    "1DNS‑SE‑CH" => "Norrbotten",
4189    "1DNS‑SE‑CHA" => "Luleå",
4190    "1DNS‑SE‑CJ" => "Lapland",
4191    "1DNS‑SE‑CK" => "Tornedalen",
4192    "1DS" => "Southern Europe",
4193    "1DSE" => "Spain",
4194    "1DSE‑ES‑A" => "Andalusia, Autonomous Community of",
4195    "1DSE‑ES‑AA" => "Almeria (Province)",
4196    "1DSE‑ES‑AAA" => "Almeria (City)",
4197    "1DSE‑ES‑AB" => "Cadiz (Province)",
4198    "1DSE‑ES‑ABA" => "Cadiz (City)",
4199    "1DSE‑ES‑AC" => "Cordoba (Province)",
4200    "1DSE‑ES‑ACA" => "Cordoba (City)",
4201    "1DSE‑ES‑AD" => "Granada (Province)",
4202    "1DSE‑ES‑ADA" => "Granada (City)",
4203    "1DSE‑ES‑ADX" => "Granada: Places of interest",
4204    "1DSE‑ES‑ADXA" => "Sierra Nevada",
4205    "1DSE‑ES‑AE" => "Huelva (Province)",
4206    "1DSE‑ES‑AEA" => "Huelva (City)",
4207    "1DSE‑ES‑AF" => "Jaen (Province)",
4208    "1DSE‑ES‑AFA" => "Jaen (City)",
4209    "1DSE‑ES‑AG" => "Malaga (Province)",
4210    "1DSE‑ES‑AGA" => "Malaga (City)",
4211    "1DSE‑ES‑AGX" => "Malaga: Places of interest",
4212    "1DSE‑ES‑AGXA" => "Costa del Sol",
4213    "1DSE‑ES‑AH" => "Seville (Province)",
4214    "1DSE‑ES‑AHA" => "Seville (City)",
4215    "1DSE‑ES‑B" => "Balearic Islands",
4216    "1DSE‑ES‑BA" => "Baleares (Province)",
4217    "1DSE‑ES‑BAA" => "Mallorca",
4218    "1DSE‑ES‑BAAB" => "Palma de Mallorca",
4219    "1DSE‑ES‑BAB" => "Menorca",
4220    "1DSE‑ES‑BABA" => "Mahon",
4221    "1DSE‑ES‑BAC" => "Ibiza (Island)",
4222    "1DSE‑ES‑BACA" => "Ibiza (City)",
4223    "1DSE‑ES‑BAD" => "Formentera",
4224    "1DSE‑ES‑C" => "Aragon, Autonomous Community of",
4225    "1DSE‑ES‑CA" => "Huesca (Province)",
4226    "1DSE‑ES‑CAA" => "Huesca (City)",
4227    "1DSE‑ES‑CB" => "Teruel (Province)",
4228    "1DSE‑ES‑CBA" => "Teruel (City)",
4229    "1DSE‑ES‑CC" => "Zaragoza (Province)",
4230    "1DSE‑ES‑CCA" => "Zaragoza (City)",
4231    "1DSE‑ES‑D" => "Asturias, Principality of",
4232    "1DSE‑ES‑DA" => "Asturias (Province)",
4233    "1DSE‑ES‑DAA" => "Oviedo",
4234    "1DSE‑ES‑DAB" => "Gijon",
4235    "1DSE‑ES‑E" => "Canary Islands",
4236    "1DSE‑ES‑EA" => "Las Palmas (Province)",
4237    "1DSE‑ES‑EAA" => "Gran Canaria",
4238    "1DSE‑ES‑EAAA" => "Las Palmas de Gran Canaria",
4239    "1DSE‑ES‑EAB" => "Fuerteventura",
4240    "1DSE‑ES‑EAC" => "Lanzarote",
4241    "1DSE‑ES‑EB" => "Santa Cruz de Tenerife (Province)",
4242    "1DSE‑ES‑EBA" => "Tenerife",
4243    "1DSE‑ES‑EBAA" => "Santa Cruz de Tenerife (City)",
4244    "1DSE‑ES‑EBB" => "El Hierro",
4245    "1DSE‑ES‑EBC" => "La Gomera",
4246    "1DSE‑ES‑EBD" => "La Palma",
4247    "1DSE‑ES‑F" => "Cantabria, Autonomous Community of",
4248    "1DSE‑ES‑FA" => "Cantabria (Province)",
4249    "1DSE‑ES‑FAA" => "Santander",
4250    "1DSE‑ES‑G" => "Castile-La Mancha, Autonomous Community of",
4251    "1DSE‑ES‑GA" => "Albacete (Province)",
4252    "1DSE‑ES‑GAA" => "Albacete (City)",
4253    "1DSE‑ES‑GB" => "Ciudad Real (Province)",
4254    "1DSE‑ES‑GBA" => "Ciudad Real (City)",
4255    "1DSE‑ES‑GC" => "Cuenca (Province)",
4256    "1DSE‑ES‑GCA" => "Cuenca (City)",
4257    "1DSE‑ES‑GD" => "Guadalajara (Province)",
4258    "1DSE‑ES‑GDA" => "Guadalajara (City)",
4259    "1DSE‑ES‑GE" => "Toledo (Province)",
4260    "1DSE‑ES‑GEA" => "Toledo (City)",
4261    "1DSE‑ES‑H" => "Castile and Leon, Autonomous Community of",
4262    "1DSE‑ES‑HA" => "Avila (Province)",
4263    "1DSE‑ES‑HAA" => "Avila (City)",
4264    "1DSE‑ES‑HB" => "Burgos (Province)",
4265    "1DSE‑ES‑HBA" => "Burgos (City)",
4266    "1DSE‑ES‑HC" => "Leon (Province)",
4267    "1DSE‑ES‑HCA" => "Leon (City)",
4268    "1DSE‑ES‑HD" => "Palencia (Province)",
4269    "1DSE‑ES‑HDA" => "Palencia (City)",
4270    "1DSE‑ES‑HE" => "Salamanca (Province)",
4271    "1DSE‑ES‑HEA" => "Salamanca (City)",
4272    "1DSE‑ES‑HF" => "Segovia (Province)",
4273    "1DSE‑ES‑HFA" => "Segovia (City)",
4274    "1DSE‑ES‑HG" => "Soria (Province)",
4275    "1DSE‑ES‑HGA" => "Soria (City)",
4276    "1DSE‑ES‑HH" => "Valladolid (Province)",
4277    "1DSE‑ES‑HHA" => "Valladolid (City)",
4278    "1DSE‑ES‑HJ" => "Zamora (Province)",
4279    "1DSE‑ES‑HJA" => "Zamora (City)",
4280    "1DSE‑ES‑J" => "Catalonia",
4281    "1DSE‑ES‑JA" => "Barcelona (Province)",
4282    "1DSE‑ES‑JAA" => "Barcelona (City)",
4283    "1DSE‑ES‑JB" => "Girona (Province)",
4284    "1DSE‑ES‑JBA" => "Girona (City)",
4285    "1DSE‑ES‑JBX" => "Girona: Places of interest",
4286    "1DSE‑ES‑JBXA" => "Costa Brava",
4287    "1DSE‑ES‑JC" => "Lerida / Lleida (Province)",
4288    "1DSE‑ES‑JCA" => "Lerida / Lleida (City)",
4289    "1DSE‑ES‑JD" => "Tarragona (Province)",
4290    "1DSE‑ES‑JDA" => "Tarragona (City)",
4291    "1DSE‑ES‑K" => "Extremadura, Autonomous Community of",
4292    "1DSE‑ES‑KA" => "Caceres (Province)",
4293    "1DSE‑ES‑KAA" => "Caceres (City)",
4294    "1DSE‑ES‑KB" => "Badajoz (Province)",
4295    "1DSE‑ES‑KBA" => "Badajoz (City)",
4296    "1DSE‑ES‑L" => "Galicia, Autonomous Community of",
4297    "1DSE‑ES‑LA" => "Corunna (Province)",
4298    "1DSE‑ES‑LAA" => "Corunna (City)",
4299    "1DSE‑ES‑LAB" => "Santiago de Compostela",
4300    "1DSE‑ES‑LB" => "Lugo (Province)",
4301    "1DSE‑ES‑LBA" => "Lugo (City)",
4302    "1DSE‑ES‑LC" => "Orense (Province)",
4303    "1DSE‑ES‑LCA" => "Orense (City)",
4304    "1DSE‑ES‑LD" => "Pontevedra (Province)",
4305    "1DSE‑ES‑LDA" => "Pontevedra (City)",
4306    "1DSE‑ES‑M" => "Madrid, Community of",
4307    "1DSE‑ES‑MA" => "Madrid (Province)",
4308    "1DSE‑ES‑MAA" => "Madrid (City)",
4309    "1DSE‑ES‑N" => "Murcia, Region of",
4310    "1DSE‑ES‑NA" => "Murcia (Province)",
4311    "1DSE‑ES‑NAA" => "Murcia (City)",
4312    "1DSE‑ES‑Q" => "Navarre, Chartered Community of",
4313    "1DSE‑ES‑QA" => "Navarre",
4314    "1DSE‑ES‑QAB" => "Pamplona",
4315    "1DSE‑ES‑R" => "Basque Autonomous Community",
4316    "1DSE‑ES‑RA" => "Alava",
4317    "1DSE‑ES‑RAA" => "Vitoria",
4318    "1DSE‑ES‑RB" => "Guipuzcoa",
4319    "1DSE‑ES‑RBA" => "San Sebastian",
4320    "1DSE‑ES‑RC" => "Biscay",
4321    "1DSE‑ES‑RCA" => "Bilbao",
4322    "1DSE‑ES‑S" => "La Rioja, Autonomous Community of",
4323    "1DSE‑ES‑SA" => "Logroño (Province)",
4324    "1DSE‑ES‑SAA" => "Logroño (City)",
4325    "1DSE‑ES‑T" => "Valencian Community",
4326    "1DSE‑ES‑TA" => "Alicante (Province)",
4327    "1DSE‑ES‑TAA" => "Alicante (City)",
4328    "1DSE‑ES‑TAX" => "Alicante: Places of interest",
4329    "1DSE‑ES‑TAXA" => "Costa Blanca",
4330    "1DSE‑ES‑TB" => "Castellon (Province)",
4331    "1DSE‑ES‑TBA" => "Castellon (City)",
4332    "1DSE‑ES‑TC" => "Valencia (Province)",
4333    "1DSE‑ES‑TCA" => "Valencia (City)",
4334    "1DSE‑ES‑U" => "Ceuta, Autonomous City of",
4335    "1DSE‑ES‑V" => "Melilla, Autonomous City of",
4336    "1DSE‑ES‑X" => "Spain: Places of interest",
4337    "1DSE‑ES‑XA" => "Way of St. James",
4338    "1DSE‑ES‑XB" => "La Mancha",
4339    "1DSE‑ES‑XC" => "Cantabrian Mountains",
4340    "1DSG" => "Gibraltar",
4341    "1DSM" => "Malta",
4342    "1DSM‑MT‑G" => "Gozo",
4343    "1DSN" => "Andorra",
4344    "1DSP" => "Portugal",
4345    "1DSP‑PT‑B" => "Norte (Northern Portugal)",
4346    "1DSP‑PT‑BP" => "Porto",
4347    "1DSP‑PT‑C" => "Centro (Central Portugal)",
4348    "1DSP‑PT‑L" => "Lisboa (Region)",
4349    "1DSP‑PT‑LL" => "Lisbon",
4350    "1DSP‑PT‑LS" => "Sintra",
4351    "1DSP‑PT‑N" => "Alentejo",
4352    "1DSP‑PT‑P" => "Algarve",
4353    "1DSP‑PT‑PF" => "Faro",
4354    "1DSP‑PT‑R" => "Madeira – Autonomous Region",
4355    "1DSP‑PT‑RF" => "Funchal",
4356    "1DSP‑PT‑T" => "Azores – Autonomous Region",
4357    "1DST" => "Italy",
4358    "1DST‑IT‑N" => "Northern Italy",
4359    "1DST‑IT‑NA" => "Aosta Valley",
4360    "1DST‑IT‑NF" => "Friuli Venezia Giulia",
4361    "1DST‑IT‑NFG" => "Gorizia",
4362    "1DST‑IT‑NFP" => "Pordenone",
4363    "1DST‑IT‑NFT" => "Trieste",
4364    "1DST‑IT‑NFU" => "Udine",
4365    "1DST‑IT‑NG" => "Liguria",
4366    "1DST‑IT‑NGA" => "Genoa",
4367    "1DST‑IT‑NGM" => "Imperia",
4368    "1DST‑IT‑NGS" => "Savona",
4369    "1DST‑IT‑NGZ" => "La Spezia",
4370    "1DST‑IT‑NL" => "Lombardy",
4371    "1DST‑IT‑NLA" => "Varese",
4372    "1DST‑IT‑NLB" => "Bergamo",
4373    "1DST‑IT‑NLC" => "Como",
4374    "1DST‑IT‑NLD" => "Lodi",
4375    "1DST‑IT‑NLE" => "Lecco",
4376    "1DST‑IT‑NLM" => "Milan",
4377    "1DST‑IT‑NLN" => "Sondrio",
4378    "1DST‑IT‑NLR" => "Cremona",
4379    "1DST‑IT‑NLS" => "Brescia",
4380    "1DST‑IT‑NLT" => "Mantua",
4381    "1DST‑IT‑NLV" => "Pavia",
4382    "1DST‑IT‑NLZ" => "Monza & Brianza",
4383    "1DST‑IT‑NP" => "Piedmont",
4384    "1DST‑IT‑NPA" => "Alessandria",
4385    "1DST‑IT‑NPL" => "Biella",
4386    "1DST‑IT‑NPN" => "Novara",
4387    "1DST‑IT‑NPR" => "Vercelli",
4388    "1DST‑IT‑NPS" => "Asti",
4389    "1DST‑IT‑NPT" => "Turin",
4390    "1DST‑IT‑NPU" => "Cuneo",
4391    "1DST‑IT‑NPV" => "Province of Verbano Cusio Ossola",
4392    "1DST‑IT‑NT" => "Trentino Alto Adige",
4393    "1DST‑IT‑NTR" => "Trento",
4394    "1DST‑IT‑NTZ" => "Bolzano",
4395    "1DST‑IT‑NV" => "Veneto",
4396    "1DST‑IT‑NVD" => "Padua",
4397    "1DST‑IT‑NVE" => "Venice",
4398    "1DST‑IT‑NVN" => "Verona",
4399    "1DST‑IT‑NVR" => "Rovigo",
4400    "1DST‑IT‑NVS" => "Treviso",
4401    "1DST‑IT‑NVU" => "Belluno",
4402    "1DST‑IT‑NVZ" => "Vicenza",
4403    "1DST‑IT‑NZ" => "Northern Italy: Places of interest",
4404    "1DST‑IT‑NZB" => "The Northern Apennines",
4405    "1DST‑IT‑NZD" => "The Dolomites",
4406    "1DST‑IT‑NZL" => "The Italian lakes region",
4407    "1DST‑IT‑NZLC" => "Lake Como",
4408    "1DST‑IT‑NZLG" => "Lake Garda",
4409    "1DST‑IT‑NZLM" => "Lake Maggiore",
4410    "1DST‑IT‑NZLQ" => "Lake Iseo",
4411    "1DST‑IT‑NZP" => "The Po River & its tributaries",
4412    "1DST‑IT‑T" => "Central Italy",
4413    "1DST‑IT‑TG" => "Emilia Romagna",
4414    "1DST‑IT‑TGB" => "Bologna",
4415    "1DST‑IT‑TGC" => "Forlì-Cesena",
4416    "1DST‑IT‑TGF" => "Ferrara",
4417    "1DST‑IT‑TGM" => "Modena",
4418    "1DST‑IT‑TGN" => "Rimini",
4419    "1DST‑IT‑TGP" => "Parma",
4420    "1DST‑IT‑TGR" => "Reggio Emilia",
4421    "1DST‑IT‑TGV" => "Ravenna",
4422    "1DST‑IT‑TGZ" => "Piacenza",
4423    "1DST‑IT‑TM" => "Marche",
4424    "1DST‑IT‑TMA" => "Ancona",
4425    "1DST‑IT‑TMF" => "Fermo",
4426    "1DST‑IT‑TMP" => "Pesaro & Urbino",
4427    "1DST‑IT‑TMS" => "Ascoli Piceno",
4428    "1DST‑IT‑TMT" => "Macerata",
4429    "1DST‑IT‑TR" => "Umbria",
4430    "1DST‑IT‑TRP" => "Perugia",
4431    "1DST‑IT‑TRPT" => "Lake Trasimeno",
4432    "1DST‑IT‑TRT" => "Terni",
4433    "1DST‑IT‑TS" => "Tuscany",
4434    "1DST‑IT‑TSA" => "Arezzo",
4435    "1DST‑IT‑TSE" => "Siena",
4436    "1DST‑IT‑TSEB" => "Val d’Orcia",
4437    "1DST‑IT‑TSF" => "Florence",
4438    "1DST‑IT‑TSG" => "Grosseto",
4439    "1DST‑IT‑TSL" => "Livorno",
4440    "1DST‑IT‑TSLB" => "Elba",
4441    "1DST‑IT‑TSM" => "Massa-Carrara",
4442    "1DST‑IT‑TSP" => "Pisa",
4443    "1DST‑IT‑TSR" => "Prato",
4444    "1DST‑IT‑TST" => "Pistoia",
4445    "1DST‑IT‑TSU" => "Lucca",
4446    "1DST‑IT‑TZ" => "Lazio",
4447    "1DST‑IT‑TZF" => "Frosinone",
4448    "1DST‑IT‑TZL" => "Latina",
4449    "1DST‑IT‑TZR" => "Rome",
4450    "1DST‑IT‑TZT" => "Rieti",
4451    "1DST‑IT‑TZV" => "Viterbo",
4452    "1DST‑IT‑TX" => "Central Italy: Places of interest",
4453    "1DST‑IT‑TXA" => "The Arno river & tributaries",
4454    "1DST‑IT‑TXC" => "The Tiber river & tributaries",
4455    "1DST‑IT‑TXF" => "The Central Apennines",
4456    "1DST‑IT‑TXM" => "Maremma",
4457    "1DST‑IT‑U" => "Southern Italy & Islands",
4458    "1DST‑IT‑UA" => "Abruzzo",
4459    "1DST‑IT‑UAH" => "Chieti",
4460    "1DST‑IT‑UAP" => "Pescara",
4461    "1DST‑IT‑UAQ" => "L’Aquila",
4462    "1DST‑IT‑UAT" => "Teramo",
4463    "1DST‑IT‑UC" => "Calabria",
4464    "1DST‑IT‑UCK" => "Crotone",
4465    "1DST‑IT‑UCR" => "Reggio Calabria",
4466    "1DST‑IT‑UCS" => "Cosenza",
4467    "1DST‑IT‑UCV" => "Vibo Valentia",
4468    "1DST‑IT‑UCZ" => "Catanzaro",
4469    "1DST‑IT‑UD" => "Sardinia",
4470    "1DST‑IT‑UDC" => "Cagliari",
4471    "1DST‑IT‑UDG" => "Province of Ogliastra",
4472    "1DST‑IT‑UDM" => "Province of Medio Campidano",
4473    "1DST‑IT‑UDN" => "Carbonia-Iglesias",
4474    "1DST‑IT‑UDR" => "Oristano",
4475    "1DST‑IT‑UDS" => "Sassari",
4476    "1DST‑IT‑UDSD" => "Costa Smeralda",
4477    "1DST‑IT‑UDT" => "Olbia Tempio",
4478    "1DST‑IT‑UDU" => "Nuoro",
4479    "1DST‑IT‑UE" => "Molise",
4480    "1DST‑IT‑UEC" => "Campobasso",
4481    "1DST‑IT‑UES" => "Isernia",
4482    "1DST‑IT‑UL" => "Sicily",
4483    "1DST‑IT‑ULA" => "Agrigento",
4484    "1DST‑IT‑ULC" => "Caltanissetta",
4485    "1DST‑IT‑ULE" => "Enna",
4486    "1DST‑IT‑ULM" => "Messina",
4487    "1DST‑IT‑ULME" => "Aeolian Islands",
4488    "1DST‑IT‑ULN" => "Trapani",
4489    "1DST‑IT‑ULP" => "Palermo",
4490    "1DST‑IT‑ULR" => "Ragusa",
4491    "1DST‑IT‑ULS" => "Syracuse",
4492    "1DST‑IT‑ULT" => "Catania",
4493    "1DST‑IT‑ULTE" => "Mount Etna",
4494    "1DST‑IT‑UM" => "Campania",
4495    "1DST‑IT‑UML" => "Avellino",
4496    "1DST‑IT‑UMN" => "Naples",
4497    "1DST‑IT‑UMNC" => "Capri / Ischia",
4498    "1DST‑IT‑UMNP" => "Pompeii / Herculaneum",
4499    "1DST‑IT‑UMNV" => "Mount Vesuvius",
4500    "1DST‑IT‑UMS" => "Salerno",
4501    "1DST‑IT‑UMSC" => "The Amalfi coast",
4502    "1DST‑IT‑UMT" => "Caserta",
4503    "1DST‑IT‑UMV" => "Benevento",
4504    "1DST‑IT‑UP" => "Apulia",
4505    "1DST‑IT‑UPA" => "Bari",
4506    "1DST‑IT‑UPG" => "Foggia",
4507    "1DST‑IT‑UPGB" => "Tavoliere delle Puglie",
4508    "1DST‑IT‑UPL" => "Lecce",
4509    "1DST‑IT‑UPR" => "Barletta Andria Trani",
4510    "1DST‑IT‑UPS" => "Brindisi",
4511    "1DST‑IT‑UPT" => "Taranto",
4512    "1DST‑IT‑US" => "Basilicata",
4513    "1DST‑IT‑USM" => "Matera",
4514    "1DST‑IT‑USP" => "Potenza",
4515    "1DST‑IT‑UZ" => "Southern Italy: Places of interest",
4516    "1DST‑IT‑UZC" => "The Southern Apennines",
4517    "1DST‑IT‑UZCE" => "Monte Gran Sasso",
4518    "1DST‑IT‑UZCP" => "Monte Pollino",
4519    "1DST‑IT‑UZD" => "Sila",
4520    "1DST‑IT‑X" => "Historical and cultural areas within Italy",
4521    "1DST‑IT‑XN" => "Historical and cultural areas: Northern Italy",
4522    "1DST‑IT‑XNA" => "Langhe",
4523    "1DST‑IT‑XNC" => "Monferrat",
4524    "1DST‑IT‑XNE" => "Canavese",
4525    "1DST‑IT‑XNF" => "Cinque Terre",
4526    "1DST‑IT‑XNH" => "Tigullio",
4527    "1DST‑IT‑XNL" => "Franciacorta",
4528    "1DST‑IT‑XNN" => "Lomellina",
4529    "1DST‑IT‑XNP" => "Polesine",
4530    "1DST‑IT‑XNR" => "Carnia",
4531    "1DST‑IT‑XT" => "Historical and cultural areas: Central Italy",
4532    "1DST‑IT‑XTA" => "Lunigiana",
4533    "1DST‑IT‑XTC" => "Garfagnana",
4534    "1DST‑IT‑XTE" => "Chianti",
4535    "1DST‑IT‑XTG" => "Mugello",
4536    "1DST‑IT‑XTL" => "Versilia",
4537    "1DST‑IT‑XTN" => "Ciociaria",
4538    "1DST‑IT‑XU" => "Historical and cultural areas: Southern Italy & islands",
4539    "1DST‑IT‑XUA" => "Cilento",
4540    "1DST‑IT‑XUC" => "Irpinia",
4541    "1DST‑IT‑XUE" => "Sannio",
4542    "1DST‑IT‑XUG" => "Salento",
4543    "1DST‑IT‑XUL" => "Gallura",
4544    "1DSU" => "San Marino",
4545    "1DSV" => "Vatican",
4546    "1DT" => "Eastern Europe",
4547    "1DTA" => "Russia",
4548    "1DTA‑RU‑B" => "Russia: Central District",
4549    "1DTA‑RU‑BK" => "Kursk",
4550    "1DTA‑RU‑BM" => "Moscow",
4551    "1DTA‑RU‑BS" => "Smolensk",
4552    "1DTA‑RU‑D" => "Russia: Southern District",
4553    "1DTA‑RU‑DB" => "Volgograd",
4554    "1DTA‑RU‑DD" => "Rostov-on-Don",
4555    "1DTA‑RU‑F" => "Russia: Northwestern District",
4556    "1DTA‑RU‑FA" => "Archangel / Arkhangelsk",
4557    "1DTA‑RU‑FC" => "Kaliningrad",
4558    "1DTA‑RU‑FD" => "Novgorod",
4559    "1DTA‑RU‑FP" => "Saint Petersburg",
4560    "1DTA‑RU‑H" => "Russia: Far Eastern District",
4561    "1DTA‑RU‑J" => "Russia: Siberian District",
4562    "1DTA‑RU‑JZ" => "Siberia: places of interest",
4563    "1DTA‑RU‑JZB" => "Siberia: Lake Baikal",
4564    "1DTA‑RU‑L" => "Russia: Ural District",
4565    "1DTA‑RU‑N" => "Russia: Volga District",
4566    "1DTA‑RU‑NN" => "Nizhny Novgorod",
4567    "1DTA‑RU‑P" => "Russia: North Caucasus District",
4568    "1DTA‑RU‑PC" => "Chechen Republic (Chechnya)",
4569    "1DTB" => "Belarus (Belorussia)",
4570    "1DTB‑BY‑M" => "Minsk",
4571    "1DTD" => "Latvia",
4572    "1DTD‑LV‑R" => "Riga",
4573    "1DTE" => "Estonia",
4574    "1DTE‑EE‑T" => "Tallinn",
4575    "1DTF" => "Lithuania",
4576    "1DTF‑LT‑V" => "Vilnius",
4577    "1DTG" => "Georgia",
4578    "1DTG‑GE‑T" => "Tbilisi",
4579    "1DTH" => "Hungary",
4580    "1DTH‑HU‑B" => "Central Hungary",
4581    "1DTH‑HU‑BB" => "Budapest",
4582    "1DTH‑HU‑D" => "Transdanubia",
4583    "1DTH‑HU‑DB" => "Lake Balaton",
4584    "1DTH‑HU‑DD" => "Lake Neusiedl / Ferto",
4585    "1DTH‑HU‑DF" => "Mecsek Mountains",
4586    "1DTH‑HU‑DG" => "Transdanubian Mountains",
4587    "1DTH‑HU‑DH" => "Little Hungarian Plain",
4588    "1DTH‑HU‑DP" => "Esztergom",
4589    "1DTH‑HU‑DQ" => "Győr",
4590    "1DTH‑HU‑DR" => "Pécs",
4591    "1DTH‑HU‑DS" => "Sopron",
4592    "1DTH‑HU‑DT" => "Székesfehérvár",
4593    "1DTH‑HU‑DV" => "Veszprém",
4594    "1DTH‑HU‑F" => "Great Plain & the North",
4595    "1DTH‑HU‑FD" => "North Hungarian Mountains",
4596    "1DTH‑HU‑FDE" => "Eger",
4597    "1DTH‑HU‑FP" => "Great Hungarian plain",
4598    "1DTH‑HU‑FPD" => "Hortobágy National Park",
4599    "1DTH‑HU‑FPJ" => "Debrecen",
4600    "1DTH‑HU‑FPK" => "Szeged",
4601    "1DTH‑HU‑FPW" => "Lake Tisza",
4602    "1DTH‑HU‑Z" => "Hungary: Places of interest",
4603    "1DTH‑HU‑ZD" => "Danube–Tisza Interfluve",
4604    "1DTH‑HU‑ZT" => "Transtisza / Tiszántúl",
4605    "1DTJ" => "Czechia",
4606    "1DTJ‑CZ‑A" => "Prague",
4607    "1DTJ‑CZ‑B" => "South Moravian Region",
4608    "1DTJ‑CZ‑C" => "South Bohemian Region",
4609    "1DTJ‑CZ‑E" => "Pardubice Region",
4610    "1DTJ‑CZ‑H" => "Hradec Kralove Region",
4611    "1DTJ‑CZ‑J" => "Vysocina Region",
4612    "1DTJ‑CZ‑K" => "Karlovy Vary Region",
4613    "1DTJ‑CZ‑L" => "Liberec Region",
4614    "1DTJ‑CZ‑M" => "Olomouc Region",
4615    "1DTJ‑CZ‑P" => "Pilsen Region",
4616    "1DTJ‑CZ‑S" => "Central Bohemian Region",
4617    "1DTJ‑CZ‑T" => "Moravian-Silesian Region",
4618    "1DTJ‑CZ‑U" => "Usti nad Labem Region",
4619    "1DTJ‑CZ‑Z" => "Zlin Region",
4620    "1DTJ‑CZ‑X" => "Czechia: places of interest",
4621    "1DTJ‑CZ‑XB" => "Bohemia",
4622    "1DTJ‑CZ‑XBF" => "Bohemian Forest",
4623    "1DTJ‑CZ‑XBG" => "Krkonoše / Giant Mountains",
4624    "1DTJ‑CZ‑XBV" => "Vltava river & tributaries",
4625    "1DTJ‑CZ‑XM" => "Moravia",
4626    "1DTJ‑CZ‑XS" => "Czech Silesia",
4627    "1DTK" => "Slovakia",
4628    "1DTK‑SK‑B" => "Bratislava (region)",
4629    "1DTK‑SK‑BB" => "Bratislava",
4630    "1DTK‑SK‑K" => "Kosice Region",
4631    "1DTK‑SK‑N" => "Nitra Region",
4632    "1DTK‑SK‑P" => "Presov Region",
4633    "1DTK‑SK‑S" => "Banska Bystrica Region",
4634    "1DTK‑SK‑T" => "Trencin Region",
4635    "1DTK‑SK‑V" => "Trnava Region",
4636    "1DTK‑SK‑Y" => "Zilina Region",
4637    "1DTK‑SK‑Z" => "Slovakia: places of interest",
4638    "1DTK‑SK‑ZV" => "The Vah & tributaries",
4639    "1DTM" => "Moldova (Moldavia)",
4640    "1DTN" => "Ukraine",
4641    "1DTN‑UA‑K" => "Kiev",
4642    "1DTP" => "Poland",
4643    "1DTP‑PL‑A" => "West Pomerania voivodeship",
4644    "1DTP‑PL‑AB" => "Szczecin",
4645    "1DTP‑PL‑AP" => "Pomeranian Lake District",
4646    "1DTP‑PL‑B" => "East Pomerania",
4647    "1DTP‑PL‑BA" => "Kashubia",
4648    "1DTP‑PL‑BAA" => "Gdańsk, Gdynia, Sopot – Tri-city",
4649    "1DTP‑PL‑BD" => "Hel Peninsula",
4650    "1DTP‑PL‑BF" => "Żuławy region",
4651    "1DTP‑PL‑BFA" => "Malbork",
4652    "1DTP‑PL‑C" => "Kuyavian-Pomeranian",
4653    "1DTP‑PL‑CB" => "Bydgoszcz",
4654    "1DTP‑PL‑CC" => "Toruń",
4655    "1DTP‑PL‑D" => "Lodz / Łódź",
4656    "1DTP‑PL‑E" => "Warmia-Masuria Province",
4657    "1DTP‑PL‑EA" => "Olsztyn",
4658    "1DTP‑PL‑EB" => "Biskupiec",
4659    "1DTP‑PL‑H" => "Podlasie / Podlachia",
4660    "1DTP‑PL‑HB" => "Białystok",
4661    "1DTP‑PL‑HD" => "Suwalki",
4662    "1DTP‑PL‑HR" => "Bialowieza National Park",
4663    "1DTP‑PL‑HS" => "Biebrza National Park",
4664    "1DTP‑PL‑J" => "Lubusz province",
4665    "1DTP‑PL‑JA" => "Zielona Góra",
4666    "1DTP‑PL‑K" => "Kielce Upland / Holy Cross Province / Świętokrzyskie",
4667    "1DTP‑PL‑KA" => "Kielce",
4668    "1DTP‑PL‑KS" => "Sandomierz and the Sandomierz basin",
4669    "1DTP‑PL‑L" => "Lublin Upland",
4670    "1DTP‑PL‑LA" => "Lublin",
4671    "1DTP‑PL‑LK" => "Kazimierz Dolny",
4672    "1DTP‑PL‑LR" => "Roztocze National Park",
4673    "1DTP‑PL‑M" => "Masovian Voivodeship",
4674    "1DTP‑PL‑MA" => "Warsaw",
4675    "1DTP‑PL‑MP" => "Plock / Płock",
4676    "1DTP‑PL‑MR" => "Kampinoski National Park",
4677    "1DTP‑PL‑N" => "Greater Poland (Wielkopolska)",
4678    "1DTP‑PL‑NB" => "Poznan",
4679    "1DTP‑PL‑P" => "Lesser Poland Voivodeship",
4680    "1DTP‑PL‑PK" => "Krakow",
4681    "1DTP‑PL‑PR" => "Krakow-Częstochowa Upland",
4682    "1DTP‑PL‑PT" => "Podhale (Polish highlands)",
4683    "1DTP‑PL‑PTZ" => "Zakopane",
4684    "1DTP‑PL‑R" => "Silesian Voivodeship",
4685    "1DTP‑PL‑RA" => "Katowice",
4686    "1DTP‑PL‑RC" => "Częstochowa",
4687    "1DTP‑PL‑S" => "Lower Silesian Voivodeship",
4688    "1DTP‑PL‑SA" => "Wroclaw",
4689    "1DTT" => "Turkey",
4690    "1DTT‑TR‑A" => "Istanbul",
4691    "1DTV" => "Armenia",
4692    "1DTV‑AM‑Y" => "Yerevan",
4693    "1DTX" => "Azerbaijan",
4694    "1DTX‑AZ‑B" => "Baku",
4695    "1DTZ" => "Kazakhstan",
4696    "1DX" => "Southeast Europe",
4697    "1DXA" => "Albania",
4698    "1DXA‑AL‑T" => "Tirana",
4699    "1DXB" => "Bulgaria",
4700    "1DXB‑BG‑S" => "Sofia",
4701    "1DXC" => "Croatia",
4702    "1DXC‑HR‑A" => "Zagreb",
4703    "1DXC‑HR‑C" => "Central Croatia",
4704    "1DXC‑HR‑D" => "Dalmatia",
4705    "1DXC‑HR‑DD" => "Dubrovnik",
4706    "1DXC‑HR‑DK" => "Šibenik",
4707    "1DXC‑HR‑DS" => "Split",
4708    "1DXC‑HR‑DY" => "Zadar",
4709    "1DXC‑HR‑J" => "Istria",
4710    "1DXC‑HR‑K" => "Kvarner & the Highlands",
4711    "1DXC‑HR‑L" => "Lika-Karlovac",
4712    "1DXC‑HR‑S" => "Slavonia",
4713    "1DXD" => "Macedonia (FYR)",
4714    "1DXD‑MK‑S" => "Skopje",
4715    "1DXG" => "Greece",
4716    "1DXG‑GR‑E" => "Central Greece",
4717    "1DXG‑GR‑EA" => "Attica",
4718    "1DXG‑GR‑EAA" => "Athens",
4719    "1DXG‑GR‑EAE" => "Eleusis",
4720    "1DXG‑GR‑EAP" => "Piraeus",
4721    "1DXG‑GR‑EE" => "Euboea",
4722    "1DXG‑GR‑EEC" => "Chalcis",
4723    "1DXG‑GR‑EF" => "Phocis",
4724    "1DXG‑GR‑EFD" => "Delphi",
4725    "1DXG‑GR‑EK" => "Aetolia-Acarnania",
4726    "1DXG‑GR‑EKM" => "Missolonghi",
4727    "1DXG‑GR‑ET" => "Phthiotis",
4728    "1DXG‑GR‑ETA" => "Atalanti",
4729    "1DXG‑GR‑EV" => "Boeotia",
4730    "1DXG‑GR‑EVT" => "Thebes",
4731    "1DXG‑GR‑H" => "Epirus",
4732    "1DXG‑GR‑L" => "Thessaly",
4733    "1DXG‑GR‑M" => "Macedonia",
4734    "1DXG‑GR‑MC" => "Chalkidiki",
4735    "1DXG‑GR‑ME" => "Pella",
4736    "1DXG‑GR‑MP" => "Pieria",
4737    "1DXG‑GR‑MT" => "Thessaloniki (region)",
4738    "1DXG‑GR‑MTH" => "Thessaloniki",
4739    "1DXG‑GR‑P" => "Peloponnese",
4740    "1DXG‑GR‑PA" => "Achaea",
4741    "1DXG‑GR‑PAP" => "Patras",
4742    "1DXG‑GR‑PD" => "Arcadia",
4743    "1DXG‑GR‑PH" => "Elis / Ilia",
4744    "1DXG‑GR‑PHO" => "Ancient Olympia",
4745    "1DXG‑GR‑PK" => "Corinthia",
4746    "1DXG‑GR‑PKK" => "Corinth",
4747    "1DXG‑GR‑PL" => "Laconia",
4748    "1DXG‑GR‑PLS" => "Sparta",
4749    "1DXG‑GR‑PLY" => "Mystras",
4750    "1DXG‑GR‑PM" => "Messenia",
4751    "1DXG‑GR‑PR" => "Argolis",
4752    "1DXG‑GR‑PRA" => "Argos",
4753    "1DXG‑GR‑PRM" => "Mycenae",
4754    "1DXG‑GR‑S" => "Greek Islands",
4755    "1DXG‑GR‑SA" => "North Aegean Islands",
4756    "1DXG‑GR‑SAC" => "Chios",
4757    "1DXG‑GR‑SAH" => "Lemnos",
4758    "1DXG‑GR‑SAL" => "Lesbos",
4759    "1DXG‑GR‑SAS" => "Samos",
4760    "1DXG‑GR‑SC" => "Crete",
4761    "1DXG‑GR‑SCH" => "Heraklion",
4762    "1DXG‑GR‑SD" => "Dodecanese (Islands)",
4763    "1DXG‑GR‑SDH" => "Karpathos",
4764    "1DXG‑GR‑SDK" => "Kos",
4765    "1DXG‑GR‑SDL" => "Leros",
4766    "1DXG‑GR‑SDP" => "Patmos",
4767    "1DXG‑GR‑SDR" => "Rhodes",
4768    "1DXG‑GR‑SF" => "Ionian Islands",
4769    "1DXG‑GR‑SFC" => "Corfu",
4770    "1DXG‑GR‑SFF" => "Paxos",
4771    "1DXG‑GR‑SFK" => "Cephalonia / Kefalonia",
4772    "1DXG‑GR‑SFL" => "Lefkada",
4773    "1DXG‑GR‑SFP" => "Ithaca",
4774    "1DXG‑GR‑SFR" => "Zakynthos",
4775    "1DXG‑GR‑SK" => "Cyclades (Islands)",
4776    "1DXG‑GR‑SKK" => "Mykonos",
4777    "1DXG‑GR‑SKM" => "Milos",
4778    "1DXG‑GR‑SKN" => "Naxos",
4779    "1DXG‑GR‑SKP" => "Paros",
4780    "1DXG‑GR‑SKS" => "Santorini",
4781    "1DXG‑GR‑SKY" => "Syros",
4782    "1DXG‑GR‑SR" => "Saronic Islands",
4783    "1DXG‑GR‑SRA" => "Aegina",
4784    "1DXG‑GR‑SRS" => "Salamis",
4785    "1DXG‑GR‑SS" => "Sporades (Islands)",
4786    "1DXG‑GR‑SSA" => "Alonnisos",
4787    "1DXG‑GR‑SSK" => "Skiathos",
4788    "1DXG‑GR‑ST" => "Other Greek Islands",
4789    "1DXG‑GR‑STK" => "Kythira",
4790    "1DXG‑GR‑STM" => "Samothrace",
4791    "1DXG‑GR‑STS" => "Skyros",
4792    "1DXG‑GR‑T" => "Thrace",
4793    "1DXH" => "Bosnia-Herzegovina",
4794    "1DXH‑BA‑S" => "Sarajevo",
4795    "1DXK" => "Kosovo",
4796    "1DXN" => "Montenegro",
4797    "1DXN‑ME‑P" => "Podgorica",
4798    "1DXR" => "Romania",
4799    "1DXR‑RO‑B" => "Bucharest",
4800    "1DXR‑RO‑Z" => "Romania: places of interest",
4801    "1DXR‑RO‑ZT" => "Transylvania",
4802    "1DXS" => "Serbia",
4803    "1DXS‑RS‑B" => "Belgrade",
4804    "1DXV" => "Slovenia",
4805    "1DXV‑SI‑C" => "Carniola",
4806    "1DXV‑SI‑CL" => "Ljubljana",
4807    "1DXY" => "Cyprus",
4808    "1DXY‑CY‑C" => "Nicosia",
4809    "1DZ" => "Europe: physical features",
4810    "1DZA" => "Europe: rivers, lakes etc",
4811    "1DZAD" => "Danube river & tributaries",
4812    "1DZADT" => "River Tisza & tributaries",
4813    "1DZAR" => "Rhine river & tributaries",
4814    "1DZARC" => "Lake Constance",
4815    "1DZAV" => "Volga river & tributaries",
4816    "1DZA‑DE‑E" => "Elbe river & tributaries",
4817    "1DZA‑DE‑N" => "Oder and Neisse rivers & tributaries",
4818    "1DZA‑DE‑W" => "Weser river & tributaries",
4819    "1DZA‑IT‑A" => "Po river & tributaries",
4820    "1DZA‑IT‑C" => "Arno river & tributaries",
4821    "1DZA‑IT‑E" => "Tiber river and tributaries",
4822    "1DZA‑PL‑V" => "Vistula river and tributaries",
4823    "1DZA‑PL‑VB" => "Bug River / Western Bug",
4824    "1DZT" => "Europe: mountains, hills, plains, coastlines etc",
4825    "1DZTA" => "The Alps",
4826    "1DZTAP" => "Pennine Alps",
4827    "1DZTAPM" => "Matterhorn",
4828    "1DZTAPR" => "Mont Rosa Massif",
4829    "1DZTA‑FR‑B" => "Mont Blanc Massif",
4830    "1DZTA‑FR‑BM" => "Mont Blanc",
4831    "1DZTA‑SI‑C" => "Julian Alps",
4832    "1DZTB" => "The Caucasus",
4833    "1DZTC" => "Carpathian mountains",
4834    "1DZTCT" => "Tatra Mountains",
4835    "1DZTH" => "The Balkans",
4836    "1DZTP" => "The Pyrenees",
4837    "1DZTS" => "Scandinavian Mountains",
4838    "1DZTU" => "Ural mountains",
4839    "1DZT‑DE‑A" => "Harz mountains",
4840    "1DZT‑DE‑B" => "Rhön mountains",
4841    "1DZT‑DE‑C" => "Eifel region",
4842    "1DZT‑DE‑D" => "Black Forest region",
4843    "1DZT‑DE‑E" => "Rhineland",
4844    "1DZT‑FR‑J" => "Jura Mountains",
4845    "1DZT‑GB‑C" => "Cotswolds",
4846    "1DZT‑GB‑P" => "Pennines",
4847    "1DZT‑IT‑A" => "Northern Apennines",
4848    "1DZT‑IT‑B" => "Central Apennines",
4849    "1DZT‑IT‑C" => "Southern Apennines",
4850    "1DZT‑IT‑G" => "Karst plateau",
4851    "1DZT‑IT‑L" => "Maremma",
4852    "1DZT‑IT‑N" => "Val d’Orcia",
4853    "1DZT‑IT‑P" => "Tavoliere delle Puglie",
4854    "1DZT‑IT‑R" => "Amalfi coast",
4855    "1DZT‑IT‑T" => "Costa Smeralda",
4856    "1F" => "Asia",
4857    "1FB" => "Middle East",
4858    "1FBG" => "Jerusalem",
4859    "1FBH" => "Israel",
4860    "1FBH‑IL‑A" => "Tel-Aviv",
4861    "1FBH‑IL‑H" => "Haifa",
4862    "1FBJ" => "Jordan",
4863    "1FBJ‑JO‑P" => "Petra",
4864    "1FBL" => "Lebanon",
4865    "1FBL‑LB‑B" => "Beirut",
4866    "1FBN" => "Iran",
4867    "1FBN‑IR‑A" => "Tehran",
4868    "1FBN‑IR‑S" => "Shiraz",
4869    "1FBP" => "Palestine",
4870    "1FBP‑PS‑G" => "Gaza",
4871    "1FBQ" => "Iraq",
4872    "1FBQ‑IQ‑B" => "Baghdad",
4873    "1FBS" => "Syria",
4874    "1FBS‑SY‑A" => "Aleppo",
4875    "1FBS‑SY‑D" => "Damascus",
4876    "1FBS‑SY‑P" => "Palmyra",
4877    "1FBX" => "Arabian peninsula",
4878    "1FBXB" => "Bahrain",
4879    "1FBXK" => "Kuwait",
4880    "1FBXM" => "Oman",
4881    "1FBXQ" => "Qatar",
4882    "1FBXS" => "Saudi Arabia",
4883    "1FBXS‑SA‑H" => "Hejaz /Hijaz",
4884    "1FBXS‑SA‑HJ" => "Jeddah",
4885    "1FBXS‑SA‑HM" => "Mecca / Makkah",
4886    "1FBXS‑SA‑HN" => "Medina",
4887    "1FBXS‑SA‑R" => "Riyadh",
4888    "1FBXU" => "United Arab Emirates",
4889    "1FBXU‑AE‑A" => "Abu Dhabi",
4890    "1FBXU‑AE‑D" => "Dubai",
4891    "1FBXY" => "Yemen",
4892    "1FBZ" => "Middle East: places of interest",
4893    "1FBZB" => "Tigris & Euphrates rivers",
4894    "1FBZJ" => "Jordan River",
4895    "1FBZJD" => "Dead Sea",
4896    "1FC" => "Central Asia",
4897    "1FCA" => "Afghanistan",
4898    "1FCA‑AF‑K" => "Kabul",
4899    "1FCD" => "Tajikistan (Tadzhikistan)",
4900    "1FCK" => "Kyrgyzstan (Kirghizstan, Kirghizia)",
4901    "1FCK‑KG‑B" => "Bishkek",
4902    "1FCS" => "Siberia",
4903    "1FCT" => "Turkmenistan",
4904    "1FCU" => "Uzbekistan",
4905    "1FK" => "South Asia (Indian sub-continent)",
4906    "1FKA" => "India",
4907    "1FKA‑IN‑A" => "Northern India",
4908    "1FKA‑IN‑AB" => "Chandigarh",
4909    "1FKA‑IN‑AD" => "National Capital Territory of Delhi",
4910    "1FKA‑IN‑ADN" => "New Delhi",
4911    "1FKA‑IN‑AG" => "Haryana",
4912    "1FKA‑IN‑AH" => "Himachal Pradesh",
4913    "1FKA‑IN‑AHS" => "Shimla / Simla",
4914    "1FKA‑IN‑AJ" => "Jammu & Kashmir",
4915    "1FKA‑IN‑AP" => "Punjab",
4916    "1FKA‑IN‑APB" => "Amritsar",
4917    "1FKA‑IN‑AR" => "Rajasthan",
4918    "1FKA‑IN‑ARB" => "Jaipur",
4919    "1FKA‑IN‑ARD" => "Jodhpur",
4920    "1FKA‑IN‑ARF" => "Udaipur",
4921    "1FKA‑IN‑C" => "Central India",
4922    "1FKA‑IN‑CB" => "Chhattisgarh",
4923    "1FKA‑IN‑CD" => "Madhya Pradesh",
4924    "1FKA‑IN‑CF" => "Uttar Pradesh",
4925    "1FKA‑IN‑CFA" => "Agra",
4926    "1FKA‑IN‑CFC" => "Varanasi / Benares",
4927    "1FKA‑IN‑CH" => "Uttarakhand",
4928    "1FKA‑IN‑E" => "Eastern India",
4929    "1FKA‑IN‑EB" => "Bihar",
4930    "1FKA‑IN‑ED" => "Jharkhand",
4931    "1FKA‑IN‑EF" => "Odisha",
4932    "1FKA‑IN‑EH" => "West Bengal",
4933    "1FKA‑IN‑EHC" => "Kolkata",
4934    "1FKA‑IN‑EHD" => "Darjeeling",
4935    "1FKA‑IN‑G" => "North East India",
4936    "1FKA‑IN‑GA" => "Assam",
4937    "1FKA‑IN‑GC" => "Arunachal Pradesh",
4938    "1FKA‑IN‑GE" => "Manipur",
4939    "1FKA‑IN‑GH" => "Meghalaya",
4940    "1FKA‑IN‑GJ" => "Mizoram",
4941    "1FKA‑IN‑GL" => "Nagaland",
4942    "1FKA‑IN‑GN" => "Tripura",
4943    "1FKA‑IN‑GS" => "Sikkim",
4944    "1FKA‑IN‑J" => "Western India",
4945    "1FKA‑IN‑JB" => "Dadra & Nagar Haveli",
4946    "1FKA‑IN‑JD" => "Daman & Diu",
4947    "1FKA‑IN‑JF" => "Goa",
4948    "1FKA‑IN‑JG" => "Gujarat",
4949    "1FKA‑IN‑JM" => "Maharashtra",
4950    "1FKA‑IN‑JMM" => "Mumbai",
4951    "1FKA‑IN‑L" => "Southern India",
4952    "1FKA‑IN‑LA" => "Andhra Pradesh",
4953    "1FKA‑IN‑LC" => "Karnataka",
4954    "1FKA‑IN‑LCB" => "Bengaluru",
4955    "1FKA‑IN‑LE" => "Kerala",
4956    "1FKA‑IN‑LEC" => "Kochi",
4957    "1FKA‑IN‑LG" => "Puducherry",
4958    "1FKA‑IN‑LGB" => "Pondicherry",
4959    "1FKA‑IN‑LJ" => "Tamil Nadu",
4960    "1FKA‑IN‑LJC" => "Chennai",
4961    "class here: Madras" => "201710",
4962    "1FKA‑IN‑LK" => "Telangana",
4963    "1FKA‑IN‑LKH" => "Hyderabad",
4964    "1FKA‑IN‑LN" => "Andaman & Nicobar Islands",
4965    "1FKA‑IN‑LP" => "Lakshadweep",
4966    "1FKB" => "Bangladesh",
4967    "1FKB‑BD‑D" => "Dhaka",
4968    "1FKH" => "Bhutan",
4969    "1FKN" => "Nepal",
4970    "1FKN‑NP‑K" => "Kathmandu",
4971    "1FKP" => "Pakistan",
4972    "1FKP‑PK‑B" => "Balochistan",
4973    "1FKP‑PK‑D" => "Khyber Pakhtunkhwa",
4974    "1FKP‑PK‑F" => "Punjab (PK)",
4975    "1FKP‑PK‑FB" => "Lahore",
4976    "1FKP‑PK‑H" => "Sindh",
4977    "1FKP‑PK‑HB" => "Karachi",
4978    "1FKP‑PK‑L" => "Islamabad",
4979    "1FKS" => "Sri Lanka",
4980    "1FKS‑LK‑C" => "Colombo",
4981    "1FM" => "South East Asia",
4982    "1FMB" => "Myanmar",
4983    "1FMC" => "Cambodia",
4984    "1FMC‑KH‑A" => "Phnom Penh",
4985    "1FMC‑KH‑B" => "Siem Reap",
4986    "1FMC‑KH‑BA" => "Angkor",
4987    "1FML" => "Laos",
4988    "1FMM" => "Malaysia",
4989    "1FMM‑MY‑B" => "Kuala Lumpur",
4990    "1FMM‑MY‑M" => "Melaka / Malacca",
4991    "1FMM‑MY‑P" => "Penang",
4992    "1FMM‑MY‑S" => "Sarawak",
4993    "1FMM‑MY‑T" => "Sabah",
4994    "1FMN" => "Indonesia",
4995    "1FMNB" => "Bali",
4996    "1FMN‑ID‑B" => "Sumatra",
4997    "1FMN‑ID‑D" => "Java",
4998    "1FMN‑ID‑DJ" => "Jakarta",
4999    "1FMN‑ID‑F" => "Kalimantan",
5000    "1FMN‑ID‑K" => "Sulawesi",
5001    "1FMN‑ID‑M" => "Maluku",
5002    "1FMN‑ID‑P" => "Papua",
5003    "1FMN‑ID‑S" => "Lesser Sunda Islands",
5004    "1FMN‑ID‑SL" => "Lombok",
5005    "1FMNT" => "East Timor / Timor-Leste",
5006    "1FMNX" => "Borneo",
5007    "1FMP" => "Philippines",
5008    "1FMP‑PH‑A" => "Manila",
5009    "1FMR" => "Brunei",
5010    "1FMS" => "Singapore",
5011    "1FMT" => "Thailand",
5012    "1FMT‑TH‑B" => "Bangkok",
5013    "1FMT‑TH‑C" => "Chiang Mai",
5014    "1FMT‑TH‑K" => "Krabi",
5015    "1FMT‑TH‑KL" => "Ko Lanta",
5016    "1FMT‑TH‑P" => "Phuket",
5017    "1FMT‑TH‑Q" => "Surat Thani",
5018    "1FMT‑TH‑QB" => "Ko Samui / Koh Samui",
5019    "1FMT‑TH‑Y" => "Ayutthaya",
5020    "1FMV" => "Vietnam",
5021    "1FMV‑VN‑B" => "Ho Chi Minh City",
5022    "1FMV‑VN‑D" => "Hanoi",
5023    "1FP" => "East Asia, Far East",
5024    "1FPC" => "China",
5025    "1FPC‑CN‑D" => "North China",
5026    "1FPC‑CN‑DB" => "Beijing",
5027    "1FPC‑CN‑DD" => "Tianjin",
5028    "1FPC‑CN‑DF" => "Hebei",
5029    "1FPC‑CN‑DH" => "Shanxi",
5030    "1FPC‑CN‑DJ" => "Inner Mongolia",
5031    "1FPC‑CN‑F" => "Northeast China",
5032    "1FPC‑CN‑FB" => "Liaoning",
5033    "1FPC‑CN‑FD" => "Jilin",
5034    "1FPC‑CN‑FF" => "Heilongjiang",
5035    "1FPC‑CN‑H" => "East China",
5036    "1FPC‑CN‑HB" => "Shanghai",
5037    "1FPC‑CN‑HD" => "Jiangsu",
5038    "1FPC‑CN‑HF" => "Zhejiang",
5039    "1FPC‑CN‑HH" => "Anhui",
5040    "1FPC‑CN‑HJ" => "Fujian",
5041    "1FPC‑CN‑HL" => "Jiangxi",
5042    "1FPC‑CN‑HN" => "Shandong",
5043    "1FPC‑CN‑J" => "Central China",
5044    "1FPC‑CN‑JB" => "Henan",
5045    "1FPC‑CN‑JD" => "Hubei",
5046    "1FPC‑CN‑JF" => "Hunan",
5047    "1FPC‑CN‑L" => "South China",
5048    "1FPC‑CN‑LB" => "Guangdong",
5049    "1FPC‑CN‑LD" => "Guangxi",
5050    "1FPC‑CN‑LF" => "Hainan",
5051    "1FPC‑CN‑N" => "Southwest China",
5052    "1FPC‑CN‑NB" => "Chongqing",
5053    "1FPC‑CN‑ND" => "Sichuan",
5054    "1FPC‑CN‑NF" => "Guizhou",
5055    "1FPC‑CN‑NH" => "Yunnan",
5056    "1FPCT" => "Tibet",
5057    "1FPC‑CN‑P" => "Northwest China",
5058    "1FPC‑CN‑PB" => "Shaanxi",
5059    "1FPC‑CN‑PD" => "Gansu",
5060    "1FPC‑CN‑PF" => "Qinghai",
5061    "1FPC‑CN‑PH" => "Ningxia",
5062    "1FPC‑CN‑PJ" => "Xinjiang",
5063    "1FPCW" => "Taiwan",
5064    "1FPCH" => "Hong Kong",
5065    "1FPCM" => "Macao",
5066    "1FPJ" => "Japan",
5067    "1FPJ‑JP‑A" => "Hokkaido (region)",
5068    "1FPJ‑JP‑AA" => "Hokkaido",
5069    "1FPJ‑JP‑B" => "Tohoku",
5070    "1FPJ‑JP‑BA" => "Aomori",
5071    "1FPJ‑JP‑BB" => "Iwate",
5072    "1FPJ‑JP‑BC" => "Miyagi",
5073    "1FPJ‑JP‑BD" => "Akita",
5074    "1FPJ‑JP‑BE" => "Yamagata",
5075    "1FPJ‑JP‑BF" => "Fukushima",
5076    "1FPJ‑JP‑C" => "Kanto",
5077    "1FPJ‑JP‑CA" => "Ibaraki",
5078    "1FPJ‑JP‑CB" => "Tochigi",
5079    "1FPJ‑JP‑CC" => "Gunma",
5080    "1FPJ‑JP‑CD" => "Saitama",
5081    "1FPJ‑JP‑CE" => "Chiba",
5082    "1FPJ‑JP‑CF" => "Tokyo",
5083    "1FPJ‑JP‑CG" => "Kanagawa",
5084    "1FPJ‑JP‑D" => "Chubu",
5085    "1FPJ‑JP‑DA" => "Niigata",
5086    "1FPJ‑JP‑DB" => "Toyama",
5087    "1FPJ‑JP‑DC" => "Ishikawa",
5088    "1FPJ‑JP‑DD" => "Fukui",
5089    "1FPJ‑JP‑DE" => "Yamanashi",
5090    "1FPJ‑JP‑DF" => "Nagano",
5091    "1FPJ‑JP‑DG" => "Gifu",
5092    "1FPJ‑JP‑DH" => "Shizuoka",
5093    "1FPJ‑JP‑DJ" => "Aichi",
5094    "1FPJ‑JP‑E" => "Kinki / Kansai",
5095    "1FPJ‑JP‑EA" => "Mie",
5096    "1FPJ‑JP‑EB" => "Shiga",
5097    "1FPJ‑JP‑EC" => "Kyoto",
5098    "1FPJ‑JP‑ED" => "Osaka",
5099    "1FPJ‑JP‑EE" => "Hyogo",
5100    "1FPJ‑JP‑EF" => "Nara",
5101    "1FPJ‑JP‑EG" => "Wakayama",
5102    "1FPJ‑JP‑F" => "Chugoku",
5103    "1FPJ‑JP‑FA" => "Tottori",
5104    "1FPJ‑JP‑FB" => "Shimane",
5105    "1FPJ‑JP‑FC" => "Okayama",
5106    "1FPJ‑JP‑FD" => "Hiroshima",
5107    "1FPJ‑JP‑FE" => "Yamaguchi",
5108    "1FPJ‑JP‑G" => "Shikoku",
5109    "1FPJ‑JP‑GA" => "Tokushima",
5110    "1FPJ‑JP‑GB" => "Kagawa",
5111    "1FPJ‑JP‑GC" => "Ehime",
5112    "1FPJ‑JP‑GD" => "Kochi (JP)",
5113    "1FPJ‑JP‑H" => "Kyushu",
5114    "1FPJ‑JP‑HA" => "Fukuoka",
5115    "1FPJ‑JP‑HB" => "Saga",
5116    "1FPJ‑JP‑HC" => "Nagasaki",
5117    "1FPJ‑JP‑HD" => "Kumamoto",
5118    "1FPJ‑JP‑HE" => "Oita",
5119    "1FPJ‑JP‑HF" => "Miyazaki",
5120    "1FPJ‑JP‑HG" => "Kagoshima",
5121    "1FPJ‑JP‑HH" => "Okinawa",
5122    "1FPK" => "Korea",
5123    "1FPKN" => "North Korea",
5124    "1FPKS" => "South Korea",
5125    "1FPKS‑KR‑B" => "Seoul",
5126    "1FPM" => "Mongolia",
5127    "1FZ" => "Asia: physical features",
5128    "1FZA" => "Asia: rivers, lakes etc",
5129    "1FZAG" => "Ganges river & tributaries",
5130    "1FZAJ" => "Indus river & tributaries",
5131    "1FZAM" => "Mekong river & tributaries",
5132    "1FZAX" => "Yangtze river & tributaries",
5133    "1FZAY" => "Yellow river & tributaries",
5134    "1FZT" => "Asia: mountains, hills, plains, coastlines etc",
5135    "1FZTA" => "Altai mountains",
5136    "1FZTG" => "Gobi desert",
5137    "1FZTH" => "The Himalayas",
5138    "1FZTHA" => "Annapurna",
5139    "1FZTHK" => "Karakoram",
5140    "1FZTHKK" => "K2",
5141    "1FZTHM" => "Mahalangur Himal",
5142    "1FZTHME" => "Mount Everest",
5143    "1H" => "Africa",
5144    "1HB" => "North Africa",
5145    "1HBA" => "Algeria",
5146    "1HBA‑DZ‑A" => "Algiers",
5147    "1HBC" => "Chad",
5148    "1HBE" => "Egypt",
5149    "1HBE‑AA‑D" => "Nile Valley and Delta",
5150    "1HBE‑AA‑DA" => "Alexandria",
5151    "1HBE‑AA‑DB" => "Aswan",
5152    "1HBE‑AA‑DC" => "Cairo",
5153    "1HBE‑AA‑DD" => "Beheira",
5154    "1HBE‑AA‑DF" => "Beni Suef",
5155    "1HBE‑AA‑DG" => "Dakahlia",
5156    "1HBE‑AA‑DH" => "Damietta",
5157    "1HBE‑AA‑DJ" => "Gharbia",
5158    "1HBE‑AA‑DK" => "Giza",
5159    "1HBE‑AA‑DL" => "Kafr el-Sheikh",
5160    "1HBE‑AA‑DN" => "Minya",
5161    "1HBE‑AA‑DP" => "Monufia",
5162    "1HBE‑AA‑DQ" => "Qalyubia",
5163    "1HBE‑AA‑DS" => "Sharqia",
5164    "1HBE‑AA‑DW" => "Sohag",
5165    "1HBE‑AA‑DX" => "Luxor",
5166    "1HBE‑AA‑J" => "Egypt: Western Desert",
5167    "1HBE‑AA‑JF" => "Faiyum",
5168    "1HBE‑AA‑JM" => "Matruh",
5169    "1HBE‑AA‑JV" => "New Valley (Governorate of Egypt)",
5170    "1HBE‑AA‑M" => "Egypt: Eastern Desert",
5171    "1HBE‑AA‑MA" => "Asyut",
5172    "1HBE‑AA‑MQ" => "Qena",
5173    "1HBE‑AA‑MR" => "Red Sea (Governorate of Egypt)",
5174    "1HBE‑AA‑S" => "Sinai Peninsula",
5175    "1HBE‑AA‑SL" => "Ismailia",
5176    "1HBE‑AA‑SN" => "North Sinai",
5177    "1HBE‑AA‑SP" => "Port Said",
5178    "1HBE‑AA‑SS" => "South Sinai",
5179    "1HBE‑AA‑SZ" => "Suez",
5180    "1HBL" => "Libya",
5181    "1HBL‑LY‑C" => "Cyrenaica",
5182    "1HBL‑LY‑CB" => "Benghazi",
5183    "1HBL‑LY‑T" => "Tripolitania",
5184    "1HBL‑LY‑TT" => "Tripoli",
5185    "1HBM" => "Morocco",
5186    "1HBM‑MA‑B" => "Tanger-Tetouan-Al Hoceima",
5187    "1HBM‑MA‑BC" => "Tangier",
5188    "1HBM‑MA‑F" => "Fès-Meknès",
5189    "1HBM‑MA‑FE" => "Fez",
5190    "1HBM‑MA‑H" => "Rabat-Salé-Kenitra",
5191    "1HBM‑MA‑HR" => "Rabat",
5192    "1HBM‑MA‑L" => "Casablanca-Settat",
5193    "1HBM‑MA‑LC" => "Casablanca",
5194    "1HBM‑MA‑M" => "Marrakesh-Safi",
5195    "1HBM‑MA‑ME" => "Essaouira",
5196    "1HBM‑MA‑MM" => "Marrakesh / Marrakech",
5197    "1HBM‑MA‑P" => "Drâa-Tafilalet",
5198    "1HBM‑MA‑PO" => "Ouarzazate",
5199    "1HBM‑MA‑R" => "Souss-Massa",
5200    "1HBM‑MA‑RA" => "Agadir",
5201    "1HBS" => "Sudan",
5202    "1HBS‑SD‑B" => "Khartoum",
5203    "1HBT" => "Tunisia",
5204    "1HBT‑TN‑A" => "Tunis",
5205    "1HBT‑TN‑D" => "Djerba / Jerba",
5206    "1HBW" => "Western Sahara",
5207    "1HBZ" => "South Sudan",
5208    "1HF" => "Sub-Saharan Africa",
5209    "1HFD" => "West Africa",
5210    "1HFDA" => "Mauritania",
5211    "1HFDB" => "Benin",
5212    "1HFDE" => "Sierra Leone",
5213    "1HFDF" => "Burkina Faso",
5214    "1HFDG" => "Gambia",
5215    "1HFDH" => "Ghana",
5216    "1HFDH‑GH‑A" => "Accra",
5217    "1HFDL" => "Liberia",
5218    "1HFDL‑LR‑A" => "Monrovia",
5219    "1HFDM" => "Mali",
5220    "1HFDM‑ML‑A" => "Timbuktu",
5221    "1HFDN" => "Nigeria",
5222    "1HFDN‑NG‑A" => "Lagos",
5223    "1HFDR" => "Niger",
5224    "1HFDS" => "Senegal",
5225    "1HFDS‑SN‑A" => "Dakar",
5226    "1HFDT" => "Togo",
5227    "1HFDU" => "Guinea",
5228    "1HFDU‑GN‑A" => "Conakry",
5229    "1HFDV" => "Cape Verde",
5230    "1HFDX" => "Guinea-Bissau",
5231    "1HFDY" => "Ivory Coast",
5232    "1HFDY‑CI‑A" => "Abidjan",
5233    "1HFG" => "East Africa",
5234    "1HFGA" => "Ethiopia",
5235    "1HFGA‑ET‑A" => "Addis Ababa",
5236    "1HFGD" => "Djibouti",
5237    "1HFGE" => "Eritrea",
5238    "1HFGK" => "Kenya",
5239    "1HFGK‑KE‑A" => "Nairobi",
5240    "1HFGK‑KE‑M" => "Mombasa",
5241    "1HFGQ" => "Burundi",
5242    "1HFGR" => "Rwanda",
5243    "1HFGR‑RW‑A" => "Kigali",
5244    "1HFGS" => "Somalia",
5245    "1HFGSR" => "Republic of Somaliland",
5246    "1HFGT" => "Tanzania",
5247    "1HFGT‑TZ‑B" => "Dar es Salaam",
5248    "1HFGT‑TZ‑C" => "Zanzibar",
5249    "1HFGT‑TZ‑E" => "Northern Tanzania",
5250    "1HFGT‑TZ‑EB" => "Kilimanjaro",
5251    "1HFGT‑TZ‑ED" => "Serengeti",
5252    "1HFGU" => "Uganda",
5253    "1HFGU‑UG‑A" => "Kampala",
5254    "1HFJ" => "Central Africa",
5255    "1HFJA" => "Cameroon",
5256    "1HFJC" => "Congo (Congo-Brazzaville)",
5257    "1HFJC‑CG‑A" => "Brazzaville",
5258    "1HFJG" => "Gabon",
5259    "1HFJQ" => "Equatorial Guinea",
5260    "1HFJR" => "Central African Republic",
5261    "1HFJS" => "Sao Tome & Principe",
5262    "1HFJZ" => "Democratic Republic of Congo (former Zaire)",
5263    "1HFJZ‑CD‑A" => "Kinshasa",
5264    "1HFM" => "Southern Africa",
5265    "1HFMA" => "Angola",
5266    "1HFMB" => "Botswana",
5267    "1HFMB‑BW‑A" => "Gaborone",
5268    "1HFMB‑BW‑V" => "Okavango River & Delta",
5269    "1HFMK" => "Swaziland",
5270    "1HFML" => "Lesotho",
5271    "1HFMM" => "Malawi",
5272    "1HFMN" => "Namibia",
5273    "1HFMQ" => "Mozambique",
5274    "1HFMQ‑MZ‑A" => "Maputo",
5275    "1HFMS" => "Republic of South Africa",
5276    "1HFMS‑ZA‑A" => "Eastern Cape",
5277    "1HFMS‑ZA‑B" => "Free State",
5278    "1HFMS‑ZA‑BB" => "Bloemfontein",
5279    "1HFMS‑ZA‑D" => "Gauteng",
5280    "1HFMS‑ZA‑DB" => "Johannesburg",
5281    "1HFMS‑ZA‑DD" => "Pretoria",
5282    "1HFMS‑ZA‑F" => "KwaZulu-Natal",
5283    "1HFMS‑ZA‑FB" => "Durban",
5284    "1HFMS‑ZA‑H" => "Limpopo",
5285    "1HFMS‑ZA‑J" => "Mpumalanga",
5286    "1HFMS‑ZA‑K" => "North West Province",
5287    "1HFMS‑ZA‑M" => "Northern Cape",
5288    "1HFMS‑ZA‑N" => "Western Cape",
5289    "1HFMS‑ZA‑NB" => "Cape Town",
5290    "1HFMS‑ZA‑Z" => "South Africa: places of interest",
5291    "1HFMS‑ZA‑ZD" => "Drakensberg",
5292    "1HFMS‑ZA‑ZK" => "Kruger National Park",
5293    "1HFMW" => "Zimbabwe",
5294    "1HFMW‑ZW‑A" => "Harare",
5295    "1HFMZ" => "Zambia",
5296    "1HFMZ‑ZM‑A" => "Lusaka",
5297    "1HS" => "South Indian Ocean Islands",
5298    "1HSC" => "Comoros",
5299    "1HSM" => "Madagascar",
5300    "1HSU" => "Mauritius",
5301    "1HSU‑MU‑B" => "Rodrigues",
5302    "1HSV" => "Maldives",
5303    "1HSY" => "Seychelles",
5304    "1HS‑FR‑L" => "La Réunion",
5305    "1HS‑FR‑LA" => "Saint-Denis (Réunion)",
5306    "1HS‑FR‑LB" => "Saint-Benoît",
5307    "1HS‑FR‑LC" => "Saint-Paul",
5308    "1HS‑FR‑LD" => "Saint-Pierre (Réunion)",
5309    "1HS‑FR‑M" => "Mayotte",
5310    "1HS‑FR‑MA" => "Dzaoudzi",
5311    "1HZ" => "Africa: physical features",
5312    "1HZA" => "Africa: rivers, lakes etc",
5313    "1HZAC" => "Congo river & tributaries",
5314    "1HZAG" => "Niger river & tributaries",
5315    "1HZAM" => "Lake Nyasa / Lake Malawi",
5316    "1HZAN" => "Nile river & tributaries",
5317    "1HZAS" => "Suez canal",
5318    "1HZAT" => "Lake Tanganyika",
5319    "1HZAV" => "Lake Victoria",
5320    "1HZAZ" => "Zambesi river & tributaries",
5321    "1HZAZV" => "Mosi-oa-Tunya / Victoria Falls",
5322    "1HZT" => "Africa: mountains, hills, plains, coastlines etc",
5323    "1HZTA" => "Atlas mountains",
5324    "1HZTK" => "Kalahari desert",
5325    "1HZTR" => "Great Rift Valley",
5326    "1HZTS" => "The Sahara",
5327    "1HZTT" => "The Sahel",
5328    "1K" => "The Americas",
5329    "1KB" => "North America (USA & Canada)",
5330    "1KBB" => "United States of America, USA",
5331    "1KBB‑US‑M" => "US Midwest",
5332    "1KBB‑US‑ML" => "US Midwest: East North Central (Great Lakes) States",
5333    "1KBB‑US‑MLC" => "Illinois",
5334    "1KBB‑US‑MLCC" => "Chicago",
5335    "1KBB‑US‑MLCS" => "Springfield (IL)",
5336    "1KBB‑US‑MLD" => "Indiana",
5337    "1KBB‑US‑MLDD" => "Indianapolis",
5338    "1KBB‑US‑MLG" => "Michigan",
5339    "1KBB‑US‑MLGD" => "Detroit",
5340    "1KBB‑US‑MLO" => "Ohio",
5341    "1KBB‑US‑MLOL" => "Cleveland",
5342    "1KBB‑US‑MLON" => "Cincinnati",
5343    "1KBB‑US‑MLOO" => "Columbus",
5344    "1KBB‑US‑MLT" => "Minnesota",
5345    "1KBB‑US‑MLTM" => "Minneapolis-St. Paul",
5346    "1KBB‑US‑MLW" => "Wisconsin",
5347    "1KBB‑US‑MLWM" => "Milwaukee",
5348    "1KBB‑US‑MLWW" => "Madison",
5349    "1KBB‑US‑MP" => "US Midwest: West North Central (Great Plains) States",
5350    "1KBB‑US‑MPA" => "Iowa",
5351    "1KBB‑US‑MPK" => "Kansas",
5352    "1KBB‑US‑MPM" => "Missouri",
5353    "1KBB‑US‑MPMK" => "Kansas City (MO)",
5354    "1KBB‑US‑MPML" => "St. Louis",
5355    "1KBB‑US‑MPN" => "Nebraska",
5356    "1KBB‑US‑MPNL" => "Lincoln",
5357    "1KBB‑US‑MPNO" => "Omaha",
5358    "1KBB‑US‑MPR" => "North Dakota",
5359    "1KBB‑US‑MPT" => "South Dakota",
5360    "1KBB‑US‑MPTR" => "Mount Rushmore National Memorial",
5361    "1KBB‑US‑N" => "US Northeast",
5362    "1KBB‑US‑NA" => "US Northeast: Mid-Atlantic States",
5363    "1KBB‑US‑NAJ" => "New Jersey",
5364    "1KBB‑US‑NAJA" => "Atlantic City",
5365    "1KBB‑US‑NAJH" => "Hoboken",
5366    "1KBB‑US‑NAJN" => "Newark",
5367    "1KBB‑US‑NAJS" => "Jersey Shore",
5368    "1KBB‑US‑NAK" => "New York",
5369    "1KBB‑US‑NAKA" => "Albany",
5370    "1KBB‑US‑NAKB" => "Buffalo",
5371    "1KBB‑US‑NAKC" => "New York City",
5372    "1KBB‑US‑NAKCB" => "Brooklyn",
5373    "1KBB‑US‑NAKCM" => "Manhattan",
5374    "1KBB‑US‑NAKCMG" => "Greenwich Village",
5375    "1KBB‑US‑NAKCMH" => "Harlem",
5376    "1KBB‑US‑NAKL" => "Long Island",
5377    "1KBB‑US‑NAKN" => "Niagara Falls (City)",
5378    "1KBB‑US‑NAP" => "Pennsylvania",
5379    "1KBB‑US‑NAPD" => "Pennsylvania Dutch Country",
5380    "1KBB‑US‑NAPG" => "Gettysburg",
5381    "1KBB‑US‑NAPH" => "Philadelphia",
5382    "1KBB‑US‑NAPT" => "Pittsburgh",
5383    "1KBB‑US‑NE" => "US Northeast: New England",
5384    "1KBB‑US‑NEC" => "Connecticut",
5385    "1KBB‑US‑NECH" => "Hartford",
5386    "1KBB‑US‑NEI" => "Maine",
5387    "1KBB‑US‑NEIA" => "Acadia National Park",
5388    "1KBB‑US‑NEIP" => "Portland (ME)",
5389    "1KBB‑US‑NEM" => "Massachusetts",
5390    "1KBB‑US‑NEMB" => "Boston",
5391    "1KBB‑US‑NEMC" => "Cape Cod",
5392    "1KBB‑US‑NEMCM" => "Martha’s Vineyard",
5393    "1KBB‑US‑NEMCN" => "Nantucket",
5394    "1KBB‑US‑NEMM" => "Cambridge (MA)",
5395    "1KBB‑US‑NEMS" => "Salem (MA)",
5396    "1KBB‑US‑NEN" => "New Hampshire",
5397    "1KBB‑US‑NER" => "Rhode Island",
5398    "1KBB‑US‑NERN" => "Newport",
5399    "1KBB‑US‑NERP" => "Providence",
5400    "1KBB‑US‑NEV" => "Vermont",
5401    "1KBB‑US‑S" => "US South",
5402    "1KBB‑US‑SC" => "US South: East South Central States",
5403    "1KBB‑US‑SCA" => "Alabama",
5404    "1KBB‑US‑SCAM" => "Montgomery",
5405    "1KBB‑US‑SCK" => "Kentucky",
5406    "1KBB‑US‑SCKL" => "Louisville",
5407    "1KBB‑US‑SCM" => "Mississippi",
5408    "1KBB‑US‑SCT" => "Tennessee",
5409    "1KBB‑US‑SCTM" => "Memphis",
5410    "1KBB‑US‑SCTN" => "Nashville",
5411    "1KBB‑US‑SE" => "US South: South Atlantic States",
5412    "1KBB‑US‑SEC" => "District of Columbia (Washington D.C.)",
5413    "1KBB‑US‑SED" => "Delaware",
5414    "1KBB‑US‑SEF" => "Florida",
5415    "1KBB‑US‑SEFA" => "St. Augustine",
5416    "1KBB‑US‑SEFE" => "Everglades",
5417    "1KBB‑US‑SEFH" => "Tallahassee",
5418    "1KBB‑US‑SEFJ" => "Jacksonville",
5419    "1KBB‑US‑SEFK" => "Florida Keys",
5420    "1KBB‑US‑SEFM" => "Miami",
5421    "1KBB‑US‑SEFO" => "Orlando",
5422    "1KBB‑US‑SEFP" => "Tampa",
5423    "1KBB‑US‑SEG" => "Georgia (US State)",
5424    "1KBB‑US‑SEGS" => "Savannah",
5425    "1KBB‑US‑SEGT" => "Atlanta",
5426    "1KBB‑US‑SEM" => "Maryland",
5427    "1KBB‑US‑SEMA" => "Annapolis",
5428    "1KBB‑US‑SEMB" => "Baltimore",
5429    "1KBB‑US‑SEN" => "North Carolina",
5430    "1KBB‑US‑SENA" => "Asheville",
5431    "1KBB‑US‑SENB" => "Outer Banks",
5432    "1KBB‑US‑SENC" => "Charlotte",
5433    "1KBB‑US‑SENR" => "Raleigh",
5434    "1KBB‑US‑SES" => "South Carolina",
5435    "1KBB‑US‑SESC" => "Charleston (SC)",
5436    "1KBB‑US‑SESM" => "Myrtle Beach",
5437    "1KBB‑US‑SEV" => "Virginia",
5438    "1KBB‑US‑SEVC" => "Charlottesville",
5439    "1KBB‑US‑SEVR" => "Richmond",
5440    "1KBB‑US‑SEVV" => "Virginia Beach",
5441    "1KBB‑US‑SEVW" => "Williamsburg",
5442    "1KBB‑US‑SEW" => "West Virginia",
5443    "1KBB‑US‑SG" => "Great Smoky Mountains National Park",
5444    "1KBB‑US‑SW" => "US South: West South Central States",
5445    "1KBB‑US‑SWA" => "Arkansas",
5446    "1KBB‑US‑SWAH" => "Hot Springs",
5447    "1KBB‑US‑SWAL" => "Little Rock",
5448    "1KBB‑US‑SWL" => "Louisiana",
5449    "1KBB‑US‑SWLB" => "Baton Rouge",
5450    "1KBB‑US‑SWLN" => "New Orleans",
5451    "1KBB‑US‑SWO" => "Oklahoma",
5452    "1KBB‑US‑SWOC" => "Oklahoma City",
5453    "1KBB‑US‑SWOT" => "Tulsa",
5454    "1KBB‑US‑SWT" => "Texas",
5455    "1KBB‑US‑SWTA" => "Austin",
5456    "1KBB‑US‑SWTD" => "Dallas",
5457    "1KBB‑US‑SWTH" => "Houston",
5458    "1KBB‑US‑SWTN" => "San Antonio",
5459    "1KBB‑US‑SWTP" => "El Paso",
5460    "1KBB‑US‑SWTW" => "Fort Worth",
5461    "1KBB‑US‑W" => "US West",
5462    "1KBB‑US‑WM" => "US West: Mountain States",
5463    "1KBB‑US‑WMA" => "Arizona",
5464    "1KBB‑US‑WMAF" => "Flagstaff",
5465    "1KBB‑US‑WMAG" => "Grand Canyon National Park",
5466    "1KBB‑US‑WMAP" => "Phoenix",
5467    "1KBB‑US‑WMAS" => "Sedona",
5468    "1KBB‑US‑WMAT" => "Tucson",
5469    "1KBB‑US‑WMC" => "Colorado",
5470    "1KBB‑US‑WMCA" => "Aspen",
5471    "1KBB‑US‑WMCB" => "Boulder",
5472    "1KBB‑US‑WMCD" => "Denver",
5473    "1KBB‑US‑WMCR" => "Rocky Mountain National Park",
5474    "1KBB‑US‑WMD" => "Idaho",
5475    "1KBB‑US‑WMDB" => "Boise",
5476    "1KBB‑US‑WMM" => "Montana",
5477    "1KBB‑US‑WMMG" => "Glacier National Park",
5478    "1KBB‑US‑WMN" => "Nevada",
5479    "1KBB‑US‑WMNR" => "Reno",
5480    "1KBB‑US‑WMNV" => "Las Vegas",
5481    "1KBB‑US‑WMT" => "New Mexico",
5482    "1KBB‑US‑WMTA" => "Albuquerque",
5483    "1KBB‑US‑WMTF" => "Santa Fe",
5484    "1KBB‑US‑WMTT" => "Taos",
5485    "1KBB‑US‑WMU" => "Utah",
5486    "1KBB‑US‑WMUS" => "Salt Lake City",
5487    "1KBB‑US‑WMUZ" => "Zion National Park",
5488    "1KBB‑US‑WMW" => "Wyoming",
5489    "1KBB‑US‑WMWC" => "Cheyenne",
5490    "1KBB‑US‑WMWJ" => "Jackson Hole",
5491    "1KBB‑US‑WMWT" => "Grand Teton National Park",
5492    "1KBB‑US‑WMY" => "Yellowstone National Park",
5493    "1KBB‑US‑WP" => "US West: Pacific States",
5494    "1KBB‑US‑WPC" => "California",
5495    "1KBB‑US‑WPCA" => "Los Angeles",
5496    "1KBB‑US‑WPCAB" => "Beverly Hills",
5497    "1KBB‑US‑WPCAH" => "Hollywood",
5498    "1KBB‑US‑WPCD" => "San Diego",
5499    "1KBB‑US‑WPCF" => "San Francisco",
5500    "1KBB‑US‑WPCJ" => "San Jose",
5501    "1KBB‑US‑WPCM" => "Monterey",
5502    "1KBB‑US‑WPCN" => "Napa & Sonoma",
5503    "1KBB‑US‑WPCP" => "Palm Springs",
5504    "1KBB‑US‑WPCR" => "Fresno",
5505    "1KBB‑US‑WPCS" => "Sacramento",
5506    "1KBB‑US‑WPCY" => "Yosemite National Park",
5507    "1KBB‑US‑WPH" => "Hawaii",
5508    "1KBB‑US‑WPHH" => "Hawaii (Big Island)",
5509    "1KBB‑US‑WPHK" => "Kauai",
5510    "1KBB‑US‑WPHM" => "Maui",
5511    "1KBB‑US‑WPHO" => "Oahu",
5512    "1KBB‑US‑WPHOH" => "Honolulu",
5513    "1KBB‑US‑WPN" => "US Pacific Northwest",
5514    "1KBB‑US‑WPNA" => "Alaska",
5515    "1KBB‑US‑WPNAA" => "Anchorage",
5516    "1KBB‑US‑WPNAJ" => "Juneau",
5517    "1KBB‑US‑WPNR" => "Oregon",
5518    "1KBB‑US‑WPNRP" => "Portland (OR)",
5519    "1KBB‑US‑WPNW" => "Washington (US State)",
5520    "1KBB‑US‑WPNWO" => "Olympic National Park",
5521    "1KBB‑US‑WPNWS" => "Seattle",
5522    "1KBC" => "Canada",
5523    "1KBC‑CA‑A" => "Alberta",
5524    "1KBC‑CA‑AN" => "Northern Alberta",
5525    "1KBC‑CA‑ANB" => "Northern Alberta: Wood Buffalo and Waterton Lakes National Parks",
5526    "1KBC‑CA‑AND" => "Northern Alberta: Peace River Country (AB)",
5527    "1KBC‑CA‑ANG" => "Northern Alberta: Alberta’s Rockies & Banff and Jasper National Parks",
5528    "1KBC‑CA‑AS" => "Southern Alberta",
5529    "1KBC‑CA‑ASC" => "Southern Alberta: Calgary Region",
5530    "1KBC‑CA‑ASF" => "Southern Alberta: Edmonton Capital Region",
5531    "1KBC‑CA‑ASJ" => "Southern Alberta: Elk Island National Park",
5532    "1KBC‑CA‑ASN" => "Southern Alberta: Waterton Lakes National Park",
5533    "1KBC‑CA‑B" => "British Columbia",
5534    "1KBC‑CA‑BD" => "British Columbia Interior",
5535    "1KBC‑CA‑BDA" => "British Columbia Interior: Atlin District",
5536    "1KBC‑CA‑BDB" => "British Columbia Interior: Stikine Country",
5537    "1KBC‑CA‑BDC" => "British Columbia Interior: Peace River Country",
5538    "1KBC‑CA‑BDD" => "British Columbia Interior: Nechako",
5539    "1KBC‑CA‑BDE" => "British Columbia Interior: Bulkley",
5540    "1KBC‑CA‑BDF" => "British Columbia Interior: Cariboo",
5541    "1KBC‑CA‑BDG" => "British Columbia Interior: Chilcotin",
5542    "1KBC‑CA‑BDH" => "British Columbia Interior: Omineca-Prince George",
5543    "1KBC‑CA‑BDJ" => "British Columbia Interior: Robson Valley",
5544    "1KBC‑CA‑BDK" => "British Columbia Interior: Kootenays",
5545    "1KBC‑CA‑BDKA" => "British Columbia Interior: Kootenays National Parks (Mount Revelstoke, Kootenay, Glacier and Yoho)",
5546    "1KBC‑CA‑BDL" => "British Columbia Interior: Okanagan",
5547    "1KBC‑CA‑BDM" => "British Columbia Interior: Boundary",
5548    "1KBC‑CA‑BDN" => "British Columbia Interior: Similkameen",
5549    "1KBC‑CA‑BDP" => "British Columbia Interior: Thompson",
5550    "1KBC‑CA‑BDQ" => "British Columbia Interior: Shuswap",
5551    "1KBC‑CA‑BDR" => "British Columbia Interior: Lillooet-Fraser Canyon",
5552    "1KBC‑CA‑BF" => "British Columbia South Coast",
5553    "1KBC‑CA‑BFB" => "British Columbia South Coast: Lower Mainland",
5554    "1KBC‑CA‑BFD" => "British Columbia South Coast: Greater Vancouver",
5555    "1KBC‑CA‑BFF" => "British Columbia South Coast: Fraser Valley",
5556    "1KBC‑CA‑BFJ" => "British Columbia South Coast: Sea-to-Sky Corridor",
5557    "1KBC‑CA‑BFM" => "British Columbia South Coast: Gulf Islands & Gulf Islands National Park Reserve",
5558    "1KBC‑CA‑BFR" => "British Columbia South Coast: Sunshine Coast",
5559    "1KBC‑CA‑BL" => "British Columbia Vancouver Island",
5560    "1KBC‑CA‑BLC" => "British Columbia Vancouver Island: Greater Victoria",
5561    "1KBC‑CA‑BLK" => "British Columbia Vancouver Island: Mid-Island",
5562    "1KBC‑CA‑BLN" => "British Columbia Vancouver Island: North Island",
5563    "1KBC‑CA‑BLS" => "British Columbia Vancouver Island: West Coast",
5564    "1KBC‑CA‑BLW" => "British Columbia Vancouver Island: Juan de Fuca region & Pacific Rim National Park Reserve",
5565    "1KBC‑CA‑BP" => "British Columbia Central Coast",
5566    "1KBC‑CA‑BPD" => "British Columbia Central Coast: Queen Charlotte Strait",
5567    "1KBC‑CA‑BPL" => "British Columbia Central Coast: Bella Coola Valley",
5568    "1KBC‑CA‑BT" => "British Columbia North Coast",
5569    "1KBC‑CA‑BTE" => "British Columbia North Coast: Haida Gwaii & Gwaii Haanas National Park Reserve and Haida Heritage Site",
5570    "1KBC‑CA‑BTM" => "British Columbia North Coast: Skeena",
5571    "1KBC‑CA‑BTR" => "British Columbia North Coast: Nass",
5572    "1KBC‑CA‑BTY" => "British Columbia North Coast: Stewart Country",
5573    "1KBC‑CA‑C" => "Manitoba",
5574    "1KBC‑CA‑CN" => "Northern Manitoba",
5575    "1KBC‑CA‑CNB" => "Northern Manitoba: Wapusk National Park",
5576    "1KBC‑CA‑CP" => "Interlake and Central Manitoba",
5577    "1KBC‑CA‑CPR" => "Interlake and Central Manitoba: Riding Mountain National Park",
5578    "1KBC‑CA‑CS" => "Southern Manitoba",
5579    "1KBC‑CA‑CSW" => "Southern Manitoba: Winnipeg Capital Region",
5580    "1KBC‑CA‑D" => "New Brunswick",
5581    "1KBC‑CA‑DF" => "New Brunswick: Fundy National Park",
5582    "1KBC‑CA‑DK" => "New Brunswick: Greater Saint John",
5583    "1KBC‑CA‑DN" => "New Brunswick: Greater Fredericton",
5584    "1KBC‑CA‑F" => "Newfoundland & Labrador",
5585    "1KBC‑CA‑FL" => "Labrador",
5586    "1KBC‑CA‑FLT" => "Labrador: Torngat Mountains National Park",
5587    "1KBC‑CA‑FN" => "Newfoundland",
5588    "1KBC‑CA‑FNA" => "Newfoundland: Avalon Peninsula",
5589    "1KBC‑CA‑FNAJ" => "Newfoundland: Avalon Peninsula: St. John’s",
5590    "1KBC‑CA‑FNC" => "Newfoundland: Burin Peninsula",
5591    "1KBC‑CA‑FNE" => "Newfoundland: Bonavista Peninsula & Terra Nova National Park",
5592    "1KBC‑CA‑FNH" => "Newfoundland: South Coast",
5593    "1KBC‑CA‑FNK" => "Newfoundland: West Coast & Gros Morne National Park",
5594    "1KBC‑CA‑FNM" => "Newfoundland: Great Northern Peninsula",
5595    "1KBC‑CA‑FNR" => "Newfoundland: Northeast Coast",
5596    "1KBC‑CA‑H" => "Northwest Territories",
5597    "1KBC‑CA‑HL" => "Northwest Territories: Inuvik Region & Tuktut Nogait National Park",
5598    "1KBC‑CA‑HP" => "Northwest Territories: Sahtu Region",
5599    "1KBC‑CA‑HT" => "Northwest Territories: Dehcho Region & Nahanni and Naats’ihch’oh National Park Reserves",
5600    "1KBC‑CA‑HV" => "Northwest Territories: North Slave Region",
5601    "1KBC‑CA‑HW" => "Northwest Territories: Yellowknife",
5602    "1KBC‑CA‑HX" => "Northwest Territories: South Slave Region",
5603    "1KBC‑CA‑J" => "Nova Scotia",
5604    "1KBC‑CA‑JA" => "Nova Scotia: Annapolis Valley",
5605    "1KBC‑CA‑JB" => "Nova Scotia: Cape Breton Island & Cape Breton Highlands National Park",
5606    "1KBC‑CA‑JC" => "Central Nova Scotia",
5607    "1KBC‑CA‑JD" => "Nova Scotia: Eastern Shore & Sable Island National Park Reserve",
5608    "1KBC‑CA‑JH" => "Nova Scotia: Halifax Regional Municipality (HRM)",
5609    "1KBC‑CA‑JK" => "Nova Scotia: North Shore",
5610    "1KBC‑CA‑JM" => "Nova Scotia: South Shore & Kejimkujik National Park",
5611    "1KBC‑CA‑K" => "Nunavut",
5612    "1KBC‑CA‑KC" => "Nunavut: Kitikmeot Region",
5613    "1KBC‑CA‑KN" => "Nunavut: Kivalliq Region & Ukkusiksalik National Park",
5614    "1KBC‑CA‑KQ" => "Nunavut: Qikiqtaaluk Region & Auyuittuq, Sirmilik and Quttinirpaaq National Parks",
5615    "1KBC‑CA‑KQT" => "Nunavut: Qikiqtaaluk Region: Iqaluit",
5616    "1KBC‑CA‑O" => "Ontario",
5617    "1KBC‑CA‑OB" => "Northwestern Ontario",
5618    "1KBC‑CA‑OBP" => "Northwestern Ontario: Pukaskwa National Park",
5619    "1KBC‑CA‑OD" => "Northeastern Ontario",
5620    "1KBC‑CA‑OG" => "Central Ontario",
5621    "1KBC‑CA‑OGC" => "Central Ontario: Haliburton and Algonquin Park",
5622    "1KBC‑CA‑OGF" => "Central Ontario: Kawartha Lakes",
5623    "1KBC‑CA‑OGJ" => "Central Ontario: Muskoka",
5624    "1KBC‑CA‑OGQ" => "Central Ontario: Bay of Quinte",
5625    "1KBC‑CA‑OM" => "Eastern Ontario",
5626    "1KBC‑CA‑OMC" => "Eastern Ontario: Ottawa / National Capital Region",
5627    "1KBC‑CA‑OML" => "Eastern Ontario: Ottawa Valley",
5628    "1KBC‑CA‑OMT" => "Eastern Ontario: Thousand Islands & St. Lawrence Islands National Park",
5629    "1KBC‑CA‑OS" => "Southwestern Ontario",
5630    "1KBC‑CA‑OSB" => "Southwestern Ontario: Bruce Peninsula & National Park",
5631    "1KBC‑CA‑OSF" => "Southwestern Ontario: Georgian Triangle & Georgian Bay Islands National Park",
5632    "1KBC‑CA‑OSM" => "Southwestern Ontario: Greater Toronto Area",
5633    "1KBC‑CA‑OSR" => "Southwestern Ontario: Niagara Peninsula & Point Pelee National Park",
5634    "1KBC‑CA‑P" => "Prince Edward Island",
5635    "1KBC‑CA‑PM" => "Prince Edward Island: North Shore & Prince Edward Island National Park",
5636    "1KBC‑CA‑PR" => "Prince Edward Island: South Shore",
5637    "1KBC‑CA‑PT" => "Prince Edward Island: Summerside Area",
5638    "1KBC‑CA‑PV" => "Prince Edward Island: Charlottetown Area",
5639    "1KBC‑CA‑Q" => "Quebec",
5640    "1KBC‑CA‑QB" => "Quebec: Bas-Saint-Laurent",
5641    "1KBC‑CA‑QBB" => "Rimouski",
5642    "1KBC‑CA‑QBG" => "Kamouraska",
5643    "1KBC‑CA‑QBK" => "Reford Gardens",
5644    "1KBC‑CA‑QD" => "Quebec: Saguenay–Lac-Saint-Jean",
5645    "1KBC‑CA‑QDC" => "Saguenay (city)",
5646    "1KBC‑CA‑QDF" => "Saguenay River",
5647    "1KBC‑CA‑QDK" => "Lac Saint-Jean",
5648    "1KBC‑CA‑QF" => "Quebec, National Capital Region",
5649    "1KBC‑CA‑QFC" => "Quebec City",
5650    "1KBC‑CA‑QFF" => "Orleans Island",
5651    "1KBC‑CA‑QFG" => "Charlevoix",
5652    "1KBC‑CA‑QH" => "Quebec: Mauricie",
5653    "1KBC‑CA‑QHD" => "Trois-Rivières",
5654    "1KBC‑CA‑QHH" => "Shawanigan",
5655    "1KBC‑CA‑QJ" => "Quebec: Estrie / Eastern Townships",
5656    "1KBC‑CA‑QJS" => "Sherbrooke",
5657    "1KBC‑CA‑QL" => "Quebec: Outaouais",
5658    "1KBC‑CA‑QLG" => "Gatineau",
5659    "1KBC‑CA‑QM" => "Quebec: Montréal (region)",
5660    "1KBC‑CA‑QMM" => "Montreal",
5661    "1KBC‑CA‑QN" => "Quebec: Abitibi-Témiscamingue",
5662    "1KBC‑CA‑QP" => "Quebec: Côte-Nord",
5663    "1KBC‑CA‑QPC" => "Mingan Archipelago",
5664    "1KBC‑CA‑QPD" => "Anticosti Island",
5665    "1KBC‑CA‑QR" => "Quebec: Nord-du-Québec",
5666    "1KBC‑CA‑QRK" => "James Bay",
5667    "1KBC‑CA‑QRN" => "Nunavik",
5668    "1KBC‑CA‑QRU" => "Ungava Bay",
5669    "1KBC‑CA‑QS" => "Quebec: Gaspésie",
5670    "1KBC‑CA‑QSJ" => "Challeur Bay",
5671    "1KBC‑CA‑QT" => "Quebec: Chaudière-Appalaches",
5672    "1KBC‑CA‑QU" => "Quebec: Laval",
5673    "1KBC‑CA‑QV" => "Quebec: Lanaudière",
5674    "1KBC‑CA‑QW" => "Quebec: Laurentides",
5675    "1KBC‑CA‑QX" => "Quebec: Montérégie",
5676    "1KBC‑CA‑QY" => "Quebec: Centre-du-Québec",
5677    "1KBC‑CA‑S" => "Saskatchewan",
5678    "1KBC‑CA‑SD" => "Northern Saskatchewan",
5679    "1KBC‑CA‑SG" => "Central Saskatchewan",
5680    "1KBC‑CA‑SGA" => "Central Saskatchewan: Saskatoon",
5681    "1KBC‑CA‑SGP" => "Central Saskatchewan: Prince Albert National Park",
5682    "1KBC‑CA‑SS" => "Southern Saskatchewan",
5683    "1KBC‑CA‑SSA" => "Central Saskatchewan: Regina",
5684    "1KBC‑CA‑SSP" => "Central Saskatchewan: Grasslands National Park",
5685    "1KBC‑CA‑U" => "Yukon Territory",
5686    "1KBC‑CA‑UD" => "Yukon Territory: Northern Yukon, Vuntut & Ivvavik National Parks",
5687    "1KBC‑CA‑UF" => "Yukon Territory: Silver Trail Region",
5688    "1KBC‑CA‑UK" => "Yukon Territory: Klondike Region",
5689    "1KBC‑CA‑UL" => "Yukon Territory: Kluane Region & Kluane National Park & Reserve",
5690    "1KBC‑CA‑UO" => "Yukon Territory: Campbell & Watson Lakes Regions",
5691    "1KBC‑CA‑UW" => "Yukon Territory: Whitehorse & Southern Lakes Regions",
5692    "1KBC‑CA‑Z" => "Canada: Places of interest",
5693    "1KBC‑CA‑ZH" => "Hudson Bay",
5694    "1KBZ" => "North America: physical features",
5695    "1KBZA" => "North America: rivers, lakes etc",
5696    "1KBZAA" => "Great Lakes",
5697    "1KBZAAN" => "Niagara Falls",
5698    "1KBZAC" => "Colorado river & tributaries",
5699    "1KBZAG" => "Rio Grande & tributaries",
5700    "1KBZAK" => "Mackenzie river & tributaries",
5701    "1KBZAM" => "Mississippi-Missouri river & tributaries",
5702    "1KBZAS" => "St Lawrence river & tributaries",
5703    "1KBZAS‑CA‑L" => "Gulf of St Lawrence",
5704    "1KBZAY" => "Yukon river & tributaries",
5705    "1KBZA‑US‑H" => "Hudson river & tributaries",
5706    "1KBZA‑US‑L" => "Great Salt Lake",
5707    "1KBZA‑US‑O" => "Columbia river & tributaries",
5708    "1KBZA‑US‑P" => "Potomac river & Chesapeake Bay",
5709    "1KBZT" => "North America: mountains, hills, plains, coastlines etc",
5710    "1KBZTA" => "Appalachian Mountains",
5711    "1KBZTG" => "Grand Canyon",
5712    "1KBZTP" => "North America: Great Plains",
5713    "1KBZTR" => "Rocky Mountains",
5714    "1KBZT‑US‑D" => "Denali",
5715    "1KJ" => "Caribbean islands",
5716    "1KJC" => "Cuba",
5717    "1KJC‑CU‑A" => "Cuba: Western Region",
5718    "1KJC‑CU‑B" => "Cuba: Central Region",
5719    "1KJC‑CU‑C" => "Cuba: Eastern Region",
5720    "1KJC‑CU‑D" => "Havana",
5721    "1KJC‑CU‑V" => "Guantánamo",
5722    "1KJD" => "Dominican Republic",
5723    "1KJD‑DO‑A" => "Norte – Cilbao",
5724    "1KJD‑DO‑B" => "Dominican Republic: South Region",
5725    "1KJD‑DO‑C" => "Dominican Republic: Southeast / East Region",
5726    "1KJD‑DO‑D" => "Santo Domingo",
5727    "1KJH" => "Haiti",
5728    "1KJH‑HT‑P" => "Port-au-Prince",
5729    "1KJM" => "Cayman Islands",
5730    "1KJP" => "Puerto Rico",
5731    "1KJP‑PR‑C" => "Spanish Virgin Islands",
5732    "1KJP‑PR‑CC" => "Culebra",
5733    "1KJP‑PR‑CD" => "Vieques",
5734    "1KJP‑PR‑J" => "San Juan",
5735    "1KJW" => "West Indies",
5736    "1KJWB" => "Bahamas",
5737    "1KJWB‑BS‑A" => "Nassau",
5738    "1KJWJ" => "Jamaica",
5739    "1KJWJ‑JM‑B" => "Kingston",
5740    "1KJWT" => "Turks & Caicos Islands",
5741    "1KJWV" => "Leeward Islands",
5742    "1KJWVA" => "Anguilla",
5743    "1KJWVB" => "Antigua & Barbuda",
5744    "1KJWVG" => "Guadeloupe",
5745    "1KJWVG‑FR‑A" => "Basse Terre",
5746    "1KJWVG‑FR‑B" => "Pointe-à-Pitre",
5747    "1KJWVK" => "Saint Kitts & Nevis",
5748    "1KJWVM" => "Montserrat",
5749    "1KJWVV" => "Virgin Islands",
5750    "1KJWVVK" => "Virgin Islands (UK)",
5751    "1KJWVVS" => "Virgin Islands (USA)",
5752    "1KJWW" => "Windward Islands",
5753    "1KJWWB" => "Barbados",
5754    "1KJWWD" => "Dominica",
5755    "1KJWWG" => "Grenada",
5756    "1KJWWL" => "Saint Lucia",
5757    "1KJWWM" => "Martinique",
5758    "1KJWWM‑FR‑A" => "Fort-De-France",
5759    "1KJWWM‑FR‑B" => "La Trinité",
5760    "1KJWWM‑FR‑C" => "Le Marin",
5761    "1KJWWM‑FR‑D" => "Saint-Pierre",
5762    "1KJWWT" => "Trinidad & Tobago",
5763    "1KJWWT‑TT‑P" => "Port of Spain",
5764    "1KJWWV" => "Saint Vincent & the Grenadines",
5765    "1KJX" => "Lesser Antilles",
5766    "1KJXA" => "Aruba",
5767    "1KJXN" => "Dutch Caribbean",
5768    "1KJX‑BL‑B" => "Saint Barthélemy",
5769    "1KJX‑BQ‑B" => "Bonaire",
5770    "1KJX‑BQ‑E" => "Sint Eustatius",
5771    "1KJX‑BQ‑S" => "Saba",
5772    "1KJX‑CW‑C" => "Curaçao",
5773    "1KJX‑MF‑M" => "Saint Martin",
5774    "1KJX‑SX‑M" => "Sint Maarten",
5775    "1KL" => "Latin America – Mexico, Central America, South America",
5776    "1KLC" => "Mexico & Central America",
5777    "1KLCB" => "Belize",
5778    "1KLCG" => "Guatemala",
5779    "1KLCG‑GT‑A" => "Guatemala department",
5780    "1KLCG‑GT‑AC" => "Guatemala City",
5781    "1KLCG‑GT‑E" => "Guatemala: Central region",
5782    "1KLCG‑GT‑EB" => "Sacatepéquez",
5783    "1KLCG‑GT‑EBA" => "Antigua Guatemala",
5784    "1KLCG‑GT‑F" => "Guatemala: South western region",
5785    "1KLCG‑GT‑FB" => "Sololá",
5786    "1KLCG‑GT‑H" => "Petan department",
5787    "1KLCG‑GT‑HF" => "Flores (El Petén)",
5788    "1KLCH" => "Honduras",
5789    "1KLCH‑HN‑A" => "Honduras: Western region",
5790    "1KLCH‑HN‑AC" => "Copan",
5791    "1KLCH‑HN‑C" => "Honduras: North Eastern Region",
5792    "1KLCH‑HN‑CJ" => "Bay Islands",
5793    "1KLCH‑HN‑E" => "Honduras: Central Eastern Region",
5794    "1KLCH‑HN‑EA" => "Francisco Morazán (Department)",
5795    "1KLCH‑HN‑EAB" => "Tegucigalpa",
5796    "1KLCM" => "Mexico",
5797    "1KLCM‑MX‑A" => "Northwest Mexico",
5798    "1KLCM‑MX‑AA" => "Baja California",
5799    "1KLCM‑MX‑AAB" => "Tijuana",
5800    "1KLCM‑MX‑AB" => "Baja California Sur",
5801    "1KLCM‑MX‑ABB" => "Los Cabos",
5802    "1KLCM‑MX‑AC" => "Chihuahua",
5803    "1KLCM‑MX‑AD" => "Durango",
5804    "1KLCM‑MX‑AE" => "Sinaloa",
5805    "1KLCM‑MX‑AEB" => "Mazatlan",
5806    "1KLCM‑MX‑AF" => "Sonora",
5807    "1KLCM‑MX‑B" => "Northeast Mexico",
5808    "1KLCM‑MX‑BA" => "Coahuila de Zaragoza",
5809    "1KLCM‑MX‑BB" => "Nuevo Leon",
5810    "1KLCM‑MX‑BC" => "Tamaulipas",
5811    "1KLCM‑MX‑C" => "West Mexico",
5812    "1KLCM‑MX‑CA" => "Colima",
5813    "1KLCM‑MX‑CB" => "Jalisco",
5814    "1KLCM‑MX‑CBA" => "Guadalajara",
5815    "1KLCM‑MX‑CBD" => "Puerto Vallarta",
5816    "1KLCM‑MX‑CC" => "Michoacán de Ocampo",
5817    "1KLCM‑MX‑CD" => "Nayarit",
5818    "1KLCM‑MX‑D" => "East Mexico",
5819    "1KLCM‑MX‑DA" => "Hidalgo",
5820    "1KLCM‑MX‑DB" => "Puebla",
5821    "1KLCM‑MX‑DC" => "Tlaxcala",
5822    "1KLCM‑MX‑DD" => "Veracruz",
5823    "1KLCM‑MX‑E" => "North-Central Mexico",
5824    "1KLCM‑MX‑EA" => "Aguascalientes",
5825    "1KLCM‑MX‑EB" => "Guanajuato",
5826    "1KLCM‑MX‑EBB" => "San Miguel de Allende",
5827    "1KLCM‑MX‑EC" => "Queretaro",
5828    "1KLCM‑MX‑ED" => "San Luis Potosi",
5829    "1KLCM‑MX‑EE" => "Zacatecas",
5830    "1KLCM‑MX‑F" => "South-Central Mexico",
5831    "1KLCM‑MX‑FA" => "Mexico City",
5832    "1KLCM‑MX‑FB" => "Mexico State",
5833    "1KLCM‑MX‑FBM" => "Teotihuacan",
5834    "1KLCM‑MX‑FC" => "Morelos",
5835    "1KLCM‑MX‑G" => "Southwest Mexico",
5836    "1KLCM‑MX‑GA" => "Chiapas",
5837    "1KLCM‑MX‑GB" => "Guerrero",
5838    "1KLCM‑MX‑GBB" => "Acapulco",
5839    "1KLCM‑MX‑GBE" => "Ixtapa-Zihuatanejo",
5840    "1KLCM‑MX‑GC" => "Oaxaca",
5841    "1KLCM‑MX‑GCA" => "Oaxaca de Juarez",
5842    "1KLCM‑MX‑H" => "Southeast Mexico",
5843    "1KLCM‑MX‑HA" => "Campeche",
5844    "1KLCM‑MX‑HB" => "Quintana Roo",
5845    "1KLCM‑MX‑HBB" => "Cancun",
5846    "1KLCM‑MX‑HBC" => "Cozumel",
5847    "1KLCM‑MX‑HBD" => "Playa del Carmen",
5848    "1KLCM‑MX‑HBM" => "Tulum",
5849    "1KLCM‑MX‑HBN" => "Riviera Maya",
5850    "1KLCM‑MX‑HC" => "Tabasco",
5851    "1KLCM‑MX‑HD" => "Yucatán",
5852    "1KLCM‑MX‑HDA" => "Merida",
5853    "1KLCM‑MX‑HDM" => "Chichen Itza",
5854    "1KLCM‑MX‑HX" => "Southeast Mexico: Places of interest",
5855    "1KLCM‑MX‑HXP" => "Yucatan Peninsula",
5856    "1KLCM‑MX‑Z" => "Mexico: places of interest",
5857    "1KLCM‑MX‑ZC" => "Gulf of California / Sea of Cortes",
5858    "1KLCN" => "Nicaragua",
5859    "1KLCN‑NI‑A" => "Nicaragua: Pacific Region",
5860    "1KLCN‑NI‑B" => "Nicaragua: Central Region",
5861    "1KLCN‑NI‑C" => "Nicaragua: Caribbean Region",
5862    "1KLCN‑NI‑M" => "Managua",
5863    "1KLCP" => "Panama",
5864    "1KLCP‑PA‑A" => "Panamá",
5865    "1KLCP‑PA‑C" => "Colón",
5866    "1KLCP‑PA‑D" => "Darien",
5867    "1KLCR" => "Costa Rica",
5868    "1KLCR‑CR‑A" => "San José",
5869    "1KLCS" => "El Salvador",
5870    "1KLCS‑SV‑A" => "El Salvador: Western",
5871    "1KLCS‑SV‑B" => "El Salvador: Central",
5872    "1KLCS‑SV‑BA" => "San Salvador",
5873    "1KLCS‑SV‑C" => "El Salvador: Eastern",
5874    "1KLS" => "South America",
5875    "1KLSA" => "Argentina",
5876    "1KLSA‑AR‑A" => "Northwest Argentina (NOA)",
5877    "1KLSA‑AR‑AA" => "Catamarca",
5878    "1KLSA‑AR‑AB" => "Jujuy",
5879    "1KLSA‑AR‑AC" => "La Rioja",
5880    "1KLSA‑AR‑AD" => "Salta",
5881    "1KLSA‑AR‑AE" => "Santiago del Estero",
5882    "1KLSA‑AR‑AF" => "Tucuman",
5883    "1KLSA‑AR‑B" => "Northeast Argentina (NEA)",
5884    "1KLSA‑AR‑BA" => "Corrientes",
5885    "1KLSA‑AR‑BB" => "Chaco",
5886    "1KLSA‑AR‑BC" => "Formosa (AR)",
5887    "1KLSA‑AR‑BD" => "Misiones",
5888    "1KLSA‑AR‑C" => "Cuyo",
5889    "1KLSA‑AR‑CA" => "Mendoza",
5890    "1KLSA‑AR‑CAM" => "Aconcagua",
5891    "1KLSA‑AR‑CB" => "San Juan (AR)",
5892    "1KLSA‑AR‑CC" => "San Luis (AR)",
5893    "1KLSA‑AR‑D" => "Centro",
5894    "1KLSA‑AR‑DA" => "Buenos Aires",
5895    "1KLSA‑AR‑DB" => "Córdoba (AR)",
5896    "1KLSA‑AR‑DC" => "Entre Rios (Mesopotamia)",
5897    "1KLSA‑AR‑DD" => "La Pampa",
5898    "1KLSA‑AR‑DE" => "Santa Fe (AR)",
5899    "1KLSA‑AR‑E" => "Patagonia",
5900    "1KLSA‑AR‑EA" => "Chubut",
5901    "1KLSA‑AR‑EB" => "Neuquén",
5902    "1KLSA‑AR‑EC" => "Rio Negro (AR)",
5903    "1KLSA‑AR‑ED" => "Santa Cruz (AR)",
5904    "1KLSA‑AR‑EDM" => "Parque Nacional de los Glaciares",
5905    "1KLSA‑AR‑EE" => "Tierra del Fuego",
5906    "1KLSA‑AR‑EEA" => "Ushuaia",
5907    "1KLSB" => "Brazil",
5908    "1KLSB‑BR‑A" => "Brazil: North Region",
5909    "1KLSB‑BR‑AA" => "Acre (state)",
5910    "1KLSB‑BR‑AB" => "Amapa",
5911    "1KLSB‑BR‑AC" => "Amazonas (state)",
5912    "1KLSB‑BR‑AD" => "Para",
5913    "1KLSB‑BR‑AE" => "Rondônia",
5914    "1KLSB‑BR‑AF" => "Roraima",
5915    "1KLSB‑BR‑AG" => "Tocantins",
5916    "1KLSB‑BR‑B" => "Brazil: Northeast Region",
5917    "1KLSB‑BR‑BA" => "Alagoas",
5918    "1KLSB‑BR‑BB" => "Bahia",
5919    "1KLSB‑BR‑BBB" => "Salvador de Bahia",
5920    "1KLSB‑BR‑BC" => "Ceara",
5921    "1KLSB‑BR‑BD" => "Maranhão",
5922    "1KLSB‑BR‑BE" => "Paraíba",
5923    "1KLSB‑BR‑BF" => "Pernambuco",
5924    "1KLSB‑BR‑BFB" => "Recife",
5925    "1KLSB‑BR‑BG" => "Piaui",
5926    "1KLSB‑BR‑BH" => "Rio Grande do Norte",
5927    "1KLSB‑BR‑BJ" => "Sergipe",
5928    "1KLSB‑BR‑C" => "Brazil: Central-West Region",
5929    "1KLSB‑BR‑CA" => "Distrito Federal",
5930    "1KLSB‑BR‑CAB" => "Brasilia",
5931    "1KLSB‑BR‑CB" => "Goias",
5932    "1KLSB‑BR‑CC" => "Mato Grosso",
5933    "1KLSB‑BR‑CD" => "Mato Grosso do Sul",
5934    "1KLSB‑BR‑CZ" => "Brazil: Central-West Region: places of interest",
5935    "1KLSB‑BR‑CZP" => "Pantanal",
5936    "1KLSB‑BR‑D" => "Brazil: Southeast Region",
5937    "1KLSB‑BR‑DA" => "Espirito Santo",
5938    "1KLSB‑BR‑DB" => "Minas Gerais",
5939    "1KLSB‑BR‑DC" => "Rio de Janeiro (State)",
5940    "1KLSB‑BR‑DCA" => "Rio de Janeiro",
5941    "1KLSB‑BR‑DD" => "São Paulo",
5942    "1KLSB‑BR‑E" => "Brazil: South Region",
5943    "1KLSB‑BR‑EA" => "Parana",
5944    "1KLSB‑BR‑EB" => "Santa Catarina",
5945    "1KLSB‑BR‑EC" => "Rio Grande do Sul",
5946    "1KLSC" => "Colombia",
5947    "1KLSC‑CO‑A" => "Colombia: Amazonian Region",
5948    "1KLSC‑CO‑B" => "Colombia: Andean Region",
5949    "1KLSC‑CO‑BA" => "Antioquia",
5950    "1KLSC‑CO‑BAA" => "Medellin",
5951    "1KLSC‑CO‑BB" => "Boyaca",
5952    "1KLSC‑CO‑BD" => "Cundinamarca",
5953    "1KLSC‑CO‑BDA" => "Bogota",
5954    "1KLSC‑CO‑BF" => "Norte de Santander",
5955    "1KLSC‑CO‑BJ" => "Santander (department)",
5956    "1KLSC‑CO‑C" => "Colombia: Caribbean Region",
5957    "1KLSC‑CO‑CB" => "Bolivar (department)",
5958    "1KLSC‑CO‑CBA" => "Cartagena",
5959    "1KLSC‑CO‑CG" => "San Andres, Providencia & Santa Catalina",
5960    "1KLSC‑CO‑D" => "Colombia: Orinoco Region",
5961    "1KLSC‑CO‑E" => "Colombia: Pacific Region",
5962    "1KLSC‑CO‑ED" => "Valle del Cauca",
5963    "1KLSC‑CO‑EDA" => "Cali",
5964    "1KLSE" => "Ecuador",
5965    "1KLSE‑EC‑A" => "Ecuador: Coastal region",
5966    "1KLSE‑EC‑B" => "Ecuador: Andean region",
5967    "1KLSE‑EC‑BA" => "Azuay",
5968    "1KLSE‑EC‑BAA" => "Cuenca",
5969    "1KLSE‑EC‑BE" => "Chimborazo",
5970    "1KLSE‑EC‑BF" => "Cotopaxi",
5971    "1KLSE‑EC‑BJ" => "Pichincha",
5972    "1KLSE‑EC‑BJA" => "Quito",
5973    "1KLSE‑EC‑C" => "Ecuador: Amazonian region",
5974    "1KLSF" => "French Guiana",
5975    "1KLSF‑FR‑A" => "Cayenne",
5976    "1KLSF‑FR‑B" => "Saint-Laurent-du-Maroni",
5977    "1KLSG" => "Guyana",
5978    "1KLSG‑GY‑G" => "Georgetown",
5979    "1KLSH" => "Chile",
5980    "1KLSH‑CL‑A" => "Norte Grande",
5981    "1KLSH‑CL‑B" => "Norte Chico",
5982    "1KLSH‑CL‑C" => "Chile: Zona Central",
5983    "1KLSH‑CL‑CD" => "Santiago Metropolitan Region",
5984    "1KLSH‑CL‑CV" => "Valparaíso",
5985    "1KLSH‑CL‑D" => "Zona Sur",
5986    "1KLSH‑CL‑DA" => "Biobío Region",
5987    "1KLSH‑CL‑DAA" => "Concepción",
5988    "1KLSH‑CL‑DC" => "Los Ríos Region",
5989    "1KLSH‑CL‑DCA" => "Valdivia",
5990    "1KLSH‑CL‑DD" => "Los Lagos Region",
5991    "1KLSH‑CL‑DDA" => "Chiloé Archipelago",
5992    "1KLSH‑CL‑E" => "Zona Austral",
5993    "1KLSH‑CL‑EA" => "Magallanes & Chilean Antarctica Region",
5994    "1KLSL" => "Bolivia",
5995    "1KLSL‑BO‑A" => "Pando",
5996    "1KLSL‑BO‑B" => "La Paz",
5997    "1KLSL‑BO‑C" => "Beni",
5998    "1KLSL‑BO‑D" => "Oruro",
5999    "1KLSL‑BO‑E" => "Cochabamba",
6000    "1KLSL‑BO‑F" => "Santa Cruz",
6001    "1KLSL‑BO‑G" => "Potosi",
6002    "1KLSL‑BO‑H" => "Chuquisaca",
6003    "1KLSL‑BO‑HA" => "Sucre",
6004    "1KLSL‑BO‑J" => "Tarija",
6005    "1KLSP" => "Paraguay",
6006    "1KLSP‑PY‑A" => "Asunción",
6007    "1KLSP‑PY‑B" => "Paraguay: Western Region",
6008    "1KLSP‑PY‑C" => "Paraguay: Eastern Region",
6009    "1KLSR" => "Peru",
6010    "1KLSR‑PE‑A" => "Peru: Amazon Region",
6011    "1KLSR‑PE‑AA" => "Amazonas region",
6012    "1KLSR‑PE‑AAB" => "Chachapoyas",
6013    "1KLSR‑PE‑AC" => "Madre de Dios region",
6014    "1KLSR‑PE‑ACT" => "Tambopata",
6015    "1KLSR‑PE‑B" => "Peru: Andean Region",
6016    "1KLSR‑PE‑BD" => "Cusco region",
6017    "1KLSR‑PE‑BDC" => "Cusco / Cuzco",
6018    "1KLSR‑PE‑BDD" => "La Convención",
6019    "1KLSR‑PE‑BDM" => "Machu Picchu",
6020    "1KLSR‑PE‑BDV" => "Ausangate & the Cordillera Vilcanota",
6021    "1KLSR‑PE‑C" => "Peru: Northern coastal region",
6022    "1KLSR‑PE‑D" => "Peru: Central coastal region",
6023    "1KLSR‑PE‑DA" => "Ancash region",
6024    "1KLSR‑PE‑DAB" => "Huaraz",
6025    "1KLSR‑PE‑DAS" => "Cordillera Blanca & Huascaran National Park",
6026    "1KLSR‑PE‑DAY" => "Yerupaja & Huayhuash",
6027    "1KLSR‑PE‑DC" => "La Libertad region",
6028    "1KLSR‑PE‑DD" => "Lima region",
6029    "1KLSR‑PE‑DDL" => "Lima",
6030    "1KLSR‑PE‑E" => "Peru: Southern coastal region",
6031    "1KLSR‑PE‑EA" => "Arequipa region",
6032    "1KLSR‑PE‑EB" => "Ica region",
6033    "1KLSR‑PE‑EBN" => "Nazca",
6034    "1KLSS" => "Suriname",
6035    "1KLSS‑SR‑P" => "Paramaribo",
6036    "1KLSU" => "Uruguay",
6037    "1KLSU‑UY‑A" => "Uruguay: North",
6038    "1KLSU‑UY‑B" => "Uruguay: North West",
6039    "1KLSU‑UY‑C" => "Uruguay: South West",
6040    "1KLSU‑UY‑D" => "Uruguay: East",
6041    "1KLSU‑UY‑E" => "Uruguay: Southern central",
6042    "1KLSU‑UY‑EF" => "Montevideo",
6043    "1KLSV" => "Venezuela",
6044    "1KLSV‑VE‑A" => "Venezuela: Andes Region",
6045    "1KLSV‑VE‑AA" => "Mérida (Venezuela)",
6046    "1KLSV‑VE‑B" => "Venezuela: Central Region",
6047    "1KLSV‑VE‑C" => "Capital Region and Caracas",
6048    "1KLSV‑VE‑D" => "Venezuela: Guayana Region",
6049    "1KLSV‑VE‑E" => "Venezuela: Insular Region",
6050    "1KLSV‑VE‑EA" => "Margarita Island",
6051    "1KLSV‑VE‑F" => "Los Llanos Region",
6052    "1KLSV‑VE‑G" => "Venezuela: Northeast Region",
6053    "1KLSV‑VE‑H" => "Venezuela: Central-western Region",
6054    "1KLSV‑VE‑J" => "Zuliana Region",
6055    "1KLZ" => "South & Central America: physical features",
6056    "1KLZA" => "South & Central America: rivers, lakes etc",
6057    "1KLZAA" => "Amazon river & tributaries",
6058    "1KLZAC" => "Panama canal",
6059    "1KLZAO" => "Orinoco River",
6060    "1KLZAP" => "Paraná-Río de la Plata & tributaries",
6061    "1KLZAPF" => "Iguazu Falls & river",
6062    "1KLZAT" => "Lake Titicaca",
6063    "1KLZT" => "South & Central America: mountains, hills, plains, coastlines etc",
6064    "1KLZTA" => "Andes mountains",
6065    "1KLZTAB" => "Altiplano / Andean plateau",
6066    "1KLZTG" => "Galapagos Islands",
6067    "1KLZTM" => "Sierra Madre mountains",
6068    "1M" => "Australasia, Oceania, Pacific Islands, Atlantic Islands",
6069    "1MB" => "Australasia",
6070    "1MBF" => "Australia",
6071    "1MBF‑AU‑C" => "Australian Capital Territory (ACT)",
6072    "1MBF‑AU‑CA" => "Canberra",
6073    "1MBF‑AU‑N" => "New South Wales",
6074    "1MBF‑AU‑NS" => "Sydney",
6075    "1MBF‑AU‑Q" => "Queensland",
6076    "1MBF‑AU‑QB" => "Brisbane",
6077    "1MBF‑AU‑S" => "South Australia",
6078    "1MBF‑AU‑SA" => "Adelaide",
6079    "1MBF‑AU‑T" => "Tasmania",
6080    "1MBF‑AU‑TH" => "Hobart",
6081    "1MBF‑AU‑V" => "Victoria",
6082    "1MBF‑AU‑VM" => "Melbourne",
6083    "1MBF‑AU‑W" => "Western Australia",
6084    "1MBF‑AU‑WP" => "Perth",
6085    "1MBF‑AU‑X" => "Northern Territory",
6086    "1MBF‑AU‑XD" => "Darwin",
6087    "1MBN" => "New Zealand",
6088    "1MBZ" => "Australasia: physical features",
6089    "1MBZA" => "Australasia: rivers, lakes etc",
6090    "1MBZAD" => "Murray-Darling river & tributaries",
6091    "1MBZT" => "Australasia: mountains, hills, plains, coastlines etc",
6092    "1MBZTB" => "Great Dividing Range mountains",
6093    "1MBZTD" => "Great Barrier Reef",
6094    "1MBZTU" => "Uluru & The Outback",
6095    "1MK" => "Oceania",
6096    "1MKC" => "Micronesia",
6097    "1MKCB" => "Palau",
6098    "1MKCC" => "Caroline Islands",
6099    "1MKCF" => "Federated States of Micronesia",
6100    "1MKCG" => "Gilbert Islands",
6101    "1MKCM" => "Marshall Islands",
6102    "1MKCN" => "Nauru",
6103    "1MKCU" => "Guam",
6104    "1MKCV" => "Northern Marianas",
6105    "1MKL" => "Melanesia",
6106    "1MKLF" => "Fiji",
6107    "1MKLN" => "New Caledonia",
6108    "1MKLN‑FR‑N" => "Nouméa",
6109    "1MKLP" => "New Guinea",
6110    "1MKLPN" => "Papua New Guinea",
6111    "1MKLS" => "Solomon Islands",
6112    "1MKLV" => "Vanuatu",
6113    "1MKP" => "Polynesia",
6114    "1MKPC" => "Cook Islands",
6115    "1MKPCR" => "Raratonga",
6116    "1MKPE" => "Easter Island",
6117    "1MKPF" => "French Polynesia",
6118    "1MKPFT" => "Tahiti",
6119    "1MKPFT‑FR‑P" => "Papeete",
6120    "1MKPH" => "Hawaiian Islands",
6121    "1MKPK" => "Kiribati",
6122    "1MKPN" => "Niue",
6123    "1MKPP" => "Pitcairn Island",
6124    "1MKPR" => "Samoan Islands",
6125    "1MKPRA" => "American Samoa",
6126    "1MKPRW" => "Western Samoa",
6127    "1MKPT" => "Tonga",
6128    "1MKPU" => "Tokelau",
6129    "1MKPV" => "Tuvalu",
6130    "1MKPW" => "Wallis & Futuna",
6131    "1MKPW‑FR‑M" => "Mata-Utu",
6132    "1MT" => "Atlantic Ocean islands / Polar regions",
6133    "1MTA" => "Atlantic Ocean islands",
6134    "1MTAN" => "North Atlantic islands",
6135    "1MTANB" => "Bermuda",
6136    "1MTANC" => "The Canary Islands",
6137    "1MTANM" => "Madeira",
6138    "1MTANZ" => "Azores",
6139    "1MTAN‑FR‑P" => "Saint Pierre & Miquelon",
6140    "1MTAS" => "South Atlantic islands",
6141    "1MTASC" => "Ascension Island",
6142    "1MTASF" => "Falklands",
6143    "1MTASG" => "South Georgia",
6144    "1MTASH" => "Saint Helena",
6145    "1MTAST" => "Tristan da Cunha",
6146    "1MTN" => "Arctic regions",
6147    "1MTNG" => "Greenland",
6148    "1MTNG‑GL‑A" => "North-east Greenland (National park)",
6149    "1MTNG‑GL‑D" => "Kommune Kujalleq",
6150    "1MTNG‑GL‑G" => "Kommuneqarfik Sermersooq",
6151    "1MTNG‑GL‑GN" => "Nuuk",
6152    "1MTNG‑GL‑J" => "Qeqqata Kommunia",
6153    "1MTNG‑GL‑JK" => "Kangerlussuaq (Søndre Strømfjord)",
6154    "1MTNG‑GL‑M" => "Qaasuitsup Kommunia",
6155    "1MTNG‑GL‑MP" => "Thule Air Base (Pituffik)",
6156    "1MTN‑NO‑J" => "Jan Mayen",
6157    "1MTN‑NO‑S" => "Svalbard",
6158    "1MTS" => "Antarctica",
6159    "1Q" => "Other geographical groupings: Oceans & seas, historical, political etc",
6160    "1QB" => "Historical states, empires & regions",
6161    "1QBA" => "Ancient World",
6162    "1QBAA" => "Assyrian Empires",
6163    "1QBAB" => "Babylonia",
6164    "1QBAE" => "Ancient Egypt",
6165    "1QBAG" => "Ancient Greece",
6166    "1QBAG‑IT‑A" => "Magna Grecia (Hellenic Italy)",
6167    "1QBAH" => "Hittite Empire",
6168    "1QBAL" => "Ancient / Biblical Israel",
6169    "1QBAM" => "Mesopotamia",
6170    "1QBAP" => "Persian Empire",
6171    "1QBAR" => "Ancient Rome",
6172    "1QBAS" => "Sumer",
6173    "1QBAT" => "Etruria",
6174    "1QBC" => "Historical states & empires: multi-continental",
6175    "1QBCB" => "Byzantine Empire",
6176    "1QBCE" => "Islamic Caliphate",
6177    "1QBCL" => "Mongol Empire",
6178    "1QBCS" => "Ottoman Empire",
6179    "1QBCU" => "British Empire",
6180    "1QBC‑FR‑C" => "French Colonial Empire",
6181    "1QBD" => "Historical states & empires: Europe",
6182    "1QBDA" => "Austro-Hungarian Empire",
6183    "1QBDF" => "Holy Roman Empire",
6184    "1QBDK" => "Czechoslovakia",
6185    "1QBDL" => "East Germany, DDR",
6186    "1QBDN" => "West Germany",
6187    "1QBDP" => "Prussia",
6188    "1QBDR" => "USSR, Soviet Union",
6189    "1QBDT" => "Russian tsarist empire",
6190    "1QBDY" => "Yugoslavia",
6191    "1QBD‑FR‑G" => "Gaul",
6192    "1QBD‑FR‑L" => "Carolingian Empire",
6193    "1QBD‑FR‑N" => "Napoleonic Empire",
6194    "1QBD‑FR‑Z" => "France: Historical & cultural regions",
6195    "1QBF" => "Historical states & empires: Asia",
6196    "1QBH" => "Historical states & empires: Africa",
6197    "1QBHK" => "Ashanti Kingdoms",
6198    "1QBK" => "Historical states & empires: Americas",
6199    "1QBKC" => "Confederate States of America",
6200    "1QBKL" => "Inca Empire / Incas",
6201    "1QBKM" => "Mesoamerican civilisations",
6202    "1QBKMA" => "Aztec Empire",
6203    "1QBKMM" => "Mayan states",
6204    "1QBK‑CA‑Q" => "New France",
6205    "1QBK‑CA‑QA" => "New France: Acadia",
6206    "1QBK‑CA‑QL" => "New France: French Louisiana",
6207    "1QBM" => "Historical states & empires: Australasia, Oceania & other land areas",
6208    "1QF" => "Political, socio-economic, cultural & strategic groupings",
6209    "1QFA" => "Arab world / Arab League",
6210    "1QFAM" => "Maghreb",
6211    "1QFC" => "Commonwealth of Nations",
6212    "1QFE" => "EU (European Union)",
6213    "1QFG" => "Developing countries",
6214    "1QFH" => "Industrialized / developed countries",
6215    "1QFL" => "Sápmi",
6216    "1QFM" => "Islamic countries",
6217    "1QFN" => "NATO",
6218    "1QFP" => "OPEC",
6219    "1QFS" => "ASEAN",
6220    "1QFU" => "United Nations",
6221    "1QFW" => "Warsaw Pact, Eastern bloc",
6222    "1QF‑CA‑A" => "Atlantic Canada (NB, PE, NS, NL)",
6223    "1QF‑CA‑C" => "Central Canada (ON, QC)",
6224    "1QF‑CA‑E" => "Eastern Canada (ON, QC, NB, PE, NS, NL)",
6225    "1QF‑CA‑M" => "Canada Maritimes (NB, PE, NS)",
6226    "1QF‑CA‑P" => "Canadian Prairies (AB, SK, MB)",
6227    "1QF‑CA‑T" => "Canadian Territories (YT, NT, NU)",
6228    "1QF‑CA‑W" => "Western Canada (BC, AB, SK, MB)",
6229    "1QM" => "Climatic regions",
6230    "1QMP" => "Polar regions",
6231    "1QMT" => "Tropics",
6232    "1QR" => "Groupings linked by seas",
6233    "1QRM" => "Mediterranean countries",
6234    "1QRP" => "Pacific Rim countries",
6235    "1QS" => "Oceans & seas",
6236    "1QSA" => "Atlantic Ocean",
6237    "1QSAN" => "North Atlantic",
6238    "1QSAS" => "South Atlantic",
6239    "1QSB" => "Baltic Sea",
6240    "1QSC" => "Caribbean Sea",
6241    "1QSD" => "Gulf of Mexico",
6242    "1QSE" => "Irish Sea",
6243    "1QSF" => "North Sea",
6244    "1QSG" => "English Channel",
6245    "1QSJ" => "Caspian Sea",
6246    "1QSK" => "Black Sea",
6247    "1QSL" => "Red Sea",
6248    "1QSM" => "Mediterranean Sea",
6249    "1QSMA" => "Ligurian Sea",
6250    "1QSMB" => "Tyrrhenian Sea",
6251    "1QSMC" => "Adriatic Sea",
6252    "1QSMD" => "Ionian Sea",
6253    "1QSN" => "Indian Ocean",
6254    "1QSNP" => "Persian Gulf",
6255    "1QSP" => "Pacific Ocean",
6256    "1QSPN" => "North Pacific",
6257    "1QSPS" => "South Pacific",
6258    "1QSR" => "Arctic Ocean",
6259    "1QSS" => "Southern Ocean",
6260    "1QST" => "Tasman Sea",
6261    "1Z" => "Space, planets & extraterrestrial locations",
6262    "1ZM" => "The Solar System",
6263    "1ZMA" => "The Sun",
6264    "1ZMC" => "The Planets",
6265    "1ZMCB" => "Mercury",
6266    "1ZMCD" => "Venus",
6267    "1ZMCE" => "Earth",
6268    "1ZMCEL" => "The Moon",
6269    "1ZMCF" => "Mars",
6270    "1ZMCH" => "Jupiter",
6271    "1ZMCK" => "Saturn",
6272    "1ZMCM" => "Uranus",
6273    "1ZMCN" => "Neptune",
6274    "1ZMG" => "Other entities in the Solar System",
6275    "1ZMGP" => "Pluto & dwarf planets",
6276    "1ZMGR" => "Comets",
6277    "1ZMGT" => "Asteroids, the Asteroid belt",
6278    "2A" => "Indo-European languages",
6279    "2AC" => "Germanic & Scandinavian languages",
6280    "2ACB" => "English",
6281    "2ACBA" => "Anglo-Saxon / Old English",
6282    "2ACBC" => "Middle English",
6283    "2ACBK" => "American English",
6284    "2ACBM" => "Australian English",
6285    "2ACBR" => "Canadian English",
6286    "2ACC" => "Scots (Lallans, the Doric)",
6287    "2ACCU" => "Ulster Scots (Ullans)",
6288    "2ACD" => "Dutch",
6289    "2ACF" => "Flemish",
6290    "2ACG" => "German",
6291    "2ACGH" => "Swiss German (Alemannic)",
6292    "2ACGM" => "German, Middle High",
6293    "2ACGP" => "German, Old High",
6294    "2ACK" => "Afrikaans",
6295    "2ACS" => "Scandinavian languages",
6296    "2ACSC" => "Icelandic",
6297    "2ACSD" => "Danish",
6298    "2ACSF" => "Faroese",
6299    "2ACSJ" => "Jutish",
6300    "2ACSN" => "Norwegian",
6301    "2ACSNB" => "Norwegian, bokmål",
6302    "2ACSNK" => "Norwegian, nynorsk",
6303    "2ACSW" => "Swedish",
6304    "2ACSX" => "Old Norse",
6305    "2ACY" => "Yiddish",
6306    "2ACZ" => "Other Germanic languages & dialects",
6307    "2ACZF" => "Frisian",
6308    "2AD" => "Romance, Italic & Rhaeto-Romanic languages",
6309    "2ADC" => "Catalan",
6310    "2ADD" => "Valencian",
6311    "2ADF" => "French",
6312    "2ADFP" => "Provencal",
6313    "2ADFQ" => "Canadian French",
6314    "2ADFQ‑CA‑A" => "Acadian French",
6315    "2ADFQ‑CA‑C" => "Quebec French (Quebecois)",
6316    "2ADH" => "Corsican",
6317    "2ADL" => "Latin",
6318    "2ADP" => "Portuguese",
6319    "2ADPB" => "Brazilian Portuguese",
6320    "2ADQ" => "Galician (Gallego, Galego)",
6321    "2ADR" => "Romanian",
6322    "2ADS" => "Spanish",
6323    "2ADSL" => "Latin-American Spanish",
6324    "2ADT" => "Italian",
6325    "2ADTX" => "Italian dialects",
6326    "2ADV" => "Sardinian",
6327    "2ADW" => "Ladin languages",
6328    "2AD‑ES‑G" => "Aragonese",
6329    "2AD‑ES‑N" => "Aranese",
6330    "2AD‑ES‑T" => "Asturian",
6331    "2AD‑FR‑C" => "Occitan (lenga d’òc)",
6332    "2AF" => "Celtic languages",
6333    "2AFB" => "Breton",
6334    "2AFC" => "Cornish",
6335    "2AFG" => "Gaulish",
6336    "2AFM" => "Manx",
6337    "2AFR" => "Irish Gaelic",
6338    "2AFS" => "Scottish Gaelic",
6339    "2AFW" => "Welsh",
6340    "2AG" => "Slavic (Slavonic) languages",
6341    "2AGB" => "Bulgarian",
6342    "2AGC" => "Church Slavic",
6343    "2AGK" => "Slovak",
6344    "2AGL" => "Belarusian (Belorussian)",
6345    "2AGM" => "Macedonian",
6346    "2AGP" => "Polish",
6347    "2AGR" => "Russian",
6348    "2AGS" => "Serbo-Croatian",
6349    "2AGSC" => "Croatian",
6350    "2AGSS" => "Serbian",
6351    "2AGU" => "Ukrainian",
6352    "2AGV" => "Slovenian",
6353    "2AGW" => "Wendish (Lusatian, Sorbian)",
6354    "2AGZ" => "Czech",
6355    "2AH" => "Hellenic languages",
6356    "2AHA" => "Ancient (Classical) Greek",
6357    "2AHB" => "Biblical Greek",
6358    "2AHM" => "Modern Greek",
6359    "2AJ" => "Baltic & other Indo-European languages",
6360    "2AJB" => "Baltic languages",
6361    "2AJBL" => "Lithuanian",
6362    "2AJBV" => "Latvian (Lettish)",
6363    "2AJK" => "Other Indo-European languages",
6364    "2AJKL" => "Albanian",
6365    "2AJKR" => "Armenian",
6366    "2B" => "Indic, East Indo-European & Dravidian languages",
6367    "2BB" => "Early Indic languages",
6368    "2BBA" => "Sanskrit",
6369    "2BBP" => "Pali",
6370    "2BM" => "Modern Indic languages",
6371    "2BMB" => "Bengali",
6372    "2BMD" => "Marathi",
6373    "2BMG" => "Gujarati",
6374    "2BMH" => "Hindi",
6375    "2BMJ" => "Rajasthani",
6376    "2BMK" => "Kashmiri",
6377    "2BMN" => "Nepali",
6378    "2BMP" => "Punjabi",
6379    "2BMR" => "Romany",
6380    "2BMS" => "Sinhalese",
6381    "2BMSM" => "Maldivian",
6382    "2BMU" => "Urdu",
6383    "2BR" => "Dravidian languages",
6384    "2BRB" => "Brahui",
6385    "2BRK" => "Kannada (Kanarese)",
6386    "2BRL" => "Telugu",
6387    "2BRM" => "Malayalam",
6388    "2BRT" => "Tamil",
6389    "2BX" => "Indo-Iranian languages",
6390    "2BXF" => "Persian (Farsi)",
6391    "2BXK" => "Kurdish",
6392    "2BXL" => "Pashto (Pushto, Afghan)",
6393    "2BXZ" => "Zend Avestan",
6394    "2C" => "Afro-Asiatic languages",
6395    "2CS" => "Semitic languages",
6396    "2CSA" => "Aramaic",
6397    "2CSB" => "Assyro-Babylonian (Akkadian) languages",
6398    "2CSJ" => "Hebrew",
6399    "2CSM" => "Maltese",
6400    "2CSR" => "Arabic",
6401    "2CSS" => "Syriac",
6402    "2CST" => "Ethiopic",
6403    "2CSTA" => "Amharic",
6404    "2CSTT" => "Tigrinya",
6405    "2CX" => "Non-Semitic Afro-Asiatic languages",
6406    "2CXB" => "Berber (Tuareg)",
6407    "2CXC" => "Coptic",
6408    "2CXG" => "Egyptian",
6409    "2CXH" => "Hausa",
6410    "2CXS" => "Somali",
6411    "2CXSR" => "Oromo",
6412    "2F" => "Ural-Altaic & Hyperborean languages",
6413    "2FC" => "Finno-Ugric languages",
6414    "2FCD" => "Estonian",
6415    "2FCF" => "Finnish (Suomi)",
6416    "2FCL" => "Sami",
6417    "2FCLD" => "Southern Sami",
6418    "2FCLF" => "Northern Sami",
6419    "2FCLL" => "Lule Sami",
6420    "2FCLN" => "Inari Sami",
6421    "2FCLS" => "Skolt Sami",
6422    "2FCLX" => "Sami languages (other)",
6423    "2FCM" => "Hungarian (Magyar)",
6424    "2FM" => "Turkic languages",
6425    "2FMC" => "Turkish",
6426    "2FMH" => "Kirghiz",
6427    "2FMK" => "Kazakh",
6428    "2FMN" => "Turkmen",
6429    "2FMU" => "Uzbek",
6430    "2FMZ" => "Azerbaijani",
6431    "2FV" => "Mongolian",
6432    "2FW" => "Tungusic languages",
6433    "2FWK" => "Evenki",
6434    "2FWM" => "Manchu",
6435    "2FX" => "Hyperborean & Palaeosiberian languages",
6436    "2G" => "East & Southeast Asian languages",
6437    "2GD" => "Sino-Tibetan languages",
6438    "2GDB" => "Burmese",
6439    "2GDC" => "Chinese",
6440    "2GDCC" => "Cantonese",
6441    "2GDCK" => "Hokkien",
6442    "2GDCM" => "Mandarin",
6443    "2GDCW" => "Wu",
6444    "2GDCY" => "Amoy",
6445    "2GDK" => "Karen",
6446    "2GDT" => "Tibetan",
6447    "2GJ" => "Japanese",
6448    "2GK" => "Korean",
6449    "2GR" => "Other Southeast Asian languages, Austroasiatic languages",
6450    "2GRH" => "Cambodian (Khmer)",
6451    "2GRL" => "Lao",
6452    "2GRM" => "Hmong (Miao)",
6453    "2GRS" => "Thai (Siamese)",
6454    "2GRV" => "Vietnamese",
6455    "2H" => "African languages",
6456    "2HC" => "Niger-Congo languages",
6457    "2HCB" => "Bantu languages",
6458    "2HCBA" => "Bantu proper (Narrow Bantu)",
6459    "2HCBB" => "Central Bantu languages",
6460    "2HCBBC" => "Chichewa (Chewa)",
6461    "2HCBBF" => "Chilomwe (Lomwe)",
6462    "2HCBBH" => "Chinyanja (Cinyanja, Nyanja)",
6463    "2HCBBJ" => "Chitonga (Tonga)",
6464    "2HCBBL" => "Chitumbuka (Tumbuka)",
6465    "2HCBBN" => "Chiyao (Yao)",
6466    "2HCBBP" => "Icibemba (Bemba)",
6467    "2HCBBQ" => "Kiikaonde (Kaonde)",
6468    "2HCBBR" => "Kongo",
6469    "2HCBBS" => "Lunda",
6470    "2HCBBU" => "Luvale",
6471    "2HCBD" => "kiSwahili (Swahili)",
6472    "2HCBH" => "OtjiHerero (Herero)",
6473    "2HCBK" => "Kikuyu",
6474    "2HCBL" => "Nyoro-Ganda group",
6475    "2HCBLG" => "Luganda (Ganda)",
6476    "2HCBLR" => "Nyankore (Runyankore-Rukiga)",
6477    "2HCBM" => "Fang (Yaunde-Fang)",
6478    "2HCBN" => "Duala",
6479    "2HCBP" => "Tshivenda & Venda group",
6480    "2HCBQ" => "Shona",
6481    "2HCBS" => "Sotho-Tswana group",
6482    "2HCBSA" => "Sesotho (Sotho, Sesotho sa Leboa, Southern Sotho)",
6483    "2HCBSB" => "Sepedi (Northern Sotho)",
6484    "2HCBSD" => "Setswana (Tswana)",
6485    "2HCBSF" => "Silozi",
6486    "2HCBV" => "XiTsonga (Tsonga)",
6487    "2HCBW" => "Siswati (Swazi)",
6488    "2HCBX" => "isiXhosa (Xhosa)",
6489    "2HCBY" => "isiNdebele (Ndebele)",
6490    "2HCBZ" => "isiZulu (Zulu)",
6491    "2HCW" => "West Atlantic & Volta Congo languages",
6492    "2HCWF" => "Fulani (Fulah)",
6493    "2HCWV" => "Volta-Congo languages",
6494    "2HCWVB" => "Ibo (Igbo)",
6495    "2HCWVD" => "Dagbani (Dagomba)",
6496    "2HCWVE" => "Ewe",
6497    "2HCWVG" => "Ga",
6498    "2HCWVN" => "Fante",
6499    "2HCWVS" => "Asante Twi",
6500    "2HCWVT" => "Akwapim Twi",
6501    "2HCWVY" => "Yoruba",
6502    "2HK" => "Khoisan languages",
6503    "2HN" => "Nilo-Saharan & Chari-Nile (Macrosudanic) languages",
6504    "2HND" => "Dinka",
6505    "2HNM" => "Masai",
6506    "2HNR" => "Nubian",
6507    "2HNT" => "Teso (Ateso)",
6508    "2HX" => "Other African languages",
6509    "2J" => "American indigenous languages",
6510    "2JN" => "North & Central American indigenous languages",
6511    "2JNA" => "Aleut",
6512    "2JNB" => "Inuit",
6513    "2JNBK" => "Inuktitut",
6514    "2JNC" => "Algonkian (Algonquin) languages",
6515    "2JNCE" => "Cree",
6516    "2JNCJ" => "Ojibway",
6517    "2JND" => "Na-Dene & Athapascan (Athabascan) languages",
6518    "2JNG" => "Iroquoian & Siouan languages",
6519    "2JNM" => "Mayan",
6520    "2JNN" => "Uto-Aztecan languages",
6521    "2JNZ" => "Zuni",
6522    "2JS" => "South American & Caribbean indigenous languages",
6523    "2JSC" => "Carib (Cariban)",
6524    "2JSG" => "Guarani",
6525    "2JSQ" => "Quechuan",
6526    "2P" => "Oceanic & Austronesian languages",
6527    "2PB" => "Australian Aboriginal languages",
6528    "2PC" => "Papuan languages",
6529    "2PCS" => "Susuami",
6530    "2PG" => "Austronesian & Malayo-Polynesian languages",
6531    "2PGB" => "Formosan (Taiwanese)",
6532    "2PGG" => "Malagasy",
6533    "2PGJ" => "Tagalog (Filipino)",
6534    "2PGN" => "Indonesian languages",
6535    "2PGNA" => "Indonesian (Bahasa Indonesia)",
6536    "2PGNC" => "Balinese",
6537    "2PGND" => "Javanese",
6538    "2PGNM" => "Malay (Bahasa Malaysia)",
6539    "2PGP" => "Oceanic & Polynesian languages",
6540    "2PGPA" => "Maori language",
6541    "2PGPF" => "Fijian",
6542    "2PGPG" => "Tongan",
6543    "2PGPH" => "Tahitian",
6544    "2PGPR" => "Rarotongan",
6545    "2PGPS" => "Samoan",
6546    "2PGPW" => "Hawaiian",
6547    "2PGPX" => "Other Oceanic languages",
6548    "2PGPXK" => "Mokilese",
6549    "2PGPXM" => "Marshallese",
6550    "2PGPXN" => "Ponapean",
6551    "2PGPXP" => "Palauan",
6552    "2PGPXT" => "Tokelauan",
6553    "2Z" => "Other languages",
6554    "2ZB" => "Basque",
6555    "2ZC" => "Caucasian languages",
6556    "2ZCG" => "Georgian",
6557    "2ZM" => "Sumerian",
6558    "2ZP" => "Pidgins & Creoles",
6559    "2ZPT" => "Tok Pisin",
6560    "2ZX" => "Artificial languages",
6561    "2ZXA" => "Afrihili",
6562    "2ZXC" => "Occidental",
6563    "2ZXP" => "Esperanto",
6564    "2ZXT" => "Interlingua",
6565    "3B" => "Prehistory",
6566    "3BD" => "Stone Age",
6567    "3BDF" => "Stone Age: Palaeolithic period",
6568    "3BDK" => "Stone Age: Mesolithic period",
6569    "3BDQ" => "Stone Age: Neolithic period",
6570    "3BD‑JP‑J" => "c 16500 to c 1000 BCE (Japanese Jomon period)",
6571    "3BL" => "Bronze Age",
6572    "3BR" => "Iron Age",
6573    "3B‑AA‑E" => "Egypt: Predynastic & Early Dynastic periods (c 5500 to c 2700 BCE)",
6574    "3C" => "BCE period – Protohistory",
6575    "3CD" => "c 4000 to c 3000 BCE",
6576    "3CG" => "c 3000 to c 2000 BCE",
6577    "3CJ" => "c 2000 to c 1000 BCE",
6578    "3CT" => "c 1000 BCE to start of CE period",
6579    "3CT‑DE‑A" => "Germany: the ancient / classical world (c 800 BCE to c 500 CE)",
6580    "3CT‑ES‑A" => "Spain: Ancient History (up to c 200 BCE)",
6581    "3CT‑ES‑B" => "Spain: Roman History (c 200 BCE to c 400 CE)",
6582    "3CT‑IT‑A" => "Ancient Italy (c 1000 to c 500 BCE)",
6583    "3CT‑JP‑Y" => "c 1000 BCE to 300 CE (Japanese Yayoi period)",
6584    "3C‑AA‑E" => "Ancient Egypt (c 2686 BCE to c 323 BCE)",
6585    "3K" => "CE period up to c 1500",
6586    "3KB" => "c 1 CE to c 500 CE",
6587    "3KBF" => "1st century, c 1 to c 99",
6588    "3KBK" => "2nd century, c 100 to c 199",
6589    "3KBN" => "3rd century, c 200 to c 299",
6590    "3KBW" => "4th century, c 300 to c 399",
6591    "3KBY" => "5th century, c 400 to c 499",
6592    "3KB‑AA‑E" => "Egypt: Classical Antiquity (c 332 BCE to c 630 CE)",
6593    "3KB‑GB‑A" => "Roman Britain (c 43 BCE to c 410 CE)",
6594    "3KB‑JP‑K" => "c 300 CE to 591 (Japanese Kofun period)",
6595    "3KH" => "c 500 CE to c 1000 CE",
6596    "3KHF" => "6th century, c 500 to c 599",
6597    "3KHK" => "7th century, c 600 to c 699",
6598    "3KHK‑JP‑A" => "592 CE to 710 CE (Japanese Asuka period)",
6599    "3KHN" => "8th century, c 700 to c 799",
6600    "3KHN‑JP‑N" => "710 to 784 (Japanese Nara period)",
6601    "3KHW" => "9th century, c 800 to c 899",
6602    "3KHY" => "10th century, c 900 to c 999",
6603    "3KH‑AA‑E" => "Mediaeval Egypt (c 630 to c 1517)",
6604    "3KH‑DK‑H" => "Denmark: the Viking Age (c 800 to c 1050)",
6605    "3KH‑ES‑A" => "Spain: Germanic and visigothic invasions (c 400 to c 600)",
6606    "3KH‑GB‑B" => "Anglo-Saxon period (c 400 to c 1066)",
6607    "3KH‑IE‑S" => "Early Christian Ireland (c 400 to c 800)",
6608    "3KH‑IE‑V" => "Viking Ireland (c 800 to c 1014)",
6609    "3KH‑IT‑C" => "Italy: from Germanic Kingdoms to Franks (c 500 to c 1000)",
6610    "3KH‑JP‑H" => "785 to 1068 (Japanese Early and Middle Heian period)",
6611    "3KH‑SE‑H" => "Sweden: the Viking Age (c 800 to c 1050)",
6612    "3KL" => "c 1000 CE to c 1500",
6613    "3KLF" => "11th century, c 1000 to c 1099",
6614    "3KLK" => "12th century, c 1100 to c 1199",
6615    "3KLK‑JP‑H" => "1068 to 1185 (Japanese Late Heian period)",
6616    "3KLN" => "13th century, c 1200 to c 1299",
6617    "3KLN‑GB‑E" => "English conquest of Wales (c 1277 to c 1283)",
6618    "3KLN‑JP‑K" => "1185 to 1333 (Japanese Kamakura period)",
6619    "3KLW" => "14th century, c 1300 to c 1399",
6620    "3KLW‑JP‑C" => "1333 to 1392 (Japanese Northern and Southern Court period)",
6621    "3KLY" => "15th century, c 1400 to c 1499",
6622    "3KLY‑GB‑F" => "Wars of the Roses (c 1455 to c 1487)",
6623    "3KLY‑IT‑E" => "Italy: Renaissance (c 1400 to c 1499)",
6624    "3KLY‑JP‑M" => "1392 to 1573 (Japanese Muromachi period)",
6625    "3KLY‑PL‑A" => "Period of the Jagiellonian dynasty 1386–1572",
6626    "3KL‑GB‑C" => "Norman Conquest & Norman period (1066–1154)",
6627    "3KL‑GB‑D" => "The Plantagenet & mediaeval period (1154–1485)",
6628    "3KL‑IE‑N" => "Norman Ireland (1169 to c 1350)",
6629    "3KL‑IT‑D" => "Italy: Communes, ‘Signorie’ (c 1000 to c 1400)",
6630    "3KL‑PL‑A" => "Period of the Piast dynasty 960–1370",
6631    "3KL‑SE‑J" => "Sweden: Middle Ages (c 1050 to c 1520)",
6632    "3K‑ES‑A" => "Spain: Middle Ages (c 400 to c 1492)",
6633    "3K‑ES‑B" => "Spain: Arab presence (711–1492)",
6634    "3K‑ES‑C" => "Spain: ‘Reconquista’ (711–1492)",
6635    "3K‑IT‑B" => "Italy: c 500 BCE to c 1500 CE",
6636    "3M" => "c 1500 onwards to present day",
6637    "3MD" => "16th century, c 1500 to c 1599",
6638    "3MDB" => "Early 16th century c 1500 to c 1550",
6639    "3MDBA" => "c 1500 to c 1509",
6640    "3MDBF" => "c 1510 to c 1519",
6641    "3MDBH" => "c 1520 to c 1529",
6642    "3MDBJ" => "c 1530 to c 1539",
6643    "3MDBL" => "c 1540 to c 1549",
6644    "3MDQ" => "Later 16th century c 1550 to c 1599",
6645    "3MDQM" => "c 1550 to c 1559",
6646    "3MDQS" => "c 1560 to c 1569",
6647    "3MDQV" => "c 1570 to c 1579",
6648    "3MDQX" => "c 1580 to c 1589",
6649    "3MDQZ" => "c 1590 to c 1599",
6650    "3MDQ‑JP‑A" => "1573 to 1600 (Japanese Azuchi Momoyama period)",
6651    "3MD‑CA‑A" => "North America: New France (1534–1763)",
6652    "3MD‑GB‑G" => "Tudor period (1485–1603)",
6653    "3MD‑GB‑GE" => "Elizabethan era (1558–1603)",
6654    "3MD‑IE‑P" => "Plantations of Ireland (1556–1663)",
6655    "3MD‑SE‑L" => "Sweden: the Vasa era (c 1520 to c 1611)",
6656    "3MG" => "17th century, c 1600 to c 1699",
6657    "3MGB" => "Early 17th century c 1600 to c 1650",
6658    "3MGBA" => "c 1600 to c 1609",
6659    "3MGBF" => "c 1610 to c 1619",
6660    "3MGBH" => "c 1620 to c 1629",
6661    "3MGBJ" => "c 1630 to c 1639",
6662    "3MGBL" => "c 1640 to c 1649",
6663    "3MGB‑GB‑H" => "Jacobean & Early Stuart era (1603–1649)",
6664    "3MGQ" => "Later 17th century c 1650 to c 1699",
6665    "3MGQM" => "c 1650 to c 1659",
6666    "3MGQM‑GB‑J" => "British Civil Wars & Interregnum (c 1639 to 1660)",
6667    "3MGQM‑IE‑C" => "Cromwellian conquest of Ireland (1649–1653)",
6668    "3MGQS" => "c 1660 to c 1669",
6669    "3MGQS‑GB‑K" => "The Restoration & Later Stuart era (1660–1714)",
6670    "3MGQV" => "c 1670 to c 1679",
6671    "3MGQX" => "c 1680 to c 1689",
6672    "3MGQX‑GB‑M" => "The Glorious Revolution (1688–1689)",
6673    "3MGQZ" => "c 1690 to c 1699",
6674    "3MG‑IT‑G" => "Italy: Spanish domination (1559–1714)",
6675    "3MG‑PL‑A" => "Period of the Polish-Lithuanian Commonwealth 1569–1795",
6676    "3MG‑SE‑N" => "The Swedish Empire (c 1611 to c 1718)",
6677    "3MG‑US‑A" => "USA: Colonization and Settlement ( c 1600 to c 1775)",
6678    "3ML" => "18th century, c 1700 to c 1799",
6679    "3MLB" => "Early 18th century c 1700 to c 1750",
6680    "3MLBA" => "c 1700 to c 1709",
6681    "3MLBF" => "c 1710 to c 1719",
6682    "3MLBH" => "c 1720 to c 1729",
6683    "3MLBJ" => "c 1730 to c 1739",
6684    "3MLBL" => "c 1740 to c 1749",
6685    "3MLQ" => "Later 18th century c 1750 to c 1799",
6686    "3MLQM" => "c 1750 to c 1759",
6687    "3MLQS" => "c 1760 to c 1769",
6688    "3MLQV" => "c 1770 to c 1779",
6689    "3MLQX" => "c 1780 to c 1789",
6690    "3MLQZ" => "c 1790 to c 1799",
6691    "3MLQZ‑FR‑A" => "The French Revolution (c 1789 to c 1799)",
6692    "3MLQZ‑IE‑R" => "Irish Rebellion of 1798",
6693    "3MLQ‑PL‑A" => "Period of the Partitions of Poland 1772–1795",
6694    "3MLQ‑SE‑R" => "Sweden: the Gustavian Era (1772–1809)",
6695    "3MLQ‑US‑B" => "American Revolution (1775–1783)",
6696    "3MLQ‑US‑C" => "USA: The New Nation (c 1783 to c 1800)",
6697    "3ML‑DE‑B" => "Germany: the age of Absolutism & Enlightenment (1648–1779)",
6698    "3ML‑GB‑P" => "Georgian era (1714–1837)",
6699    "3ML‑GB‑PR" => "Regency Period (c 1811 to c 1820)",
6700    "3ML‑IT‑H" => "Italy: Austrian domination (1701–1796)",
6701    "3ML‑SE‑Q" => "Sweden: the Age of Liberty (c 1718 to c 1772)",
6702    "3MN" => "19th century, c 1800 to c 1899",
6703    "3MNB" => "Early 19th century c 1800 to c 1850",
6704    "3MNBA" => "c 1800 to c 1809",
6705    "3MNBF" => "c 1810 to c 1819",
6706    "3MNBH" => "c 1820 to c 1829",
6707    "3MNBJ" => "c 1830 to c 1839",
6708    "3MNBJ‑CA‑D" => "Lower Canada Rebellion / Patriots War (1837–1838)",
6709    "3MNBL" => "c 1840 to c 1849",
6710    "3MNBL‑IE‑F" => "Ireland: The Great Famine (1845–1852)",
6711    "3MNB‑DE‑C" => "Germany: the age of the European Revolutions (1780–1848)",
6712    "3MNB‑ES‑A" => "Spain: Spanish War of Independence (1808–1813)",
6713    "3MNB‑GB‑T" => "Industrial revolution (c 1760 to c 1840)",
6714    "3MNB‑IT‑M" => "Italy: Napoleonic era, Restoration, Risorgimento uprisings (1796–1848)",
6715    "3MNB‑US‑D" => "USA: Exploration and Expansion (c 1800 to c 1861)",
6716    "3MNQ" => "Later 19th century c 1850 to c 1899",
6717    "3MNQM" => "c 1850 to c 1859",
6718    "3MNQS" => "c 1860 to c 1869",
6719    "3MNQV" => "c 1870 to c 1879",
6720    "3MNQX" => "c 1880 to c 1889",
6721    "3MNQZ" => "c 1890 to c 1899",
6722    "3MNQZ‑DE‑D" => "Germany: the age of Imperialism (1890–1914)",
6723    "3MNQ‑AR‑D" => "Argentina: period of the Generation of ’80 & the Republica Conservadora 1880–1916",
6724    "3MNQ‑GB‑V" => "Victorian period (1837–1901)",
6725    "3MNQ‑IE‑G" => "Ireland: The Gaelic Revival (c 1850 to 1916)",
6726    "3MNQ‑IT‑N" => "Italy: National Independence & Risorgimento (1850–1861)",
6727    "3MNQ‑IT‑P" => "Italy: National Unification & first decades of the Kingdom of Italy (1861–1900)",
6728    "3MNQ‑JP‑M" => "1868 to 1912 (Japanese Meiji period)",
6729    "3MNQ‑US‑E" => "American Civil War and Reconstruction (1861–1877)",
6730    "3MNQ‑US‑F" => "USA: The Gilded Age (c 1877 to c 1893)",
6731    "3MN‑DK‑G" => "Denmark: Golden Age (c 1800 to c 1850)",
6732    "3MN‑ES‑A" => "Spain: Contemporary history (1808–2000)",
6733    "3MN‑FI‑A" => "Finland: period of Autonomy 1809–1917",
6734    "3MN‑PA‑A" => "Period of the Union of Columbia & Panama 1821–1903",
6735    "3MP" => "20th century, c 1900 to c 1999",
6736    "3MPB" => "Early 20th century c 1900 to c 1950",
6737    "3MPBA" => "c 1900 to c 1909",
6738    "3MPBF" => "c 1910 to c 1919",
6739    "3MPBFB" => "World War One period (1914–1918)",
6740    "3MPBF‑FI‑A" => "Period of Finnish Civil War 1918",
6741    "3MPBF‑IE‑R" => "Ireland: The Revolutionary Period (1916–1922)",
6742    "3MPBG" => "Inter-war period c 1919 to c 1939",
6743    "3MPBGH" => "c 1920 to c 1929",
6744    "3MPBGH‑ES‑A" => "Spain: Dictatorship of Primo de Rivera (1923–1930)",
6745    "3MPBGH‑IE‑C" => "The Irish Civil War (1922–1923)",
6746    "3MPBGH‑US‑J" => "USA: The Jazz Age (1919–1929)",
6747    "3MPBGJ" => "c 1930 to c 1939",
6748    "3MPBGJ‑AR‑A" => "Infamous Decade 1930–1943 (Argentina)",
6749    "3MPBGJ‑DE‑H" => "Germany: National Socialist period (1933–1945)",
6750    "3MPBGJ‑ES‑A" => "Spain: Second Republic (1931–1936)",
6751    "3MPBGJ‑ES‑B" => "Spain: Civil war (1936–1939)",
6752    "3MPBGJ‑US‑K" => "USA: The Great Depression (1929–1939)",
6753    "3MPBG‑DE‑G" => "Germany: Weimar Republic (1918–1933)",
6754    "3MPBG‑IE‑S" => "Irish Free State (1922–1937)",
6755    "3MPBG‑IT‑S" => "Italy: post First World War period & Fascism (1918–1943)",
6756    "3MPBL" => "c 1940 to c 1949",
6757    "3MPBLB" => "World War Two period (c 1939 to c 1945)",
6758    "3MPBLB‑FI‑A" => "Period of The Winter War 1939–1940 & the Continuation War 1941 to 1944",
6759    "3MPBLB‑PL‑A" => "Period of the Warsaw Ghetto uprising of 1943",
6760    "3MPBLB‑PL‑B" => "Period of the Warsaw Rising of 1944",
6761    "3MPBL‑AR‑C" => "Argentina: period of Peronism & the Peron presidencies 1943–1955",
6762    "3MPBL‑DK‑B" => "Denmark: German occupation (1940–1945)",
6763    "3MPBL‑ES‑A" => "Spain: Postwar period (1940–1949)",
6764    "3MPBL‑IT‑T" => "Italy: Liberation from Fascism & Resistance (1943–1945)",
6765    "3MPBL‑IT‑U" => "Italy: post Second World War period & Foundation of Italian Republic (1946–1968)",
6766    "3MPB‑AR‑B" => "Argentina: period of the Saenz Peña Law & First democratic governments 1916–1930",
6767    "3MPB‑ES‑A" => "Spain: End of the Monarchy (c 1900 to c 1931)",
6768    "3MPB‑FI‑A" => "Finland: period of Russification of 1899–1917",
6769    "3MPB‑IT‑R" => "Italy: Giolittian period (1900–1914)",
6770    "3MPB‑JP‑B" => "1912 to 1926 (Japanese Taisho period)",
6771    "3MPB‑JP‑D" => "1926 to 1945 (Japanese pre-war Showa period)",
6772    "3MPB‑US‑H" => "USA: The Progressive Era (c 1890 to c 1929)",
6773    "3MPQ" => "Later 20th century c 1950 to c 1999",
6774    "3MPQM" => "c 1950 to c 1959",
6775    "3MPQM‑US‑N" => "USA: Korean War period (1950–1953)",
6776    "3MPQS" => "c 1960 to c 1969",
6777    "3MPQS‑CA‑Q" => "Quebec: The Quiet Revolution (1960–1968)",
6778    "3MPQS‑DE‑K" => "Germany: Protest of 1968",
6779    "3MPQS‑US‑P" => "USA: Era of Civil Rights Movement (c 1954 to c 1968)",
6780    "3MPQS‑US‑Q" => "USA: Vietnam War period (c 1955 to c 1975)",
6781    "3MPQV" => "c 1970 to c 1979",
6782    "3MPQV‑AR‑C" => "Argentina: period of Military dictatorship 1976–1983",
6783    "3MPQV‑DE‑L" => "German Autumn, 1977",
6784    "3MPQV‑IT‑W" => "Italy: protest movement & ‘Anni di Piombo’ (1969–1980)",
6785    "3MPQX" => "c 1980 to c 1989",
6786    "3MPQZ" => "c 1990 to c 1999",
6787    "3MPQZ‑IT‑X" => "Italy: crisis of the Nineties & so-called Second Republic (1990–1999)",
6788    "3MPQ‑DE‑J" => "Germany: the Cold War era (1945–1990)",
6789    "3MPQ‑ES‑A" => "Spain: Franco´s dictatorship (c 1940 to 1975)",
6790    "3MPQ‑ES‑B" => "Spain: Democratic transition (c 1975 to c 1982)",
6791    "3MPQ‑ES‑C" => "Spain: Democracy (c 1982 to present)",
6792    "3MPQ‑IE‑T" => "Ireland: The Troubles (1968–1999)",
6793    "3MPQ‑IT‑V" => "Italy: reconstruction, economic miracle, social & political transformations (1950–1968)",
6794    "3MPQ‑JP‑B" => "1945 to 1989 (Japanese post-war Showa period)",
6795    "3MPQ‑PL‑A" => "Period of the Polish People’s Republic 1947–1989",
6796    "3MP‑AA‑E" => "Modern Egypt (c 1882 to present)",
6797    "3MP‑JP‑S" => "1926 to 1989 (Japanese Showa period)",
6798    "3MP‑PA‑B" => "Panama: the republican period 1903–1968",
6799    "3MPQ‑PA‑A" => "Panama: the Military Dictatorship period 1968–1989",
6800    "3MP‑SE‑A" => "Sweden: Folkhemmet (c 1930 to 1965)",
6801    "3MR" => "21st century, c 2000 to c 2100",
6802    "3MRB" => "Early 21st century c 2000 to c 2050",
6803    "3MRBA" => "c 2000 to c 2009",
6804    "3MRBF" => "c 2010 to c 2019",
6805    "3MRBH" => "c 2020 to c 2029",
6806    "3MRBJ" => "c 2030 to c 2039",
6807    "3MRBL" => "c 2040 to c 2049",
6808    "3MRB‑JP‑D" => "1989 to 2019 (Japanese Heisei period)",
6809    "3MRB‑JP‑R" => "2019 onwards (Japanese Reiwa period)",
6810    "3M‑AA‑E" => "Early Modern Egypt (c 1517 to c 1914)",
6811    "3M‑ES‑A" => "Spain: Modern history (1492–1808)",
6812    "3M‑ES‑AB" => "Spain: ‘Siglo de oro’ (1492–1690)",
6813    "3M‑JP‑E" => "1600 to 1867 (Japanese Edo period)",
6814    "4C" => "For all educational levels",
6815    "4CA" => "For pre-school learning",
6816    "4CD" => "For primary education",
6817    "4CF" => "For middle / preparatory school education",
6818    "4CL" => "For mandatory secondary education",
6819    "4CN" => "For optional / advanced secondary education",
6820    "4CP" => "For vocational / professional education / training",
6821    "4CPC" => "For vocational / professional certification / qualifications",
6822    "4CT" => "For higher / tertiary / university education",
6823    "4CTB" => "For undergraduate education & equivalents",
6824    "4CTM" => "For graduate / post-graduate & equivalents",
6825    "4CX" => "For adult education",
6826    "4G" => "For international curricula & examinations",
6827    "4GA" => "For International Baccalaureate (IB) pre-diploma level programmes",
6828    "4GAJ" => "For International Baccalaureate (IB) Early Years programme",
6829    "4GAS" => "For International Baccalaureate (IB) Middle Years programme",
6830    "4GB" => "For International Baccalaureate (IB) Diploma",
6831    "4GC" => "For International Baccalaureate (IB) Career-related Certificate",
6832    "4GH" => "For International GCSE (IGCSE)",
6833    "4L" => "For language learning courses & examinations",
6834    "4LB" => "For language proficiency tests / exams",
6835    "4LE" => "ELT examinations & certificates",
6836    "4LEA" => "Cambridge English Exams",
6837    "4LEC" => "International English Language Testing System (IELTS)",
6838    "4LEF" => "Test of English as a Foreign Language (TOEFL)",
6839    "4LEH" => "Test of English for International Communication (TOEIC)",
6840    "4LEP" => "ELT: Exams and tests of English for specific purposes",
6841    "4LZ" => "For specific language learning & courses other than ELT",
6842    "4LZ‑ES‑D" => "Diplomas of Spanish as a Foreign Language (DELE)",
6843    "4LZ‑FR‑D" => "Diplomas of French as a Foreign Language (DELF / DALF / DILF / TCF / TEF)",
6844    "4LZ‑IT‑H" => "Certification of Italian language learning",
6845    "4LZ‑IT‑HB" => "For Italian language learning: CELI Certificate",
6846    "4LZ‑IT‑HD" => "For Italian language learning: CIC Certificate",
6847    "4LZ‑IT‑HF" => "For Italian language learning: PLIDA Certificate",
6848    "4LZ‑IT‑HH" => "For Italian language learning: CILS Certificate",
6849    "4T" => "For specific educational purposes",
6850    "4TC" => "Textbook, coursework",
6851    "4TM" => "Revision & study guide",
6852    "4TN" => "For examinations / tests / assessments",
6853    "4TNC" => "For citizenship exams / tests",
6854    "4TP" => "Content and language integrated learning (CLIL)",
6855    "4TV" => "For supplementary education programmes (compensatory / complementary education)",
6856    "4TW" => "For specific learning difficulties",
6857    "4TY" => "For home learning",
6858    "4Z" => "For specific national or regional educational curricula",
6859    "4Z‑AA‑" => "For Arab world educational systems",
6860    "4Z‑AA‑E" => "For Egyptian educational systems",
6861    "4Z‑AA‑EA" => "For Al-Azhar Education System (Egypt)",
6862    "4Z‑AR‑" => "For the educational curriculum of Argentina",
6863    "4Z‑AR‑A" => "For pre-school education (Argentina)",
6864    "4Z‑AR‑B" => "For primary education (Argentina)",
6865    "4Z‑AR‑BA" => "Primary Education 1st Cycle (Argentina)",
6866    "4Z‑AR‑BC" => "Primary Education 2nd Cycle (Argentina)",
6867    "4Z‑AR‑BD" => "7th Grade Primary Education (Argentina)",
6868    "4Z‑AR‑C" => "For secondary education (Argentina)",
6869    "4Z‑AR‑CA" => "For basic secondary education (Argentina)",
6870    "4Z‑AR‑CB" => "For higher secondary education (Argentina)",
6871    "4Z‑AR‑CC" => "For technical secondary education (Argentina)",
6872    "4Z‑BO‑" => "For the educational curriculum of Bolivia",
6873    "4Z‑CA‑" => "For Canadian educational curricula",
6874    "4Z‑CA‑A" => "For Elementary Education (Canada)",
6875    "4Z‑CA‑C" => "For Secondary Education (Canada)",
6876    "4Z‑CA‑F" => "For College, Pre-University Programs (Canada)",
6877    "4Z‑CA‑H" => "For College, Technical Programs (Canada)",
6878    "4Z‑CA‑J" => "For University, Bachelor’s Degree (Canada)",
6879    "4Z‑CA‑L" => "For University, Master’s Degree (Canada)",
6880    "4Z‑CA‑M" => "For University, Doctorate (Canada)",
6881    "4Z‑CA‑Q" => "For Quebec educational curricula",
6882    "4Z‑CA‑QA" => "Quebec: for Elementary education",
6883    "4Z‑CA‑QC" => "Quebec: for Secondary education",
6884    "4Z‑CA‑QF" => "Quebec: CEGEP pre-university programme",
6885    "4Z‑CA‑QH" => "Quebec: CEGEP technical programme",
6886    "4Z‑CA‑QJ" => "Quebec: for university Batchelor’s degree",
6887    "4Z‑CA‑QK" => "Quebec: for university Master’s degree",
6888    "4Z‑CA‑QL" => "Quebec: for university Doctorate",
6889    "4Z‑CB‑" => "For educational curricula in the Caribbean",
6890    "4Z‑CL‑" => "For the educational curriculum of Chile",
6891    "4Z‑CO‑" => "For the educational curriculum of Colombia",
6892    "4Z‑CR‑" => "For the educational curriculum of Costa Rica",
6893    "4Z‑CU‑" => "For the educational curriculum of Cuba",
6894    "4Z‑DE‑" => "For German educational curricula",
6895    "4Z‑DE‑A" => "For pre-school learning (Germany)",
6896    "4Z‑DE‑B" => "For primary education (Germany)",
6897    "4Z‑DE‑BA" => "For German elementary school",
6898    "4Z‑DE‑C" => "For German common school",
6899    "4Z‑DE‑D" => "For secondary education (Germany)",
6900    "4Z‑DE‑DA" => "For German academic high school add on education",
6901    "4Z‑DE‑DAB" => "For German integrated secondary school",
6902    "4Z‑DE‑DAD" => "For German cooperative comprehensive school",
6903    "4Z‑DE‑DAE" => "For German laboratory school",
6904    "4Z‑DE‑DAF" => "For German intermediate school",
6905    "4Z‑DE‑DAG" => "For German pre-intermediate school",
6906    "4Z‑DE‑DAH" => "For German ten-class secondary school",
6907    "4Z‑DE‑DAJ" => "For German upper school college",
6908    "4Z‑DE‑DAK" => "For German junior high school",
6909    "4Z‑DE‑DAL" => "For German combined middle & secondary school",
6910    "4Z‑DE‑DB" => "For German middle school add on education",
6911    "4Z‑DE‑DBA" => "For German regular school",
6912    "4Z‑DE‑DBB" => "For German regional school",
6913    "4Z‑DE‑DBC" => "For German orientation classes",
6914    "4Z‑DE‑DBD" => "For German schools of a special kind",
6915    "4Z‑DE‑DBE" => "For German secondary school",
6916    "4Z‑DE‑DBF" => "For German municipality school",
6917    "4Z‑DE‑DBG" => "For German craft related junior high or main school",
6918    "4Z‑DE‑DC" => "For German comprehensive school",
6919    "4Z‑DE‑DD" => "For German academic high school",
6920    "4Z‑DE‑DDA" => "For German academic high school – eight year",
6921    "4Z‑DE‑DDB" => "For German academic high school – nine year",
6922    "4Z‑DE‑DJ" => "For German general school",
6923    "4Z‑DE‑DL" => "For German integrated comprehensive school",
6924    "4Z‑DE‑F" => "For vocational education (Germany)",
6925    "4Z‑DE‑FA" => "For German vocational high school",
6926    "4Z‑DE‑FAB" => "For German vocational professional school, two-year course",
6927    "4Z‑DE‑FAD" => "For occupational training one year basic course or for German vocational elementary school",
6928    "4Z‑DE‑FAF" => "For German vocational college",
6929    "4Z‑DE‑FAH" => "For German vocational secondary school",
6930    "4Z‑DE‑FAJ" => "For German vocational professional school qualifying for a certain profession",
6931    "4Z‑DE‑FAL" => "For German vocational school",
6932    "4Z‑DE‑FAM" => "For German preliminary vocational training",
6933    "4Z‑DE‑FAN" => "For German build-up year for vocational training",
6934    "4Z‑DE‑FAP" => "For German courses of education – with double qualifications",
6935    "4Z‑DE‑FB" => "For German vocational upper secondary school",
6936    "4Z‑DE‑FBB" => "For German dual vocational school",
6937    "4Z‑DE‑FBD" => "For German professional academy",
6938    "4Z‑DE‑FBF" => "For German professional high school",
6939    "4Z‑DE‑FBH" => "For German university of applied sciences",
6940    "4Z‑DE‑FBJ" => "For German specialist classes of the dual system of vocational training",
6941    "4Z‑DE‑FBL" => "For German upper secondary vocational school",
6942    "4Z‑DE‑FBM" => "For German secondary vocational school",
6943    "4Z‑DE‑FBN" => "For German upper secondary professional school",
6944    "4Z‑DE‑FBP" => "For German commercial college",
6945    "4Z‑DE‑FBR" => "For German technical college",
6946    "4Z‑DE‑FC" => "For German vocational academy",
6947    "4Z‑DE‑FCB" => "For German integrated vocational training preparation",
6948    "4Z‑DE‑FCD" => "For German independent vocational schools",
6949    "4Z‑DE‑FCF" => "For German occupational training one year prep classes",
6950    "4Z‑DE‑FCH" => "For German independent vocational schools with focus on crafts",
6951    "4Z‑DE‑FCJ" => "For German commercial school",
6952    "4Z‑DE‑FD" => "For German vocational buildup school",
6953    "4Z‑DE‑FF" => "For preparation of entry into professional life – one year school (Germany)",
6954    "4Z‑DE‑FH" => "For preparation of entry into professional life – class (Germany)",
6955    "4Z‑DE‑FJ" => "For preparation of entry into professional life – school (Germany)",
6956    "4Z‑DE‑FL" => "For German vocational professional school",
6957    "4Z‑DE‑FN" => "For German vocational professional school, one year course",
6958    "4Z‑DE‑G" => "For special needs schools (Germany)",
6959    "4Z‑DE‑GA" => "For German special-needs school (with focus on assistance with learning disabilities)",
6960    "4Z‑DE‑GC" => "For German special-needs school (with focus on assistance with mental development)",
6961    "4Z‑DE‑GE" => "For German special-needs school (with focus on assistance with emotional & social development)",
6962    "4Z‑DE‑GH" => "For German special-needs school (with focus on assistance with language learning)",
6963    "4Z‑DE‑GJ" => "For German special-needs school (with focus on assistance with physical & motor development)",
6964    "4Z‑DE‑GL" => "For German special-needs school (with focus on assistance with hearing)",
6965    "4Z‑DE‑GN" => "For German special-needs school (with focus on assistance with vision)",
6966    "4Z‑DE‑H" => "For German College or University Education",
6967    "4Z‑DE‑J" => "For adult education (Germany)",
6968    "4Z‑DE‑JB" => "For German three-year school of adult education",
6969    "4Z‑DE‑L" => "For learning years (Germany)",
6970    "4Z‑DE‑LA" => "For learning year 1 (Germany)",
6971    "4Z‑DE‑LB" => "For learning year 2 (Germany)",
6972    "4Z‑DE‑LC" => "For learning year 3 (Germany)",
6973    "4Z‑DE‑LD" => "For learning year 4 (Germany)",
6974    "4Z‑DE‑LE" => "For learning year 5 (Germany)",
6975    "4Z‑DE‑LF" => "For learning year 6 (Germany)",
6976    "4Z‑DE‑LG" => "For learning year 7 (Germany)",
6977    "4Z‑DE‑LH" => "For learning year 8 (Germany)",
6978    "4Z‑DE‑LJ" => "For learning year 9 (Germany)",
6979    "4Z‑DE‑LK" => "For learning year 10 (Germany)",
6980    "4Z‑DE‑LL" => "For learning year 11 (Germany)",
6981    "4Z‑DE‑LM" => "For learning year 12 (Germany)",
6982    "4Z‑DE‑LN" => "For learning year 13 (Germany)",
6983    "4Z‑DE‑U" => "For specific German vocational, professional or university qualifications",
6984    "4Z‑DE‑UD" => "For specific German professional qualifications & degrees",
6985    "4Z‑DE‑UDA" => "For German law qualifications (bachelors & other undergraduate)",
6986    "4Z‑DE‑UDB" => "For German law qualifications (masters, postgraduate & doctoral)",
6987    "4Z‑DE‑UDC" => "For German first state exam in licensed professions (Erste Staatsexamen)",
6988    "4Z‑DE‑UDD" => "For German training placements in state-licensed professions (Referendariat / Stationen)",
6989    "4Z‑DE‑UDE" => "For German second state exam for licensed professions (Erste Staatsexamen)",
6990    "4Z‑DE‑UDF" => "For German lawyers, paralegals & legal secretaries (professional development & reference)",
6991    "4Z‑DE‑UDG" => "For German tax consulting (professional development & reference)",
6992    "4Z‑DE‑UDH" => "For German curricula leading to certificatied legal specialisms",
6993    "4Z‑DE‑UDI" => "For German tax advisors’ exams",
6994    "4Z‑DE‑UDJ" => "For German civil law notaries’ exams",
6995    "4Z‑DE‑UDK" => "For German auditors’ exams",
6996    "4Z‑DE‑UH" => "For specific German professional/vocational qualifications & degrees (dual education system)",
6997    "4Z‑DE‑UHA" => "For German vocational qualifications working in the land sector",
6998    "4Z‑DE‑UHAA" => "For German vocational qualifications in agriculture, husbandry, forestry, landscaping & horticulture",
6999    "4Z‑DE‑UHAB" => "For German vocational qualifications in land surveying",
7000    "4Z‑DE‑UHB" => "For German vocational qualifications in the food industries",
7001    "4Z‑DE‑UHBA" => "For German vocational qualifications in baking, pastry making & confectionary",
7002    "4Z‑DE‑UHBB" => "For German vocational qualifications as a butcher",
7003    "4Z‑DE‑UHBC" => "For German vocational qualifications as a chef",
7004    "4Z‑DE‑UHBD" => "For German vocational qualifications as a food & beverage specialist",
7005    "4Z‑DE‑UHD" => "For German vocational qualifications in metal production & metal working industries",
7006    "4Z‑DE‑UHDA" => "For German vocational qualifications in precision engineering & related professions",
7007    "4Z‑DE‑UHDB" => "For German vocational qualifications in metal production & processing",
7008    "4Z‑DE‑UHDC" => "For German vocational qualifications in metalworking, plant construction, sheet metalwork, casting, & fitting",
7009    "4Z‑DE‑UHDD" => "For German vocational qualifications as an industrial mechanic or toolmaker",
7010    "4Z‑DE‑UHE" => "For German vocational qualifications in stone, glass & ceramic production & related industries",
7011    "4Z‑DE‑UHEA" => "For German vocational qualifications in stone, glass or ceramics processing & building materials",
7012    "4Z‑DE‑UHEB" => "For German vocational qualifications in mining & quarrying",
7013    "4Z‑DE‑UHF" => "For German vocational qualifications in the cloth & leather industries",
7014    "4Z‑DE‑UHFA" => "For German vocational qualifications in spinning, weaving, textile finishing",
7015    "4Z‑DE‑UHFB" => "For German vocational qualifications in textile processing & leatherworking",
7016    "4Z‑DE‑UHH" => "For German vocational qualifications in engineering, manufacturing & construction",
7017    "4Z‑DE‑UHHA" => "For German vocational qualifications in electrical trades",
7018    "4Z‑DE‑UHHB" => "For German vocational qualifications as technicians or mechanical engineer",
7019    "4Z‑DE‑UHHC" => "For German vocational qualifications as a drafter or drafting technician",
7020    "4Z‑DE‑UHHD" => "For German vocational qualifications in vehicle or aircraft manufacture & maintenance",
7021    "4Z‑DE‑UHHE" => "For German vocational qualifications in construction, wood & plastic processing",
7022    "4Z‑DE‑UHHF" => "For German vocational qualifications in the chemical & plastics industries",
7023    "4Z‑DE‑UHHG" => "For German vocational qualifications in paper manufacture, processing & printing",
7024    "4Z‑DE‑UHJ" => "For German vocational qualifications in scientific, geographical and IT related professions",
7025    "4Z‑DE‑UHJA" => "For German vocational qualifications in chemistry, physics or natural sciences",
7026    "4Z‑DE‑UHJB" => "For German vocational qualifications in IT",
7027    "4Z‑DE‑UHL" => "For German vocational qualifications in transport, logistics, security & safety",
7028    "4Z‑DE‑UHLA" => "For German vocational qualifications in the transport sector",
7029    "4Z‑DE‑UHLB" => "For German vocational qualifications in aviation or seafaring",
7030    "4Z‑DE‑UHLC" => "For German vocational qualifications in quality control & inspection",
7031    "4Z‑DE‑UHLD" => "For German vocational qualifications as packers, warehouse or transport workers",
7032    "4Z‑DE‑UHLE" => "For German vocational qualifications in personal protection & security",
7033    "4Z‑DE‑UHLF" => "For German vocational qualifications in the safety & security professions",
7034    "4Z‑DE‑UHLG" => "For German vocational qualifications in cleansing & waste disposal",
7035    "4Z‑DE‑UHM" => "For German vocational qualifications in commercial services, retail, distribution, hospitality and tourism",
7036    "4Z‑DE‑UHMA" => "For German vocational qualifications in the retail sector",
7037    "4Z‑DE‑UHMB" => "For German vocational qualifications in the wholesale sector",
7038    "4Z‑DE‑UHMC" => "For German vocational qualifications as caretakers & property management",
7039    "4Z‑DE‑UHMD" => "For German vocational qualifications in the hospitality industry",
7040    "4Z‑DE‑UHP" => "For German vocational qualifications in the finance, business & administration sectors",
7041    "4Z‑DE‑UHPA" => "For German vocational qualifications in banking or insurance",
7042    "4Z‑DE‑UHPB" => "For German vocational qualifications in commercial office skills",
7043    "4Z‑DE‑UHPC" => "For German vocational qualifications in management, accounting & business consulting",
7044    "4Z‑DE‑UHPD" => "For German vocational qualifications in public administration",
7045    "4Z‑DE‑UHPE" => "For German vocational qualifications in finance & bookkeeping",
7046    "4Z‑DE‑UHPF" => "For German vocational qualifications in secretarial & office skills",
7047    "4Z‑DE‑UHPG" => "For German vocational qualifications in the legal sector",
7048    "4Z‑DE‑UHQ" => "For German vocational qualifications in the health, social care & educational sectors",
7049    "4Z‑DE‑UHQA" => "For German vocational qualifications in personal care",
7050    "4Z‑DE‑UHQB" => "For German vocational qualifications in health care (licenced)",
7051    "4Z‑DE‑UHQC" => "For German vocational qualifications in health care (without a licence)",
7052    "4Z‑DE‑UHQD" => "For German vocational qualifications in social work",
7053    "4Z‑DE‑UHQE" => "For German vocational qualifications in teaching",
7054    "4Z‑DE‑UHS" => "For German vocational qualifications in the cultural sector, creative industries & the media",
7055    "4Z‑DE‑UHSA" => "For German vocational qualifications in advertising",
7056    "4Z‑DE‑UHSB" => "For German vocational qualifications in art or music",
7057    "4Z‑DE‑UHSC" => "For German vocational qualifications in design or photography",
7058    "4Z‑DE‑UHSD" => "For German vocational qualifications in publishing, librarianship, translation & related sectors",
7059    "4Z‑DK‑" => "For Danish educational curricula",
7060    "4Z‑DK‑A" => "For early education (Denmark)",
7061    "4Z‑DK‑F" => "For elementary school (Denmark)",
7062    "4Z‑DK‑FA" => "For pre-school (Denmark)",
7063    "4Z‑DK‑FB" => "For Grade 0 (Denmark)",
7064    "4Z‑DK‑FC" => "For Grade 1 (Denmark)",
7065    "4Z‑DK‑FD" => "For Grade 2 (Denmark)",
7066    "4Z‑DK‑FE" => "For Grade 3 (Denmark)",
7067    "4Z‑DK‑FF" => "For Grade 4 (Denmark)",
7068    "4Z‑DK‑FG" => "For Grade 5 (Denmark)",
7069    "4Z‑DK‑FH" => "For Grade 6 (Denmark)",
7070    "4Z‑DK‑FI" => "For Grade 7 (Denmark)",
7071    "4Z‑DK‑FJ" => "For Grade 8 (Denmark)",
7072    "4Z‑DK‑FK" => "For Grade 9 (Denmark)",
7073    "4Z‑DK‑FL" => "For Grade 10 (Denmark)",
7074    "4Z‑DK‑G" => "For secondary school (Denmark)",
7075    "4Z‑DK‑GA" => "For HF (Higher Preparatory Exam -Denmark)",
7076    "4Z‑DK‑GB" => "For HHX (Higher Commercial Exam -Denmark)",
7077    "4Z‑DK‑GC" => "For HTX (Higher Technical Exam -Denmark)",
7078    "4Z‑DK‑GD" => "For STX (Students’ Exam -Denmark)",
7079    "4Z‑DK‑H" => "For vocational education and training (Denmark)",
7080    "4Z‑DK‑K" => "For college and professional training (Denmark)",
7081    "4Z‑DK‑N" => "For higher education, universities (Denmark)",
7082    "4Z‑DK‑V" => "For adult vocational education and training (Denmark)",
7083    "4Z‑DK‑X" => "For continuing education (Denmark)",
7084    "4Z‑DO‑" => "For the educational curriculum of the Dominican Republic",
7085    "4Z‑EC‑" => "For the educational curriculum of Ecuador",
7086    "4Z‑EC‑A" => "For pre-school education (Ecuador)",
7087    "4Z‑EC‑B" => "Basic General Education (Ecuador)",
7088    "4Z‑EC‑C" => "Unified General Baccalaureate (Ecuador)",
7089    "4Z‑ES‑" => "For Spanish educational curricula",
7090    "4Z‑ES‑A" => "For general education (Spain)",
7091    "4Z‑ES‑AA" => "For pre-school learning (Spain)",
7092    "4Z‑ES‑AB" => "For primary education (Spain)",
7093    "4Z‑ES‑AC" => "For mandatory secondary education (Spain)",
7094    "4Z‑ES‑AD" => "For optional / advanced secondary education (Spain)",
7095    "4Z‑ES‑AE" => "For vocational / professional education (Spain)",
7096    "4Z‑ES‑AF" => "For higher / tertiary / university education (Spain)",
7097    "4Z‑ES‑B" => "For languages education (Spain)",
7098    "4Z‑ES‑C" => "For music education (Spain)",
7099    "4Z‑ES‑D" => "For dance education (Spain)",
7100    "4Z‑ES‑E" => "For dramatic arts education (Spain)",
7101    "4Z‑ES‑F" => "For arts and design education (Spain)",
7102    "4Z‑ES‑G" => "For sports education (Spain)",
7103    "4Z‑ES‑H" => "For adult education (Spain)",
7104    "4Z‑ES‑J" => "For special education (Spain)",
7105    "4Z‑ES‑K" => "For compensatory education (Spain)",
7106    "4Z‑ES‑L" => "For social guarantee programs (Spain)",
7107    "4Z‑ES‑X" => "For other educational levels or types (Spain)",
7108    "4Z‑FI‑" => "For the educational curriculum of Finland",
7109    "4Z‑FI‑A" => "Pre-primary education (Finland)",
7110    "4Z‑FI‑B" => "Basic education (Finland)",
7111    "4Z‑FI‑BA" => "Basic Education Grades 1–6 (Finland)",
7112    "4Z‑FI‑BB" => "Basic Education Grades 7–9 (Finland)",
7113    "4Z‑FI‑C" => "General upper secondary education (Finland)",
7114    "4Z‑FI‑D" => "Vocational upper secondary education (Finland)",
7115    "4Z‑FR‑" => "For French educational curricula",
7116    "4Z‑GB‑" => "For UK educational curricula",
7117    "4Z‑GB‑A" => "For England & Wales educational curricula",
7118    "4Z‑GB‑AC" => "For National Curriculum (England & Wales)",
7119    "4Z‑GB‑ACA" => "For National Curriculum Early Years (England & Wales)",
7120    "4Z‑GB‑ACF" => "For National Curriculum Key Stage 1 (England & Wales)",
7121    "4Z‑GB‑ACJ" => "For National Curriculum Key Stage 2 (England & Wales)",
7122    "4Z‑GB‑ACL" => "Eleven Plus (11+) exam",
7123    "4Z‑GB‑ACN" => "For National Curriculum Key Stage 3 (England & Wales)",
7124    "4Z‑GB‑ACT" => "For National Curriculum Key Stage 4 & GCSE (England & Wales)",
7125    "4Z‑GB‑AL" => "Designed / suitable for A & AS Level (England & Wales)",
7126    "4Z‑GB‑E" => "For U.K. Exam boards",
7127    "4Z‑GB‑EA" => "AQA – Assessment and Qualifications Alliance",
7128    "4Z‑GB‑EC" => "CCEA – Council for the Curriculum, Examinations & Assessment",
7129    "4Z‑GB‑ED" => "ICAAE – International Curriculum and Assessment Agency Examinations",
7130    "4Z‑GB‑EE" => "Edexcel",
7131    "4Z‑GB‑EF" => "CIE – Cambridge International Examinations",
7132    "4Z‑GB‑ER" => "OCR – Oxford, Cambridge and RSA Examinations",
7133    "4Z‑GB‑ES" => "SQA – Scottish Qualifications Authority",
7134    "4Z‑GB‑EW" => "WJEC (& Educas) – Welsh Joint Education Committee",
7135    "4Z‑GB‑N" => "For Northern Irish educational curricula",
7136    "4Z‑GB‑NC" => "For National Curriculum (Northern Ireland)",
7137    "4Z‑GB‑NCA" => "For National Curriculum Early Years (Northern Ireland)",
7138    "4Z‑GB‑NCF" => "For National Curriculum Key Stage 1 (Northern Ireland)",
7139    "4Z‑GB‑NCJ" => "For National Curriculum Key Stage 2 (Northern Ireland)",
7140    "4Z‑GB‑NCN" => "For National Curriculum Key Stage 3 (Northern Ireland)",
7141    "4Z‑GB‑NCT" => "For National Curriculum Key Stage 4 & GCSE (Northern Ireland)",
7142    "4Z‑GB‑NL" => "Designed / suitable for A & AS Level (Northern Ireland)",
7143    "4Z‑GB‑S" => "For Scottish Curriculum",
7144    "4Z‑GB‑SB" => "For Scottish Curriculum National 4",
7145    "4Z‑GB‑SD" => "For Scottish Curriculum National 5",
7146    "4Z‑GB‑SE" => "For Scottish Curriculum Intermediate 1",
7147    "4Z‑GB‑SG" => "For Scottish Curriculum Intermediate 2",
7148    "4Z‑GB‑SK" => "For Scottish Curriculum Higher",
7149    "4Z‑GB‑SL" => "For Scottish Curriculum Advanced Higher",
7150    "4Z‑GB‑V" => "For UK vocational courses",
7151    "4Z‑GB‑VC" => "For NVQ / SVQ (National / Scottish Vocational Qualification)",
7152    "4Z‑GB‑VN" => "For GNVQ (General National Vocational Qualification)",
7153    "4Z‑GB‑VS" => "For GSVQ (General Scottish Vocational Qualification)",
7154    "4Z‑GB‑VT" => "For BTEC (Business And Technology Education Council)",
7155    "4Z‑GT‑" => "For the educational curriculum of Guatemala",
7156    "4Z‑HN‑" => "For the educational curriculum of Honduras",
7157    "4Z‑IE‑" => "For Irish educational curricula",
7158    "4Z‑IE‑P" => "For Irish primary level curriculum",
7159    "4Z‑IE‑S" => "For Irish secondary level curriculum",
7160    "4Z‑IE‑SJ" => "For Irish Junior Certificate curriculum",
7161    "4Z‑IE‑SL" => "For Irish Leaving Certificate curriculum",
7162    "4Z‑IN‑" => "For the educational curriculum of India",
7163    "4Z‑IN‑A" => "For Primary education (India)",
7164    "4Z‑IN‑AA" => "For Class 1 (India)",
7165    "4Z‑IN‑AB" => "For Class 2 (India)",
7166    "4Z‑IN‑AC" => "For Class 3 (India)",
7167    "4Z‑IN‑AD" => "For Class 4 (India)",
7168    "4Z‑IN‑AE" => "For Class 5 (India)",
7169    "4Z‑IN‑B" => "For Upper Primary education (India)",
7170    "4Z‑IN‑BA" => "For Class 6 (India)",
7171    "4Z‑IN‑BB" => "For Class 7 (India)",
7172    "4Z‑IN‑BC" => "For Class 8 (India)",
7173    "4Z‑IN‑C" => "For Secondary education (India)",
7174    "4Z‑IN‑CA" => "For Class 9 (India)",
7175    "4Z‑IN‑CB" => "For Class 10 (India)",
7176    "4Z‑IN‑D" => "For Senior Secondary education (India)",
7177    "4Z‑IN‑DA" => "For Class 11 (India)",
7178    "4Z‑IN‑DB" => "For Class 12 (India)",
7179    "4Z‑IN‑E" => "For School Exam Boards (India)",
7180    "4Z‑IN‑EB" => "Central Board of Secondary Education (CBSE) Curriculum",
7181    "4Z‑IN‑ED" => "Indian School Certificate(ISC) and Indian Certificate of Secondary education(ICSE) Books",
7182    "4Z‑IN‑EG" => "National Talent Search Examination(NTSE)",
7183    "4Z‑IN‑EJ" => "For Olympiad Exams",
7184    "4Z‑IN‑EN" => "National Council of Educational Research and Training(NCERT)",
7185    "4Z‑IN‑F" => "For Indian State level education, exams and qualifications",
7186    "4Z‑IN‑FB" => "For Indian State Level School Boards",
7187    "4Z‑IN‑FD" => "For Indian State Level Public Service Exams",
7188    "4Z‑IN‑FF" => "For Indian State Level Vocational / Professional Exams and qualifications",
7189    "4Z‑IN‑FH" => "For Indian State level Recruitment tests or exams",
7190    "4Z‑IN‑G" => "For Engineering Qualifications / Entrance Exams (India)",
7191    "4Z‑IN‑GB" => "For National Engineering Entrance Exams (India)",
7192    "4Z‑IN‑GBB" => "Joint Entrance Examination (JEE) Main and JEE Advanced",
7193    "4Z‑IN‑GBD" => "For Graduate Aptitude Test in Engineering (GATE)",
7194    "4Z‑IN‑GD" => "For Regional Engineering Entrance Exams (India)",
7195    "4Z‑IN‑H" => "For Medical Qualifications / Entrance Exams (India)",
7196    "4Z‑IN‑HB" => "National Eligibility cum Entrance Test (NEET-UG)",
7197    "4Z‑IN‑HD" => "All India Institute of Medical Science(AIIMS) and Jawaharlal Institute of Postgraduate Medical Education and Research (JIPMER)",
7198    "4Z‑IN‑HF" => "Bachelor of Pharmacy (B. Pharma) and Nursing Entrance exam",
7199    "4Z‑IN‑K" => "For Accounting, banking, finance and Insurance Qualifications / Exams (India)",
7200    "4Z‑IN‑KA" => "For Chartered Accountant (CA) Exam (India)",
7201    "4Z‑IN‑KB" => "Chartered Financial Accountant(CFA) Exam (India)",
7202    "4Z‑IN‑KC" => "For Actuaries Qualifications / Exams (India)",
7203    "4Z‑IN‑KF" => "For Banking Qualifications / Exams (India)",
7204    "4Z‑IN‑L" => "For Law / Legal Professions Exams and qualifications (India)",
7205    "4Z‑IN‑M" => "For Management / Business Administration Exams / tests (India)",
7206    "4Z‑IN‑N" => "For Vocational, technical and professional Qualifications / Exams (India)",
7207    "4Z‑IN‑NA" => "For Agriculture Entrance Exams/ Pre Veterinary and Fisheries Test (PVT)",
7208    "4Z‑IN‑P" => "For Indian Defence Service Exams",
7209    "4Z‑IN‑PB" => "National Defence Academy/ Combined Defence Services (NDA/CDS)",
7210    "4Z‑IN‑PD" => "Indian Airforce Recruitment tests",
7211    "4Z‑IN‑PE" => "Indian Army Recruitment tests",
7212    "4Z‑IN‑PF" => "Indian Navy Recruitment tests",
7213    "4Z‑IN‑Q" => "For Civil Service Examinations (India)",
7214    "4Z‑IN‑QB" => "Civil Services Examination(CSE)/Indian Foreign Services(IFS)",
7215    "4Z‑IN‑QD" => "Engineering Services Examination (ESE)",
7216    "4Z‑IN‑QF" => "For Staff Selection Commission (SSC) Exams",
7217    "4Z‑IN‑QT" => "For Indian Teaching professions and research tests and exams",
7218    "4Z‑IN‑QTB" => "Central Teacher Eligibility Test (CTET)",
7219    "4Z‑IN‑QTD" => "Post- Graduate Teacher / Trained Graduate Teacher( PGT/TGT) Tests",
7220    "4Z‑IN‑QTF" => "National Eligibility Tests (NET)",
7221    "4Z‑IN‑QTH" => "State Eligibility Tests (SET)",
7222    "4Z‑IN‑R" => "For Indian Central government recruitment tests or entrance exams",
7223    "4Z‑IN‑RB" => "For Indian Railways Board Recruitment Exams",
7224    "4Z‑IN‑RD" => "For Public Sector Undertakings (PSU) Recruitment exams",
7225    "4Z‑IN‑RE" => "For Indian Postal Service Recruitment Exams",
7226    "4Z‑IN‑RF" => "Life Insurance Corporation (LIC) recruitment exams",
7227    "4Z‑IN‑RH" => "For Ordnance Trade Apprentice recruitment tests",
7228    "4Z‑IN‑RJ" => "For Intelligence Bureau (IB) Exams",
7229    "4Z‑IN‑RK" => "For Food Corporation of India (FCI) recruitment exams",
7230    "4Z‑IN‑T" => "For School Entrance Exams / Admission tests(India)",
7231    "4Z‑IN‑TC" => "Central Hindu School (CHS) Entrance Exam",
7232    "4Z‑IN‑TD" => "Jawahar Navodya Vidyalya schools entrance exams",
7233    "4Z‑IN‑TN" => "For Military Academies and Schools Entrance Exams /Admissions tests (India)",
7234    "4Z‑IN‑U" => "For University Entrance Exams and material (India)",
7235    "4Z‑IN‑UB" => "For Aligarh Muslim university (AMU)",
7236    "4Z‑IN‑UC" => "For Allahabad Central University",
7237    "4Z‑IN‑UD" => "For Banaras Hindu University (BHU)",
7238    "4Z‑IN‑UE" => "For University of Delhi (DU)",
7239    "4Z‑IN‑UF" => "For IP University",
7240    "4Z‑IN‑UG" => "For Jamia Millia Islamia (JMI)",
7241    "4Z‑IN‑UH" => "For Jawaharlal Nehru University (JNU)",
7242    "4Z‑IN‑V" => "For Technical institutions and education (India)",
7243    "4Z‑IN‑VB" => "For Institutes of Technology qualifications and exams (India)",
7244    "4Z‑IN‑VBT" => "For Indian Institute of Technology Joint Admission Test (IIT JAM)",
7245    "4Z‑IN‑VD" => "For Industrial Training Institutes (ITI) qualifications and exams",
7246    "4Z‑IN‑VF" => "For Polytechnic qualifications and exams (India)",
7247    "4Z‑IT‑" => "For Italian educational curricula",
7248    "4Z‑IT‑A" => "For Italian high school & teacher training education",
7249    "4Z‑IT‑AC" => "For Italian high school (with Classics specialism)",
7250    "4Z‑IT‑AD" => "For Italian high school (with Science specialism)",
7251    "4Z‑IT‑AG" => "For Italian high school (with Languages specialism)",
7252    "4Z‑IT‑AH" => "For Italian high school (aimed at developing European values and identity)",
7253    "4Z‑IT‑AL" => "For Italian high school (aimed at developing international language skills specific to the specialism chosen)",
7254    "4Z‑IT‑AN" => "For Italian high school (with Humanities and Social science specialism)",
7255    "4Z‑IT‑AP" => "For other Italian high schools & educational curricula",
7256    "4Z‑IT‑AR" => "For Italian teacher training (for former Italian primary school teacher training)",
7257    "4Z‑IT‑AS" => "For Italian teacher training (for former Italian nursery school teacher training)",
7258    "4Z‑IT‑C" => "For artistic education (Italy)",
7259    "4Z‑IT‑CB" => "For Italian high school (with Arts specialism)",
7260    "4Z‑IT‑CE" => "For Italian school of art / art college",
7261    "4Z‑IT‑E" => "For professional education (Italy)",
7262    "4Z‑IT‑EA" => "For Italian professional institute of agriculture & environment",
7263    "4Z‑IT‑EC" => "For Italian professional institute of industry & handicraft",
7264    "4Z‑IT‑EF" => "For Italian professional institute of commerce & tourism",
7265    "4Z‑IT‑EH" => "For Italian professional institute of advertising",
7266    "4Z‑IT‑EL" => "For Italian professional institute of hotel management",
7267    "4Z‑IT‑EN" => "For Italian professional institute of social services",
7268    "4Z‑IT‑EQ" => "For Italian professional institute of auxiliary health services",
7269    "4Z‑IT‑ER" => "For Italian professional institute of maritime activities",
7270    "4Z‑IT‑ES" => "For other Italian professional institutes",
7271    "4Z‑IT‑G" => "For technical education (Italy)",
7272    "4Z‑IT‑GB" => "For Italian technical institute of commerce (chartered accounting)",
7273    "4Z‑IT‑GD" => "For Italian technical institute of business & foreign languages",
7274    "4Z‑IT‑GF" => "For Italian technical institute of Industry",
7275    "4Z‑IT‑GH" => "For Italian technical institute of agriculture",
7276    "4Z‑IT‑GL" => "For Italian technical institute of surveying",
7277    "4Z‑IT‑GM" => "For Italian technical institute of nautical studies",
7278    "4Z‑IT‑GP" => "For Italian technical institute of aeronautics",
7279    "4Z‑IT‑GT" => "For Italian technical institute of tourism",
7280    "4Z‑IT‑GZ" => "For other Italian technical institutes",
7281    "4Z‑JP‑" => "For the educational curricula of Japan",
7282    "4Z‑JP‑A" => "For pre-school learning (Japan)",
7283    "4Z‑JP‑AA" => "For nursery education (Japan)",
7284    "4Z‑JP‑AB" => "For ECEC - Early Childhood Education and Care centres (Japan)",
7285    "4Z‑JP‑AC" => "For kindergarten (Japan)",
7286    "4Z‑JP‑ACA" => "For the first year of kindergarten (Japan)",
7287    "4Z‑JP‑ACB" => "For the second year of kindergarten (Japan)",
7288    "4Z‑JP‑ACC" => "For the third year of kindergarten (Japan)",
7289    "4Z‑JP‑B" => "For primary school learning (Japan)",
7290    "4Z‑JP‑BA" => "For primary school learning year 1 (Japan)",
7291    "4Z‑JP‑BB" => "For primary school learning year 2 (Japan)",
7292    "4Z‑JP‑BC" => "For primary school learning year 3 (Japan)",
7293    "4Z‑JP‑BD" => "For primary school learning year 4 (Japan)",
7294    "4Z‑JP‑BE" => "For primary school learning year 5 (Japan)",
7295    "4Z‑JP‑BF" => "For primary school learning year 6 (Japan)",
7296    "4Z‑JP‑C" => "For junior high school learning (Japan)",
7297    "4Z‑JP‑CA" => "For junior high school learning year 1 (Japan)",
7298    "4Z‑JP‑CB" => "For junior high school learning year 2 (Japan)",
7299    "4Z‑JP‑CC" => "For junior high school learning year 3 (Japan)",
7300    "4Z‑JP‑D" => "For high school / technical college learning (Japan)",
7301    "4Z‑JP‑DA" => "For high school learning - general course (Japan)",
7302    "4Z‑JP‑DAA" => "For high school learning - general course year 1 (Japan)",
7303    "4Z‑JP‑DAB" => "For high school learning - general course year 2 (Japan)",
7304    "4Z‑JP‑DAC" => "For high school learning - general course year 3 (Japan)",
7305    "4Z‑JP‑DB" => "For high school learning - specialised course (Japan)",
7306    "4Z‑JP‑DBA" => "For high school learning - specialised course year 1 (Japan)",
7307    "4Z‑JP‑DBB" => "For high school learning - specialised course year 2 (Japan)",
7308    "4Z‑JP‑DBC" => "For high school learning - specialised course year 3 (Japan)",
7309    "4Z‑JP‑DC" => "For technical college learning (Japan)",
7310    "4Z‑JP‑E" => "For special needs education (Japan)",
7311    "4Z‑JP‑EA" => "For special needs education - pre-school section (Japan)",
7312    "4Z‑JP‑EB" => "For special needs education - elementary school section (Japan)",
7313    "4Z‑JP‑EC" => "For special needs education - junior high school section (Japan)",
7314    "4Z‑JP‑ED" => "For special needs education - senior high school section (Japan)",
7315    "4Z‑JP‑F" => "For Institution under the control of the government (Japan)",
7316    "4Z‑JP‑G" => "For university / college learning (Japan)",
7317    "4Z‑JP‑H" => "For graduate school learning (Japan)",
7318    "4Z‑JP‑K" => "For Japanese Entrance and other exams",
7319    "4Z‑JP‑KA" => "For kindergarten entrance examination (Japan)",
7320    "4Z‑JP‑KB" => "For primary school entrance examination (Japan)",
7321    "4Z‑JP‑KC" => "For junior high school entrance examination (Japan)",
7322    "4Z‑JP‑KD" => "For Test of Lower Secondary School Graduation Certificate (Japan)",
7323    "4Z‑JP‑KE" => "For high school / technical entrance examination (Japan)",
7324    "4Z‑JP‑KF" => "For Test of Upper Secondary School Graduation Certificate examination (Japan)",
7325    "4Z‑JP‑KH" => "For Institution under the control of the government entrance examination (Japan)",
7326    "4Z‑JP‑KJ" => "For university / college entrance examination (Japan)",
7327    "4Z‑JP‑KJA" => "For National Centre Test for University Admissions (Japan)",
7328    "4Z‑JP‑KK" => "For graduate school entrance examination (Japan)",
7329    "4Z‑MX‑" => "For the educational curriculum of Mexico",
7330    "4Z‑NI‑" => "For the educational curriculum of Nicaragua",
7331    "4Z‑NO‑" => "For the educational curriculum of Norway",
7332    "4Z‑NO‑A" => "KL06 Kunnskapsløftet",
7333    "4Z‑NO‑B" => "LK20 Fagfornyelsen",
7334    "4Z‑NO‑C" => "LK20S Fagfornyelsen (sami curricula)",
7335    "4Z‑PA‑" => "For the educational curriculum of Panama",
7336    "4Z‑PA‑A" => "Primary Education (Panama)",
7337    "4Z‑PA‑B" => "Pre-secondary or secondary education (Panama)",
7338    "4Z‑PA‑C" => "Secondary education or Bachillerato (Panama)",
7339    "4Z‑PE‑" => "For the educational curriculum of Peru",
7340    "4Z‑PL‑" => "For the educational curriculum of Poland",
7341    "4Z‑PL‑A" => "For Primary / elementary education (Poland)",
7342    "4Z‑PL‑B" => "For Eighth grade exams (Poland)",
7343    "4Z‑PL‑C" => "For secondary education (Poland)",
7344    "4Z‑PL‑CA" => "For Polish general secondary schools (liceum)",
7345    "4Z‑PL‑CB" => "For Polish technical secondary schools (technikum)",
7346    "4Z‑PL‑CD" => "For Polish basic vocational schools",
7347    "4Z‑PL‑D" => "Polish vocational or professional exams",
7348    "4Z‑PL‑E" => "Polish secondary school leaving exams (Matura)",
7349    "4Z‑PY‑" => "For the educational curriculum of Paraguay",
7350    "4Z‑SV‑" => "For the educational curriculum of El Salvador",
7351    "4Z‑US‑" => "For US educational curricula",
7352    "4Z‑US‑A" => "For SAT (Scholastic Assessment Test) (USA)",
7353    "4Z‑US‑B" => "For ACT (American College Testing) (USA)",
7354    "4Z‑US‑C" => "For GED (General Educational Development Tests) (USA)",
7355    "4Z‑US‑D" => "For GMAT (Graduate Management Admission Test) (USA)",
7356    "4Z‑US‑E" => "For GRE (Graduate Record Examination) (USA)",
7357    "4Z‑US‑F" => "For LSAT (Law School Admission Test) (USA)",
7358    "4Z‑US‑G" => "For MCAT (Medical College Admission Test) (USA)",
7359    "4Z‑US‑H" => "For PSAT & NMSQT (National Merit Scholarship Qualifying Test) (USA)",
7360    "4Z‑US‑I" => "For NTE (National Teacher Examinations) (USA)",
7361    "4Z‑US‑J" => "For NCLEX (National Council Licensure Examination) (USA)",
7362    "4Z‑US‑L" => "For Legal Bar (USA)",
7363    "4Z‑US‑M" => "For High School Entrance (USA)",
7364    "4Z‑US‑N" => "For College Entrance (USA)",
7365    "4Z‑US‑O" => "For Advance Placement (USA)",
7366    "4Z‑US‑P" => "For Armed Forces (USA)",
7367    "4Z‑UY‑" => "For the educational curriculum of Uruguay",
7368    "4Z‑VE‑" => "For the educational curriculum of Venezuela",
7369    "5A" => "Interest age / level",
7370    "5AB" => "For children c 0–36 months",
7371    "5ABB" => "For babies from birth",
7372    "5ABD" => "For babies from 3 months",
7373    "5ABF" => "For babies from 6 months",
7374    "5ABH" => "For infants from c 12 months",
7375    "5ABK" => "Interest age: from c 24 months",
7376    "5AC" => "Interest age: from c 3 years",
7377    "5AD" => "Interest age: from c 4 years",
7378    "5AF" => "Interest age: from c 5 years",
7379    "5AG" => "Interest age: from c 6 years",
7380    "5AH" => "Interest age: from c 7 years",
7381    "5AJ" => "Interest age: from c 8 years",
7382    "5AK" => "Interest age: from c 9 years",
7383    "5AL" => "Interest age: from c 10 years",
7384    "5AM" => "Interest age: from c 11 years",
7385    "5AN" => "Interest age: from c 12 years",
7386    "5AP" => "Interest age: from c 13 years",
7387    "5AQ" => "Interest age: from c 14 years",
7388    "5AR" => "For reluctant or struggling readers (children / teenagers)",
7389    "5AS" => "Interest age: from c 15 years",
7390    "5AT" => "Interest age: from c 16 years",
7391    "5AU" => "Interest age: from c 17 years",
7392    "5AX" => "For adult emergent readers",
7393    "5AZ" => "For people with learning / communication difficulties",
7394    "5H" => "Holidays, events & seasonal interest",
7395    "5HC" => "Holidays & celebrations",
7396    "5HCA" => "New Year",
7397    "5HCC" => "Chinese New Year",
7398    "5HCE" => "Valentine’s Day",
7399    "5HCG" => "Carnival / Mardi Gras",
7400    "5HCJ" => "Mother’s Day",
7401    "5HCL" => "Father’s Day",
7402    "5HCM" => "Midsummer",
7403    "5HCN" => "Mid-Autumn festival",
7404    "5HCP" => "Hallowe’en",
7405    "5HCR" => "Harvest Festivals",
7406    "5HCS" => "Thanksgiving",
7407    "5HCV" => "Midwinter",
7408    "5HCW" => "International Workers Day (Labour Day)",
7409    "5HC‑CN‑D" => "Dragon Boat Festival",
7410    "5HC‑CN‑G" => "Chinese National Day",
7411    "5HC‑CN‑Q" => "Ancestors’ Day",
7412    "5HC‑IE‑B" => "St Brigid’s Day",
7413    "5HC‑IE‑P" => "St Patrick’s Day",
7414    "5HC‑MX‑D" => "Day of the Dead / Día de Muertos",
7415    "5HC‑US‑A" => "US Independence Day",
7416    "5HK" => "Special events",
7417    "5HKA" => "Birthdays",
7418    "5HKB" => "Back to School",
7419    "5HKC" => "Graduation",
7420    "5HKF" => "Baptism",
7421    "5HKM" => "First Communion, Holy Communion",
7422    "5HKQ" => "Confirmation",
7423    "5HKT" => "Bar Mitzvah, Bat Mitzvah",
7424    "5HKU" => "Engagement / Wedding / Marriage",
7425    "5HKV" => "Coming of age celebrations / festivals / rituals",
7426    "5HP" => "Religious holidays",
7427    "5HP‑NL‑N" => "Saint Nicholas Day",
7428    "5HPD" => "Christmas",
7429    "5HPDA" => "Advent",
7430    "5HPF" => "Easter",
7431    "5HPG" => "Holi (Festival of Colours)",
7432    "5HPH" => "Diwali",
7433    "5HPK" => "Ramadan",
7434    "5HPKE" => "Eid al-Fitr",
7435    "5HPL" => "Eid al-Adha",
7436    "5HPU" => "Hanukkah",
7437    "5HPV" => "Passover (Pesach)",
7438    "5HPW" => "Rosh Hashanah",
7439    "5HPWY" => "Yom Kippur",
7440    "5HR" => "Seasonal interest",
7441    "5HRA" => "Seasonal interest: Spring",
7442    "5HRB" => "Seasonal interest: Summer",
7443    "5HRB‑FI‑P" => "Midnight sun",
7444    "5HRC" => "Seasonal interest: Autumn, Fall",
7445    "5HRD" => "Seasonal interest: Winter",
7446    "5HRD‑FI‑P" => "Polar night",
7447    "5J" => "Intended for specific groups",
7448    "5JA" => "Intended specifically for women and/or girls",
7449    "5JB" => "Intended specifically for men and/or boys",
7450    "5L" => "Relating to the stages of life",
7451    "5LB" => "Relating to infancy",
7452    "5LC" => "Relating to childhood",
7453    "5LD" => "Relating to preteen / tween years",
7454    "5LF" => "Relating to adolescence / teenage years",
7455    "5LK" => "Relating to adulthood",
7456    "5LKE" => "Relating to early adulthood",
7457    "5LKM" => "Relating to middle adulthood",
7458    "5LKS" => "Relating to late adulthood / old age",
7459    "5P" => "Relating to specific groups & cultures or social & cultural interests",
7460    "5PB" => "Relating to peoples: ethnic groups, indigenous peoples, cultures, tribes & other groupings of people",
7461    "5PBR" => "Relating to Romani people & Travellers",
7462    "5PBR‑IE‑T" => "Relating to Irish Travellers",
7463    "5PBS" => "Relating to Sami people",
7464    "5PB‑AU‑A" => "Relating to Australian Aboriginal & Torres Strait Islanders",
7465    "5PB‑GB‑A" => "Relating to British Asian people",
7466    "5PB‑GB‑AE" => "Relating to British East Asian people",
7467    "5PB‑GB‑AS" => "Relating to British South Asian people",
7468    "5PB‑GB‑B" => "Relating to Black British people",
7469    "5PB‑GB‑BC" => "Relating to Black British Caribbean people",
7470    "5PB‑GB‑BF" => "Relating to Black British African people",
7471    "5PB‑GB‑N" => "Relating to Ulster-Scots (or Scots-Irish) people",
7472    "5PB‑NO‑K" => "Relating to Kven people",
7473    "5PB‑NZ‑A" => "Relating to Maori people",
7474    "5PB‑US‑B" => "Relating to Amish / Mennonite people",
7475    "5PB‑US‑C" => "Relating to African American people",
7476    "5PB‑US‑D" => "Relating to Asian American people",
7477    "5PB‑US‑E" => "Relating to Native American people",
7478    "5PB‑US‑F" => "Relating to Creole people",
7479    "5PB‑US‑G" => "Relating to Cajun people",
7480    "5PB‑US‑H" => "Relating to Latin / Hispanic American people",
7481    "5PG" => "Relating to religious groups",
7482    "5PGC" => "Relating to Confucian people & groups",
7483    "5PGD" => "Relating to Hindu people & groups",
7484    "5PGF" => "Relating to Buddhist people & groups",
7485    "5PGJ" => "Relating to Jewish people & groups",
7486    "5PGM" => "Relating to Christian people & groups",
7487    "5PGP" => "Relating to Islamic people & groups",
7488    "5PGS" => "Relating to Shinto people & groups",
7489    "5PGT" => "Relating to Taoist people & groups",
7490    "5PS" => "Relating to Gay, Lesbian & bisexual people",
7491    "5PSB" => "Relating to bisexuals",
7492    "5PSG" => "Relating to gay people",
7493    "5PSL" => "Relating to lesbians",
7494    "5PT" => "Relating to transgender people",
7495    "5PX" => "Relating to specific and significant cultural interests",
7496    "5PX‑GB‑S" => "Shakespeare",
7497    "5X" => "Contains explicit material",
7498    "6A" => "Styles (A)",
7499    "6AA" => "Abstractism",
7500    "6AB" => "Abstract Expressionism",
7501    "6AC" => "Art Deco",
7502    "6AD" => "Art Nouveau",
7503    "6AF" => "Arts & Crafts",
7504    "6AG" => "Academic style, Academism, Academicism",
7505    "6AH" => "Aestheticism",
7506    "6AJ" => "Altermodernism",
7507    "6AK" => "Analytic Cubism",
7508    "6AL" => "Arbeitsrat für Kunst",
7509    "6AM" => "Art Informel",
7510    "6AN" => "Arte Povera",
7511    "6AP" => "Assemblage",
7512    "6AQ" => "Avant-garde",
7513    "6B" => "Styles (B)",
7514    "6BA" => "Baroque",
7515    "6BB" => "Barbizon school",
7516    "6BC" => "Bauhaus",
7517    "6BD" => "Berliner Sezession",
7518    "6BF" => "Biedermeier",
7519    "6BG" => "Beat style",
7520    "6BH" => "Bebop",
7521    "6BJ" => "Der Blaue Reiter",
7522    "6BK" => "Bloomsbury Group style",
7523    "6BL" => "Bluegrass",
7524    "6BM" => "Blues",
7525    "6BN" => "Die Brücke",
7526    "6BP" => "Byzantine style",
7527    "6C" => "Styles (C)",
7528    "6CA" => "Classical style",
7529    "6CB" => "Cubism",
7530    "6CC" => "Celtic style",
7531    "6CD" => "Camden Town Group",
7532    "6CF" => "Cloisonnism",
7533    "6CG" => "CoBrA",
7534    "6CH" => "Color Field painting",
7535    "6CJ" => "Computer art",
7536    "6CK" => "Conceptualism",
7537    "6CL" => "Constructivism",
7538    "6CM" => "Country & Western",
7539    "6CN" => "Cubo-Futurism",
7540    "6D" => "Styles (D)",
7541    "6DA" => "Dada",
7542    "6DB" => "Divisionism",
7543    "6DC" => "Düsseldorf School",
7544    "6E" => "Styles (E)",
7545    "6EA" => "Empire style",
7546    "6EB" => "Easy listening",
7547    "6EC" => "The Eight",
7548    "6ED" => "Ancient Etruscan style",
7549    "6EF" => "Expressionism",
7550    "6EG" => "Ancient Egyptian style",
7551    "6EH" => "Epic",
7552    "6EJ" => "Elegy",
7553    "6F" => "Styles (F)",
7554    "6FA" => "Fauvism",
7555    "6FB" => "Fado",
7556    "6FC" => "Flamenco",
7557    "6FD" => "Folk style",
7558    "6FF" => "Futurism",
7559    "6FG" => "Fantasy art",
7560    "6G" => "Styles (G)",
7561    "6GA" => "Gothic",
7562    "6GB" => "Georgian style",
7563    "6GC" => "Ancient Greek style",
7564    "6H" => "Styles (H)",
7565    "6HA" => "Metal, Heavy Metal",
7566    "6HB" => "Hague School",
7567    "6HC" => "Heidelberg School",
7568    "6J" => "Styles (IJ)",
7569    "6JA" => "Impressionism",
7570    "6JB" => "Iberian style",
7571    "6JC" => "Indie",
7572    "6JD" => "Jazz",
7573    "6JF" => "Jack of Diamonds",
7574    "6JG" => "Jugendstil",
7575    "6K" => "Styles (K)",
7576    "6L" => "Styles (L)",
7577    "6LA" => "Lettrism",
7578    "6LB" => "Lyric",
7579    "6M" => "Styles (M)",
7580    "6MA" => "Mannerism",
7581    "6MB" => "Mediaeval style",
7582    "6MC" => "Modernism",
7583    "6MD" => "Macchiaioli",
7584    "6MF" => "Minimalism",
7585    "6MG" => "Ancient Minoan style",
7586    "6MH" => "Mir iskusstva",
7587    "6MJ" => "Mozarabic style",
7588    "6MK" => "Ancient Mycenaean style",
7589    "6N" => "Styles (NO)",
7590    "6NA" => "Naive style",
7591    "6NB" => "Naturalism",
7592    "6NC" => "Op art",
7593    "6ND" => "Outsider art, Art brut",
7594    "6NE" => "Orientalism",
7595    "6NF" => "Les Nabis",
7596    "6NG" => "Nazarene",
7597    "6NH" => "Neo-Classicism",
7598    "6NJ" => "Neo-impressionism",
7599    "6NK" => "New age",
7600    "6NL" => "Norwich School",
7601    "6NM" => "Orphism",
7602    "6NW" => "New Wave",
7603    "6P" => "Styles (P)",
7604    "6PA" => "Pop art",
7605    "6PB" => "Pop music",
7606    "6PC" => "Post-Impressionism",
7607    "6PD" => "Postmodernism",
7608    "6PF" => "Peredvizhniki",
7609    "6PG" => "Pittura Metafisica",
7610    "6PH" => "Pointillism",
7611    "6PJ" => "Prehistoric styles",
7612    "6PK" => "Prog Rock",
7613    "6PL" => "Pre-Raphaelite",
7614    "6PM" => "Psychedelic",
7615    "6PN" => "Punk",
7616    "6PP" => "Purism",
7617    "6Q" => "Styles (Q)",
7618    "6QA" => "Queen Anne style",
7619    "6R" => "Styles (R)",
7620    "6RA" => "Romanticism",
7621    "6RB" => "Romanesque",
7622    "6RC" => "Renaissance style",
7623    "6RD" => "Rococo",
7624    "6RE" => "Regency",
7625    "6RF" => "Rock",
7626    "6RG" => "Rock & Roll",
7627    "6RH" => "Rhythm & blues, R’n’B",
7628    "6RJ" => "Rap & Hip Hop",
7629    "6RK" => "Reggae & Ska",
7630    "6RL" => "Rayonism",
7631    "6RM" => "Realism",
7632    "6RN" => "Relational art",
7633    "6RP" => "Retro art",
7634    "6RQ" => "Return to order",
7635    "6RR" => "Ancient Roman style",
7636    "6S" => "Styles (S)",
7637    "6SA" => "Surrealism",
7638    "6SB" => "Soul & Funk",
7639    "6SC" => "Samba & Bossa Nova",
7640    "6SD" => "Schweizerischer Werkbund",
7641    "6SF" => "Scuola Romana",
7642    "6SG" => "Secession Groups",
7643    "6SH" => "Section d’Or",
7644    "6SJ" => "Shaker style",
7645    "6SK" => "Situationist International",
7646    "6SL" => "Soviet style",
7647    "6SM" => "Spanish Eclecticism",
7648    "6SN" => "De Stijl, Neoplasticism",
7649    "6SP" => "Stuckism International",
7650    "6SQ" => "Sturm und Drang",
7651    "6SR" => "Suprematism",
7652    "6SS" => "Swing",
7653    "6ST" => "Symbolist / symbolism",
7654    "6SU" => "Synthetic Cubism",
7655    "6SV" => "Synthetism",
7656    "6SW" => "Satirical",
7657    "6T" => "Styles (T)",
7658    "6TA" => "Tango",
7659    "6TB" => "Tachism",
7660    "6TC" => "Tartessian style",
7661    "6TE" => "Transavanguardia",
7662    "6U" => "Styles (U)",
7663    "6V" => "Styles (V)",
7664    "6VA" => "Vienna Secession",
7665    "6VB" => "Viking style",
7666    "6VC" => "Visigoth style",
7667    "6VD" => "Vorticism",
7668    "6VE" => "Vernacular",
7669    "6W" => "Styles (W)",
7670    "6X" => "Styles (XYZ)",
7671    "6XZ" => "Zydeco"
7672};
7673
7674static BISAC_CODES: Map<&'static str, &'static str> = phf_map! {
7675    "ANT000000" => "Antiques & Collectibles / General",
7676    "ANT001000" => "Antiques & Collectibles / Americana",
7677    "ANT002000" => "Antiques & Collectibles / Art",
7678    "ANT003000" => "Antiques & Collectibles / Autographs",
7679    "ANT005000" => "Antiques & Collectibles / Books",
7680    "ANT006000" => "Antiques & Collectibles / Bottles",
7681    "ANT007000" => "Antiques & Collectibles / Buttons & Pins",
7682    "ANT008000" => "Antiques & Collectibles / Care & Restoration",
7683    "ANT009000" => "Antiques & Collectibles / Transportation",
7684    "ANT010000" => "Antiques & Collectibles / Clocks & Watches",
7685    "ANT011000" => "Antiques & Collectibles / Coins, Currency & Medals",
7686    "ANT012000" => "Antiques & Collectibles / Comics",
7687    "ANT015000" => "Antiques & Collectibles / Dolls",
7688    "ANT016000" => "Antiques & Collectibles / Firearms & Weapons",
7689    "ANT017000" => "Antiques & Collectibles / Furniture",
7690    "ANT018000" => "Antiques & Collectibles / Glass & Glassware",
7691    "ANT021000" => "Antiques & Collectibles / Jewelry",
7692    "ANT022000" => "Antiques & Collectibles / Kitchenware",
7693    "ANT023000" => "Antiques & Collectibles / Magazines & Newspapers",
7694    "ANT024000" => "Antiques & Collectibles / Military",
7695    "ANT025000" => "Antiques & Collectibles / Performing Arts",
7696    "ANT028000" => "Antiques & Collectibles / Non-Sports Cards",
7697    "ANT029000" => "Antiques & Collectibles / Paper Ephemera",
7698    "ANT031000" => "Antiques & Collectibles / Political",
7699    "ANT032000" => "Antiques & Collectibles / Porcelain & China",
7700    "ANT033000" => "Antiques & Collectibles / Postcards",
7701    "ANT034000" => "Antiques & Collectibles / Posters",
7702    "ANT035000" => "Antiques & Collectibles / Pottery & Ceramics",
7703    "ANT036000" => "Antiques & Collectibles / Radios & Televisions",
7704    "ANT037000" => "Antiques & Collectibles / Records",
7705    "ANT038000" => "Antiques & Collectibles / Reference",
7706    "ANT040000" => "Antiques & Collectibles / Rugs",
7707    "ANT041000" => "Antiques & Collectibles / Silver, Gold & Other Metals",
7708    "ANT042000" => "Antiques & Collectibles / Sports Cards / General",
7709    "ANT042010" => "Antiques & Collectibles / Sports Cards / Baseball",
7710    "ANT042020" => "Antiques & Collectibles / Sports Cards / Basketball",
7711    "ANT042030" => "Antiques & Collectibles / Sports Cards / Football",
7712    "ANT042040" => "Antiques & Collectibles / Sports Cards / Hockey",
7713    "ANT043000" => "Antiques & Collectibles / Sports",
7714    "ANT044000" => "Antiques & Collectibles / Stamps",
7715    "ANT045000" => "Antiques & Collectibles / Teddy Bears",
7716    "ANT047000" => "Antiques & Collectibles / Textiles & Costume",
7717    "ANT049000" => "Antiques & Collectibles / Toy Animals",
7718    "ANT050000" => "Antiques & Collectibles / Toys",
7719    "ANT051000" => "Antiques & Collectibles / Wine",
7720    "ANT052000" => "Antiques & Collectibles / Popular Culture",
7721    "ANT053000" => "Antiques & Collectibles / Figurines",
7722    "ANT054000" => "Antiques & Collectibles / Canadiana",
7723    "ANT055000" => "Antiques & Collectibles / Tobacco-Related",
7724    "ARC000000" => "Architecture / General",
7725    "ARC001000" => "Architecture / Criticism",
7726    "ARC002000" => "Architecture / Decoration & Ornament",
7727    "ARC003000" => "Architecture / Buildings / Residential",
7728    "ARC004000" => "Architecture / Design, Drafting, Drawing & Presentation",
7729    "ARC005000" => "Architecture / History / General",
7730    "ARC005010" => "Architecture / History / Prehistoric & Primitive",
7731    "ARC005020" => "Architecture / History / Ancient & Classical",
7732    "ARC005030" => "Architecture / History / Medieval",
7733    "ARC005040" => "Architecture / History / Renaissance",
7734    "ARC005050" => "Architecture / History / Baroque & Rococo",
7735    "ARC005060" => "Architecture / History / Romanticism",
7736    "ARC005070" => "Architecture / History / Modern (late 19th Century to 1945)",
7737    "ARC005080" => "Architecture / History / Contemporary (1945-)",
7738    "ARC006000" => "Architecture / Individual Architects & Firms / General",
7739    "ARC006010" => "Architecture / Individual Architects & Firms / Essays",
7740    "ARC006020" => "Architecture / Individual Architects & Firms / Monographs",
7741    "ARC007000" => "Architecture / Interior Design / General",
7742    "ARC007010" => "Architecture / Interior Design / Lighting",
7743    "ARC008000" => "Architecture / Landscape",
7744    "ARC009000" => "Architecture / Methods & Materials",
7745    "ARC010000" => "Architecture / Urban & Land Use Planning",
7746    "ARC011000" => "Architecture / Buildings / Public, Commercial & Industrial",
7747    "ARC012000" => "Architecture / Reference",
7748    "ARC013000" => "Architecture / Study & Teaching",
7749    "ARC014000" => "Architecture / Historic Preservation / General",
7750    "ARC014010" => "Architecture / Historic Preservation / Restoration Techniques",
7751    "ARC015000" => "Architecture / Professional Practice",
7752    "ARC016000" => "Architecture / Buildings / Religious",
7753    "ARC017000" => "Architecture / Project Management",
7754    "ARC018000" => "Architecture / Sustainability & Green Design",
7755    "ARC019000" => "Architecture / Codes & Standards",
7756    "ARC020000" => "Architecture / Regional",
7757    "ARC021000" => "Architecture / Security Design",
7758    "ARC022000" => "Architecture / Adaptive Reuse & Renovation",
7759    "ARC023000" => "Architecture / Annuals",
7760    "ARC024000" => "Architecture / Buildings / General",
7761    "ARC024010" => "Architecture / Buildings / Landmarks & Monuments",
7762    "ART000000" => "Art / General",
7763    "ART002000" => "Art / Techniques / Airbrush",
7764    "ART003000" => "Art / Techniques / Calligraphy",
7765    "ART004000" => "Art / Techniques / Cartooning",
7766    "ART006000" => "Art / Collections, Catalogs, Exhibitions / General",
7767    "ART006010" => "Art / Collections, Catalogs, Exhibitions / Group Shows",
7768    "ART006020" => "Art / Collections, Catalogs, Exhibitions / Permanent",
7769    "ART007000" => "Art / Color Theory",
7770    "ART008000" => "Art / Conceptual",
7771    "ART009000" => "Art / Criticism & Theory",
7772    "ART010000" => "Art / Techniques / Drawing",
7773    "ART013000" => "Art / Folk & Outsider Art",
7774    "ART015000" => "Art / History / General",
7775    "ART015010" => "Art / African",
7776    "ART015020" => "Art / American / General",
7777    "ART015030" => "Art / European",
7778    "ART015040" => "Art / Canadian",
7779    "ART015050" => "Art / History / Prehistoric & Primitive",
7780    "ART015060" => "Art / History / Ancient & Classical",
7781    "ART015070" => "Art / History / Medieval",
7782    "ART015080" => "Art / History / Renaissance",
7783    "ART015090" => "Art / History / Baroque & Rococo",
7784    "ART015100" => "Art / History / Modern (late 19th Century to 1945)",
7785    "ART015110" => "Art / History / Contemporary (1945-)",
7786    "ART015120" => "Art / History / Romanticism",
7787    "ART016000" => "Art / Individual Artists / General",
7788    "ART016010" => "Art / Individual Artists / Artists' Books",
7789    "ART016020" => "Art / Individual Artists / Essays",
7790    "ART016030" => "Art / Individual Artists / Monographs",
7791    "ART017000" => "Art / Mixed Media",
7792    "ART018000" => "Art / Techniques / Oil Painting",
7793    "ART019000" => "Art / Asian",
7794    "ART020000" => "Art / Techniques / Painting",
7795    "ART021000" => "Art / Techniques / Pastel Drawing",
7796    "ART023000" => "Art / Popular Culture",
7797    "ART024000" => "Art / Techniques / Printmaking",
7798    "ART025000" => "Art / Reference",
7799    "ART026000" => "Art / Sculpture & Installation",
7800    "ART027000" => "Art / Study & Teaching",
7801    "ART028000" => "Art / Techniques / General",
7802    "ART029000" => "Art / Techniques / Watercolor Painting",
7803    "ART031000" => "Art / Techniques / Acrylic Painting",
7804    "ART033000" => "Art / Techniques / Pen & Ink Drawing",
7805    "ART034000" => "Art / Techniques / Pencil Drawing",
7806    "ART035000" => "Art / Subjects & Themes / Religious",
7807    "ART037000" => "Art / Art & Politics",
7808    "ART038000" => "Art / American / African American",
7809    "ART039000" => "Art / American / Asian American",
7810    "ART040000" => "Art / American / Hispanic American",
7811    "ART041000" => "Art / Native American",
7812    "ART042000" => "Art / Australian & Oceanian",
7813    "ART043000" => "Art / Business Aspects",
7814    "ART044000" => "Art / Caribbean & Latin American",
7815    "ART045000" => "Art / Ceramics",
7816    "ART046000" => "Art / Digital",
7817    "ART047000" => "Art / Middle Eastern",
7818    "ART048000" => "Art / Prints",
7819    "ART049000" => "Art / Russian & Former Soviet Union",
7820    "ART050000" => "Art / Subjects & Themes / General",
7821    "ART050010" => "Art / Subjects & Themes / Human Figure",
7822    "ART050020" => "Art / Subjects & Themes / Landscapes & Seascapes",
7823    "ART050030" => "Art / Subjects & Themes / Plants & Animals",
7824    "ART050040" => "Art / Subjects & Themes / Portraits",
7825    "ART050050" => "Art / Subjects & Themes / Erotica",
7826    "ART051000" => "Art / Techniques / Color",
7827    "ART052000" => "Art / Techniques / Life Drawing",
7828    "ART053000" => "Art / Techniques / Sculpting",
7829    "ART054000" => "Art / Annuals",
7830    "ART055000" => "Art / Body Art & Tattooing",
7831    "ART056000" => "Art / Conservation & Preservation",
7832    "ART057000" => "Art / Film & Video",
7833    "ART058000" => "Art / Graffiti & Street Art",
7834    "ART059000" => "Art / Museum Studies",
7835    "ART060000" => "Art / Performance",
7836    "BIB000000" => "Bibles / General",
7837    "BIB001000" => "Bibles / Christian Standard Bible / General",
7838    "BIB001010" => "Bibles / Christian Standard Bible / Children",
7839    "BIB001020" => "Bibles / Christian Standard Bible / Devotional",
7840    "BIB001030" => "Bibles / Christian Standard Bible / New Testament & Portions",
7841    "BIB001040" => "Bibles / Christian Standard Bible / Reference",
7842    "BIB001050" => "Bibles / Christian Standard Bible / Study",
7843    "BIB001060" => "Bibles / Christian Standard Bible / Text",
7844    "BIB001070" => "Bibles / Christian Standard Bible / Youth & Teen",
7845    "BIB002000" => "Bibles / Contemporary English Version / General",
7846    "BIB002010" => "Bibles / Contemporary English Version / Children",
7847    "BIB002020" => "Bibles / Contemporary English Version / Devotional",
7848    "BIB002030" => "Bibles / Contemporary English Version / New Testament & Portions",
7849    "BIB002040" => "Bibles / Contemporary English Version / Reference",
7850    "BIB002050" => "Bibles / Contemporary English Version / Study",
7851    "BIB002060" => "Bibles / Contemporary English Version / Text",
7852    "BIB002070" => "Bibles / Contemporary English Version / Youth & Teen",
7853    "BIB003000" => "Bibles / English Standard Version / General",
7854    "BIB003010" => "Bibles / English Standard Version / Children",
7855    "BIB003020" => "Bibles / English Standard Version / Devotional",
7856    "BIB003030" => "Bibles / English Standard Version / New Testament & Portions",
7857    "BIB003040" => "Bibles / English Standard Version / Reference",
7858    "BIB003050" => "Bibles / English Standard Version / Study",
7859    "BIB003060" => "Bibles / English Standard Version / Text",
7860    "BIB003070" => "Bibles / English Standard Version / Youth & Teen",
7861    "BIB004000" => "Bibles / God's Word / General",
7862    "BIB004010" => "Bibles / God's Word / Children",
7863    "BIB004020" => "Bibles / God's Word / Devotional",
7864    "BIB004030" => "Bibles / God's Word / New Testament & Portions",
7865    "BIB004040" => "Bibles / God's Word / Reference",
7866    "BIB004050" => "Bibles / God's Word / Study",
7867    "BIB004060" => "Bibles / God's Word / Text",
7868    "BIB004070" => "Bibles / God's Word / Youth & Teen",
7869    "BIB005000" => "Bibles / International Children's Bible / General",
7870    "BIB005010" => "Bibles / International Children's Bible / Children",
7871    "BIB005020" => "Bibles / International Children's Bible / Devotional",
7872    "BIB005030" => "Bibles / International Children's Bible / New Testament & Portions",
7873    "BIB005040" => "Bibles / International Children's Bible / Reference",
7874    "BIB005050" => "Bibles / International Children's Bible / Study",
7875    "BIB005060" => "Bibles / International Children's Bible / Text",
7876    "BIB005070" => "Bibles / International Children's Bible / Youth & Teen",
7877    "BIB006000" => "Bibles / King James Version / General",
7878    "BIB006010" => "Bibles / King James Version / Children",
7879    "BIB006020" => "Bibles / King James Version / Devotional",
7880    "BIB006030" => "Bibles / King James Version / New Testament & Portions",
7881    "BIB006040" => "Bibles / King James Version / Reference",
7882    "BIB006050" => "Bibles / King James Version / Study",
7883    "BIB006060" => "Bibles / King James Version / Text",
7884    "BIB006070" => "Bibles / King James Version / Youth & Teen",
7885    "BIB007000" => "Bibles / La Biblia de las Americas / General",
7886    "BIB007010" => "Bibles / La Biblia de las Americas / Children",
7887    "BIB007020" => "Bibles / La Biblia de las Americas / Devotional",
7888    "BIB007030" => "Bibles / La Biblia de las Americas / New Testament & Portions",
7889    "BIB007040" => "Bibles / La Biblia de las Americas / Reference",
7890    "BIB007050" => "Bibles / La Biblia de las Americas / Study",
7891    "BIB007060" => "Bibles / La Biblia de las Americas / Text",
7892    "BIB007070" => "Bibles / La Biblia de las Americas / Youth & Teen",
7893    "BIB008000" => "Bibles / Multiple Translations / General",
7894    "BIB008010" => "Bibles / Multiple Translations / Children",
7895    "BIB008020" => "Bibles / Multiple Translations / Devotional",
7896    "BIB008030" => "Bibles / Multiple Translations / New Testament & Portions",
7897    "BIB008040" => "Bibles / Multiple Translations / Reference",
7898    "BIB008050" => "Bibles / Multiple Translations / Study",
7899    "BIB008060" => "Bibles / Multiple Translations / Text",
7900    "BIB008070" => "Bibles / Multiple Translations / Youth & Teen",
7901    "BIB009000" => "Bibles / New American Bible / General",
7902    "BIB009010" => "Bibles / New American Bible / Children",
7903    "BIB009020" => "Bibles / New American Bible / Devotional",
7904    "BIB009030" => "Bibles / New American Bible / New Testament & Portions",
7905    "BIB009040" => "Bibles / New American Bible / Reference",
7906    "BIB009050" => "Bibles / New American Bible / Study",
7907    "BIB009060" => "Bibles / New American Bible / Text",
7908    "BIB009070" => "Bibles / New American Bible / Youth & Teen",
7909    "BIB010000" => "Bibles / New American Standard Bible / General",
7910    "BIB010010" => "Bibles / New American Standard Bible / Children",
7911    "BIB010020" => "Bibles / New American Standard Bible / Devotional",
7912    "BIB010030" => "Bibles / New American Standard Bible / New Testament & Portions",
7913    "BIB010040" => "Bibles / New American Standard Bible / Reference",
7914    "BIB010050" => "Bibles / New American Standard Bible / Study",
7915    "BIB010060" => "Bibles / New American Standard Bible / Text",
7916    "BIB010070" => "Bibles / New American Standard Bible / Youth & Teen",
7917    "BIB011000" => "Bibles / New Century Version / General",
7918    "BIB011010" => "Bibles / New Century Version / Children",
7919    "BIB011020" => "Bibles / New Century Version / Devotional",
7920    "BIB011030" => "Bibles / New Century Version / New Testament & Portions",
7921    "BIB011040" => "Bibles / New Century Version / Reference",
7922    "BIB011050" => "Bibles / New Century Version / Study",
7923    "BIB011060" => "Bibles / New Century Version / Text",
7924    "BIB011070" => "Bibles / New Century Version / Youth & Teen",
7925    "BIB012000" => "Bibles / New International Reader's Version / General",
7926    "BIB012010" => "Bibles / New International Reader's Version / Children",
7927    "BIB012020" => "Bibles / New International Reader's Version / Devotional",
7928    "BIB012030" => "Bibles / New International Reader's Version / New Testament & Portions",
7929    "BIB012040" => "Bibles / New International Reader's Version / Reference",
7930    "BIB012050" => "Bibles / New International Reader's Version / Study",
7931    "BIB012060" => "Bibles / New International Reader's Version / Text",
7932    "BIB012070" => "Bibles / New International Reader's Version / Youth & Teen",
7933    "BIB013000" => "Bibles / New International Version / General",
7934    "BIB013010" => "Bibles / New International Version / Children",
7935    "BIB013020" => "Bibles / New International Version / Devotional",
7936    "BIB013030" => "Bibles / New International Version / New Testament & Portions",
7937    "BIB013040" => "Bibles / New International Version / Reference",
7938    "BIB013050" => "Bibles / New International Version / Study",
7939    "BIB013060" => "Bibles / New International Version / Text",
7940    "BIB013070" => "Bibles / New International Version / Youth & Teen",
7941    "BIB014000" => "Bibles / New King James Version / General",
7942    "BIB014010" => "Bibles / New King James Version / Children",
7943    "BIB014020" => "Bibles / New King James Version / Devotional",
7944    "BIB014030" => "Bibles / New King James Version / New Testament & Portions",
7945    "BIB014040" => "Bibles / New King James Version / Reference",
7946    "BIB014050" => "Bibles / New King James Version / Study",
7947    "BIB014060" => "Bibles / New King James Version / Text",
7948    "BIB014070" => "Bibles / New King James Version / Youth & Teen",
7949    "BIB015000" => "Bibles / New Living Translation / General",
7950    "BIB015010" => "Bibles / New Living Translation / Children",
7951    "BIB015020" => "Bibles / New Living Translation / Devotional",
7952    "BIB015030" => "Bibles / New Living Translation / New Testament & Portions",
7953    "BIB015040" => "Bibles / New Living Translation / Reference",
7954    "BIB015050" => "Bibles / New Living Translation / Study",
7955    "BIB015060" => "Bibles / New Living Translation / Text",
7956    "BIB015070" => "Bibles / New Living Translation / Youth & Teen",
7957    "BIB016000" => "Bibles / New Revised Standard Version / General",
7958    "BIB016010" => "Bibles / New Revised Standard Version / Children",
7959    "BIB016020" => "Bibles / New Revised Standard Version / Devotional",
7960    "BIB016030" => "Bibles / New Revised Standard Version / New Testament & Portions",
7961    "BIB016040" => "Bibles / New Revised Standard Version / Reference",
7962    "BIB016050" => "Bibles / New Revised Standard Version / Study",
7963    "BIB016060" => "Bibles / New Revised Standard Version / Text",
7964    "BIB016070" => "Bibles / New Revised Standard Version / Youth & Teen",
7965    "BIB017000" => "Bibles / Nueva Version International / General",
7966    "BIB017010" => "Bibles / Nueva Version International / Children",
7967    "BIB017020" => "Bibles / Nueva Version International / Devotional",
7968    "BIB017030" => "Bibles / Nueva Version International / New Testament & Portions",
7969    "BIB017040" => "Bibles / Nueva Version International / Reference",
7970    "BIB017050" => "Bibles / Nueva Version International / Study",
7971    "BIB017060" => "Bibles / Nueva Version International / Text",
7972    "BIB017070" => "Bibles / Nueva Version International / Youth & Teen",
7973    "BIB018000" => "Bibles / Other Translations / General",
7974    "BIB018010" => "Bibles / Other Translations / Children",
7975    "BIB018020" => "Bibles / Other Translations / Devotional",
7976    "BIB018030" => "Bibles / Other Translations / New Testament & Portions",
7977    "BIB018040" => "Bibles / Other Translations / Reference",
7978    "BIB018050" => "Bibles / Other Translations / Study",
7979    "BIB018060" => "Bibles / Other Translations / Text",
7980    "BIB018070" => "Bibles / Other Translations / Youth & Teen",
7981    "BIB019000" => "Bibles / Reina Valera / General",
7982    "BIB019010" => "Bibles / Reina Valera / Children",
7983    "BIB019020" => "Bibles / Reina Valera / Devotional",
7984    "BIB019030" => "Bibles / Reina Valera / New Testament & Portions",
7985    "BIB019040" => "Bibles / Reina Valera / Reference",
7986    "BIB019050" => "Bibles / Reina Valera / Study",
7987    "BIB019060" => "Bibles / Reina Valera / Text",
7988    "BIB019070" => "Bibles / Reina Valera / Youth & Teen",
7989    "BIB020000" => "Bibles / The Message / General",
7990    "BIB020010" => "Bibles / The Message / Children",
7991    "BIB020020" => "Bibles / The Message / Devotional",
7992    "BIB020030" => "Bibles / The Message / New Testament & Portions",
7993    "BIB020040" => "Bibles / The Message / Reference",
7994    "BIB020050" => "Bibles / The Message / Study",
7995    "BIB020060" => "Bibles / The Message / Text",
7996    "BIB020070" => "Bibles / The Message / Youth & Teen",
7997    "BIB021000" => "Bibles / Today's New International Version / General",
7998    "BIB021010" => "Bibles / Today's New International Version / Children",
7999    "BIB021020" => "Bibles / Today's New International Version / Devotional",
8000    "BIB021030" => "Bibles / Today's New International Version / New Testament & Portions",
8001    "BIB021040" => "Bibles / Today's New International Version / Reference",
8002    "BIB021050" => "Bibles / Today's New International Version / Study",
8003    "BIB021060" => "Bibles / Today's New International Version / Text",
8004    "BIB021070" => "Bibles / Today's New International Version / Youth & Teen",
8005    "BIB022000" => "Bibles / Common English Bible / General",
8006    "BIB022010" => "Bibles / Common English Bible / Children",
8007    "BIB022020" => "Bibles / Common English Bible / Devotional",
8008    "BIB022030" => "Bibles / Common English Bible / New Testament & Portions",
8009    "BIB022040" => "Bibles / Common English Bible / Reference",
8010    "BIB022050" => "Bibles / Common English Bible / Study",
8011    "BIB022060" => "Bibles / Common English Bible / Text",
8012    "BIB022070" => "Bibles / Common English Bible / Youth & Teen",
8013    "BIO000000" => "Biography & Autobiography / General",
8014    "BIO001000" => "Biography & Autobiography / Artists, Architects,",
8015    "BIO002000" => "Biography & Autobiography / Cultural Heritage",
8016    "BIO003000" => "Biography & Autobiography / Business",
8017    "BIO004000" => "Biography & Autobiography / Composers & Musicians",
8018    "BIO005000" => "Biography & Autobiography / Entertainment & Performing Arts",
8019    "BIO006000" => "Biography & Autobiography / Historical",
8020    "BIO007000" => "Biography & Autobiography / Literary",
8021    "BIO008000" => "Biography & Autobiography / Military",
8022    "BIO009000" => "Biography & Autobiography / Philosophers",
8023    "BIO010000" => "Biography & Autobiography / Political",
8024    "BIO011000" => "Biography & Autobiography / Presidents & Heads of State",
8025    "BIO012000" => "Biography & Autobiography / Reference",
8026    "BIO013000" => "Biography & Autobiography / Rich & Famous",
8027    "BIO014000" => "Biography & Autobiography / Royalty",
8028    "BIO015000" => "Biography & Autobiography / Science & Technology",
8029    "BIO016000" => "Biography & Autobiography / Sports",
8030    "BIO017000" => "Biography & Autobiography / Medical",
8031    "BIO018000" => "Biography & Autobiography / Religious",
8032    "BIO019000" => "Biography & Autobiography / Educators",
8033    "BIO020000" => "Biography & Autobiography / Lawyers & Judges",
8034    "BIO021000" => "Biography & Autobiography / Social Scientists & Psychologists",
8035    "BIO022000" => "Biography & Autobiography / Women",
8036    "BIO023000" => "Biography & Autobiography / Adventurers & Explorers",
8037    "BIO024000" => "Biography & Autobiography / Criminals & Outlaws",
8038    "BIO025000" => "Biography & Autobiography / Editors, Journalists",
8039    "BIO026000" => "Biography & Autobiography / Personal Memoirs",
8040    "BIO027000" => "Biography & Autobiography / Law Enforcement",
8041    "BIO028000" => "Biography & Autobiography / Native Americans",
8042    "BIO029000" => "Biography & Autobiography / Culinary",
8043    "BIO030000" => "Biography & Autobiography / Environmentalists & Naturalists",
8044    "BIO031000" => "Biography & Autobiography / Gay & Lesbian",
8045    "BIO032000" => "Biography & Autobiography / Social Activists",
8046    "BUS000000" => "Business & Economics / General",
8047    "BUS001000" => "Business & Economics / Accounting/General",
8048    "BUS001010" => "Business & Economics / Accounting / Financial",
8049    "BUS001020" => "Business & Economics / Accounting / Governmental",
8050    "BUS001030" => "Business & Economics / International / Accounting",
8051    "BUS001040" => "Business & Economics / Accounting / Managerial",
8052    "BUS001050" => "Business & Economics / Accounting / Standards (GAAP, IFRS ,etc.))",
8053    "BUS002000" => "Business & Economics / Advertising & Promotion",
8054    "BUS003000" => "Business & Economics / Auditing",
8055    "BUS004000" => "Business & Economics / Banks & Banking",
8056    "BUS005000" => "Business & Economics / Bookkeeping",
8057    "BUS006000" => "Business & Economics / Budgeting",
8058    "BUS007000" => "Business & Economics / Business Communication / General",
8059    "BUS007010" => "Business & Economics / Business Communication / Meetings & Presentations",
8060    "BUS008000" => "Business & Economics / Business Ethics",
8061    "BUS009000" => "Business & Economics / Business Etiquette",
8062    "BUS010000" => "Business & Economics / Business Law",
8063    "BUS011000" => "Business & Economics / Business Writing",
8064    "BUS012000" => "Business & Economics / Careers / General",
8065    "BUS012010" => "Business & Economics / Careers / Internships",
8066    "BUS013000" => "Business & Economics / Commercial Policy",
8067    "BUS014000" => "Business & Economics / Investments & Securities / Commodities",
8068    "BUS015000" => "Business & Economics / Mergers & Acquisitions",
8069    "BUS016000" => "Business & Economics / Consumer Behavior",
8070    "BUS017000" => "Business & Economics / Corporate Finance",
8071    "BUS018000" => "Business & Economics / Customer Relations",
8072    "BUS019000" => "Business & Economics / Decision-Making & Problem Solving",
8073    "BUS020000" => "Business & Economics / Development / Business Development",
8074    "BUS021000" => "Business & Economics / Econometrics",
8075    "BUS022000" => "Business & Economics / Economic Conditions",
8076    "BUS023000" => "Business & Economics / Economic History",
8077    "BUS024000" => "Business & Economics / Education",
8078    "BUS025000" => "Business & Economics / Entrepreneurship",
8079    "BUS026000" => "Business & Economics / Exports & Imports",
8080    "BUS027000" => "Business & Economics / Finance",
8081    "BUS028000" => "Business & Economics / Foreign Exchange",
8082    "BUS029000" => "Business & Economics / Free Enterprise",
8083    "BUS030000" => "Business & Economics / Human Resources & Personnel Management",
8084    "BUS031000" => "Business & Economics / Inflation",
8085    "BUS032000" => "Business & Economics / Infrastructure",
8086    "BUS033000" => "Business & Economics / Insurance / General",
8087    "BUS033010" => "Business & Economics / Insurance / Automobile",
8088    "BUS033020" => "Business & Economics / Insurance / Casualty",
8089    "BUS033040" => "Business & Economics / Insurance / Health",
8090    "BUS033050" => "Business & Economics / Insurance / Liability",
8091    "BUS033060" => "Business & Economics / Insurance / Life",
8092    "BUS033070" => "Business & Economics / Insurance / Risk Assessment & Management",
8093    "BUS033080" => "Business & Economics / Insurance / Property",
8094    "BUS034000" => "Business & Economics / Interest",
8095    "BUS035000" => "Business & Economics / International / General",
8096    "BUS036000" => "Business & Economics / Investments & Securities / General",
8097    "BUS036010" => "Business & Economics / Investments & Securities / Bonds",
8098    "BUS036020" => "Business & Economics / Investments & Securities / Futures",
8099    "BUS036030" => "Business & Economics / Investments & Securities / Mutual Funds",
8100    "BUS036040" => "Business & Economics / Investments & Securities / Options",
8101    "BUS036050" => "Business & Economics / Investments & Securities / Real Estate",
8102    "BUS036060" => "Business & Economics / Investments & Securities / Stocks",
8103    "BUS037020" => "Business & Economics / Careers / Job Hunting",
8104    "BUS038000" => "Business & Economics / Labor",
8105    "BUS039000" => "Business & Economics / Economics / Macroeconomics",
8106    "BUS040000" => "Business & Economics / Mail Order",
8107    "BUS041000" => "Business & Economics / Management",
8108    "BUS042000" => "Business & Economics / Management Science",
8109    "BUS043000" => "Business & Economics / Marketing / General",
8110    "BUS043010" => "Business & Economics / Marketing / Direct",
8111    "BUS043020" => "Business & Economics / Marketing / Industrial",
8112    "BUS043030" => "Business & Economics / International / Marketing",
8113    "BUS043040" => "Business & Economics / Marketing / Multilevel",
8114    "BUS043050" => "Business & Economics / Marketing / Telemarketing",
8115    "BUS043060" => "Business & Economics / Marketing / Research",
8116    "BUS044000" => "Business & Economics / Economics / Microeconomics",
8117    "BUS045000" => "Business & Economics / Money & Monetary Policy",
8118    "BUS046000" => "Business & Economics / Motivational",
8119    "BUS047000" => "Business & Economics / Negotiating",
8120    "BUS048000" => "Business & Economics / New Business Enterprises",
8121    "BUS049000" => "Business & Economics / Operations Research",
8122    "BUS050000" => "Business & Economics / Personal Finance / General",
8123    "BUS050010" => "Business & Economics / Personal Finance / Budgeting",
8124    "BUS050020" => "Business & Economics / Personal Finance / Investing",
8125    "BUS050030" => "Business & Economics / Personal Finance / Money Management",
8126    "BUS050040" => "Business & Economics / Personal Finance / Retirement Planning",
8127    "BUS050050" => "Business & Economics / Personal Finance / Taxation",
8128    "BUS051000" => "Business & Economics / Public Finance",
8129    "BUS052000" => "Business & Economics / Public Relations",
8130    "BUS053000" => "Business & Economics / Quality Control",
8131    "BUS054000" => "Business & Economics / Real Estate / General",
8132    "BUS054010" => "Business & Economics / Real Estate / Buying & Selling Homes",
8133    "BUS054020" => "Business & Economics / Real Estate / Commercial",
8134    "BUS054030" => "Business & Economics / Real Estate / Mortgages",
8135    "BUS055000" => "Business & Economics / Reference",
8136    "BUS056030" => "Business & Economics / Careers / Resumes",
8137    "BUS057000" => "Business & Economics / Industries / Retailing",
8138    "BUS058000" => "Business & Economics / Sales & Selling / General",
8139    "BUS058010" => "Business & Economics / Sales & Selling / Management",
8140    "BUS059000" => "Business & Economics / Skills",
8141    "BUS060000" => "Business & Economics / Small Business",
8142    "BUS061000" => "Business & Economics / Statistics",
8143    "BUS062000" => "Business & Economics / Structural Adjustment",
8144    "BUS063000" => "Business & Economics / Strategic Planning",
8145    "BUS064000" => "Business & Economics / Taxation / General",
8146    "BUS064010" => "Business & Economics / Taxation / Corporate",
8147    "BUS064020" => "Business & Economics / International / Taxation",
8148    "BUS064030" => "Business & Economics / Taxation / Small Business",
8149    "BUS065000" => "Business & Economics / Total Quality Management",
8150    "BUS066000" => "Business & Economics / Training",
8151    "BUS067000" => "Business & Economics / Urban & Regional",
8152    "BUS068000" => "Business & Economics / Development / Economic Development",
8153    "BUS069000" => "Business & Economics / Economics / General",
8154    "BUS069010" => "Business & Economics / Economics / Comparative",
8155    "BUS069020" => "Business & Economics / International / Economics",
8156    "BUS069030" => "Business & Economics / Economics / Theory",
8157    "BUS070000" => "Business & Economics / Industries / General",
8158    "BUS070010" => "Business & Economics / Industries / Agribusiness",
8159    "BUS070020" => "Business & Economics / Industries / Automobile Industry",
8160    "BUS070030" => "Business & Economics / Industries / Computers & Information Technology",
8161    "BUS070040" => "Business & Economics / Industries / Energy",
8162    "BUS070050" => "Business & Economics / Industries / Manufacturing",
8163    "BUS070060" => "Business & Economics / Industries / Media & Communications",
8164    "BUS070070" => "Business & Economics / Industries / Park & Recreation Management",
8165    "BUS070080" => "Business & Economics / Industries / Service",
8166    "BUS070090" => "Business & Economics / Industries / Fashion & Textile Industry",
8167    "BUS070100" => "Business & Economics / Industries / Transportation",
8168    "BUS070110" => "Business & Economics / Industries / Entertainment",
8169    "BUS070120" => "Business & Economics / Industries / Food Industry",
8170    "BUS070130" => "Business & Economics / Industries / Pharmaceutical & Biotechnology",
8171    "BUS070140" => "Business & Economics / Industries / Financial Services",
8172    "BUS070150" => "Business & Economics / Industries / Natural Resource Extraction",
8173    "BUS071000" => "Business & Economics / Leadership",
8174    "BUS072000" => "Business & Economics / Development / Sustainable Development",
8175    "BUS073000" => "Business & Economics / Commerce",
8176    "BUS074000" => "Business & Economics / Nonprofit Organizations & Charities",
8177    "BUS075000" => "Business & Economics / Consulting",
8178    "BUS076000" => "Business & Economics / Purchasing & Buying",
8179    "BUS077000" => "Business & Economics / Corporate & Business History",
8180    "BUS078000" => "Business & Economics / Distribution",
8181    "BUS079000" => "Business & Economics / Government & Business",
8182    "BUS080000" => "Business & Economics / Home-Based Businesses",
8183    "BUS081000" => "Business & Economics / Industries / Hospitality, Travel & Tourism",
8184    "BUS082000" => "Business & Economics / Industrial Management",
8185    "BUS083000" => "Business & Economics / Information Management",
8186    "BUS084000" => "Business & Economics / Office Automation",
8187    "BUS085000" => "Business & Economics / Organizational Behavior",
8188    "BUS086000" => "Business & Economics / Forecasting",
8189    "BUS087000" => "Business & Economics / Production & Operations Management",
8190    "BUS088000" => "Business & Economics / Time Management",
8191    "BUS089000" => "Business & Economics / Secretarial Aids & Training",
8192    "BUS090000" => "Business & Economics / E-Commerce / General",
8193    "BUS090010" => "Business & Economics / E-Commerce / Internet Marketing",
8194    "BUS090030" => "Business & Economics / E-Commerce / Online Trading",
8195    "BUS090040" => "Business & Economics / E-Commerce / Auctions & Small Business",
8196    "BUS091000" => "Business & Economics / Business Mathematics",
8197    "BUS092000" => "Business & Economics / Development / General",
8198    "BUS093000" => "Business & Economics / Facility Management",
8199    "BUS094000" => "Business & Economics / Green Business",
8200    "BUS095000" => "Business & Economics / Office Equipment & Supplies",
8201    "BUS096000" => "Business & Economics / Office Management",
8202    "BUS097000" => "Business & Economics / Workplace Culture",
8203    "BUS098000" => "Business & Economics / Knowledge Capital",
8204    "BUS099000" => "Business & Economics / Environmental Economics",
8205    "BUS100000" => "Business & Economics / Museum Administration & Museology",
8206    "BUS101000" => "Business & Economics / Project Management",
8207    "BUS102000" => "Business & Economics / Outsourcing",
8208    "BUS103000" => "Business & Economics / Organizational Development",
8209    "BUS104000" => "Business & Economics / Corporate Governance",
8210    "BUS105000" => "Business & Economics / Franchises",
8211    "BUS106000" => "Business & Economics / Mentoring & Coaching",
8212    "BUS107000" => "Business & Economics / Personal Success",
8213    "BUS108000" => "Business & Economics / Research & Development",
8214    "BUS109000" => "Business & Economics / Women in Business",
8215    "BUS110000" => "Business & Economics / Conflict Resolution & Mediation",
8216    "CGN000000" => "Comics & Graphic Novels / General",
8217    "CGN001000" => "Comics & Graphic Novels / Anthologies",
8218    "CGN004010" => "Comics & Graphic Novels / Crime & Mystery",
8219    "CGN004020" => "Comics & Graphic Novels / Erotica",
8220    "CGN004030" => "Comics & Graphic Novels / Fantasy",
8221    "CGN004040" => "Comics & Graphic Novels / Horror",
8222    "CGN004050" => "Comics & Graphic Novels / Manga / General",
8223    "CGN004060" => "Comics & Graphic Novels / Media Tie-In",
8224    "CGN004070" => "Comics & Graphic Novels / Science Fiction",
8225    "CGN004080" => "Comics & Graphic Novels / Superheroes",
8226    "CGN004090" => "Comics & Graphic Novels / Romance",
8227    "CGN004100" => "Comics & Graphic Novels / Manga / Crime & Mystery",
8228    "CGN004110" => "Comics & Graphic Novels / Manga / Erotica",
8229    "CGN004120" => "Comics & Graphic Novels / Manga / Fantasy",
8230    "CGN004130" => "Comics & Graphic Novels / Manga / Gay & Lesbian",
8231    "CGN004140" => "Comics & Graphic Novels / Manga / Historical Fiction",
8232    "CGN004150" => "Comics & Graphic Novels / Manga / Horror",
8233    "CGN004160" => "Comics & Graphic Novels / Manga / Media Tie-In",
8234    "CGN004170" => "Comics & Graphic Novels / Manga / NonFiction",
8235    "CGN004180" => "Comics & Graphic Novels / Manga / Romance",
8236    "CGN004190" => "Comics & Graphic Novels / Manga / Science Fiction",
8237    "CGN004200" => "Comics & Graphic Novels / Manga / Sports",
8238    "CGN004210" => "Comics & Graphic Novels / Manga / Yaoi",
8239    "CGN004220" => "Comics & Graphic Novels / Manga / Religious",
8240    "CGN006000" => "Comics & Graphic Novels / Literary",
8241    "CGN007000" => "Comics & Graphic Novels / NonFiction",
8242    "CGN008000" => "Comics & Graphic Novels / Contemporary Women",
8243    "CGN009000" => "Comics & Graphic Novels / Gay & Lesbian",
8244    "CGN010000" => "Comics & Graphic Novels / Historical Fiction",
8245    "CGN011000" => "Comics & Graphic Novels / Religious",
8246    "CKB000000" => "Cooking / General",
8247    "CKB001000" => "Cooking / Regional & Ethnic / African",
8248    "CKB002000" => "Cooking / Regional & Ethnic / American / General",
8249    "CKB002010" => "Cooking / Regional & Ethnic / American / California Style",
8250    "CKB002020" => "Cooking / Regional & Ethnic / American / Middle Atlantic States",
8251    "CKB002030" => "Cooking / Regional & Ethnic / American / Middle Western States",
8252    "CKB002040" => "Cooking / Regional & Ethnic / American / New England",
8253    "CKB002050" => "Cooking / Regional & Ethnic / American / Northwestern States",
8254    "CKB002060" => "Cooking / Regional & Ethnic / American / Southern States",
8255    "CKB002070" => "Cooking / Regional & Ethnic / American / Southwestern States",
8256    "CKB002080" => "Cooking / Regional & Ethnic / American / Western States",
8257    "CKB003000" => "Cooking / Courses & Dishes / Appetizers",
8258    "CKB004000" => "Cooking / Methods / Baking",
8259    "CKB005000" => "Cooking / Methods / Barbecue & Grilling",
8260    "CKB006000" => "Cooking / Beverages / Bartending",
8261    "CKB007000" => "Cooking / Beverages / Beer",
8262    "CKB008000" => "Cooking / Beverages / Non-Alcoholic",
8263    "CKB009000" => "Cooking / Courses & Dishes / Bread",
8264    "CKB010000" => "Cooking / Courses & Dishes / Breakfast",
8265    "CKB011000" => "Cooking / Regional & Ethnic / English, Scottish & Welsh",
8266    "CKB012000" => "Cooking / Courses & Dishes / Brunch",
8267    "CKB013000" => "Cooking / Regional & Ethnic / Cajun & Creole",
8268    "CKB014000" => "Cooking / Courses & Dishes / Cakes",
8269    "CKB015000" => "Cooking / Methods / Canning & Preserving",
8270    "CKB016000" => "Cooking / Regional & Ethnic / Caribbean & West Indian",
8271    "CKB017000" => "Cooking / Regional & Ethnic / Chinese",
8272    "CKB018000" => "Cooking / Courses & Dishes / Chocolate",
8273    "CKB019000" => "Cooking / Beverages / Coffee & Tea",
8274    "CKB020000" => "Cooking / Methods / Cookery for One",
8275    "CKB021000" => "Cooking / Courses & Dishes / Cookies",
8276    "CKB023000" => "Cooking / Methods / General",
8277    "CKB024000" => "Cooking / Courses & Dishes / Desserts",
8278    "CKB025000" => "Cooking / Health & Healing / Diabetic & Sugar-Free",
8279    "CKB026000" => "Cooking / Health & Healing / Weight Control",
8280    "CKB029000" => "Cooking / Entertaining",
8281    "CKB030000" => "Cooking / Essays & Narratives",
8282    "CKB031000" => "Cooking / Regional & Ethnic / General",
8283    "CKB032000" => "Cooking / Specific Ingredients / Game",
8284    "CKB033000" => "Cooking / Methods / Garnishing",
8285    "CKB034000" => "Cooking / Regional & Ethnic / French",
8286    "CKB035000" => "Cooking / Specific Ingredients / Fruit",
8287    "CKB036000" => "Cooking / Regional & Ethnic / German",
8288    "CKB037000" => "Cooking / Methods / Gourmet",
8289    "CKB038000" => "Cooking / Regional & Ethnic / Greek",
8290    "CKB039000" => "Cooking / Health & Healing / General",
8291    "CKB040000" => "Cooking / Specific Ingredients / Herbs, Spices, Condiments",
8292    "CKB041000" => "Cooking / History",
8293    "CKB042000" => "Cooking / Holiday",
8294    "CKB043000" => "Cooking / Regional & Ethnic / Hungarian",
8295    "CKB044000" => "Cooking / Regional & Ethnic / Indian & South Asian",
8296    "CKB045000" => "Cooking / Regional & Ethnic / International",
8297    "CKB046000" => "Cooking / Regional & Ethnic / Irish",
8298    "CKB047000" => "Cooking / Regional & Ethnic / Italian",
8299    "CKB048000" => "Cooking / Regional & Ethnic / Japanese",
8300    "CKB049000" => "Cooking / Regional & Ethnic / Jewish & Kosher",
8301    "CKB050000" => "Cooking / Health & Healing / Low Cholesterol",
8302    "CKB051000" => "Cooking / Health & Healing / Low Fat",
8303    "CKB052000" => "Cooking / Health & Healing / Low Salt",
8304    "CKB054000" => "Cooking / Specific Ingredients / Meat",
8305    "CKB055000" => "Cooking / Regional & Ethnic / Mediterranean",
8306    "CKB056000" => "Cooking / Regional & Ethnic / Mexican",
8307    "CKB057000" => "Cooking / Methods / Microwave",
8308    "CKB058000" => "Cooking / Regional & Ethnic / Native American",
8309    "CKB059000" => "Cooking / Specific Ingredients / Natural Foods",
8310    "CKB060000" => "Cooking / Methods / Outdoor",
8311    "CKB061000" => "Cooking / Specific Ingredients / Pasta",
8312    "CKB062000" => "Cooking / Courses & Dishes / Pastry",
8313    "CKB063000" => "Cooking / Courses & Dishes / Pies",
8314    "CKB064000" => "Cooking / Courses & Dishes / Pizza",
8315    "CKB065000" => "Cooking / Regional & Ethnic / Polish",
8316    "CKB066000" => "Cooking / Regional & Ethnic / Portuguese",
8317    "CKB067000" => "Cooking / Specific Ingredients / Poultry",
8318    "CKB068000" => "Cooking / Methods / Professional",
8319    "CKB069000" => "Cooking / Methods / Quantity",
8320    "CKB070000" => "Cooking / Methods / Quick & Easy",
8321    "CKB071000" => "Cooking / Reference",
8322    "CKB072000" => "Cooking / Regional & Ethnic / Russian",
8323    "CKB073000" => "Cooking / Courses & Dishes / Salads",
8324    "CKB074000" => "Cooking / Regional & Ethnic / Scandinavian",
8325    "CKB076000" => "Cooking / Specific Ingredients / Seafood",
8326    "CKB077000" => "Cooking / Seasonal",
8327    "CKB078000" => "Cooking / Regional & Ethnic / Soul Food",
8328    "CKB079000" => "Cooking / Courses & Dishes / Soups & Stews",
8329    "CKB080000" => "Cooking / Regional & Ethnic / Spanish",
8330    "CKB081000" => "Cooking / Methods / Special Appliances",
8331    "CKB082000" => "Cooking / Tablesetting",
8332    "CKB083000" => "Cooking / Regional & Ethnic / Thai",
8333    "CKB084000" => "Cooking / Regional & Ethnic / Turkish",
8334    "CKB085000" => "Cooking / Specific Ingredients / Vegetables",
8335    "CKB086000" => "Cooking / Vegetarian & Vegan",
8336    "CKB088000" => "Cooking / Beverages / Wine & Spirits",
8337    "CKB089000" => "Cooking / Methods / Wok",
8338    "CKB090000" => "Cooking / Regional & Ethnic / Asian",
8339    "CKB091000" => "Cooking / Regional & Ethnic / Canadian",
8340    "CKB092000" => "Cooking / Regional & Ethnic / European",
8341    "CKB093000" => "Cooking / Regional & Ethnic / Middle Eastern",
8342    "CKB094000" => "Cooking / Regional & Ethnic / Vietnamese",
8343    "CKB095000" => "Cooking / Courses & Dishes / Confectionery",
8344    "CKB096000" => "Cooking / Specific Ingredients / Dairy",
8345    "CKB097000" => "Cooking / Regional & Ethnic / Pacific Rim",
8346    "CKB098000" => "Cooking / Specific Ingredients / Rice & Grains",
8347    "CKB099000" => "Cooking / Regional & Ethnic / Central American & South American",
8348    "CKB100000" => "Cooking / Beverages / General",
8349    "CKB101000" => "Cooking / Courses & Dishes / General",
8350    "CKB102000" => "Cooking / Courses & Dishes / Sauces & Dressings",
8351    "CKB103000" => "Cooking / Health & Healing / Cancer",
8352    "CKB104000" => "Cooking / Health & Healing / Heart",
8353    "CKB105000" => "Cooking / Specific Ingredients / General",
8354    "CKB106000" => "Cooking / Health & Healing / Allergy",
8355    "CKB107000" => "Cooking / Baby Food",
8356    "CKB108000" => "Cooking / Health & Healing / Low Carbohydrate",
8357    "CKB109000" => "Cooking / Methods / Slow Cooking",
8358    "CKB110000" => "Cooking / Methods / Raw Food",
8359    "CKB111000" => "Cooking / Health & Healing / Gluten-Free",
8360    "CKB112000" => "Cooking / Courses & Dishes / Casseroles",
8361    "CKB113000" => "Cooking / Methods / Low Budget",
8362    "COM000000" => "Computers / General",
8363    "COM004000" => "Computers / Intelligence (AI) & Semantics",
8364    "COM005000" => "Computers / Enterprise Applications / General",
8365    "COM005030" => "Computers / Enterprise Applications / Business Intelligence Tools",
8366    "COM006000" => "Computers / Buyer's Guides",
8367    "COM007000" => "Computers / CAD-CAM",
8368    "COM008000" => "Computers / Calculators",
8369    "COM009000" => "Computers / CD-DVD Technology",
8370    "COM010000" => "Computers / Compilers",
8371    "COM011000" => "Computers / Systems Architecture / General",
8372    "COM012000" => "Computers / Computer Graphics",
8373    "COM012040" => "Computers / Programming / Games",
8374    "COM012050" => "Computers / Image Processing",
8375    "COM013000" => "Computers / Computer Literacy",
8376    "COM014000" => "Computers / Computer Science",
8377    "COM015000" => "Computers / Security / Viruses & Malware",
8378    "COM016000" => "Computers / Computer Vision & Pattern Recognition",
8379    "COM017000" => "Computers / Cybernetics",
8380    "COM018000" => "Computers / Data Processing",
8381    "COM019000" => "Computers / System Administration / Disaster & Recovery",
8382    "COM020000" => "Computers / Data Transmission Systems / General",
8383    "COM020010" => "Computers / Data Transmission Systems / Electronic Data Interchange",
8384    "COM020020" => "Computers / System Administration / Email Administration",
8385    "COM020050" => "Computers / Data Transmission Systems / Broadband",
8386    "COM020090" => "Computers / Data Transmission Systems / Wireless",
8387    "COM021000" => "Computers / Databases / General",
8388    "COM021030" => "Computers / Databases / Data Mining",
8389    "COM021040" => "Computers / Databases / Data Warehousing",
8390    "COM021050" => "Computers / Databases / Servers",
8391    "COM022000" => "Computers / Desktop Applications / Desktop Publishing",
8392    "COM023000" => "Computers / Educational Software",
8393    "COM025000" => "Computers / Expert Systems",
8394    "COM027000" => "Computers / Desktop Applications / Personal Finance Applications",
8395    "COM030000" => "Computers / System Administration / Storage & Retrieval",
8396    "COM031000" => "Computers / Information Theory",
8397    "COM032000" => "Computers / Information Technology",
8398    "COM034000" => "Computers / Interactive & Multimedia",
8399    "COM035000" => "Computers / Keyboarding",
8400    "COM036000" => "Computers / Logic Design",
8401    "COM037000" => "Computers / Machine Theory",
8402    "COM038000" => "Computers / Hardware / Mainframes & MiniComputers",
8403    "COM039000" => "Computers / Management Information Systems",
8404    "COM041000" => "Computers / Microprocessors",
8405    "COM042000" => "Computers / Natural Language Processing",
8406    "COM043000" => "Computers / Networking / General",
8407    "COM043020" => "Computers / Networking / Local Area Networks (LANs)",
8408    "COM043040" => "Computers / Networking / Network Protocols",
8409    "COM043050" => "Computers / Security / Networking",
8410    "COM043060" => "Computers / Networking / Vendor Specific",
8411    "COM044000" => "Computers / Neural Networks",
8412    "COM046000" => "Computers / Operating Systems / General",
8413    "COM046020" => "Computers / Operating Systems / Macintosh",
8414    "COM046030" => "Computers / Operating Systems / UNIX",
8415    "COM046040" => "Computers / Operating Systems / Windows Desktop",
8416    "COM046050" => "Computers / Operating Systems / Windows Server",
8417    "COM046060" => "Computers / Operating Systems / DOS",
8418    "COM046070" => "Computers / Operating Systems / Linux",
8419    "COM046080" => "Computers / Operating Systems / Mainframe & Midrange",
8420    "COM046090" => "Computers / Operating Systems / Virtualization",
8421    "COM047000" => "Computers / Optical Data Processing",
8422    "COM048000" => "Computers / Systems Architecture / Distributed Systems & Computing",
8423    "COM049000" => "Computers / Hardware / Peripherals",
8424    "COM050000" => "Computers / Hardware / Personal Computers / General",
8425    "COM050010" => "Computers / Hardware / Personal Computers / PCs",
8426    "COM050020" => "Computers / Hardware / Personal Computers / Macintosh",
8427    "COM051000" => "Computers / Programming / General",
8428    "COM051010" => "Computers / Programming Languages / General",
8429    "COM051020" => "Computers / Programming Languages / Ada",
8430    "COM051040" => "Computers / Programming Languages / Assembly Language",
8431    "COM051050" => "Computers / Programming Languages / BASIC",
8432    "COM051060" => "Computers / Programming Languages / C",
8433    "COM051070" => "Computers / Programming Languages / C++",
8434    "COM051080" => "Computers / Programming Languages / COBOL",
8435    "COM051090" => "Computers / Programming Languages / FORTRAN",
8436    "COM051100" => "Computers / Programming Languages / LISP",
8437    "COM051130" => "Computers / Programming Languages / Pascal",
8438    "COM051140" => "Computers / Programming Languages / Prolog",
8439    "COM051160" => "Computers / Programming Languages / Smalltalk",
8440    "COM051170" => "Computers / Programming Languages / SQL",
8441    "COM051200" => "Computers / Programming Languages / Visual BASIC",
8442    "COM051210" => "Computers / Programming / Object Oriented",
8443    "COM051220" => "Computers / Programming / Parallel",
8444    "COM051230" => "Computers / Software Development & Engineering / General",
8445    "COM051240" => "Computers / Software Development & Engineering / Systems Analysis & Design",
8446    "COM051260" => "Computers / Programming Languages / JavaScript",
8447    "COM051270" => "Computers / Programming Languages / HTML",
8448    "COM051280" => "Computers / Programming Languages / Java",
8449    "COM051290" => "Computers / Programming Languages / RPG",
8450    "COM051300" => "Computers / Programming / Algorithms",
8451    "COM051310" => "Computers / Programming Languages / C#",
8452    "COM051320" => "Computers / Programming Languages / XML",
8453    "COM051330" => "Computers / Software Development & Engineering / Quality Assurance & Testing",
8454    "COM051350" => "Computers / Programming Languages / Perl",
8455    "COM051360" => "Computers / Programming Languages / Python",
8456    "COM051370" => "Computers / Programming / Macinstosh",
8457    "COM051380" => "Computers / Programming / Microsoft",
8458    "COM051390" => "Computers / Programming / Open Source",
8459    "COM051400" => "Computers / Programming Languages / PHP",
8460    "COM051410" => "Computers / Programming Languages / Ruby",
8461    "COM051420" => "Computers / Programming Languages / VBScript",
8462    "COM051430" => "Computers / Software Development & Engineering / Project Management",
8463    "COM051440" => "Computers / Software Development & Engineering / Tools",
8464    "COM051450" => "Computers / Programming Languages / UML",
8465    "COM051460" => "Computers / Programming / Mobile Devices",
8466    "COM051470" => "Computers / Programming Languages / ASP .NET",
8467    "COM052000" => "Computers / Reference",
8468    "COM053000" => "Computers / Security / General",
8469    "COM054000" => "Computers / Desktop Applications / Spreadsheets",
8470    "COM055000" => "Computers / Certification Guides / General",
8471    "COM055010" => "Computers / Certification Guides / A+",
8472    "COM055020" => "Computers / Certification Guides / MCSE",
8473    "COM056000" => "Computers / Utilities",
8474    "COM057000" => "Computers / Virtual Worlds",
8475    "COM058000" => "Computers / Desktop Applications / Word Processing",
8476    "COM059000" => "Computers / Computer Engineering",
8477    "COM060000" => "Computers / Internet / General",
8478    "COM060010" => "Computers / Web / Browsers",
8479    "COM060030" => "Computers / Networking / Intranets & Extranets",
8480    "COM060040" => "Computers / Security / Online Safety & Privacy",
8481    "COM060070" => "Computers / Web / Site Directories",
8482    "COM060080" => "Computers / Web / General",
8483    "COM060090" => "Computers / Internet / Application Development",
8484    "COM060100" => "Computers / Web / Blogs",
8485    "COM060110" => "Computers / Web / Podcasting & Webcasting",
8486    "COM060120" => "Computers / Web / Search Engines",
8487    "COM060130" => "Computers / Web / Design",
8488    "COM060140" => "Computers / Web / Social Networking",
8489    "COM060150" => "Computers / Web / User Generated Content",
8490    "COM060160" => "Computers / Web / Web Programming",
8491    "COM060170" => "Computers / Web / Content Management Systems",
8492    "COM060180" => "Computers / Web / Web Services & APIs",
8493    "COM061000" => "Computers / Client-Server Computing",
8494    "COM062000" => "Computers / Data Modeling & Design",
8495    "COM063000" => "Computers / Document Management",
8496    "COM064000" => "Computers / Electronic Commerce",
8497    "COM065000" => "Computers / Electronic Publishing",
8498    "COM066000" => "Computers / Enterprise Applications / Collaboration Software",
8499    "COM067000" => "Computers / Hardware / General",
8500    "COM069000" => "Computers / Online Services",
8501    "COM070000" => "Computers / User Interfaces",
8502    "COM071000" => "Computers / Digital Media / Video & Animation",
8503    "COM072000" => "Computers / Computer Simulation",
8504    "COM073000" => "Computers / Speech & Audio Processing",
8505    "COM074000" => "Computers / Hardware / Mobile Devices",
8506    "COM075000" => "Computers / Networking / Hardware",
8507    "COM077000" => "Computers / Mathematical & Statistical Software",
8508    "COM078000" => "Computers / Desktop Applications / Presentation Software",
8509    "COM079000" => "Computers / Social Aspects / General",
8510    "COM079010" => "Computers / Social Aspects / Human-Computer Interaction",
8511    "COM080000" => "Computers / History",
8512    "COM081000" => "Computers / Desktop Applications / Project Management Software",
8513    "COM082000" => "Computers / Bioinformatics",
8514    "COM083000" => "Computers / Security / Cryptography",
8515    "COM084000" => "Computers / Desktop Applications / General",
8516    "COM084010" => "Computers / Desktop Applications / Databases",
8517    "COM084020" => "Computers / Desktop Applications / Email Clients",
8518    "COM084030" => "Computers / Desktop Applications / Suites",
8519    "COM085000" => "Computers / Documentation & Technical Writing",
8520    "COM086000" => "Computers / Computerized Home & Entertainment",
8521    "COM087000" => "Computers / Digital Media / General",
8522    "COM087010" => "Computers / Digital Media / Audio",
8523    "COM087020" => "Computers / Desktop Applications / Design & Graphics",
8524    "COM087030" => "Computers / Digital Media / Photography",
8525    "COM088000" => "Computers / System Administration / General",
8526    "COM088010" => "Computers / System Administration / Linux & UNIX Administration",
8527    "COM088020" => "Computers / System Administration / Windows Administration",
8528    "COM089000" => "Computers / Data Visualization",
8529    "COM090000" => "Computers / Hardware / Tablets",
8530    "CRA000000" => "Crafts & Hobbies / General",
8531    "CRA001000" => "Crafts & Hobbies / Applique",
8532    "CRA002000" => "Crafts & Hobbies / Baskets",
8533    "CRA003000" => "Crafts & Hobbies / Carving",
8534    "CRA004000" => "Crafts & Hobbies / Needlework / Crocheting",
8535    "CRA005000" => "Crafts & Hobbies / Decorating",
8536    "CRA006000" => "Crafts & Hobbies / Dough",
8537    "CRA007000" => "Crafts & Hobbies / Dye",
8538    "CRA008000" => "Crafts & Hobbies / Needlework / Embroidery",
8539    "CRA009000" => "Crafts & Hobbies / Fashion",
8540    "CRA010000" => "Crafts & Hobbies / Flower Arranging",
8541    "CRA011000" => "Crafts & Hobbies / Framing",
8542    "CRA012000" => "Crafts & Hobbies / Glass & Glassware",
8543    "CRA014000" => "Crafts & Hobbies / Jewelry",
8544    "CRA015000" => "Crafts & Hobbies / Needlework / Knitting",
8545    "CRA016000" => "Crafts & Hobbies / Needlework / Lace & Tatting",
8546    "CRA017000" => "Crafts & Hobbies / Metal Work",
8547    "CRA018000" => "Crafts & Hobbies / Miniatures",
8548    "CRA019000" => "Crafts & Hobbies / Mobiles",
8549    "CRA020000" => "Crafts & Hobbies / Models",
8550    "CRA021000" => "Crafts & Hobbies / Needlework / Needlepoint",
8551    "CRA022000" => "Crafts & Hobbies / Needlework / General",
8552    "CRA023000" => "Crafts & Hobbies / Origami",
8553    "CRA024000" => "Crafts & Hobbies / Painting",
8554    "CRA025000" => "Crafts & Hobbies / Papercrafts",
8555    "CRA026000" => "Crafts & Hobbies / Patchwork",
8556    "CRA027000" => "Crafts & Hobbies / Potpourri",
8557    "CRA028000" => "Crafts & Hobbies / Pottery & Ceramics",
8558    "CRA029000" => "Crafts & Hobbies / Printmaking",
8559    "CRA030000" => "Crafts & Hobbies / Puppets & Puppetry",
8560    "CRA031000" => "Crafts & Hobbies / Quilts & Quilting",
8561    "CRA032000" => "Crafts & Hobbies / Reference",
8562    "CRA033000" => "Crafts & Hobbies / Rugs",
8563    "CRA034000" => "Crafts & Hobbies / Seasonal",
8564    "CRA035000" => "Crafts & Hobbies / Sewing",
8565    "CRA036000" => "Crafts & Hobbies / Stenciling",
8566    "CRA037000" => "Crafts & Hobbies / Stuffed Animals",
8567    "CRA039000" => "Crafts & Hobbies / Toymaking",
8568    "CRA040000" => "Crafts & Hobbies / Weaving",
8569    "CRA041000" => "Crafts & Hobbies / Wood Toys",
8570    "CRA042000" => "Crafts & Hobbies / Woodwork",
8571    "CRA043000" => "Crafts & Hobbies / Crafts for Children",
8572    "CRA044000" => "Crafts & Hobbies / Needlework / Cross-Stitch",
8573    "CRA045000" => "Crafts & Hobbies / Model Railroading",
8574    "CRA046000" => "Crafts & Hobbies / Book Printing & Binding",
8575    "CRA047000" => "Crafts & Hobbies / Folkcrafts",
8576    "CRA048000" => "Crafts & Hobbies / Beadwork",
8577    "CRA049000" => "Crafts & Hobbies / Candle & Soap Making",
8578    "CRA050000" => "Crafts & Hobbies / Leatherwork",
8579    "CRA051000" => "Crafts & Hobbies / Polymer Clay",
8580    "CRA052000" => "Crafts & Hobbies / Scrapbooking",
8581    "CRA053000" => "Crafts & Hobbies / Nature Crafts",
8582    "CRA054000" => "Crafts & Hobbies / Mixed Media",
8583    "CRA055000" => "Crafts & Hobbies / Knots, Macrame & Rope Work",
8584    "CRA056000" => "Crafts & Hobbies / Dollhouses",
8585    "CRA057000" => "Crafts & Hobbies / Dolls & Doll Clothing",
8586    "DES000000" => "Design / General",
8587    "DES001000" => "Design / Book",
8588    "DES002000" => "Design / Clip Art",
8589    "DES003000" => "Design / Decorative Arts",
8590    "DES004000" => "Design / Essays",
8591    "DES005000" => "Design / Fashion",
8592    "DES006000" => "Design / Furniture",
8593    "DES007000" => "Design / Graphic Arts / General",
8594    "DES007010" => "Design / Graphic Arts / Advertising",
8595    "DES007020" => "Design / Graphic Arts / Branding & Logo Design",
8596    "DES007030" => "Design / Graphic Arts / Commercial & Corporate",
8597    "DES007040" => "Design / Graphic Arts / Illustration",
8598    "DES007050" => "Design / Graphic Arts / Typography",
8599    "DES008000" => "Design / History & Criticism",
8600    "DES009000" => "Design / Industrial",
8601    "DES010000" => "Design / Interior Decorating",
8602    "DES011000" => "Design / Product",
8603    "DES012000" => "Design / Reference",
8604    "DES013000" => "Design / Textile & Costume",
8605    "DRA000000" => "Drama / General",
8606    "DRA001000" => "Drama / American / General",
8607    "DRA001010" => "Drama / American / African American",
8608    "DRA002000" => "Drama / Anthologies (multiple authors)",
8609    "DRA003000" => "Drama / European / English, Irish, Scottish, Welsh",
8610    "DRA004000" => "Drama / European / General",
8611    "DRA004010" => "Drama / European / French",
8612    "DRA004020" => "Drama / European / German",
8613    "DRA004030" => "Drama / European / Italian",
8614    "DRA004040" => "Drama / European / Spanish & Portuguese",
8615    "DRA005000" => "Drama / Asian / General",
8616    "DRA005010" => "Drama / Asian / Japanese",
8617    "DRA006000" => "Drama / Ancient & Classical",
8618    "DRA008000" => "Drama / Religious & Liturgical",
8619    "DRA010000" => "Drama / Shakespeare",
8620    "DRA011000" => "Drama / African",
8621    "DRA012000" => "Drama / Australian & Oceanian",
8622    "DRA013000" => "Drama / Canadian",
8623    "DRA014000" => "Drama / Caribbean & Latin American",
8624    "DRA015000" => "Drama / Middle Eastern",
8625    "DRA016000" => "Drama / Russian & Former Soviet Union",
8626    "DRA017000" => "Drama / Gay & Lesbian",
8627    "DRA018000" => "Drama / Medieval",
8628    "DRA019000" => "Drama / Women Authors",
8629    "EDU000000" => "Education / General",
8630    "EDU001000" => "Education / Administration / General",
8631    "EDU001010" => "Education / Administration / Facility Management",
8632    "EDU001020" => "Education / Administration / Elementary &",
8633    "EDU001030" => "Education / Administration / Higher",
8634    "EDU001040" => "Education / Administration / School Superintendents & Principals",
8635    "EDU002000" => "Education / Adult & Continuing Education",
8636    "EDU003000" => "Education / Aims & Objectives",
8637    "EDU005000" => "Education / Bilingual Education",
8638    "EDU006000" => "Education / Counseling / General",
8639    "EDU007000" => "Education / Curricula",
8640    "EDU008000" => "Education / Decision-Making & Problem Solving",
8641    "EDU009000" => "Education / Educational Psychology",
8642    "EDU010000" => "Education / Elementary",
8643    "EDU011000" => "Education / Evaluation & Assessment",
8644    "EDU012000" => "Education / Experimental Methods",
8645    "EDU013000" => "Education / Finance",
8646    "EDU014000" => "Education / Counseling / Academic Development",
8647    "EDU015000" => "Education / Higher",
8648    "EDU016000" => "Education / History",
8649    "EDU017000" => "Education / Home Schooling",
8650    "EDU018000" => "Education / Language Experience Approach",
8651    "EDU020000" => "Education / Multicultural Education",
8652    "EDU021000" => "Education / Non-Formal Education",
8653    "EDU022000" => "Education / Parent Participation",
8654    "EDU023000" => "Education / Preschool & Kindergarten",
8655    "EDU024000" => "Education / Reference",
8656    "EDU025000" => "Education / Secondary",
8657    "EDU026000" => "Education / Special Education / General",
8658    "EDU026010" => "Education / Special Education / Communicative Disorders",
8659    "EDU026020" => "Education / Special Education / Learning Disabilities",
8660    "EDU026030" => "Education / Special Education / Mental Disabilities",
8661    "EDU026040" => "Education / Special Education / Physical Disabilities",
8662    "EDU026050" => "Education / Special Education / Social Disabilities",
8663    "EDU026060" => "Education / Special Education / Gifted",
8664    "EDU027000" => "Education / Statistics",
8665    "EDU028000" => "Education / Study Skills",
8666    "EDU029000" => "Education / Teaching Methods & Materials / General",
8667    "EDU029010" => "Education / Teaching Methods & Materials / Mathematics",
8668    "EDU029020" => "Education / Teaching Methods & Materials / Reading & Phonics",
8669    "EDU029030" => "Education / Teaching Methods & Materials / Science & Technology",
8670    "EDU029040" => "Education / Teaching Methods & Materials / Social Science",
8671    "EDU029050" => "Education / Teaching Methods & Materials / Arts & Humanities",
8672    "EDU029060" => "Education / Teaching Methods & Materials / Library Skills",
8673    "EDU029070" => "Education / Teaching Methods & Materials / Health & Sexuality",
8674    "EDU029080" => "Education / Teaching Methods & Materials / Language Arts",
8675    "EDU030000" => "Education / Testing & Measurement",
8676    "EDU031000" => "Education / Counseling / Career Guidance",
8677    "EDU032000" => "Education / Leadership",
8678    "EDU033000" => "Education / Physical Education",
8679    "EDU034000" => "Education / Educational Policy & Reform / General",
8680    "EDU034010" => "Education / Educational Policy & Reform / School Safety",
8681    "EDU034020" => "Education / Educational Policy & Reform / Charter Schools",
8682    "EDU034030" => "Education / Educational Policy & Reform / Federal Legislation",
8683    "EDU036000" => "Education / Organizations & Institutions",
8684    "EDU037000" => "Education / Research",
8685    "EDU038000" => "Education / Student Life & Student Affairs",
8686    "EDU039000" => "Education / Computers & Technology",
8687    "EDU040000" => "Education / Philosophy & Social Aspects",
8688    "EDU041000" => "Education / Distance & Online Education",
8689    "EDU042000" => "Education / Essays",
8690    "EDU043000" => "Education / Comparative",
8691    "EDU044000" => "Education / Classroom Management",
8692    "EDU045000" => "Education / Counseling / Crisis Management",
8693    "EDU046000" => "Education / Professional Development",
8694    "EDU047000" => "Education / Driver Education",
8695    "EDU048000" => "Education / Inclusive Education",
8696    "EDU049000" => "Education / Behavioral Management",
8697    "EDU050000" => "Education / Collaborative & Team Teaching",
8698    "EDU051000" => "Education / Learning Styles",
8699    "EDU052000" => "Education / Rural",
8700    "EDU053000" => "Education / Training & Certification",
8701    "EDU054000" => "Education / Urban",
8702    "EDU055000" => "Education / Violence & Harassment",
8703    "EDU056000" => "Education / Vocational",
8704    "EDU057000" => "Education / Arts in Education",
8705    "FAM000000" => "Family & Relationships / General",
8706    "FAM001000" => "Family & Relationships / Abuse / General",
8707    "FAM001010" => "Family & Relationships / Abuse / Child Abuse",
8708    "FAM001020" => "Family & Relationships / Abuse / Elder Abuse",
8709    "FAM001030" => "Family & Relationships / Abuse / Domestic Partner Abuse",
8710    "FAM002000" => "Family & Relationships / Activities",
8711    "FAM003000" => "Family & Relationships / Life Stages / Adolescence",
8712    "FAM004000" => "Family & Relationships / Adoption & Fostering",
8713    "FAM005000" => "Family & Relationships / Aging",
8714    "FAM006000" => "Family & Relationships / Alternative Family",
8715    "FAM007000" => "Family & Relationships / Anger",
8716    "FAM008000" => "Family & Relationships / Baby Names",
8717    "FAM010000" => "Family & Relationships / Parenting / Child Rearing",
8718    "FAM011000" => "Family & Relationships / Child Development",
8719    "FAM012000" => "Family & Relationships / Children with Special Needs",
8720    "FAM013000" => "Family & Relationships / Conflict Resolution",
8721    "FAM014000" => "Family & Relationships / Death, Grief, Bereavement",
8722    "FAM015000" => "Family & Relationships / Divorce & Separation",
8723    "FAM016000" => "Family & Relationships / Education",
8724    "FAM017000" => "Family & Relationships / Eldercare",
8725    "FAM018000" => "Family & Relationships / Emotions",
8726    "FAM019000" => "Family & Relationships / Family Relationships",
8727    "FAM020000" => "Family & Relationships / Parenting / Fatherhood",
8728    "FAM021000" => "Family & Relationships / Friendship",
8729    "FAM022000" => "Family & Relationships / Parenting / Grandparenting",
8730    "FAM025000" => "Family & Relationships / Life Stages / Infants & Toddlers",
8731    "FAM027000" => "Family & Relationships / Interpersonal Relations",
8732    "FAM028000" => "Family & Relationships / Learning Disabilities",
8733    "FAM029000" => "Family & Relationships / Love & Romance",
8734    "FAM030000" => "Family & Relationships / Marriage",
8735    "FAM031000" => "Family & Relationships / Ethics & Morals",
8736    "FAM032000" => "Family & Relationships / Parenting / Motherhood",
8737    "FAM033000" => "Family & Relationships / Parenting / Parent & Adult Child",
8738    "FAM034000" => "Family & Relationships / Parenting / General",
8739    "FAM034010" => "Family & Relationships / Parenting / Single Parent",
8740    "FAM035000" => "Family & Relationships / Peer Pressure",
8741    "FAM037000" => "Family & Relationships / Prejudice",
8742    "FAM038000" => "Family & Relationships / Reference",
8743    "FAM039000" => "Family & Relationships / Life Stages / School Age",
8744    "FAM041000" => "Family & Relationships / Siblings",
8745    "FAM042000" => "Family & Relationships / Parenting / Stepparenting",
8746    "FAM043000" => "Family & Relationships / Life Stages / Teenagers",
8747    "FAM044000" => "Family & Relationships / Toilet Training",
8748    "FAM046000" => "Family & Relationships / Life Stages / General",
8749    "FAM047000" => "Family & Relationships / Attention Deficit Disorder (ADD-ADHD)",
8750    "FAM048000" => "Family & Relationships / Autism Spectrum Disorders",
8751    "FAM049000" => "Family & Relationships / Bullying",
8752    "FIC000000" => "Fiction / General",
8753    "FIC002000" => "Fiction / Action & Adventure",
8754    "FIC003000" => "Fiction / Anthologies (multiple authors)",
8755    "FIC004000" => "Fiction / Classics",
8756    "FIC005000" => "Fiction / Erotica",
8757    "FIC006000" => "Fiction / Thrillers / Espionage",
8758    "FIC008000" => "Fiction / Sagas",
8759    "FIC009000" => "Fiction / Fantasy / General",
8760    "FIC009010" => "Fiction / Fantasy / Contemporary",
8761    "FIC009020" => "Fiction / Fantasy / Epic",
8762    "FIC009030" => "Fiction / Fantasy / Historical",
8763    "FIC009040" => "Fiction / Fantasy / Collections & Anthologies",
8764    "FIC009050" => "Fiction / Fantasy / Paranormal",
8765    "FIC009060" => "Fiction / Fantasy / Urban",
8766    "FIC009070" => "Fiction / Fantasy / Dark Fantasy",
8767    "FIC010000" => "Fiction / Fairy Tales, Folk Tales, Legends & Mythology",
8768    "FIC011000" => "Fiction / Gay",
8769    "FIC012000" => "Fiction / Ghost",
8770    "FIC014000" => "Fiction / Historical",
8771    "FIC015000" => "Fiction / Horror",
8772    "FIC016000" => "Fiction / Humorous",
8773    "FIC018000" => "Fiction / Lesbian",
8774    "FIC019000" => "Fiction / Literary",
8775    "FIC021000" => "Fiction / Media Tie-In",
8776    "FIC022000" => "Fiction / Mystery & Detective / General",
8777    "FIC022010" => "Fiction / Mystery & Detective / Hard-Boiled",
8778    "FIC022020" => "Fiction / Mystery & Detective / Police Procedural",
8779    "FIC022030" => "Fiction / Mystery & Detective / Traditional British",
8780    "FIC022040" => "Fiction / Mystery & Detective / Women Sleuths",
8781    "FIC022050" => "Fiction / Mystery & Detective / Collections & Anthologies",
8782    "FIC022060" => "Fiction / Mystery & Detective / Historical",
8783    "FIC022070" => "Fiction / Mystery & Detective / Cozy",
8784    "FIC022080" => "Fiction / Mystery & Detective / International Mystery & Crime",
8785    "FIC022090" => "Fiction / Mystery & Detective / Private Investigators",
8786    "FIC024000" => "Fiction / Occult & Supernatural",
8787    "FIC025000" => "Fiction / Psychological",
8788    "FIC026000" => "Fiction / Religious",
8789    "FIC027000" => "Fiction / Romance / General",
8790    "FIC027010" => "Fiction / Romance / Erotica",
8791    "FIC027020" => "Fiction / Romance / Contemporary",
8792    "FIC027030" => "Fiction / Romance / Fantasy",
8793    "FIC027040" => "Fiction / Gothic",
8794    "FIC027050" => "Fiction / Romance / Historical / General",
8795    "FIC027070" => "Fiction / Romance / Historical / Regency",
8796    "FIC027080" => "Fiction / Romance / Collections & Anthologies",
8797    "FIC027090" => "Fiction / Romance / Time Travel",
8798    "FIC027100" => "Fiction / Romance / Western",
8799    "FIC027110" => "Fiction / Romance / Suspense",
8800    "FIC027120" => "Fiction / Romance / Paranormal",
8801    "FIC027130" => "Fiction / Romance / Science Fiction",
8802    "FIC027140" => "Fiction / Romance / Historical / Ancient World",
8803    "FIC027150" => "Fiction / Romance / Historical / Medieval",
8804    "FIC027160" => "Fiction / Romance / Historical / Scottish",
8805    "FIC027170" => "Fiction / Romance / Historical / Victorian",
8806    "FIC027180" => "Fiction / Romance / Historical / Viking",
8807    "FIC028000" => "Fiction / Science Fiction / General",
8808    "FIC028010" => "Fiction / Science Fiction / Action & Adventure",
8809    "FIC028020" => "Fiction / Science Fiction / Hard Science Fiction",
8810    "FIC028030" => "Fiction / Science Fiction / Space Opera",
8811    "FIC028040" => "Fiction / Science Fiction / Collections & Anthologies",
8812    "FIC028050" => "Fiction / Science Fiction / Military",
8813    "FIC028060" => "Fiction / Science Fiction / Steampunk",
8814    "FIC028070" => "Fiction / Science Fiction / Apocalyptic & Post-Apocalyptic",
8815    "FIC028080" => "Fiction / Science Fiction / Time Travel",
8816    "FIC029000" => "Fiction / Short Stories (single author)",
8817    "FIC030000" => "Fiction / Thrillers / Suspense",
8818    "FIC031000" => "Fiction / Thrillers / General",
8819    "FIC031010" => "Fiction / Thrillers / Crime",
8820    "FIC031020" => "Fiction / Thrillers / Historical",
8821    "FIC031030" => "Fiction / Thrillers / Legal",
8822    "FIC031040" => "Fiction / Thrillers / Medical",
8823    "FIC031050" => "Fiction / Thrillers / Military",
8824    "FIC031060" => "Fiction / Thrillers / Political",
8825    "FIC032000" => "Fiction / War & Military",
8826    "FIC033000" => "Fiction / Westerns",
8827    "FIC034000" => "Fiction / Legal",
8828    "FIC035000" => "Fiction / Medical",
8829    "FIC036000" => "Fiction / Thrillers / Technological",
8830    "FIC037000" => "Fiction / Political",
8831    "FIC038000" => "Fiction / Sports",
8832    "FIC039000" => "Fiction / Visionary & Metaphysical",
8833    "FIC040000" => "Fiction / Alternative History",
8834    "FIC041000" => "Fiction / Biographical",
8835    "FIC042000" => "Fiction / Christian / General",
8836    "FIC042010" => "Fiction / Christian / Classic & Allegory",
8837    "FIC042020" => "Fiction / Christian / Futuristic",
8838    "FIC042030" => "Fiction / Christian / Historical",
8839    "FIC042040" => "Fiction / Christian / Romance",
8840    "FIC042050" => "Fiction / Christian / Collections & Anthologies",
8841    "FIC042060" => "Fiction / Christian / Suspense",
8842    "FIC042070" => "Fiction / Christian / Western",
8843    "FIC042080" => "Fiction / Christian / Fantasy",
8844    "FIC043000" => "Fiction / Coming of Age",
8845    "FIC044000" => "Fiction / Contemporary Women",
8846    "FIC045000" => "Fiction / Family Life",
8847    "FIC046000" => "Fiction / Jewish",
8848    "FIC047000" => "Fiction / Sea Stories",
8849    "FIC048000" => "Fiction / Urban",
8850    "FIC049000" => "Fiction / African American / General",
8851    "FIC049010" => "Fiction / African American / Christian",
8852    "FIC049020" => "Fiction / African American / Contemporary Women",
8853    "FIC049030" => "Fiction / African American / Erotica",
8854    "FIC049040" => "Fiction / African American / Historical",
8855    "FIC049050" => "Fiction / African American / Mystery & Detective",
8856    "FIC049060" => "Fiction / Romance / African American",
8857    "FIC049070" => "Fiction / African American / Urban",
8858    "FIC050000" => "Fiction / Crime",
8859    "FIC051000" => "Fiction / Cultural Heritage",
8860    "FIC052000" => "Fiction / Satire",
8861    "FIC053000" => "Fiction / Amish & Mennonite",
8862    "FIC054000" => "Fiction / Asian American",
8863    "FIC055000" => "Fiction / Dystopian",
8864    "FIC056000" => "Fiction / Hispanic & Latino",
8865    "FIC05700" => "Fiction / Mashups",
8866    "FIC058000" => "Fiction / Holidays",
8867    "FIC059000" => "Fiction / Native American & Aboriginal",
8868    "FOR000000" => "Foreign Language Study / General",
8869    "FOR001000" => "Foreign Language Study / African Languages",
8870    "FOR002000" => "Foreign Language Study / Arabic",
8871    "FOR003000" => "Foreign Language Study / Chinese",
8872    "FOR004000" => "Foreign Language Study / Danish",
8873    "FOR005000" => "Foreign Language Study / Multi-Language Dictionaries",
8874    "FOR006000" => "Foreign Language Study / Dutch",
8875    "FOR007000" => "Foreign Language Study / English as a Second Language",
8876    "FOR008000" => "Foreign Language Study / French",
8877    "FOR009000" => "Foreign Language Study / German",
8878    "FOR010000" => "Foreign Language Study / Greek (Modern)",
8879    "FOR011000" => "Foreign Language Study / Hebrew",
8880    "FOR012000" => "Foreign Language Study / Hungarian",
8881    "FOR013000" => "Foreign Language Study / Italian",
8882    "FOR014000" => "Foreign Language Study / Japanese",
8883    "FOR015000" => "Foreign Language Study / Korean",
8884    "FOR016000" => "Foreign Language Study / Latin",
8885    "FOR017000" => "Foreign Language Study / Miscellaneous",
8886    "FOR018000" => "Foreign Language Study / Multi-Language Phrasebooks",
8887    "FOR019000" => "Foreign Language Study / Polish",
8888    "FOR020000" => "Foreign Language Study / Portuguese",
8889    "FOR021000" => "Foreign Language Study / Russian",
8890    "FOR022000" => "Foreign Language Study / Scandinavian Languages (Other)",
8891    "FOR023000" => "Foreign Language Study / Serbian & Croatian",
8892    "FOR024000" => "Foreign Language Study / Slavic Languages (Other)",
8893    "FOR025000" => "Foreign Language Study / Southeast Asian Languages",
8894    "FOR026000" => "Foreign Language Study / Spanish",
8895    "FOR027000" => "Foreign Language Study / Turkish & Turkic Languages",
8896    "FOR028000" => "Foreign Language Study / Yiddish",
8897    "FOR029000" => "Foreign Language Study / Celtic Languages",
8898    "FOR030000" => "Foreign Language Study / Indic Languages",
8899    "FOR031000" => "Foreign Language Study / Native American Languages",
8900    "FOR032000" => "Foreign Language Study / Oceanic & Australian Languages",
8901    "FOR033000" => "Foreign Language Study / Ancient Languages",
8902    "FOR034000" => "Foreign Language Study / Baltic Languages",
8903    "FOR035000" => "Foreign Language Study / Creole Languages",
8904    "FOR036000" => "Foreign Language Study / Czech",
8905    "FOR037000" => "Foreign Language Study / Finnish",
8906    "FOR038000" => "Foreign Language Study / Hindi",
8907    "FOR039000" => "Foreign Language Study / Norwegian",
8908    "FOR040000" => "Foreign Language Study / Persian",
8909    "FOR041000" => "Foreign Language Study / Romance Languages (Other)",
8910    "FOR042000" => "Foreign Language Study / Swahili",
8911    "FOR043000" => "Foreign Language Study / Swedish",
8912    "FOR044000" => "Foreign Language Study / Vietnamese",
8913    "FOR045000" => "Foreign Language Study / Old & Middle English",
8914    "GAM000000" => "Games / General",
8915    "GAM001000" => "Games / Board",
8916    "GAM001010" => "Games / Backgammon",
8917    "GAM001020" => "Games / Checkers",
8918    "GAM001030" => "Games / Chess",
8919    "GAM002000" => "Games / Card Games / General",
8920    "GAM002010" => "Games / Card Games / Bridge",
8921    "GAM002020" => "Games / Card Games / Solitaire",
8922    "GAM002030" => "Games / Card Games / Blackjack",
8923    "GAM002040" => "Games / Card Games / Poker",
8924    "GAM003000" => "Games / Crosswords / General",
8925    "GAM003040" => "Games / Crosswords / Dictionaries",
8926    "GAM004000" => "Games / Gambling / General",
8927    "GAM004020" => "Games / Gambling / Lotteries",
8928    "GAM004030" => "Games / Gambling / Table",
8929    "GAM004040" => "Games / Gambling / Track Betting",
8930    "GAM004050" => "Games / Gambling / Sports",
8931    "GAM005000" => "Games / Logic & Brain Teasers",
8932    "GAM006000" => "Games / Magic",
8933    "GAM007000" => "Games / Puzzles",
8934    "GAM008000" => "Games / Quizzes",
8935    "GAM009000" => "Games / Reference",
8936    "GAM010000" => "Games / Role Playing & Fantasy",
8937    "GAM011000" => "Games / Travel Games",
8938    "GAM012000" => "Games / Trivia",
8939    "GAM013000" => "Games / Video & Electronic",
8940    "GAM014000" => "Games / Word & Word Search",
8941    "GAM016000" => "Games / Fantasy Sports",
8942    "GAM017000" => "Games / Sudoku",
8943    "GAM018000" => "Games / Optical Illusions",
8944    "GAR000000" => "Gardening / General",
8945    "GAR001000" => "Gardening / Container",
8946    "GAR002000" => "Gardening / Essays & Narratives",
8947    "GAR004000" => "Gardening / Flowers / General",
8948    "GAR004010" => "Gardening / Flowers / Annuals",
8949    "GAR004030" => "Gardening / Flowers / Bulbs",
8950    "GAR004040" => "Gardening / Flowers / Orchids",
8951    "GAR004050" => "Gardening / Flowers / Perennials",
8952    "GAR004060" => "Gardening / Flowers / Roses",
8953    "GAR004080" => "Gardening / Flowers / Wildflowers",
8954    "GAR005000" => "Gardening / Fruit",
8955    "GAR006000" => "Gardening / Garden Design",
8956    "GAR007000" => "Gardening / Garden Furnishings",
8957    "GAR008000" => "Gardening / Greenhouses",
8958    "GAR009000" => "Gardening / Herbs",
8959    "GAR010000" => "Gardening / House Plants & Indoor",
8960    "GAR013000" => "Gardening / Japanese Gardens",
8961    "GAR014000" => "Gardening / Landscape",
8962    "GAR015000" => "Gardening / Lawns",
8963    "GAR016000" => "Gardening / Organic",
8964    "GAR017000" => "Gardening / Ornamental Plants",
8965    "GAR018000" => "Gardening / Reference",
8966    "GAR019000" => "Gardening / Regional / General",
8967    "GAR019010" => "Gardening / Regional / Canada",
8968    "GAR019020" => "Gardening / Regional / Middle Atlantic (DC, DE, MD, NJ, NY, PA)",
8969    "GAR019030" => "Gardening / Regional / Midwest (IA, IL, IN, KS, MI, MN, MO, ND, NE, OH, SD, WI)",
8970    "GAR019040" => "Gardening / Regional / New England (CT, MA, ME, NH, RI, VT)",
8971    "GAR019050" => "Gardening / Regional / Pacific Northwest (OR, WA)",
8972    "GAR019060" => "Gardening / Regional / South (AL, AR, FL, GA, KY, LA, MS, NC, SC, TN, VA, WV)",
8973    "GAR019070" => "Gardening / Regional / Southwest (AZ, NM, OK, TX)",
8974    "GAR019080" => "Gardening / Regional / West (AK, CA, CO, HI, ID, MT, NV, UT, WY)",
8975    "GAR020000" => "Gardening / Shade",
8976    "GAR021000" => "Gardening / Shrubs",
8977    "GAR022000" => "Gardening / Techniques",
8978    "GAR023000" => "Gardening / Topiary",
8979    "GAR024000" => "Gardening / Trees",
8980    "GAR025000" => "Gardening / Vegetables",
8981    "GAR027000" => "Gardening / Climatic / General",
8982    "GAR027010" => "Gardening / Climatic / Desert",
8983    "GAR027020" => "Gardening / Climatic / Temperate",
8984    "GAR027030" => "Gardening / Climatic / Tropical",
8985    "GAR028000" => "Gardening / Urban",
8986    "HEA000000" => "Health & Fitness / General",
8987    "HEA001000" => "Health & Fitness / Acupressure & Acupuncture",
8988    "HEA002000" => "Health & Fitness / Aerobics",
8989    "HEA003000" => "Health & Fitness / Beauty & Grooming",
8990    "HEA006000" => "Health & Fitness / Diet & Nutrition / Diets",
8991    "HEA007000" => "Health & Fitness / Exercise",
8992    "HEA009000" => "Health & Fitness / Healing",
8993    "HEA010000" => "Health & Fitness / Healthy Living",
8994    "HEA011000" => "Health & Fitness / Herbal Medications",
8995    "HEA012000" => "Health & Fitness / Holism",
8996    "HEA013000" => "Health & Fitness / Diet & Nutrition / Macrobiotics",
8997    "HEA014000" => "Health & Fitness / Massage & Reflexotherapy",
8998    "HEA015000" => "Health & Fitness / Men's Health",
8999    "HEA016000" => "Health & Fitness / Naturopathy",
9000    "HEA017000" => "Health & Fitness / Diet & Nutrition / Nutrition",
9001    "HEA018000" => "Health & Fitness / Physical Impairments",
9002    "HEA019000" => "Health & Fitness / Diet & Nutrition / Weight Loss",
9003    "HEA020000" => "Health & Fitness / Reference",
9004    "HEA021000" => "Health & Fitness / Safety",
9005    "HEA023000" => "Health & Fitness / Diet & Nutrition / Vitamins",
9006    "HEA024000" => "Health & Fitness / Women's Health",
9007    "HEA025000" => "Health & Fitness / Yoga",
9008    "HEA027000" => "Health & Fitness / Allergies",
9009    "HEA028000" => "Health & Fitness / Health Care Issues",
9010    "HEA029000" => "Health & Fitness / Aromatherapy",
9011    "HEA030000" => "Health & Fitness / Homeopathy",
9012    "HEA032000" => "Health & Fitness / Alternative Therapies",
9013    "HEA033000" => "Health & Fitness / First Aid",
9014    "HEA034000" => "Health & Fitness / Diet & Nutrition / Food Content Guides",
9015    "HEA035000" => "Health & Fitness / Hearing & Speech",
9016    "HEA036000" => "Health & Fitness / Pain Management",
9017    "HEA037000" => "Health & Fitness / Vision",
9018    "HEA038000" => "Health & Fitness / Work-Related Health",
9019    "HEA039000" => "Health & Fitness / Diseases / General",
9020    "HEA039010" => "Health & Fitness / Diseases / Gastrointestinal",
9021    "HEA039020" => "Health & Fitness / Diseases / AIDS & HIV",
9022    "HEA039030" => "Health & Fitness / Diseases / Cancer",
9023    "HEA039040" => "Health & Fitness / Diseases / Contagious",
9024    "HEA039050" => "Health & Fitness / Diseases / Diabetes",
9025    "HEA039060" => "Health & Fitness / Diseases / Genetic",
9026    "HEA039070" => "Health & Fitness / Diseases / Genitourinary & STDs",
9027    "HEA039080" => "Health & Fitness / Diseases / Heart",
9028    "HEA039090" => "Health & Fitness / Diseases / Immune System",
9029    "HEA039100" => "Health & Fitness / Diseases / Musculoskeletal",
9030    "HEA039110" => "Health & Fitness / Diseases / Nervous System (incl. Brain)",
9031    "HEA039120" => "Health & Fitness / Diseases / Respiratory",
9032    "HEA039130" => "Health & Fitness / Diseases / Skin",
9033    "HEA039140" => "Health & Fitness / Diseases / Alzheimer's & Dementia",
9034    "HEA039150" => "Health & Fitness / Diseases / Chronic Fatigue Syndrome",
9035    "HEA040000" => "Health & Fitness / Oral Health",
9036    "HEA041000" => "Health & Fitness / Pregnancy & Childbirth",
9037    "HEA042000" => "Health & Fitness / Sexuality",
9038    "HEA043000" => "Health & Fitness / Sleep & Sleep Disorders",
9039    "HEA044000" => "Health & Fitness / Breastfeeding",
9040    "HEA045000" => "Health & Fitness / Infertility",
9041    "HEA046000" => "Health & Fitness / Children's Health",
9042    "HEA047000" => "Health & Fitness / Body Cleansing & Detoxification",
9043    "HEA048000" => "Health & Fitness / Diet & Nutrition / General",
9044    "HIS000000" => "History / General",
9045    "HIS001000" => "History / Africa / General",
9046    "HIS001010" => "History / Africa / Central",
9047    "HIS001020" => "History / Africa / East",
9048    "HIS001030" => "History / Africa / North",
9049    "HIS001040" => "History / Africa / South / General",
9050    "HIS001050" => "History / Africa / West",
9051    "HIS002000" => "History / Ancient / General",
9052    "HIS002010" => "History / Ancient / Greece",
9053    "HIS002020" => "History / Ancient / Rome",
9054    "HIS002030" => "History / Ancient / Egypt",
9055    "HIS003000" => "History / Asia / General",
9056    "HIS004000" => "History / Australia & New Zealand",
9057    "HIS005000" => "History / Europe / Baltic States",
9058    "HIS006000" => "History / Canada / General",
9059    "HIS006010" => "History / Canada / Pre-Confederation (to 1867)",
9060    "HIS006020" => "History / Canada / Post-Confederation (1867-)",
9061    "HIS007000" => "History / Latin America / Central America",
9062    "HIS008000" => "History / Asia / China",
9063    "HIS009000" => "History / Middle East / Egypt",
9064    "HIS010000" => "History / Europe / General",
9065    "HIS010010" => "History / Europe / Eastern",
9066    "HIS010020" => "History / Europe / Western",
9067    "HIS012000" => "History / Europe / Former Soviet Republics",
9068    "HIS013000" => "History / Europe / France",
9069    "HIS014000" => "History / Europe / Germany",
9070    "HIS015000" => "History / Europe / Great Britain",
9071    "HIS016000" => "History / Historiography",
9072    "HIS017000" => "History / Asia / India & South Asia",
9073    "HIS018000" => "History / Europe / Ireland",
9074    "HIS019000" => "History / Middle East / Israel & Palestine",
9075    "HIS020000" => "History / Europe / Italy",
9076    "HIS021000" => "History / Asia / Japan",
9077    "HIS022000" => "History / Jewish",
9078    "HIS023000" => "History / Asia / Korea",
9079    "HIS024000" => "History / Latin America / General",
9080    "HIS025000" => "History / Latin America / Mexico",
9081    "HIS026000" => "History / Middle East / General",
9082    "HIS026010" => "History / Middle East / Arabian Peninsula",
9083    "HIS026020" => "History / Middle East / Iran",
9084    "HIS026030" => "History / Middle East / Iraq",
9085    "HIS027000" => "History / Military / General",
9086    "HIS027010" => "History / Military / Biological & Chemical Warfare",
9087    "HIS027020" => "History / Military / Korean War",
9088    "HIS027030" => "History / Military / Nuclear Warfare",
9089    "HIS027040" => "History / Military / Persian Gulf War (1991)",
9090    "HIS027050" => "History / Military / Pictorial",
9091    "HIS027060" => "History / Military / Strategy",
9092    "HIS027070" => "History / Military / Vietnam War",
9093    "HIS027080" => "History / Military / Weapons",
9094    "HIS027090" => "History / Military / World War I",
9095    "HIS027100" => "History / Military / World War II",
9096    "HIS027110" => "History / Military / United States",
9097    "HIS027120" => "History / Military / Veterans",
9098    "HIS027130" => "History / Military / Other",
9099    "HIS027140" => "History / Military / Aviation",
9100    "HIS027150" => "History / Military / Naval",
9101    "HIS027160" => "History / Military / Canada",
9102    "HIS027170" => "History / Military / Iraq War (2003-2011)",
9103    "HIS027180" => "History / Military / Special Forces",
9104    "HIS027190" => "History / Military / Afghan War (2001-)",
9105    "HIS028000" => "History / Native American",
9106    "HIS029000" => "History / North America",
9107    "HIS030000" => "History / Reference",
9108    "HIS031000" => "History / Revolutionary",
9109    "HIS032000" => "History / Europe / Russia & the Former Soviet Union",
9110    "HIS033000" => "History / Latin America / South America",
9111    "HIS035000" => "History / Study & Teaching",
9112    "HIS036000" => "History / United States / General",
9113    "HIS036010" => "History / United States / State & Local / General",
9114    "HIS036020" => "History / United States / Colonial Period (1600-1775)",
9115    "HIS036030" => "History / United States / Revolutionary Period (1775-1800)",
9116    "HIS036040" => "History / United States / 19th Century",
9117    "HIS036050" => "History / United States / Civil War Period (1850-1877)",
9118    "HIS036060" => "History / United States / 20th Century",
9119    "HIS036070" => "History / United States / 21st Century",
9120    "HIS036080" => "History / United States / State & Local / Middle Atlantic DC, DE, MD, NJ, NY, PA)",
9121    "HIS036090" => "History / United States / State & Local / Midwest (IA, IL, IN, KS, MI, MN, MO, ND, NE, OH, SD, WI)",
9122    "HIS036100" => "History / United States / State & Local / New England (CT, MA, ME, NH, RI, VT)",
9123    "HIS036110" => "History / United States / State & Local / Pacific Northwest (OR, WA)",
9124    "HIS036120" => "History / United States / State & Local / South (AL, AR, FL, GA, KY, LA, MS, NC, SC, TN, VA, WV)",
9125    "HIS036130" => "History / United States / State & Local / Southwest (AZ, NM, OK, TX)",
9126    "HIS036140" => "History / United States / State & Local / West (AK, CA, CO, HI, ID, MT, NV, UT, WY)",
9127    "HIS037000" => "History / World",
9128    "HIS037010" => "History / Medieval",
9129    "HIS037020" => "History / Renaissance",
9130    "HIS037030" => "History / Modern / General",
9131    "HIS037040" => "History / Modern / 17th Century",
9132    "HIS037050" => "History / Modern / 18th Century",
9133    "HIS037060" => "History / Modern / 19th Century",
9134    "HIS037070" => "History / Modern / 20th Century",
9135    "HIS037080" => "History / Modern / 21st Century",
9136    "HIS037090" => "History / Modern / 16th Century",
9137    "HIS038000" => "History / Americas (North, Central, South, West Indies)",
9138    "HIS039000" => "History / Civilization",
9139    "HIS040000" => "History / Europe / Austria & Hungary",
9140    "HIS041000" => "History / Caribbean & West Indies / General",
9141    "HIS041010" => "History / Caribbean & West Indies / Cuba",
9142    "HIS042000" => "History / Europe / Greece",
9143    "HIS043000" => "History / Holocaust",
9144    "HIS044000" => "History / Europe / Scandinavia",
9145    "HIS045000" => "History / Europe / Spain & Portugal",
9146    "HIS046000" => "History / Polar Regions",
9147    "HIS047000" => "History / Africa / South / Republic of South Africa",
9148    "HIS048000" => "History / Asia / Southeast Asia",
9149    "HIS049000" => "History / Essays",
9150    "HIS050000" => "History / Asia / Central Asia",
9151    "HIS051000" => "History / Expeditions & Discoveries",
9152    "HIS052000" => "History / Historical Geography",
9153    "HIS053000" => "History / Oceania",
9154    "HIS054000" => "History / Social History",
9155    "HIS055000" => "History / Middle East / Turkey & Ottoman Empire",
9156    "HOM000000" => "House & Home / General",
9157    "HOM001000" => "House & Home / Do-It-Yourself / Carpentry",
9158    "HOM003000" => "House & Home / Decorating",
9159    "HOM004000" => "House & Home / Design & Construction",
9160    "HOM005000" => "House & Home / Do-It-Yourself / General",
9161    "HOM006000" => "House & Home / Do-It-Yourself / Electrical",
9162    "HOM008000" => "House & Home / Furniture",
9163    "HOM009000" => "House & Home / Hand Tools",
9164    "HOM010000" => "House & Home / Repair",
9165    "HOM011000" => "House & Home / House Plans",
9166    "HOM012000" => "House & Home / Do-It-Yourself / Masonry",
9167    "HOM013000" => "House & Home / Outdoor & Recreational Areas",
9168    "HOM014000" => "House & Home / Do-It-Yourself / Plumbing",
9169    "HOM015000" => "House & Home / Power Tools",
9170    "HOM016000" => "House & Home / Reference",
9171    "HOM017000" => "House & Home / Remodeling & Renovation",
9172    "HOM018000" => "House & Home / Woodworking",
9173    "HOM019000" => "House & Home / Cleaning & Caretaking",
9174    "HOM020000" => "House & Home / Equipment, Appliances & Supplies",
9175    "HOM021000" => "House & Home / Security",
9176    "HOM022000" => "House & Home / Sustainable Living",
9177    "HUM000000" => "HUMOR / General",
9178    "HUM001000" => "HUMOR / Form / Comic Strips & Cartoons",
9179    "HUM003000" => "HUMOR / Form / Essays",
9180    "HUM004000" => "HUMOR / Form / Jokes & Riddles",
9181    "HUM005000" => "HUMOR / Form / Limericks & Verse",
9182    "HUM006000" => "HUMOR / Topic / Political",
9183    "HUM007000" => "HUMOR / Form / Parodies",
9184    "HUM008000" => "HUMOR / Topic / Adult",
9185    "HUM009000" => "HUMOR / Topic / Animals",
9186    "HUM010000" => "HUMOR / Topic / Business & Professional",
9187    "HUM011000" => "HUMOR / Topic / Marriage & Family",
9188    "HUM012000" => "HUMOR / Topic / Relationships",
9189    "HUM013000" => "HUMOR / Topic / Sports",
9190    "HUM014000" => "HUMOR / Topic / Religion",
9191    "HUM015000" => "HUMOR / Form / Anecdotes & Quotations",
9192    "HUM016000" => "HUMOR / Form / Trivia",
9193    "HUM017000" => "HUMOR / Form / Pictorial",
9194    "JNF000000" => "Juvenile Nonfiction / General",
9195    "JNF001000" => "Juvenile Nonfiction / Activity Books",
9196    "JNF002000" => "Juvenile Nonfiction / Adventure & Adventurers",
9197    "JNF003000" => "Juvenile Nonfiction / Animals / General",
9198    "JNF003010" => "Juvenile Nonfiction / Animals / Apes, Monkeys, etc.",
9199    "JNF003020" => "Juvenile Nonfiction / Animals / Bears",
9200    "JNF003030" => "Juvenile Nonfiction / Animals / Birds",
9201    "JNF003040" => "Juvenile Nonfiction / Animals / Cats",
9202    "JNF003050" => "Juvenile Nonfiction / Animals / Dinosaurs & Prehistoric Creatures",
9203    "JNF003060" => "Juvenile Nonfiction / Animals / Dogs",
9204    "JNF003070" => "Juvenile Nonfiction / Animals / Elephants",
9205    "JNF003080" => "Juvenile Nonfiction / Animals / Farm Animals",
9206    "JNF003090" => "Juvenile Nonfiction / Animals / Fishes",
9207    "JNF003100" => "Juvenile Nonfiction / Animals / Foxes",
9208    "JNF003110" => "Juvenile Nonfiction / Animals / Horses",
9209    "JNF003120" => "Juvenile Nonfiction / Animals / Insects, Spiders, etc.",
9210    "JNF003130" => "Juvenile Nonfiction / Animals / Lions, Tigers, Leopards, etc",
9211    "JNF003140" => "Juvenile Nonfiction / Animals / Mammals",
9212    "JNF003150" => "Juvenile Nonfiction / Animals / Marine Life",
9213    "JNF003160" => "Juvenile Nonfiction / Animals / Mice, Hamsters, Guinea Pigs, Squirrels, etc.",
9214    "JNF003170" => "Juvenile Nonfiction / Animals / Pets",
9215    "JNF003180" => "Juvenile Nonfiction / Animals / Rabbits",
9216    "JNF003190" => "Juvenile Nonfiction / Animals / Reptiles & Amphibians",
9217    "JNF003200" => "Juvenile Nonfiction / Animals / Zoos",
9218    "JNF003210" => "Juvenile Nonfiction / Animals / Ducks, Geese, etc.",
9219    "JNF003220" => "Juvenile Nonfiction / Animals / Animal Welfare",
9220    "JNF003230" => "Juvenile Nonfiction / Animals / Deer, Moose & Caribou",
9221    "JNF003240" => "Juvenile Nonfiction / Animals / Wolves & Coyotes",
9222    "JNF003250" => "Juvenile Nonfiction / Animals / Butterflies, Moths & Caterpillars",
9223    "JNF003260" => "Juvenile Nonfiction / Animals / Cows",
9224    "JNF003270" => "Juvenile Nonfiction / Animals / Endangered",
9225    "JNF003280" => "Juvenile Nonfiction / Animals / Giraffes",
9226    "JNF003290" => "Juvenile Nonfiction / Animals / Hippos & Rhinos",
9227    "JNF003300" => "Juvenile Nonfiction / Animals / Jungle Animals",
9228    "JNF003310" => "Juvenile Nonfiction / Animals / Kangaroos",
9229    "JNF003320" => "Juvenile Nonfiction / Animals / Nocturnal",
9230    "JNF003330" => "Juvenile Nonfiction / Animals / Baby Animals",
9231    "JNF004000" => "Juvenile Nonfiction / Antiques & Collectibles",
9232    "JNF005000" => "Juvenile Nonfiction / Architecture",
9233    "JNF006000" => "Juvenile Nonfiction / Art / General",
9234    "JNF006010" => "Juvenile Nonfiction / Art / Cartooning",
9235    "JNF006020" => "Juvenile Nonfiction / Art / Drawing",
9236    "JNF006030" => "Juvenile Nonfiction / Art / Fashion",
9237    "JNF006040" => "Juvenile Nonfiction / Art / History",
9238    "JNF006050" => "Juvenile Nonfiction / Art / Painting",
9239    "JNF006060" => "Juvenile Nonfiction / Art / Sculpture",
9240    "JNF006070" => "Juvenile Nonfiction / Art / Techniques",
9241    "JNF007000" => "Juvenile Nonfiction / Biography & Autobiography / General",
9242    "JNF007010" => "Juvenile Nonfiction / Biography & Autobiography / Art",
9243    "JNF007020" => "Juvenile Nonfiction / Biography & Autobiography / Historical",
9244    "JNF007030" => "Juvenile Nonfiction / Biography & Autobiography / Literary",
9245    "JNF007040" => "Juvenile Nonfiction / Biography & Autobiography / Music",
9246    "JNF007050" => "Juvenile Nonfiction / Biography & Autobiography / Cultural Heritage",
9247    "JNF007060" => "Juvenile Nonfiction / Biography & Autobiography / Performing Arts",
9248    "JNF007070" => "Juvenile Nonfiction / Biography & Autobiography / Political",
9249    "JNF007080" => "Juvenile Nonfiction / Biography & Autobiography / Religious",
9250    "JNF007090" => "Juvenile Nonfiction / Biography & Autobiography / Science & Technology",
9251    "JNF007100" => "Juvenile Nonfiction / Biography & Autobiography / Sports & Recreation",
9252    "JNF007110" => "Juvenile Nonfiction / Biography & Autobiography / Social Activists",
9253    "JNF007120" => "Juvenile Nonfiction / Biography & Autobiography / Women",
9254    "JNF007130" => "Juvenile Nonfiction / Biography & Autobiography / Presidents and First Families (U.S.)",
9255    "JNF007140" => "Juvenile Nonfiction / Biography & Autobiography / Royalty",
9256    "JNF008000" => "Juvenile Nonfiction / Body, Mind & Spirit",
9257    "JNF009000" => "Juvenile Nonfiction / Boys & Men",
9258    "JNF010000" => "Juvenile Nonfiction / Business & Economics",
9259    "JNF011000" => "Juvenile Nonfiction / Careers",
9260    "JNF012000" => "Juvenile Nonfiction / Computers / General",
9261    "JNF012010" => "Juvenile Nonfiction / Computers / Entertainment & Games",
9262    "JNF012020" => "Juvenile Nonfiction / Computers / Hardware",
9263    "JNF012030" => "Juvenile Nonfiction / Computers / Internet",
9264    "JNF012040" => "Juvenile Nonfiction / Computers / Programming",
9265    "JNF012050" => "Juvenile Nonfiction / Computers / Software",
9266    "JNF013000" => "Juvenile Nonfiction / Concepts / General",
9267    "JNF013010" => "Juvenile Nonfiction / Concepts / Alphabet",
9268    "JNF013020" => "Juvenile Nonfiction / Concepts / Colors",
9269    "JNF013030" => "Juvenile Nonfiction / Concepts / Counting & Numbers",
9270    "JNF013040" => "Juvenile Nonfiction / Concepts / Money",
9271    "JNF013050" => "Juvenile Nonfiction / Concepts / Opposites",
9272    "JNF013060" => "Juvenile Nonfiction / Concepts / Sense & Sensation",
9273    "JNF013070" => "Juvenile Nonfiction / Concepts / Size & Shape",
9274    "JNF013080" => "Juvenile Nonfiction / Concepts / Date & Time",
9275    "JNF013090" => "Juvenile Nonfiction / Concepts / Seasons",
9276    "JNF013100" => "Juvenile Nonfiction / Concepts / Sounds",
9277    "JNF013110" => "Juvenile Nonfiction / Concepts / Body",
9278    "JNF014000" => "Juvenile Nonfiction / Cooking & Food",
9279    "JNF015000" => "Juvenile Nonfiction / Crafts & Hobbies",
9280    "JNF016000" => "Juvenile Nonfiction / Curiosities & Wonders",
9281    "JNF017000" => "Juvenile Nonfiction / Drama",
9282    "JNF018010" => "Juvenile Nonfiction / People & Places / United States / African American",
9283    "JNF018020" => "Juvenile Nonfiction / People & Places / United States / Asian American",
9284    "JNF018030" => "Juvenile Nonfiction / People & Places / United States / Hispanic & Latino",
9285    "JNF018040" => "Juvenile Nonfiction / People & Places / United States / Native American",
9286    "JNF018050" => "Juvenile Nonfiction / People & Places / United States / Other",
9287    "JNF019000" => "Juvenile Nonfiction / Family / General",
9288    "JNF019010" => "Juvenile Nonfiction / Family / Adoption",
9289    "JNF019020" => "Juvenile Nonfiction / Family / Marriage & Divorce",
9290    "JNF019030" => "Juvenile Nonfiction / Family / Multigenerational",
9291    "JNF019040" => "Juvenile Nonfiction / Family / New Baby",
9292    "JNF019050" => "Juvenile Nonfiction / Family / Orphans & Foster Homes",
9293    "JNF019060" => "Juvenile Nonfiction / Family / Parents",
9294    "JNF019070" => "Juvenile Nonfiction / Family / Siblings",
9295    "JNF019080" => "Juvenile Nonfiction / Family / Stepfamilies",
9296    "JNF019090" => "Juvenile Nonfiction / Family / Alternative Family",
9297    "JNF020000" => "Juvenile Nonfiction / Foreign Language Study / General",
9298    "JNF020010" => "Juvenile Nonfiction / Foreign Language Study / English as a Second Language",
9299    "JNF020020" => "Juvenile Nonfiction / Foreign Language Study / French",
9300    "JNF020030" => "Juvenile Nonfiction / Foreign Language Study / Spanish",
9301    "JNF021000" => "Juvenile Nonfiction / Games & Activities / General",
9302    "JNF021010" => "Juvenile Nonfiction / Games & Activities / Board Games",
9303    "JNF021020" => "Juvenile Nonfiction / Games & Activities / Card Games",
9304    "JNF021030" => "Juvenile Nonfiction / Games & Activities / Magic",
9305    "JNF021040" => "Juvenile Nonfiction / Games & Activities / Puzzles",
9306    "JNF021050" => "Juvenile Nonfiction / Games & Activities / Questions & Answers",
9307    "JNF021060" => "Juvenile Nonfiction / Games & Activities / Video & Electronic Games",
9308    "JNF021070" => "Juvenile Nonfiction / Games & Activities / Word Games",
9309    "JNF022000" => "Juvenile Nonfiction / Gardening",
9310    "JNF023000" => "Juvenile Nonfiction / Girls & Women",
9311    "JNF024000" => "Juvenile Nonfiction / Health & Daily Living / General",
9312    "JNF024010" => "Juvenile Nonfiction / Health & Daily Living / Diet & Nutrition",
9313    "JNF024020" => "Juvenile Nonfiction / Health & Daily Living / Diseases, Illnesses & Injuries",
9314    "JNF024030" => "Juvenile Nonfiction / Health & Daily Living / First Aid",
9315    "JNF024040" => "Juvenile Nonfiction / Health & Daily Living / Fitness & Exercise",
9316    "JNF024050" => "Juvenile Nonfiction / Health & Daily Living / Maturing",
9317    "JNF024060" => "Juvenile Nonfiction / Health & Daily Living / Personal Hygiene",
9318    "JNF024070" => "Juvenile Nonfiction / Health & Daily Living / Physical Impairments",
9319    "JNF024080" => "Juvenile Nonfiction / Health & Daily Living / Safety",
9320    "JNF024090" => "Juvenile Nonfiction / Health & Daily Living / Sexuality & Pregnancy",
9321    "JNF024100" => "Juvenile Nonfiction / Health & Daily Living / Substance Abuse",
9322    "JNF024110" => "Juvenile Nonfiction / Health & Daily Living / Toilet Training",
9323    "JNF024120" => "Juvenile Nonfiction / Health & Daily Living / Daily Activities",
9324    "JNF025000" => "Juvenile Nonfiction / History / General",
9325    "JNF025010" => "Juvenile Nonfiction / History / Africa",
9326    "JNF025020" => "Juvenile Nonfiction / History / Ancient",
9327    "JNF025030" => "Juvenile Nonfiction / History / Asia",
9328    "JNF025040" => "Juvenile Nonfiction / History / Australia & Oceania",
9329    "JNF025050" => "Juvenile Nonfiction / History / Canada / General",
9330    "JNF025060" => "Juvenile Nonfiction / History / Central & South America",
9331    "JNF025070" => "Juvenile Nonfiction / History / Europe",
9332    "JNF025080" => "Juvenile Nonfiction / History / Exploration & Discovery",
9333    "JNF025090" => "Juvenile Nonfiction / History / Holocaust",
9334    "JNF025100" => "Juvenile Nonfiction / History / Medieval",
9335    "JNF025110" => "Juvenile Nonfiction / History / Mexico",
9336    "JNF025120" => "Juvenile Nonfiction / History / Middle East",
9337    "JNF025130" => "Juvenile Nonfiction / History / Military & Wars",
9338    "JNF025140" => "Juvenile Nonfiction / History / Modern",
9339    "JNF025150" => "Juvenile Nonfiction / History / Prehistoric",
9340    "JNF025160" => "Juvenile Nonfiction / History / Renaissance",
9341    "JNF025170" => "Juvenile Nonfiction / History / United States / General",
9342    "JNF025180" => "Juvenile Nonfiction / History / United States / State & Local",
9343    "JNF025190" => "Juvenile Nonfiction / History / United States / Colonial & Revolutionary Periods",
9344    "JNF025200" => "Juvenile Nonfiction / History / United States / 19th Century",
9345    "JNF025210" => "Juvenile Nonfiction / History / United States / 20th Century",
9346    "JNF025220" => "Juvenile Nonfiction / History / Other",
9347    "JNF025230" => "Juvenile Nonfiction / History / Canada / Pre-Confederation (to 1867)",
9348    "JNF025240" => "Juvenile Nonfiction / History / Canada / Post-Confederation (1867-)",
9349    "JNF025250" => "Juvenile Nonfiction / History / United States / 21st Century",
9350    "JNF025260" => "Juvenile Nonfiction / History / Symbols, Monuments, National Parks, etc.",
9351    "JNF025270" => "Juvenile Nonfiction / History / United States / Civil War Period (1850-1877)",
9352    "JNF026000" => "Juvenile Nonfiction / Holidays & Celebrations / General",
9353    "JNF026010" => "Juvenile Nonfiction / Holidays & Celebrations / Christmas & Advent",
9354    "JNF026020" => "Juvenile Nonfiction / Holidays & Celebrations / Easter & Lent",
9355    "JNF026030" => "Juvenile Nonfiction / Holidays & Celebrations / Halloween",
9356    "JNF026050" => "Juvenile Nonfiction / Holidays & Celebrations / Kwanzaa",
9357    "JNF026060" => "Juvenile Nonfiction / Holidays & Celebrations / Thanksgiving",
9358    "JNF026070" => "Juvenile Nonfiction / Holidays & Celebrations / Valentine's Day",
9359    "JNF026080" => "Juvenile Nonfiction / Holidays & Celebrations / Other, Non-Religious",
9360    "JNF026090" => "Juvenile Nonfiction / Holidays & Celebrations / Other, Religious",
9361    "JNF026100" => "Juvenile Nonfiction / Holidays & Celebrations / Birthdays",
9362    "JNF026110" => "Juvenile Nonfiction / Holidays & Celebrations / Hanukkah",
9363    "JNF026120" => "Juvenile Nonfiction / Holidays & Celebrations / Passover",
9364    "JNF026130" => "Juvenile Nonfiction / Holidays & Celebrations / Patriotic Holidays",
9365    "JNF027000" => "Juvenile Nonfiction / House & Home",
9366    "JNF028000" => "Juvenile Nonfiction / Humor / General",
9367    "JNF028010" => "Juvenile Nonfiction / Humor / Comic Strips & Cartoons",
9368    "JNF028020" => "Juvenile Nonfiction / Humor / Jokes & Riddles",
9369    "JNF029000" => "Juvenile Nonfiction / Language Arts / General",
9370    "JNF029010" => "Juvenile Nonfiction / Language Arts / Composition & Creative Writing",
9371    "JNF029020" => "Juvenile Nonfiction / Language Arts / Grammar",
9372    "JNF029030" => "Juvenile Nonfiction / Language Arts / Handwriting",
9373    "JNF029040" => "Juvenile Nonfiction / Language Arts / Vocabulary & Spelling",
9374    "JNF029050" => "Juvenile Nonfiction / Language Arts / Sign Language",
9375    "JNF030000" => "Juvenile Nonfiction / Law & Crime",
9376    "JNF031000" => "Juvenile Nonfiction / Lifestyles / City & Town Life",
9377    "JNF032000" => "Juvenile Nonfiction / Lifestyles / Country Life",
9378    "JNF033000" => "Juvenile Nonfiction / Lifestyles / Farm & Ranch Life",
9379    "JNF034000" => "Juvenile Nonfiction / Literary Criticism & Collections",
9380    "JNF035000" => "Juvenile Nonfiction / Mathematics / General",
9381    "JNF035010" => "Juvenile Nonfiction / Mathematics / Advanced",
9382    "JNF035020" => "Juvenile Nonfiction / Mathematics / Algebra",
9383    "JNF035030" => "Juvenile Nonfiction / Mathematics / Arithmetic",
9384    "JNF035040" => "Juvenile Nonfiction / Mathematics / Fractions",
9385    "JNF035050" => "Juvenile Nonfiction / Mathematics / Geometry",
9386    "JNF036000" => "Juvenile Nonfiction / Music / General",
9387    "JNF036010" => "Juvenile Nonfiction / Music / Classical",
9388    "JNF036020" => "Juvenile Nonfiction / Music / History",
9389    "JNF036030" => "Juvenile Nonfiction / Music / Instruction & Study",
9390    "JNF036040" => "Juvenile Nonfiction / Music / Jazz",
9391    "JNF036050" => "Juvenile Nonfiction / Music / Popular",
9392    "JNF036060" => "Juvenile Nonfiction / Music / Rap & Hip Hop",
9393    "JNF036070" => "Juvenile Nonfiction / Music / Rock",
9394    "JNF036080" => "Juvenile Nonfiction / Music / Songbooks",
9395    "JNF036090" => "Juvenile Nonfiction / Music / Instruments",
9396    "JNF037010" => "Juvenile Nonfiction / Science & Nature / Earth Sciences / Earthquakes & Volcanoes",
9397    "JNF037020" => "Juvenile Nonfiction / Science & Nature / Environmental Conservation & Protection",
9398    "JNF037030" => "Juvenile Nonfiction / Science & Nature / Flowers & Plants",
9399    "JNF037040" => "Juvenile Nonfiction / Science & Nature / Trees & Forests",
9400    "JNF037050" => "Juvenile Nonfiction / Science & Nature / Fossils",
9401    "JNF037060" => "Juvenile Nonfiction / Science & Nature / Earth Sciences / Rocks & Minerals",
9402    "JNF037070" => "Juvenile Nonfiction / Science & Nature / Earth Sciences / Water (Oceans, Lakes, etc.)",
9403    "JNF037080" => "Juvenile Nonfiction / Science & Nature / Earth Sciences / Weather",
9404    "JNF038000" => "Juvenile Nonfiction / People & Places / General",
9405    "JNF038010" => "Juvenile Nonfiction / People & Places / Africa",
9406    "JNF038020" => "Juvenile Nonfiction / People & Places / Asia",
9407    "JNF038030" => "Juvenile Nonfiction / People & Places / Australia & Oceania",
9408    "JNF038040" => "Juvenile Nonfiction / People & Places / Canada / General",
9409    "JNF038050" => "Juvenile Nonfiction / People & Places / Caribbean & Latin America",
9410    "JNF038060" => "Juvenile Nonfiction / People & Places / Europe",
9411    "JNF038070" => "Juvenile Nonfiction / People & Places / Mexico",
9412    "JNF038080" => "Juvenile Nonfiction / People & Places / Middle East",
9413    "JNF038090" => "Juvenile Nonfiction / People & Places / Polar Regions",
9414    "JNF038100" => "Juvenile Nonfiction / People & Places / United States / General",
9415    "JNF038110" => "Juvenile Nonfiction / People & Places / Other",
9416    "JNF038120" => "Juvenile Nonfiction / People & Places / Canada / Native Canadian",
9417    "JNF039000" => "Juvenile Nonfiction / Performing Arts / General",
9418    "JNF039010" => "Juvenile Nonfiction / Performing Arts / Circus",
9419    "JNF039020" => "Juvenile Nonfiction / Performing Arts / Dance",
9420    "JNF039030" => "Juvenile Nonfiction / Performing Arts / Film",
9421    "JNF039040" => "Juvenile Nonfiction / Performing Arts / Television & Radio",
9422    "JNF039050" => "Juvenile Nonfiction / Performing Arts / Theater",
9423    "JNF040000" => "Juvenile Nonfiction / Philosophy",
9424    "JNF041000" => "Juvenile Nonfiction / Photography",
9425    "JNF042000" => "Juvenile Nonfiction / Poetry / General",
9426    "JNF042010" => "Juvenile Nonfiction / Poetry / Humorous",
9427    "JNF043000" => "Juvenile Nonfiction / Social Science / Politics & Government",
9428    "JNF044000" => "Juvenile Nonfiction / Social Science / Psychology",
9429    "JNF045000" => "Juvenile Nonfiction / Readers / Beginner",
9430    "JNF046000" => "Juvenile Nonfiction / Readers / Intermediate",
9431    "JNF047000" => "Juvenile Nonfiction / Readers / Chapter Books",
9432    "JNF048000" => "Juvenile Nonfiction / Reference / General",
9433    "JNF048010" => "Juvenile Nonfiction / Reference / Almanacs",
9434    "JNF048020" => "Juvenile Nonfiction / Reference / Atlases",
9435    "JNF048030" => "Juvenile Nonfiction / Reference / Dictionaries",
9436    "JNF048040" => "Juvenile Nonfiction / Reference / Encyclopedias",
9437    "JNF048050" => "Juvenile Nonfiction / Reference / Thesauri",
9438    "JNF049000" => "Juvenile Nonfiction / Religion / General",
9439    "JNF049010" => "Juvenile Nonfiction / Religion / Biblical Studies",
9440    "JNF049020" => "Juvenile Nonfiction / Religion / Biblical Biography",
9441    "JNF049030" => "Juvenile Nonfiction / Religion / Biblical Commentaries & Interpretation",
9442    "JNF049040" => "Juvenile Nonfiction / Religion / Bible Stories / General",
9443    "JNF049080" => "Juvenile Nonfiction / Religion / Christianity",
9444    "JNF049090" => "Juvenile Nonfiction / Religion / Eastern",
9445    "JNF049100" => "Juvenile Nonfiction / Religion / Islam",
9446    "JNF049110" => "Juvenile Nonfiction / Religion / Judaism",
9447    "JNF049120" => "Juvenile Nonfiction / Religious / Christian / Devotional & Prayer",
9448    "JNF049130" => "Juvenile Nonfiction / Religious / Christian / General",
9449    "JNF049140" => "Juvenile Nonfiction / Religion / Bible Stories / Old Testament",
9450    "JNF049150" => "Juvenile Nonfiction / Religion / Bible Stories / New Testament",
9451    "JNF049160" => "Juvenile Nonfiction / Religion / Biblical History",
9452    "JNF049170" => "Juvenile Nonfiction / Religion / Biblical Reference",
9453    "JNF049180" => "Juvenile Nonfiction / Religious / Christian / Biography & Autobiography",
9454    "JNF049190" => "Juvenile Nonfiction / Religious / Christian / Comics & Graphic Novels",
9455    "JNF049200" => "Juvenile Nonfiction / Religious / Christian / Early Readers",
9456    "JNF049210" => "Juvenile Nonfiction / Religious / Christian / Family & Relationships",
9457    "JNF049220" => "Juvenile Nonfiction / Religious / Christian / Games & Activities",
9458    "JNF049230" => "Juvenile Nonfiction / Religious / Christian / Health & Daily Living",
9459    "JNF049240" => "Juvenile Nonfiction / Religious / Christian / Holidays & Celebrations",
9460    "JNF049250" => "Juvenile Nonfiction / Religious / Christian / Inspirational",
9461    "JNF049260" => "Juvenile Nonfiction / Religious / Christian / Learning Concepts",
9462    "JNF049270" => "Juvenile Nonfiction / Religious / Christian / People & Places",
9463    "JNF049280" => "Juvenile Nonfiction / Religious / Christian / Science & Nature",
9464    "JNF049290" => "Juvenile Nonfiction / Religious / Christian / Social Issues",
9465    "JNF049300" => "Juvenile Nonfiction / Religious / Christian / Sports & Recreation",
9466    "JNF049310" => "Juvenile Nonfiction / Religious / Christian / Values & Virtues",
9467    "JNF050000" => "Juvenile Nonfiction / School & Education",
9468    "JNF051000" => "Juvenile Nonfiction / Science & Nature / General",
9469    "JNF051010" => "Juvenile Nonfiction / Technology / Aeronautics, Astronautics & Space Science",
9470    "JNF051020" => "Juvenile Nonfiction / Technology / Agriculture",
9471    "JNF051030" => "Juvenile Nonfiction / Science & Nature / Anatomy & Physiology",
9472    "JNF051040" => "Juvenile Nonfiction / Science & Nature / Astronomy",
9473    "JNF051050" => "Juvenile Nonfiction / Science & Nature / Biology",
9474    "JNF051060" => "Juvenile Nonfiction / Science & Nature / Botany",
9475    "JNF051070" => "Juvenile Nonfiction / Science & Nature / Chemistry",
9476    "JNF051080" => "Juvenile Nonfiction / Science & Nature / Earth Sciences / General",
9477    "JNF051090" => "Juvenile Nonfiction / Technology / Electricity & Electronics",
9478    "JNF051100" => "Juvenile Nonfiction / Science & Nature / Environmental Science & Ecosystems",
9479    "JNF051110" => "Juvenile Nonfiction / Science & Nature / Experiments & Projects",
9480    "JNF051120" => "Juvenile Nonfiction / Technology / How Things Work-Are Made",
9481    "JNF051130" => "Juvenile Nonfiction / Technology / Machinery & Tools",
9482    "JNF051140" => "Juvenile Nonfiction / Science & Nature / Physics",
9483    "JNF051150" => "Juvenile Nonfiction / Science & Nature / Zoology",
9484    "JNF051160" => "Juvenile Nonfiction / Science & Nature / Disasters",
9485    "JNF051170" => "Juvenile Nonfiction / Science & Nature / Discoveries",
9486    "JNF051180" => "Juvenile Nonfiction / Science & Nature / Earth Sciences / Geography",
9487    "JNF051190" => "Juvenile Nonfiction / Science & Nature / History of Science",
9488    "JNF051200" => "Juvenile Nonfiction / Science & Nature / Weights & Measures",
9489    "JNF052000" => "Juvenile Nonfiction / Social Science / General",
9490    "JNF052010" => "Juvenile Nonfiction / Social Science / Archaeology",
9491    "JNF052020" => "Juvenile Nonfiction / Social Science / Customs, Traditions, Anthropology",
9492    "JNF052030" => "Juvenile Nonfiction / Social Science / Folklore & Mythology",
9493    "JNF052040" => "Juvenile Nonfiction / Social Science / Sociology",
9494    "JNF053000" => "Juvenile Nonfiction / Social Issues / General",
9495    "JNF053010" => "Juvenile Nonfiction / Social Issues / Adolescence",
9496    "JNF053020" => "Juvenile Nonfiction / Social Issues / Dating & Sex",
9497    "JNF053030" => "Juvenile Nonfiction / Social Issues / Death & Dying",
9498    "JNF053040" => "Juvenile Nonfiction / Social Issues / Drugs, Alcohol, Substance Abuse",
9499    "JNF053050" => "Juvenile Nonfiction / Social Issues / Emotions & Feelings",
9500    "JNF053060" => "Juvenile Nonfiction / Social Issues / Friendship",
9501    "JNF053070" => "Juvenile Nonfiction / Social Issues / Homelessness & Poverty",
9502    "JNF053080" => "Juvenile Nonfiction / Social Issues / Homosexuality",
9503    "JNF053090" => "Juvenile Nonfiction / Social Issues / Manners & Etiquette",
9504    "JNF053100" => "Juvenile Nonfiction / Social Issues / New Experience",
9505    "JNF053110" => "Juvenile Nonfiction / Social Issues / Peer Pressure",
9506    "JNF053120" => "Juvenile Nonfiction / Social Issues / Physical & Emotional Abuse",
9507    "JNF053130" => "Juvenile Nonfiction / Social Issues / Pregnancy",
9508    "JNF053140" => "Juvenile Nonfiction / Social Issues / Prejudice & Racism",
9509    "JNF053150" => "Juvenile Nonfiction / Social Issues / Runaways",
9510    "JNF053160" => "Juvenile Nonfiction / Social Issues / Self-Esteem & Self-Reliance",
9511    "JNF053170" => "Juvenile Nonfiction / Social Issues / Sexual Abuse",
9512    "JNF053180" => "Juvenile Nonfiction / Social Issues / Special Needs",
9513    "JNF053190" => "Juvenile Nonfiction / Social Issues / Suicide",
9514    "JNF053200" => "Juvenile Nonfiction / Social Issues / Values & Virtues",
9515    "JNF053210" => "Juvenile Nonfiction / Social Issues / Violence",
9516    "JNF053220" => "Juvenile Nonfiction / Social Issues / Bullying",
9517    "JNF053230" => "Juvenile Nonfiction / Social Issues / Depression & Mental Illness",
9518    "JNF053240" => "Juvenile Nonfiction / Social Issues / Emigration & Immigration",
9519    "JNF053250" => "Juvenile Nonfiction / Social Issues / Self-Mutilation",
9520    "JNF053260" => "Juvenile Nonfiction / Social Issues / Strangers",
9521    "JNF054000" => "Juvenile Nonfiction / Sports & Recreation / General",
9522    "JNF054010" => "Juvenile Nonfiction / Sports & Recreation / Baseball & Softball",
9523    "JNF054020" => "Juvenile Nonfiction / Sports & Recreation / Basketball",
9524    "JNF054030" => "Juvenile Nonfiction / Sports & Recreation / Camping & Outdoor Activities",
9525    "JNF054040" => "Juvenile Nonfiction / Sports & Recreation / Cycling",
9526    "JNF054050" => "Juvenile Nonfiction / Sports & Recreation / Football",
9527    "JNF054060" => "Juvenile Nonfiction / Sports & Recreation / Gymnastics",
9528    "JNF054070" => "Juvenile Nonfiction / Sports & Recreation / Hockey",
9529    "JNF054080" => "Juvenile Nonfiction / Sports & Recreation / Martial Arts",
9530    "JNF054090" => "Juvenile Nonfiction / Sports & Recreation / Miscellaneous",
9531    "JNF054100" => "Juvenile Nonfiction / Sports & Recreation / Motor Sports",
9532    "JNF054110" => "Juvenile Nonfiction / Sports & Recreation / Olympics",
9533    "JNF054120" => "Juvenile Nonfiction / Sports & Recreation / Racket Sports",
9534    "JNF054130" => "Juvenile Nonfiction / Sports & Recreation / Soccer",
9535    "JNF054140" => "Juvenile Nonfiction / Sports & Recreation / Track & Field",
9536    "JNF054150" => "Juvenile Nonfiction / Sports & Recreation / Water Sports",
9537    "JNF054160" => "Juvenile Nonfiction / Sports & Recreation / Winter Sports",
9538    "JNF054170" => "Juvenile Nonfiction / Sports & Recreation / Equestrian",
9539    "JNF054180" => "Juvenile Nonfiction / Sports & Recreation / Extreme Sports",
9540    "JNF054190" => "Juvenile Nonfiction / Sports & Recreation / Ice Skating",
9541    "JNF054200" => "Juvenile Nonfiction / Sports & Recreation / Roller & In-Line Skating",
9542    "JNF054210" => "Juvenile Nonfiction / Sports & Recreation / Skateboarding",
9543    "JNF054220" => "Juvenile Nonfiction / Sports & Recreation / Wrestling",
9544    "JNF054230" => "Juvenile Nonfiction / Sports & Recreation / Golf",
9545    "JNF055000" => "Juvenile Nonfiction / Study Aids / General",
9546    "JNF055010" => "Juvenile Nonfiction / Study Aids / Book Notes",
9547    "JNF055030" => "Juvenile Nonfiction / Study Aids / Test Preparation",
9548    "JNF056000" => "Juvenile Nonfiction / Toys, Dolls & Puppets",
9549    "JNF057000" => "Juvenile Nonfiction / Transportation / General",
9550    "JNF057010" => "Juvenile Nonfiction / Transportation / Aviation",
9551    "JNF057020" => "Juvenile Nonfiction / Transportation / Boats, Ships & Underwater Craft",
9552    "JNF057030" => "Juvenile Nonfiction / Transportation / Cars & Trucks",
9553    "JNF057040" => "Juvenile Nonfiction / Transportation / Motorcycles",
9554    "JNF057050" => "Juvenile Nonfiction / Transportation / Railroads & Trains",
9555    "JNF058000" => "Juvenile Nonfiction / Travel",
9556    "JNF059000" => "Juvenile Nonfiction / Clothing & Dress",
9557    "JNF060000" => "Juvenile Nonfiction / Media Studies",
9558    "JNF061000" => "Juvenile Nonfiction / Technology / General",
9559    "JNF061010" => "Juvenile Nonfiction / Technology / Inventions",
9560    "JNF062000" => "Juvenile Nonfiction / Comics & Graphic Novels / General",
9561    "JNF062010" => "Juvenile Nonfiction / Comics & Graphic Novels / Biography",
9562    "JNF062020" => "Juvenile Nonfiction / Comics & Graphic Novels / History",
9563    "JNF063000" => "Juvenile Nonfiction / Books & Libraries",
9564    "JNF064000" => "Juvenile Nonfiction / Media Tie-In",
9565    "JUV000000" => "Juvenile Fiction / General",
9566    "JUV001000" => "Juvenile Fiction / Action & Adventure / General",
9567    "JUV001010" => "Juvenile Fiction / Action & Adventure / Survival Stories",
9568    "JUV001020" => "Juvenile Fiction / Action & Adventure / Pirates",
9569    "JUV002000" => "Juvenile Fiction / Animals / General",
9570    "JUV002010" => "Juvenile Fiction / Animals / Alligators & Crocodiles",
9571    "JUV002020" => "Juvenile Fiction / Animals / Apes, Monkeys, etc.",
9572    "JUV002030" => "Juvenile Fiction / Animals / Bears",
9573    "JUV002040" => "Juvenile Fiction / Animals / Birds",
9574    "JUV002050" => "Juvenile Fiction / Animals / Cats",
9575    "JUV002060" => "Juvenile Fiction / Animals / Dinosaurs & Prehistoric Creatures",
9576    "JUV002070" => "Juvenile Fiction / Animals / Dogs",
9577    "JUV002080" => "Juvenile Fiction / Animals / Elephants",
9578    "JUV002090" => "Juvenile Fiction / Animals / Farm Animals",
9579    "JUV002100" => "Juvenile Fiction / Animals / Fishes",
9580    "JUV002110" => "Juvenile Fiction / Animals / Foxes",
9581    "JUV002120" => "Juvenile Fiction / Animals / Frogs & Toads",
9582    "JUV002130" => "Juvenile Fiction / Animals / Horses",
9583    "JUV002140" => "Juvenile Fiction / Animals / Insects, Spiders, etc.",
9584    "JUV002150" => "Juvenile Fiction / Animals / Lions, Tigers, Leopards, etc.",
9585    "JUV002160" => "Juvenile Fiction / Animals / Mammals",
9586    "JUV002170" => "Juvenile Fiction / Animals / Marine Life",
9587    "JUV002180" => "Juvenile Fiction / Animals / Mice, Hamsters, Guinea Pigs, etc.",
9588    "JUV002190" => "Juvenile Fiction / Animals / Pets",
9589    "JUV002200" => "Juvenile Fiction / Animals / Pigs",
9590    "JUV002210" => "Juvenile Fiction / Animals / Rabbits",
9591    "JUV002220" => "Juvenile Fiction / Animals / Reptiles & Amphibians",
9592    "JUV002230" => "Juvenile Fiction / Animals / Squirrels",
9593    "JUV002240" => "Juvenile Fiction / Animals / Turtles",
9594    "JUV002250" => "Juvenile Fiction / Animals / Wolves & Coyotes",
9595    "JUV002260" => "Juvenile Fiction / Animals / Zoos",
9596    "JUV002270" => "Juvenile Fiction / Animals / Dragons, Unicorns & Mythical",
9597    "JUV002280" => "Juvenile Fiction / Animals / Ducks, Geese, etc.",
9598    "JUV002290" => "Juvenile Fiction / Animals / Deer, Moose & Caribou",
9599    "JUV002300" => "Juvenile Fiction / Animals / Butterflies, Moths & Caterpillars",
9600    "JUV002310" => "Juvenile Fiction / Animals / Cows",
9601    "JUV002320" => "Juvenile Fiction / Animals / Giraffes",
9602    "JUV002330" => "Juvenile Fiction / Animals / Hippos & Rhinos",
9603    "JUV002340" => "Juvenile Fiction / Animals / Jungle Animals",
9604    "JUV002350" => "Juvenile Fiction / Animals / Kangaroos",
9605    "JUV002360" => "Juvenile Fiction / Animals / Nocturnal",
9606    "JUV002370" => "Juvenile Fiction / Animals / Baby Animals",
9607    "JUV003000" => "Juvenile Fiction / Art & Architecture",
9608    "JUV004000" => "Juvenile Fiction / Biographical / General",
9609    "JUV004010" => "Juvenile Fiction / Biographical / European",
9610    "JUV004020" => "Juvenile Fiction / Biographical / United States",
9611    "JUV004030" => "Juvenile Fiction / Biographical / Other",
9612    "JUV004040" => "Juvenile Fiction / Biographical / Canada",
9613    "JUV005000" => "Juvenile Fiction / Boys & Men",
9614    "JUV006000" => "Juvenile Fiction / Business, Careers, Occupations",
9615    "JUV007000" => "Juvenile Fiction / Classics",
9616    "JUV008000" => "Juvenile Fiction / Comics & Graphic Novels / General",
9617    "JUV008010" => "Juvenile Fiction / Comics & Graphic Novels / Manga",
9618    "JUV008020" => "Juvenile Fiction / Comics & Graphic Novels / Superheroes",
9619    "JUV008030" => "Juvenile Fiction / Comics & Graphic Novels / Media Tie-In",
9620    "JUV009000" => "Juvenile Fiction / Concepts / General",
9621    "JUV009010" => "Juvenile Fiction / Concepts / Alphabet",
9622    "JUV009020" => "Juvenile Fiction / Concepts / Colors",
9623    "JUV009030" => "Juvenile Fiction / Concepts / Counting & Numbers",
9624    "JUV009040" => "Juvenile Fiction / Concepts / Opposites",
9625    "JUV009050" => "Juvenile Fiction / Concepts / Senses & Sensation",
9626    "JUV009060" => "Juvenile Fiction / Concepts / Size & Shape",
9627    "JUV009070" => "Juvenile Fiction / Concepts / Date & Time",
9628    "JUV009080" => "Juvenile Fiction / Concepts / Words",
9629    "JUV009090" => "Juvenile Fiction / Concepts / Money",
9630    "JUV009100" => "Juvenile Fiction / Concepts / Seasons",
9631    "JUV009110" => "Juvenile Fiction / Concepts / Sounds",
9632    "JUV009120" => "Juvenile Fiction / Concepts / Body",
9633    "JUV010000" => "Juvenile Fiction / Bedtime & Dreams",
9634    "JUV011010" => "Juvenile Fiction / People & Places / United States / African American",
9635    "JUV011020" => "Juvenile Fiction / People & Places / United States / Asian American",
9636    "JUV011030" => "Juvenile Fiction / People & Places / United States / Hispanic & Latino",
9637    "JUV011040" => "Juvenile Fiction / People & Places / United States / Native American",
9638    "JUV011050" => "Juvenile Fiction / People & Places / United States / Other",
9639    "JUV012000" => "Juvenile Fiction / Fairy Tales & Folklore / Anthologies",
9640    "JUV012020" => "Juvenile Fiction / Fairy Tales & Folklore / Country & Ethnic",
9641    "JUV012030" => "Juvenile Fiction / Fairy Tales & Folklore / General",
9642    "JUV012040" => "Juvenile Fiction / Fairy Tales & Folklore / Adaptations",
9643    "JUV013000" => "Juvenile Fiction / Family / General",
9644    "JUV013010" => "Juvenile Fiction / Family / Adoption",
9645    "JUV013020" => "Juvenile Fiction / Family / Marriage & Divorce",
9646    "JUV013030" => "Juvenile Fiction / Family / Multigenerational",
9647    "JUV013040" => "Juvenile Fiction / Family / New Baby",
9648    "JUV013050" => "Juvenile Fiction / Family / Orphans & Foster Homes",
9649    "JUV013060" => "Juvenile Fiction / Family / Parents",
9650    "JUV013070" => "Juvenile Fiction / Family / Siblings",
9651    "JUV013080" => "Juvenile Fiction / Family / Stepfamilies",
9652    "JUV013090" => "Juvenile Fiction / Family / Alternative Family",
9653    "JUV014000" => "Juvenile Fiction / Girls & Women",
9654    "JUV015000" => "Juvenile Fiction / Health & Daily Living / General",
9655    "JUV015010" => "Juvenile Fiction / Health & Daily Living / Daily Activities",
9656    "JUV015020" => "Juvenile Fiction / Health & Daily Living / Diseases, Illnesses & Injuries",
9657    "JUV016000" => "Juvenile Fiction / Historical / General",
9658    "JUV016010" => "Juvenile Fiction / Historical / Africa",
9659    "JUV016020" => "Juvenile Fiction / Historical / Ancient Civilizations",
9660    "JUV016030" => "Juvenile Fiction / Historical / Asia",
9661    "JUV016040" => "Juvenile Fiction / Historical / Europe",
9662    "JUV016050" => "Juvenile Fiction / Historical / Exploration & Discovery",
9663    "JUV016060" => "Juvenile Fiction / Historical / Holocaust",
9664    "JUV016070" => "Juvenile Fiction / Historical / Medieval",
9665    "JUV016080" => "Juvenile Fiction / Historical / Military & Wars",
9666    "JUV016090" => "Juvenile Fiction / Historical / PreHistory",
9667    "JUV016100" => "Juvenile Fiction / Historical / Renaissance",
9668    "JUV016110" => "Juvenile Fiction / Historical / United States / General",
9669    "JUV016120" => "Juvenile Fiction / Historical / United States / Colonial & Revolutionary Periods",
9670    "JUV016130" => "Juvenile Fiction / Historical / Other",
9671    "JUV016140" => "Juvenile Fiction / Historical / United States / 19th Century",
9672    "JUV016150" => "Juvenile Fiction / Historical / United States / 20th Century",
9673    "JUV016160" => "Juvenile Fiction / Historical / Canada / General",
9674    "JUV016170" => "Juvenile Fiction / Historical / Canada / Pre-Confederation (to 1867)",
9675    "JUV016180" => "Juvenile Fiction / Historical / Canada / Post-Confederation (1867-)",
9676    "JUV016190" => "Juvenile Fiction / Historical / United States / 21st Century",
9677    "JUV016200" => "Juvenile Fiction / Historical / United States / Civil War Period (1850-1877)",
9678    "JUV016210" => "Juvenile Fiction / Historical / Middle East",
9679    "JUV017000" => "Juvenile Fiction / Holidays & Celebrations / General",
9680    "JUV017010" => "Juvenile Fiction / Holidays & Celebrations / Christmas & Advent",
9681    "JUV017020" => "Juvenile Fiction / Holidays & Celebrations / Easter & Lent",
9682    "JUV017030" => "Juvenile Fiction / Holidays & Celebrations / Halloween",
9683    "JUV017050" => "Juvenile Fiction / Holidays & Celebrations / Kwanzaa",
9684    "JUV017060" => "Juvenile Fiction / Holidays & Celebrations / Thanksgiving",
9685    "JUV017070" => "Juvenile Fiction / Holidays & Celebrations / Valentine's Day",
9686    "JUV017080" => "Juvenile Fiction / Holidays & Celebrations / Other, Non-Religious",
9687    "JUV017090" => "Juvenile Fiction / Holidays & Celebrations / Other, Religious",
9688    "JUV017100" => "Juvenile Fiction / Holidays & Celebrations / Birthdays",
9689    "JUV017110" => "Juvenile Fiction / Holidays & Celebrations / Hanukkah",
9690    "JUV017120" => "Juvenile Fiction / Holidays & Celebrations / Passover",
9691    "JUV017130" => "Juvenile Fiction / Holidays & Celebrations / Patriotic Holidays",
9692    "JUV018000" => "Juvenile Fiction / Horror & Ghost Stories",
9693    "JUV019000" => "Juvenile Fiction / Humorous Stories",
9694    "JUV020000" => "Juvenile Fiction / Interactive Adventures",
9695    "JUV021000" => "Juvenile Fiction / Law & Crime",
9696    "JUV022000" => "Juvenile Fiction / Legends, Myths, Fables / General",
9697    "JUV022010" => "Juvenile Fiction / Legends, Myths, Fables / Arthurian",
9698    "JUV022020" => "Juvenile Fiction / Legends, Myths, Fables / Greek & Roman",
9699    "JUV022030" => "Juvenile Fiction / Legends, Myths, Fables / Norse",
9700    "JUV022040" => "Juvenile Fiction / Legends, Myths, Fables / Other",
9701    "JUV023000" => "Juvenile Fiction / Lifestyles / City & Town Life",
9702    "JUV024000" => "Juvenile Fiction / Lifestyles / Country Life",
9703    "JUV025000" => "Juvenile Fiction / Lifestyles / Farm & Ranch Life",
9704    "JUV026000" => "Juvenile Fiction / Love & Romance",
9705    "JUV027000" => "Juvenile Fiction / Media Tie-In",
9706    "JUV028000" => "Juvenile Fiction / Mysteries & Detective Stories",
9707    "JUV029000" => "Juvenile Fiction / Nature & the Natural World / General",
9708    "JUV029010" => "Juvenile Fiction / Nature & the Natural World / Environment",
9709    "JUV029020" => "Juvenile Fiction / Nature & the Natural World / Weather",
9710    "JUV030000" => "Juvenile Fiction / People & Places / General",
9711    "JUV030010" => "Juvenile Fiction / People & Places / Africa",
9712    "JUV030020" => "Juvenile Fiction / People & Places / Asia",
9713    "JUV030030" => "Juvenile Fiction / People & Places / Canada / General",
9714    "JUV030040" => "Juvenile Fiction / People & Places / Caribbean & Latin America",
9715    "JUV030050" => "Juvenile Fiction / People & Places / Europe",
9716    "JUV030060" => "Juvenile Fiction / People & Places / United States / General",
9717    "JUV030070" => "Juvenile Fiction / People & Places / Other",
9718    "JUV030080" => "Juvenile Fiction / People & Places / Australia & Oceania",
9719    "JUV030090" => "Juvenile Fiction / People & Places / Canada / Native Canadian",
9720    "JUV030100" => "Juvenile Fiction / People & Places / Mexico",
9721    "JUV030110" => "Juvenile Fiction / People & Places / Middle East",
9722    "JUV030120" => "Juvenile Fiction / People & Places / Polar Regions",
9723    "JUV031000" => "Juvenile Fiction / Performing Arts / General",
9724    "JUV031010" => "Juvenile Fiction / Performing Arts / Circus",
9725    "JUV031020" => "Juvenile Fiction / Performing Arts / Dance",
9726    "JUV031030" => "Juvenile Fiction / Performing Arts / Film",
9727    "JUV031040" => "Juvenile Fiction / Performing Arts / Music",
9728    "JUV031050" => "Juvenile Fiction / Performing Arts / Television & Radio",
9729    "JUV031060" => "Juvenile Fiction / Performing Arts / Theater",
9730    "JUV032000" => "Juvenile Fiction / Sports & Recreation / General",
9731    "JUV032010" => "Juvenile Fiction / Sports & Recreation / Baseball & Softball",
9732    "JUV032020" => "Juvenile Fiction / Sports & Recreation / Basketball",
9733    "JUV032030" => "Juvenile Fiction / Sports & Recreation / Football",
9734    "JUV032040" => "Juvenile Fiction / Sports & Recreation / Games",
9735    "JUV032050" => "Juvenile Fiction / Sports & Recreation / Miscellaneous",
9736    "JUV032060" => "Juvenile Fiction / Sports & Recreation / Water Sports",
9737    "JUV032070" => "Juvenile Fiction / Sports & Recreation / Martial Arts",
9738    "JUV032080" => "Juvenile Fiction / Sports & Recreation / Winter Sports",
9739    "JUV032090" => "Juvenile Fiction / Sports & Recreation / Equestrian",
9740    "JUV032100" => "Juvenile Fiction / Sports & Recreation / Extreme Sports",
9741    "JUV032110" => "Juvenile Fiction / Sports & Recreation / Hockey",
9742    "JUV032120" => "Juvenile Fiction / Sports & Recreation / Ice Skating",
9743    "JUV032130" => "Juvenile Fiction / Sports & Recreation / Roller & In-Line Skating",
9744    "JUV032140" => "Juvenile Fiction / Sports & Recreation / Skateboarding",
9745    "JUV032150" => "Juvenile Fiction / Sports & Recreation / Soccer",
9746    "JUV032160" => "Juvenile Fiction / Sports & Recreation / Wrestling",
9747    "JUV032170" => "Juvenile Fiction / Sports & Recreation / Camping & Outdoor Activities",
9748    "JUV032180" => "Juvenile Fiction / Sports & Recreation / Cycling",
9749    "JUV032190" => "Juvenile Fiction / Sports & Recreation / Golf",
9750    "JUV033000" => "Juvenile Fiction / Religious / General",
9751    "JUV033010" => "Juvenile Fiction / Religious / Christian / General",
9752    "JUV033020" => "Juvenile Fiction / Religious / Jewish",
9753    "JUV033030" => "Juvenile Fiction / Religious / Other",
9754    "JUV033040" => "Juvenile Fiction / Religious / Christian / Action & Adventure",
9755    "JUV033050" => "Juvenile Fiction / Religious / Christian / Animals",
9756    "JUV033060" => "Juvenile Fiction / Religious / Christian / Bedtime & Dreams",
9757    "JUV033070" => "Juvenile Fiction / Religious / Christian / Comics & Graphic Novels",
9758    "JUV033080" => "Juvenile Fiction / Religious / Christian / Early Readers",
9759    "JUV033090" => "Juvenile Fiction / Religious / Christian / Emotions & Feelings",
9760    "JUV033100" => "Juvenile Fiction / Religious / Christian / Family",
9761    "JUV033110" => "Juvenile Fiction / Religious / Christian / Fantasy",
9762    "JUV033120" => "Juvenile Fiction / Religious / Christian / Friendship",
9763    "JUV033130" => "Juvenile Fiction / Religious / Christian / Health & Daily Living",
9764    "JUV033140" => "Juvenile Fiction / Religious / Christian / Historical",
9765    "JUV033150" => "Juvenile Fiction / Religious / Christian / Holidays & Celebrations",
9766    "JUV033160" => "Juvenile Fiction / Religious / Christian / Humorous",
9767    "JUV033170" => "Juvenile Fiction / Religious / Christian / Learning Concepts",
9768    "JUV033180" => "Juvenile Fiction / Religious / Christian / Mysteries & Detective Stories",
9769    "JUV033190" => "Juvenile Fiction / Religious / Christian / People & Places",
9770    "JUV033200" => "Juvenile Fiction / Religious / Christian / Relationships",
9771    "JUV033210" => "Juvenile Fiction / Religious / Christian / Science Fiction",
9772    "JUV033220" => "Juvenile Fiction / Religious / Christian / Social Issues",
9773    "JUV033230" => "Juvenile Fiction / Religious / Christian / Sports & Recreation",
9774    "JUV033240" => "Juvenile Fiction / Religious / Christian / Values & Virtues",
9775    "JUV034000" => "Juvenile Fiction / Royalty",
9776    "JUV035000" => "Juvenile Fiction / School & Education",
9777    "JUV036000" => "Juvenile Fiction / Science & Technology",
9778    "JUV037000" => "Juvenile Fiction / Fantasy & Magic",
9779    "JUV038000" => "Juvenile Fiction / Short Stories",
9780    "JUV039000" => "Juvenile Fiction / Social Issues / General",
9781    "JUV039010" => "Juvenile Fiction / Social Issues / Physical & Emotional Abuse",
9782    "JUV039020" => "Juvenile Fiction / Social Issues / Adolescence",
9783    "JUV039030" => "Juvenile Fiction / Social Issues / Death & Dying",
9784    "JUV039040" => "Juvenile Fiction / Social Issues / Drugs, Alcohol, Substance Abuse",
9785    "JUV039050" => "Juvenile Fiction / Social Issues / Emotions & Feelings",
9786    "JUV039060" => "Juvenile Fiction / Social Issues / Friendship",
9787    "JUV039070" => "Juvenile Fiction / Social Issues / Homelessness & Poverty",
9788    "JUV039080" => "Juvenile Fiction / Social Issues / Homosexuality",
9789    "JUV039090" => "Juvenile Fiction / Social Issues / New Experience",
9790    "JUV039100" => "Juvenile Fiction / Social Issues / Peer Pressure",
9791    "JUV039110" => "Juvenile Fiction / Social Issues / Pregnancy",
9792    "JUV039120" => "Juvenile Fiction / Social Issues / Prejudice & Racism",
9793    "JUV039130" => "Juvenile Fiction / Social Issues / Runaways",
9794    "JUV039140" => "Juvenile Fiction / Social Issues / Self-Esteem & Self-Reliance",
9795    "JUV039150" => "Juvenile Fiction / Social Issues / Special Needs",
9796    "JUV039160" => "Juvenile Fiction / Social Issues / Suicide",
9797    "JUV039170" => "Juvenile Fiction / Health & Daily Living / Toilet Training",
9798    "JUV039180" => "Juvenile Fiction / Social Issues / Violence",
9799    "JUV039190" => "Juvenile Fiction / Social Issues / Dating & Sex",
9800    "JUV039200" => "Juvenile Fiction / Social Issues / Manners & Etiquette",
9801    "JUV039210" => "Juvenile Fiction / Social Issues / Sexual Abuse",
9802    "JUV039220" => "Juvenile Fiction / Social Issues / Values & Virtues",
9803    "JUV039230" => "Juvenile Fiction / Social Issues / Bullying",
9804    "JUV039240" => "Juvenile Fiction / Social Issues / Depression & Mental Illness",
9805    "JUV039250" => "Juvenile Fiction / Social Issues / Emigration & Immigration",
9806    "JUV039260" => "Juvenile Fiction / Social Issues / Self-Mutilation",
9807    "JUV039270" => "Juvenile Fiction / Social Issues / Strangers",
9808    "JUV040000" => "Juvenile Fiction / Toys, Dolls, Puppets",
9809    "JUV041000" => "Juvenile Fiction / Transportation / General",
9810    "JUV041010" => "Juvenile Fiction / Transportation / Aviation",
9811    "JUV041020" => "Juvenile Fiction / Transportation / Boats, Ships & Underwater Craft",
9812    "JUV041030" => "Juvenile Fiction / Transportation / Cars & Trucks",
9813    "JUV041040" => "Juvenile Fiction / Transportation / Motorcycles",
9814    "JUV041050" => "Juvenile Fiction / Transportation / Railroads & Trains",
9815    "JUV042000" => "Juvenile Fiction / Westerns",
9816    "JUV043000" => "Juvenile Fiction / Readers / Beginner",
9817    "JUV044000" => "Juvenile Fiction / Readers / Intermediate",
9818    "JUV045000" => "Juvenile Fiction / Readers / Chapter Books",
9819    "JUV046000" => "Juvenile Fiction / Visionary & Metaphysical",
9820    "JUV047000" => "Juvenile Fiction / Books & Libraries",
9821    "JUV048000" => "Juvenile Fiction / Clothing & Dress",
9822    "JUV049000" => "Juvenile Fiction / Computers",
9823    "JUV050000" => "Juvenile Fiction / Cooking & Food",
9824    "JUV051000" => "Juvenile Fiction / Imagination & Play",
9825    "JUV052000" => "Juvenile Fiction / Monsters",
9826    "JUV053000" => "Juvenile Fiction / Science Fiction",
9827    "JUV054000" => "Juvenile Fiction / Activity Books",
9828    "JUV055000" => "Juvenile Fiction / Nursery Rhymes",
9829    "JUV056000" => "Juvenile Fiction / Robots",
9830    "JUV057000" => "Juvenile Fiction / Stories in Verse",
9831    "JUV058000" => "Juvenile Fiction / Paranormal",
9832    "JUV059000" => "Juvenile Fiction / Dystopian",
9833    "JUV060000" => "Juvenile Fiction / Gay & Lesbian",
9834    "JUV061000" => "Juvenile Fiction / Politics & Government",
9835    "JUV062000" => "Juvenile Fiction / Steampunk",
9836    "LAN000000" => "Language Arts & Disciplines / General",
9837    "LAN001000" => "Language Arts & Disciplines / Alphabets & Writing Systems",
9838    "LAN002000" => "Language Arts & Disciplines / Authorship",
9839    "LAN004000" => "Language Arts & Disciplines / Communication Studies",
9840    "LAN005000" => "Language Arts & Disciplines / Composition & Creative Writing",
9841    "LAN006000" => "Language Arts & Disciplines / Grammar & Punctuation",
9842    "LAN007000" => "Language Arts & Disciplines / Handwriting",
9843    "LAN008000" => "Language Arts & Disciplines / Journalism",
9844    "LAN009000" => "Language Arts & Disciplines / Linguistics / General",
9845    "LAN009010" => "Language Arts & Disciplines / Linguistics / Historical & Comparative",
9846    "LAN009020" => "Language Arts & Disciplines / Linguistics / Morphology",
9847    "LAN009030" => "Language Arts & Disciplines / Linguistics / Pragmatics",
9848    "LAN009040" => "Language Arts & Disciplines / Linguistics / Psycholinguistics",
9849    "LAN009050" => "Language Arts & Disciplines / Linguistics / Sociolinguistics",
9850    "LAN009060" => "Language Arts & Disciplines / Linguistics / Syntax",
9851    "LAN010000" => "Language Arts & Disciplines / Literacy",
9852    "LAN011000" => "Language Arts & Disciplines / Linguistics / Phonetics & Phonology",
9853    "LAN012000" => "Language Arts & Disciplines / Readers",
9854    "LAN013000" => "Language Arts & Disciplines / Reading Skills",
9855    "LAN014000" => "Language Arts & Disciplines / Reference",
9856    "LAN015000" => "Language Arts & Disciplines / Rhetoric",
9857    "LAN016000" => "Language Arts & Disciplines / Linguistics / Semantics",
9858    "LAN017000" => "Language Arts & Disciplines / Sign Language",
9859    "LAN018000" => "Language Arts & Disciplines / Speech",
9860    "LAN019000" => "Language Arts & Disciplines / Spelling",
9861    "LAN020000" => "Language Arts & Disciplines / Study & Teaching",
9862    "LAN021000" => "Language Arts & Disciplines / Vocabulary",
9863    "LAN022000" => "Language Arts & Disciplines / Editing & Proofreading",
9864    "LAN023000" => "Language Arts & Disciplines / Translating & Interpreting",
9865    "LAN024000" => "Language Arts & Disciplines / Linguistics / Etymology",
9866    "LAN025000" => "Language Arts & Disciplines / Library & Information Science / General",
9867    "LAN025010" => "Language Arts & Disciplines / Library & Information Science / Administration & Management",
9868    "LAN025020" => "Language Arts & Disciplines / Library & Information Science / Archives & Special Libraries",
9869    "LAN025030" => "Language Arts & Disciplines / Library & Information Science / Cataloging & Classification",
9870    "LAN025040" => "Language Arts & Disciplines / Library & Information Science / Collection Development",
9871    "LAN025050" => "Language Arts & Disciplines / Library & Information Science / School Media",
9872    "LAN025060" => "Language Arts & Disciplines / Library & Information Science / Digital & Online Resources",
9873    "LAN026000" => "Language Arts & Disciplines / Public Speaking",
9874    "LAN027000" => "Language Arts & Disciplines / Publishing",
9875    "LAN028000" => "Language Arts & Disciplines / Style Manuals",
9876    "LAW000000" => "Law / General",
9877    "LAW001000" => "Law / Administrative Law & Regulatory Practice",
9878    "LAW002000" => "Law / Air & Space",
9879    "LAW003000" => "Law / Alternative Dispute Resolution",
9880    "LAW004000" => "Law / Annotations & Citations",
9881    "LAW005000" => "Law / Antitrust",
9882    "LAW006000" => "Law / Arbitration, Negotiation, Mediation",
9883    "LAW007000" => "Law / Banking",
9884    "LAW008000" => "Law / Bankruptcy & Insolvency",
9885    "LAW009000" => "Law / Business & Financial",
9886    "LAW010000" => "Law / Child Advocacy",
9887    "LAW011000" => "Law / Civil Law",
9888    "LAW012000" => "Law / Civil Procedure",
9889    "LAW013000" => "Law / Civil Rights",
9890    "LAW014000" => "Law / Commercial / General",
9891    "LAW014010" => "Law / Commercial / International Trade",
9892    "LAW015000" => "Law / Communications",
9893    "LAW016000" => "Law / Comparative",
9894    "LAW017000" => "Law / Conflict of Laws",
9895    "LAW018000" => "Law / Constitutional",
9896    "LAW019000" => "Law / Construction",
9897    "LAW020000" => "Law / Consumer",
9898    "LAW021000" => "Law / Contracts",
9899    "LAW022000" => "Law / Corporate",
9900    "LAW023000" => "Law / Court Records",
9901    "LAW024000" => "Law / Court Rules",
9902    "LAW025000" => "Law / Courts",
9903    "LAW026000" => "Law / Criminal Law / General",
9904    "LAW026010" => "Law / Criminal Law / Juvenile Offenders",
9905    "LAW026020" => "Law / Criminal Law / Sentencing",
9906    "LAW027000" => "Law / Criminal Procedure",
9907    "LAW028000" => "Law / Customary",
9908    "LAW029000" => "Law / Depositions",
9909    "LAW030000" => "Law / Dictionaries & Terminology",
9910    "LAW031000" => "Law / Disability",
9911    "LAW032000" => "Law / Emigration & Immigration",
9912    "LAW033000" => "Law / Entertainment",
9913    "LAW034000" => "Law / Environmental",
9914    "LAW035000" => "Law / Estates & Trusts",
9915    "LAW036000" => "Law / Ethics & Professional Responsibility",
9916    "LAW037000" => "Law / Evidence",
9917    "LAW038000" => "Law / Family Law / General",
9918    "LAW038010" => "Law / Family Law / Children",
9919    "LAW038020" => "Law / Family Law / Divorce & Separation",
9920    "LAW038030" => "Law / Family Law / Marriage",
9921    "LAW039000" => "Law / Government / Federal",
9922    "LAW041000" => "Law / Forensic Science",
9923    "LAW043000" => "Law / Gender & the Law",
9924    "LAW044000" => "Law / General Practice",
9925    "LAW046000" => "Law / Health",
9926    "LAW047000" => "Law / Housing & Urban Development",
9927    "LAW049000" => "Law / Insurance",
9928    "LAW050000" => "Law / Intellectual Property / General",
9929    "LAW050010" => "Law / Intellectual Property / Copyright",
9930    "LAW050020" => "Law / Intellectual Property / Patent",
9931    "LAW050030" => "Law / Intellectual Property / Trademark",
9932    "LAW051000" => "Law / International",
9933    "LAW052000" => "Law / Jurisprudence",
9934    "LAW053000" => "Law / Jury",
9935    "LAW054000" => "Law / Labor & Employment",
9936    "LAW055000" => "Law / Land Use",
9937    "LAW056000" => "Law / Law Office Management",
9938    "LAW059000" => "Law / Legal Education",
9939    "LAW060000" => "Law / Legal History",
9940    "LAW061000" => "Law / Legal Profession",
9941    "LAW062000" => "Law / Legal Services",
9942    "LAW063000" => "Law / Legal Writing",
9943    "LAW064000" => "Law / Litigation",
9944    "LAW066000" => "Law / Maritime",
9945    "LAW067000" => "Law / Mental Health",
9946    "LAW068000" => "Law / Military",
9947    "LAW069000" => "Law / Natural Law",
9948    "LAW070000" => "Law / Natural Resources",
9949    "LAW071000" => "Law / Paralegals & Paralegalism",
9950    "LAW074000" => "Law / Property",
9951    "LAW075000" => "Law / Public",
9952    "LAW076000" => "Law / Public Contract",
9953    "LAW077000" => "Law / Public Utilities",
9954    "LAW078000" => "Law / Real Estate",
9955    "LAW079000" => "Law / Reference",
9956    "LAW080000" => "Law / Remedies & Damages",
9957    "LAW081000" => "Law / Research",
9958    "LAW082000" => "Law / Right to Die",
9959    "LAW083000" => "Law / Securities",
9960    "LAW084000" => "Law / Sports",
9961    "LAW086000" => "Law / Taxation",
9962    "LAW087000" => "Law / Torts",
9963    "LAW088000" => "Law / Trial Practice",
9964    "LAW089000" => "Law / Government / State, Provincial & Municipal",
9965    "LAW090000" => "Law / Wills",
9966    "LAW091000" => "Law / Witnesses",
9967    "LAW092000" => "Law / Educational Law & Legislation",
9968    "LAW093000" => "Law / Medical Law & Legislation",
9969    "LAW094000" => "Law / Discrimination",
9970    "LAW095000" => "Law / Malpractice",
9971    "LAW096000" => "Law / Media & the Law",
9972    "LAW097000" => "Law / Personal Injury",
9973    "LAW098000" => "Law / Practical Guides",
9974    "LAW099000" => "Law / Science & Technology",
9975    "LAW100000" => "Law / Living Trusts",
9976    "LAW101000" => "Law / Essays",
9977    "LAW102000" => "Law / Agricultural",
9978    "LAW103000" => "Law / Common",
9979    "LAW104000" => "Law / Computer & Internet",
9980    "LAW106000" => "Law / Defamation",
9981    "LAW107000" => "Law / Elder Law",
9982    "LAW108000" => "Law / Election Law",
9983    "LAW109000" => "Law / Government / General",
9984    "LAW110000" => "Law / Indigenous Peoples",
9985    "LAW111000" => "Law / Judicial Power",
9986    "LAW112000" => "Law / Landlord & Tenant",
9987    "LAW113000" => "Law / Liability",
9988    "LAW114000" => "Law / Mergers & Acquisitions",
9989    "LAW115000" => "Law / Pension Law",
9990    "LAW116000" => "Law / Privacy",
9991    "LAW117000" => "Law / Transportation",
9992    "LCO000000" => "Literary Collections / General",
9993    "LCO001000" => "Literary Collections / African",
9994    "LCO002000" => "Literary Collections / American / General",
9995    "LCO002010" => "Literary Collections / American / African American",
9996    "LCO003000" => "Literary Collections / Ancient & Classical",
9997    "LCO004000" => "Literary Collections / Asian / General",
9998    "LCO004010" => "Literary Collections / Asian / Chinese",
9999    "LCO004020" => "Literary Collections / Asian / Indic",
10000    "LCO004030" => "Literary Collections / Asian / Japanese",
10001    "LCO005000" => "Literary Collections / Australian & Oceanian",
10002    "LCO006000" => "Literary Collections / Canadian",
10003    "LCO007000" => "Literary Collections / Caribbean & Latin American",
10004    "LCO008000" => "Literary Collections / European / General",
10005    "LCO008010" => "Literary Collections / European / Eastern",
10006    "LCO008020" => "Literary Collections / European / French",
10007    "LCO008030" => "Literary Collections / European / German",
10008    "LCO008040" => "Literary Collections / European / Italian",
10009    "LCO008050" => "Literary Collections / European / Scandinavian",
10010    "LCO008060" => "Literary Collections / European / Spanish & Portuguese",
10011    "LCO009000" => "Literary Collections / European / English, Irish, Scottish, Welsh",
10012    "LCO010000" => "Literary Collections / Essays",
10013    "LCO011000" => "Literary Collections / Letters",
10014    "LCO012000" => "Literary Collections / Middle Eastern",
10015    "LCO013000" => "Literary Collections / Native American",
10016    "LCO014000" => "Literary Collections / Russian & Former Soviet Union",
10017    "LCO015000" => "Literary Collections / Diaries & Journals",
10018    "LCO016000" => "Literary Collections / Gay & Lesbian",
10019    "LCO017000" => "Literary Collections / Medieval",
10020    "LCO018000" => "Literary Collections / Speeches",
10021    "LCO019000" => "Literary Collections / Women Authors",
10022    "LIT000000" => "Literary Criticism / General",
10023    "LIT024000" => "Literary Criticism / Modern / General",
10024    "LIT024010" => "Literary Criticism / Modern / 16th Century",
10025    "LIT024020" => "Literary Criticism / Modern / 17th Century",
10026    "LIT024030" => "Literary Criticism / Modern / 18th Century",
10027    "LIT024040" => "Literary Criticism / Modern / 19th Century",
10028    "LIT024050" => "Literary Criticism / Modern / 20th Century",
10029    "LIT024060" => "Literary Criticism / Modern / 21st Century",
10030    "LIT003000" => "Literary Criticism / Feminist",
10031    "LIT022000" => "Literary Criticism / Fairy Tales, Folk Tales, Legends & Mythology",
10032    "LIT004010" => "Literary Criticism / African",
10033    "LIT004020" => "Literary Criticism / American / General",
10034    "LIT004030" => "Literary Criticism / American / Asian American",
10035    "LIT004040" => "Literary Criticism / American / African American",
10036    "LIT004050" => "Literary Criticism / American / Hispanic American",
10037    "LIT004060" => "Literary Criticism / Native American",
10038    "LIT004070" => "Literary Criticism / Australian & Oceanian",
10039    "LIT004080" => "Literary Criticism / Canadian",
10040    "LIT004100" => "Literary Criticism / Caribbean & Latin American",
10041    "LIT004110" => "Literary Criticism / European / Eastern",
10042    "LIT004120" => "Literary Criticism / European / English, Irish, Scottish, Welsh",
10043    "LIT004130" => "Literary Criticism / European / General",
10044    "LIT004150" => "Literary Criticism / European / French",
10045    "LIT004160" => "Literary Criticism / Gay & Lesbian",
10046    "LIT004170" => "Literary Criticism / European / German",
10047    "LIT004180" => "Literary Criticism / Gothic & Romance",
10048    "LIT004190" => "Literary Criticism / Ancient & Classical",
10049    "LIT004200" => "Literary Criticism / European / Italian",
10050    "LIT004210" => "Literary Criticism / Jewish",
10051    "LIT004220" => "Literary Criticism / Middle Eastern",
10052    "LIT004230" => "Literary Criticism / Mystery & Detective",
10053    "LIT004240" => "Literary Criticism / Russian & Former Soviet Union",
10054    "LIT004250" => "Literary Criticism / European / Scandinavian",
10055    "LIT004260" => "Literary Criticism / Science Fiction & Fantasy",
10056    "LIT004280" => "Literary Criticism / European / Spanish & Portuguese",
10057    "LIT004290" => "Literary Criticism / Women Authors",
10058    "LIT006000" => "Literary Criticism / Semiotics & Theory",
10059    "LIT007000" => "Literary Criticism / Books & Reading",
10060    "LIT008000" => "Literary Criticism / Asian / General",
10061    "LIT008010" => "Literary Criticism / Asian / Chinese",
10062    "LIT008020" => "Literary Criticism / Asian / Indic",
10063    "LIT008030" => "Literary Criticism / Asian / Japanese",
10064    "LIT009000" => "Literary Criticism / Children's Literature",
10065    "LIT011000" => "Literary Criticism / Medieval",
10066    "LIT012000" => "Literary Criticism / Reference",
10067    "LIT013000" => "Literary Criticism / Drama",
10068    "LIT014000" => "Literary Criticism / Poetry",
10069    "LIT015000" => "Literary Criticism / Shakespeare",
10070    "LIT016000" => "Literary Criticism / Humor",
10071    "LIT017000" => "Literary Criticism / Comics & Graphic Novels",
10072    "LIT018000" => "Literary Criticism / Short Stories",
10073    "LIT019000" => "Literary Criticism / Renaissance",
10074    "LIT020000" => "Literary Criticism / Comparative Literature",
10075    "LIT021000" => "Literary Criticism / Horror & Supernatural",
10076    "LIT025000" => "Literary Criticism / Subjects & Themes / General",
10077    "LIT025010" => "Literary Criticism / Subjects & Themes / Historical Events",
10078    "LIT025020" => "Literary Criticism / Subjects & Themes / Nature",
10079    "LIT025030" => "Literary Criticism / Subjects & Themes / Politics",
10080    "LIT025040" => "Literary Criticism / Subjects & Themes / Religion",
10081    "LIT025050" => "Literary Criticism / Subjects & Themes / Women",
10082    "MAT000000" => "Mathematics / General",
10083    "MAT002000" => "Mathematics / Algebra / General",
10084    "MAT002010" => "Mathematics / Algebra / Abstract",
10085    "MAT002030" => "Mathematics / Algebra / Elementary",
10086    "MAT002040" => "Mathematics / Algebra / Intermediate",
10087    "MAT002050" => "Mathematics / Algebra / Linear",
10088    "MAT003000" => "Mathematics / Applied",
10089    "MAT004000" => "Mathematics / Arithmetic",
10090    "MAT005000" => "Mathematics / Calculus",
10091    "MAT006000" => "Mathematics / Counting & Numeration",
10092    "MAT007000" => "Mathematics / Differential Equations / General",
10093    "MAT007010" => "Mathematics / Differential Equations / Ordinary",
10094    "MAT007020" => "Mathematics / Differential Equations / Partial",
10095    "MAT008000" => "Mathematics / Discrete Mathematics",
10096    "MAT009000" => "Mathematics / Finite Mathematics",
10097    "MAT011000" => "Mathematics / Game Theory",
10098    "MAT012000" => "Mathematics / Geometry / General",
10099    "MAT012010" => "Mathematics / Geometry / Algebraic",
10100    "MAT012020" => "Mathematics / Geometry / Analytic",
10101    "MAT012030" => "Mathematics / Geometry / Differential",
10102    "MAT012040" => "Mathematics / Geometry / Non-Euclidean",
10103    "MAT013000" => "Mathematics / Graphic Methods",
10104    "MAT014000" => "Mathematics / Group Theory",
10105    "MAT015000" => "Mathematics / History & Philosophy",
10106    "MAT016000" => "Mathematics / Infinity",
10107    "MAT017000" => "Mathematics / Linear & Nonlinear Programming",
10108    "MAT018000" => "Mathematics / Logic",
10109    "MAT019000" => "Mathematics / Matrices",
10110    "MAT020000" => "Mathematics / Measurement",
10111    "MAT021000" => "Mathematics / Number Systems",
10112    "MAT022000" => "Mathematics / Number Theory",
10113    "MAT023000" => "Mathematics / Pre-Calculus",
10114    "MAT025000" => "Mathematics / Recreations & Games",
10115    "MAT026000" => "Mathematics / Reference",
10116    "MAT027000" => "Mathematics / Research",
10117    "MAT028000" => "Mathematics / Set Theory",
10118    "MAT029000" => "Mathematics / Probability & Statistics / General",
10119    "MAT029010" => "Mathematics / Probability & Statistics / Bayesian Analysis",
10120    "MAT029020" => "Mathematics / Probability & Statistics / Multivariate Analysis",
10121    "MAT029030" => "Mathematics / Probability & Statistics / Regression Analysis",
10122    "MAT029040" => "Mathematics / Probability & Statistics / Stochastic",
10123    "MAT029050" => "Mathematics / Probability & Statistics / Time Series",
10124    "MAT030000" => "Mathematics / Study & Teaching",
10125    "MAT031000" => "Mathematics / Transformations",
10126    "MAT032000" => "Mathematics / Trigonometry",
10127    "MAT033000" => "Mathematics / Vector Analysis",
10128    "MAT034000" => "Mathematics / Mathematical Analysis",
10129    "MAT036000" => "Mathematics / Combinatorics",
10130    "MAT037000" => "Mathematics / Functional Analysis",
10131    "MAT038000" => "Mathematics / Topology",
10132    "MAT039000" => "Mathematics / Essays",
10133    "MAT040000" => "Mathematics / Complex Analysis",
10134    "MAT041000" => "Mathematics / Numerical Analysis",
10135    "MAT042000" => "Mathematics / Optimization",
10136    "MED000000" => "Medical / General",
10137    "MED001000" => "Medical / Acupuncture",
10138    "MED002000" => "Medical / Administration",
10139    "MED003000" => "Medical / Allied Health Services / General",
10140    "MED003010" => "Medical / Allied Health Services / Emergency Medical Services",
10141    "MED003020" => "Medical / Allied Health Services / Hypnotherapy",
10142    "MED003030" => "Medical / Allied Health Services / Medical Assistants",
10143    "MED003040" => "Medical / Allied Health Services / Medical Technology",
10144    "MED003050" => "Medical / Allied Health Services / Occupational Therapy",
10145    "MED003060" => "Medical / Allied Health Services / Physical Therapy",
10146    "MED003070" => "Medical / Allied Health Services / Radiological & Ultrasound Technology",
10147    "MED003080" => "Medical / Allied Health Services / Respiratory Therapy",
10148    "MED003090" => "Medical / Allied Health Services / Massage Therapy",
10149    "MED004000" => "Medical / Alternative & Complementary Medicine",
10150    "MED005000" => "Medical / Anatomy",
10151    "MED006000" => "Medical / Anesthesiology",
10152    "MED007000" => "Medical / Audiology & Speech Pathology",
10153    "MED008000" => "Medical / Biochemistry",
10154    "MED009000" => "Medical / Biotechnology",
10155    "MED010000" => "Medical / Cardiology",
10156    "MED011000" => "Medical / Caregiving",
10157    "MED012000" => "Medical / Chemotherapy",
10158    "MED013000" => "Medical / Chiropractic",
10159    "MED014000" => "Medical / Clinical Medicine",
10160    "MED015000" => "Medical / Critical Care",
10161    "MED016000" => "Medical / Dentistry / General",
10162    "MED016010" => "Medical / Dentistry / Dental Assisting",
10163    "MED016020" => "Medical / Dentistry / Dental Hygiene",
10164    "MED016030" => "Medical / Dentistry / Orthodontics",
10165    "MED016040" => "Medical / Dentistry / Periodontics",
10166    "MED016050" => "Medical / Dentistry / Oral Surgery",
10167    "MED016060" => "Medical / Dentistry / Endodontics",
10168    "MED016070" => "Medical / Dentistry / Prosthodontics",
10169    "MED016080" => "Medical / Dentistry / Dental Implants",
10170    "MED016090" => "Medical / Dentistry / Practice Management",
10171    "MED017000" => "Medical / Dermatology",
10172    "MED018000" => "Medical / Diagnosis",
10173    "MED019000" => "Medical / Diagnostic Imaging",
10174    "MED020000" => "Medical / Dictionaries & Terminology",
10175    "MED021000" => "Medical / Diet Therapy",
10176    "MED022000" => "Medical / Diseases",
10177    "MED022020" => "Medical / AIDS & HIV",
10178    "MED022090" => "Medical / Infectious Diseases",
10179    "MED023000" => "Medical / Drug Guides",
10180    "MED024000" => "Medical / Education & Training",
10181    "MED025000" => "Medical / Embryology",
10182    "MED026000" => "Medical / Emergency Medicine",
10183    "MED027000" => "Medical / Endocrinology & Metabolism",
10184    "MED028000" => "Medical / Epidemiology",
10185    "MED029000" => "Medical / Family & General Practice",
10186    "MED030000" => "Medical / Forensic Medicine",
10187    "MED031000" => "Medical / Gastroenterology",
10188    "MED032000" => "Medical / Geriatrics",
10189    "MED033000" => "Medical / Gynecology & Obstetrics",
10190    "MED034000" => "Medical / Healing",
10191    "MED035000" => "Medical / Health Care Delivery",
10192    "MED036000" => "Medical / Health Policy",
10193    "MED037000" => "Medical / Health Risk Assessment",
10194    "MED038000" => "Medical / Hematology",
10195    "MED039000" => "Medical / History",
10196    "MED040000" => "Medical / Holistic Medicine",
10197    "MED041000" => "Medical / Home Care",
10198    "MED042000" => "Medical / Terminal Care",
10199    "MED043000" => "Medical / Hospital Administration & Care",
10200    "MED044000" => "Medical / Immunology",
10201    "MED045000" => "Medical / Internal Medicine",
10202    "MED047000" => "Medical / Laboratory Medicine",
10203    "MED048000" => "Medical / Lasers in Medicine",
10204    "MED049000" => "Medical / Medicaid & Medicare",
10205    "MED050000" => "Medical / Ethics",
10206    "MED051000" => "Medical / Medical History & Records",
10207    "MED052000" => "Medical / Microbiology",
10208    "MED055000" => "Medical / Nephrology",
10209    "MED056000" => "Medical / Neurology",
10210    "MED057000" => "Medical / Neuroscience",
10211    "MED058000" => "Medical / Nursing / General",
10212    "MED058010" => "Medical / Nursing / Anesthesia",
10213    "MED058020" => "Medical / Nursing / Assessment & Diagnosis",
10214    "MED058030" => "Medical / Nursing / Critical & Intensive Care",
10215    "MED058040" => "Medical / Nursing / Emergency",
10216    "MED058050" => "Medical / Nursing / Fundamentals & Skills",
10217    "MED058060" => "Medical / Nursing / Gerontology",
10218    "MED058070" => "Medical / Nursing / Home & Community Care",
10219    "MED058080" => "Medical / Nursing / Pediatric & Neonatal",
10220    "MED058090" => "Medical / Nursing / Issues",
10221    "MED058100" => "Medical / Nursing / LPN & LVN",
10222    "MED058110" => "Medical / Nursing / Management & Leadership",
10223    "MED058120" => "Medical / Nursing / Maternity, Perinatal, Women's Health",
10224    "MED058130" => "Medical / Nursing / Mental Health",
10225    "MED058140" => "Medical / Nursing / Nurse & Patient",
10226    "MED058150" => "Medical / Nursing / Nutrition",
10227    "MED058160" => "Medical / Nursing / Oncology & Cancer",
10228    "MED058170" => "Medical / Nursing / Pharmacology",
10229    "MED058180" => "Medical / Nursing / Psychiatric",
10230    "MED058190" => "Medical / Nursing / Reference",
10231    "MED058200" => "Medical / Nursing / Research & Theory",
10232    "MED058210" => "Medical / Nursing / Test Preparation & Review",
10233    "MED058220" => "Medical / Nursing / Medical & Surgical",
10234    "MED059000" => "Medical / Nursing Home Care",
10235    "MED060000" => "Medical / Nutrition",
10236    "MED061000" => "Medical / Occupational & Industrial Medicine",
10237    "MED062000" => "Medical / Oncology",
10238    "MED063000" => "Medical / Ophthalmology",
10239    "MED064000" => "Medical / Optometry",
10240    "MED065000" => "Medical / Orthopedics",
10241    "MED066000" => "Medical / Otorhinolaryngology",
10242    "MED067000" => "Medical / Pathology",
10243    "MED068000" => "Medical / Pathophysiology",
10244    "MED069000" => "Medical / Pediatrics",
10245    "MED070000" => "Medical / Perinatology & Neonatology",
10246    "MED071000" => "Medical / Pharmacology",
10247    "MED072000" => "Medical / Pharmacy",
10248    "MED073000" => "Medical / Physical Medicine & Rehabilitation",
10249    "MED074000" => "Medical / Physician & Patient",
10250    "MED075000" => "Medical / Physiology",
10251    "MED076000" => "Medical / Preventive Medicine",
10252    "MED077000" => "Medical / Prosthesis",
10253    "MED078000" => "Medical / Public Health",
10254    "MED079000" => "Medical / Pulmonary & Thoracic Medicine",
10255    "MED080000" => "Medical / Radiology & Nuclear Medicine",
10256    "MED081000" => "Medical / Reference",
10257    "MED082000" => "Medical / Reproductive Medicine & Technology",
10258    "MED083000" => "Medical / Rheumatology",
10259    "MED084000" => "Medical / Sports Medicine",
10260    "MED085000" => "Medical / Surgery / General",
10261    "MED085010" => "Medical / Surgery / Neurosurgery",
10262    "MED085020" => "Medical / Surgery / Oral & Maxillofacial",
10263    "MED085030" => "Medical / Surgery / Plastic & Cosmetic",
10264    "MED085040" => "Medical / Surgery / Thoracic",
10265    "MED085050" => "Medical / Surgery / Vascular",
10266    "MED085060" => "Medical / Surgery / Colon & Rectal",
10267    "MED085070" => "Medical / Surgery / Transplant",
10268    "MED086000" => "Medical / Test Preparation & Review",
10269    "MED087000" => "Medical / Transportation",
10270    "MED088000" => "Medical / Urology",
10271    "MED089000" => "Medical / Veterinary Medicine / General",
10272    "MED089010" => "Medical / Veterinary Medicine / Equine",
10273    "MED089020" => "Medical / Veterinary Medicine / Food Animal",
10274    "MED089030" => "Medical / Veterinary Medicine / Small Animal",
10275    "MED090000" => "Medical / Biostatistics",
10276    "MED091000" => "Medical / Nosology",
10277    "MED092000" => "Medical / Osteopathy",
10278    "MED093000" => "Medical / Pain Medicine",
10279    "MED094000" => "Medical / Pediatric Emergencies",
10280    "MED095000" => "Medical / Practice Management & Reimbursement",
10281    "MED096000" => "Medical / Toxicology",
10282    "MED097000" => "Medical / Tropical Medicine",
10283    "MED098000" => "Medical / Ultrasonography",
10284    "MED100000" => "Medical / Podiatry",
10285    "MED101000" => "Medical / Atlases",
10286    "MED102000" => "Medical / Mental Health",
10287    "MED103000" => "Medical / Parasitology",
10288    "MED104000" => "Medical / Physicians",
10289    "MED105000" => "Medical / Psychiatry / General",
10290    "MED105010" => "Medical / Psychiatry / Child & Adolescent",
10291    "MED105020" => "Medical / Psychiatry / Psychopharmacology",
10292    "MED106000" => "Medical / Research",
10293    "MED107000" => "Medical / Genetics",
10294    "MED108000" => "Medical / Instruments & Supplies",
10295    "MED109000" => "Medical / Essays",
10296    "MED110000" => "Medical / Histology",
10297    "MED111000" => "Medical / Bariatrics",
10298    "MED112000" => "Medical / Evidence-Based Medicine",
10299    "MED113000" => "Medical / Long-Term Care",
10300    "MED114000" => "Medical / Hepatology",
10301    "MED115000" => "Medical / Infection Control",
10302    "MUS000000" => "Music / General",
10303    "MUS001000" => "Music / Instruction & Study / Appreciation",
10304    "MUS002000" => "Music / Genres & Styles / Ballet",
10305    "MUS003000" => "Music / Genres & Styles / Blues",
10306    "MUS004000" => "Music / Business Aspects",
10307    "MUS005000" => "Music / Genres & Styles / Chamber",
10308    "MUS006000" => "Music / Genres & Styles / Classical",
10309    "MUS007000" => "Music / Instruction & Study / Composition",
10310    "MUS008000" => "Music / Instruction & Study / Conducting",
10311    "MUS009000" => "Music / Religious / Contemporary Christian",
10312    "MUS010000" => "Music / Genres & Styles / Country & Bluegrass",
10313    "MUS011000" => "Music / Genres & Styles / Dance",
10314    "MUS012000" => "Music / Discography & Buyer's Guides",
10315    "MUS013000" => "Music / Genres & Styles / Electronic",
10316    "MUS014000" => "Music / Ethnic",
10317    "MUS015000" => "Music / Ethnomusicology",
10318    "MUS016000" => "Music / Instruction & Study / Exercises",
10319    "MUS017000" => "Music / Genres & Styles / Folk & Traditional",
10320    "MUS018000" => "Music / Religious / Gospel",
10321    "MUS019000" => "Music / Genres & Styles / Heavy Metal",
10322    "MUS020000" => "Music / History & Criticism",
10323    "MUS021000" => "Music / Religious / Hymns",
10324    "MUS022000" => "Music / Instruction & Study / General",
10325    "MUS023000" => "Music / Musical Instruments / General",
10326    "MUS023010" => "Music / Musical Instruments / Brass",
10327    "MUS023020" => "Music / Musical Instruments / Percussion",
10328    "MUS023030" => "Music / Musical Instruments / Piano & Keyboard",
10329    "MUS023040" => "Music / Musical Instruments / Strings",
10330    "MUS023050" => "Music / Musical Instruments / Woodwinds",
10331    "MUS023060" => "Music / Musical Instruments / Guitar",
10332    "MUS024000" => "Music / Genres & Styles / International",
10333    "MUS025000" => "Music / Genres & Styles / Jazz",
10334    "MUS026000" => "Music / Genres & Styles / Children's",
10335    "MUS027000" => "Music / Genres & Styles / New Age",
10336    "MUS028000" => "Music / Genres & Styles / Opera",
10337    "MUS029000" => "Music / Genres & Styles / Pop Vocal",
10338    "MUS030000" => "Music / Genres & Styles / Punk",
10339    "MUS031000" => "Music / Genres & Styles / Rap & Hip Hop",
10340    "MUS032000" => "Music / Recording & Reproduction",
10341    "MUS033000" => "Music / Reference",
10342    "MUS035000" => "Music / Genres & Styles / Rock",
10343    "MUS036000" => "Music / Genres & Styles / Latin",
10344    "MUS037000" => "Music / Printed Music / General",
10345    "MUS037010" => "Music / Printed Music / Artist Specific",
10346    "MUS037020" => "Music / Printed Music / Band & Orchestra",
10347    "MUS037030" => "Music / Printed Music / Choral",
10348    "MUS037040" => "Music / Printed Music / Guitar & Fretted Instruments",
10349    "MUS037050" => "Music / Printed Music / Mixed Collections",
10350    "MUS037060" => "Music / Printed Music / Musicals, Film & TV",
10351    "MUS037070" => "Music / Printed Music / Opera & Classical Scores",
10352    "MUS037080" => "Music / Printed Music / Percussion",
10353    "MUS037090" => "Music / Printed Music / Piano & Keyboard Repertoire",
10354    "MUS037100" => "Music / Printed Music / Piano-Vocal-Guitar",
10355    "MUS037110" => "Music / Printed Music / Vocal",
10356    "MUS037120" => "Music / Printed Music / Brass",
10357    "MUS037130" => "Music / Printed Music / Strings",
10358    "MUS037140" => "Music / Printed Music / Woodwinds",
10359    "MUS038000" => "Music / Instruction & Study / Songwriting",
10360    "MUS039000" => "Music / Genres & Styles / Soul & R 'n B",
10361    "MUS040000" => "Music / Instruction & Study / Techniques",
10362    "MUS041000" => "Music / Instruction & Study / Theory",
10363    "MUS042000" => "Music / Instruction & Study / Voice",
10364    "MUS045000" => "Music / Genres & Styles / Military & Marches",
10365    "MUS046000" => "Music / Genres & Styles / Musicals",
10366    "MUS047000" => "Music / Genres & Styles / Reggae",
10367    "MUS048000" => "Music / Religious / General",
10368    "MUS048010" => "Music / Religious / Christian",
10369    "MUS048020" => "Music / Religious / Jewish",
10370    "MUS048030" => "Music / Religious / Muslim",
10371    "MUS049000" => "Music / Genres & Styles / General",
10372    "MUS050000" => "Music / Individual Composer & Musician",
10373    "MUS051000" => "Music / Genres & Styles / Choral",
10374    "MUS052000" => "Music / Lyrics",
10375    "MUS053000" => "Music / Genres & Styles / Big Band & Swing",
10376    "NAT000000" => "Nature / General",
10377    "NAT001000" => "Nature / Animals / General",
10378    "NAT002000" => "Nature / Animals / Primates",
10379    "NAT003000" => "Nature / Animals / Bears",
10380    "NAT004000" => "Nature / Birdwatching Guides",
10381    "NAT005000" => "Nature / Animals / Butterflies & Moths",
10382    "NAT007000" => "Nature / Animals / Dinosaurs & Prehistoric Creatures",
10383    "NAT009000" => "Nature / Earthquakes & Volcanoes",
10384    "NAT010000" => "Nature / Ecology",
10385    "NAT011000" => "Nature / Environmental Conservation & Protection",
10386    "NAT012000" => "Nature / Animals / Fish",
10387    "NAT013000" => "Nature / Plants / Flowers",
10388    "NAT014000" => "Nature / Ecosystems & Habitats / Forests & Rainforests",
10389    "NAT015000" => "Nature / Fossils",
10390    "NAT016000" => "Nature / Animals / Horses",
10391    "NAT017000" => "Nature / Animals / Insects & Spiders",
10392    "NAT018000" => "Nature / Ecosystems & Habitats / Lakes, Ponds & Swamps",
10393    "NAT019000" => "Nature / Animals / Mammals",
10394    "NAT020000" => "Nature / Animals / Marine Life",
10395    "NAT022000" => "Nature / Plants / Mushrooms",
10396    "NAT023000" => "Nature / Natural Disasters",
10397    "NAT024000" => "Nature / Essays",
10398    "NAT025000" => "Nature / Ecosystems & Habitats / Oceans & Seas",
10399    "NAT026000" => "Nature / Plants / General",
10400    "NAT027000" => "Nature / Reference",
10401    "NAT028000" => "Nature / Animals / Reptiles & Amphibians",
10402    "NAT029000" => "Nature / Ecosystems & Habitats / Rivers",
10403    "NAT030000" => "Nature / Rocks & Minerals",
10404    "NAT031000" => "Nature / Seashells",
10405    "NAT032000" => "Nature / Seasons",
10406    "NAT033000" => "Nature / Sky Observation",
10407    "NAT034000" => "Nature / Plants / Trees",
10408    "NAT036000" => "Nature / Weather",
10409    "NAT037000" => "Nature / Animals / Wildlife",
10410    "NAT038000" => "Nature / Natural Resources",
10411    "NAT039000" => "Nature / Animal Rights",
10412    "NAT041000" => "Nature / Ecosystems & Habitats / Mountains",
10413    "NAT042000" => "Nature / Animals / Big Cats",
10414    "NAT043000" => "Nature / Animals / Birds",
10415    "NAT044000" => "Nature / Animals / Wolves",
10416    "NAT045000" => "Nature / Ecosystems & Habitats / General",
10417    "NAT045010" => "Nature / Ecosystems & Habitats / Deserts",
10418    "NAT045020" => "Nature / Ecosystems & Habitats / Plains & Prairies",
10419    "NAT045030" => "Nature / Ecosystems & Habitats / Polar Regions",
10420    "NAT045040" => "Nature / Ecosystems & Habitats / Wilderness",
10421    "NAT045050" => "Nature / Ecosystems & Habitats / Coastal Regions & Shorelines",
10422    "NAT046000" => "Nature / Endangered Species",
10423    "NAT047000" => "Nature / Plants / Aquatic",
10424    "NAT048000" => "Nature / Plants / Cacti & Succulents",
10425    "NAT049000" => "Nature / Regional",
10426    "OCC000000" => "Body, Mind & Spirit / General",
10427    "OCC002000" => "Body, Mind & Spirit / Astrology / General",
10428    "OCC003000" => "Body, Mind & Spirit / Channeling & Mediumship",
10429    "OCC004000" => "Body, Mind & Spirit / Crystals",
10430    "OCC005000" => "Body, Mind & Spirit / Divination / General",
10431    "OCC006000" => "Body, Mind & Spirit / Dreams",
10432    "OCC007000" => "Body, Mind & Spirit / ParaPsychology / ESP (Clairvoyance, Precognition, Telepathy)",
10433    "OCC008000" => "Body, Mind & Spirit / Divination / Fortune Telling",
10434    "OCC009000" => "Body, Mind & Spirit / Astrology / Horoscopes",
10435    "OCC010000" => "Body, Mind & Spirit / Meditation",
10436    "OCC011000" => "Body, Mind & Spirit / Healing / General",
10437    "OCC011010" => "Body, Mind & Spirit / Healing / Energy (Qigong, Reiki, Polarity)",
10438    "OCC011020" => "Body, Mind & Spirit / Healing / Prayer & Spiritual",
10439    "OCC012000" => "Body, Mind & Spirit / Mysticism",
10440    "OCC014000" => "Body, Mind & Spirit / New Thought",
10441    "OCC015000" => "Body, Mind & Spirit / Numerology",
10442    "OCC016000" => "Body, Mind & Spirit / Occultism",
10443    "OCC017000" => "Body, Mind & Spirit / Divination / Palmistry",
10444    "OCC018000" => "Body, Mind & Spirit / ParaPsychology / General",
10445    "OCC019000" => "Body, Mind & Spirit / Inspiration & Personal Growth",
10446    "OCC020000" => "Body, Mind & Spirit / Prophecy",
10447    "OCC021000" => "Body, Mind & Spirit / Reference",
10448    "OCC022000" => "Body, Mind & Spirit / Afterlife & Reincarnation",
10449    "OCC023000" => "Body, Mind & Spirit / Supernatural",
10450    "OCC024000" => "Body, Mind & Spirit / Divination / Tarot",
10451    "OCC025000" => "Body, Mind & Spirit / UFOs & Extraterrestrials",
10452    "OCC026000" => "Body, Mind & Spirit / Witchcraft",
10453    "OCC027000" => "Body, Mind & Spirit / Spiritualism",
10454    "OCC028000" => "Body, Mind & Spirit / Magick Studies",
10455    "OCC029000" => "Body, Mind & Spirit / Unexplained Phenomena",
10456    "OCC030000" => "Body, Mind & Spirit / Astrology / Eastern",
10457    "OCC031000" => "Body, Mind & Spirit / Ancient Mysteries & Controversial Knowledge",
10458    "OCC032000" => "Body, Mind & Spirit / Angels & Spirit Guides",
10459    "OCC033000" => "Body, Mind & Spirit / Gaia & Earth Energies",
10460    "OCC034000" => "Body, Mind & Spirit / ParaPsychology / Near-Death Experience",
10461    "OCC035000" => "Body, Mind & Spirit / ParaPsychology / Out-of-Body Experience",
10462    "OCC036000" => "Body, Mind & Spirit / Spirituality / General",
10463    "OCC036010" => "Body, Mind & Spirit / Spirituality / Celtic",
10464    "OCC036030" => "Body, Mind & Spirit / Spirituality / Shamanism",
10465    "OCC036050" => "Body, Mind & Spirit / Spirituality / Divine Mother, The Goddess, Quan Yin",
10466    "OCC037000" => "Body, Mind & Spirit / Feng Shui",
10467    "OCC038000" => "Body, Mind & Spirit / I Ching",
10468    "OCC039000" => "Body, Mind & Spirit / Entheogens & Visionary Substances",
10469    "OCC040000" => "Body, Mind & Spirit / Hermetism & Rosicrucianism",
10470    "OCC041000" => "Body, Mind & Spirit / Sacred Sexuality",
10471    "PER000000" => "Performing Arts / General",
10472    "PER001000" => "Performing Arts / Acting & Auditioning",
10473    "PER002000" => "Performing Arts / Circus",
10474    "PER003000" => "Performing Arts / Dance / General",
10475    "PER003010" => "Performing Arts / Dance / Classical & Ballet",
10476    "PER003020" => "Performing Arts / Dance / Folk",
10477    "PER003030" => "Performing Arts / Dance / Jazz",
10478    "PER003040" => "Performing Arts / Dance / Modern",
10479    "PER003050" => "Performing Arts / Dance / Notation",
10480    "PER003060" => "Performing Arts / Dance / Popular",
10481    "PER003070" => "Performing Arts / Dance / Reference",
10482    "PER003080" => "Performing Arts / Dance / Tap",
10483    "PER003090" => "Performing Arts / Dance / Ballroom",
10484    "PER003100" => "Performing Arts / Dance / History & Criticism",
10485    "PER004000" => "Performing Arts / Film / General",
10486    "PER004010" => "Performing Arts / Film / Direction & Production",
10487    "PER004060" => "Performing Arts / Film / Genres / General",
10488    "PER004070" => "Performing Arts / Film / Genres / Action & Adventure",
10489    "PER004080" => "Performing Arts / Film / Genres / Animated",
10490    "PER004090" => "Performing Arts / Film / Genres / Comedy",
10491    "PER004100" => "Performing Arts / Film / Genres / Crime",
10492    "PER004110" => "Performing Arts / Film / Genres / Documentary",
10493    "PER004120" => "Performing Arts / Film / Genres / Historical",
10494    "PER004130" => "Performing Arts / Film / Genres / Horror",
10495    "PER004140" => "Performing Arts / Film / Genres / Science Fiction & Fantasy"
10496,
10497    "PER004150" => "Performing Arts / Film / Genres / Westerns",
10498    "PER004020" => "Performing Arts / Film / Guides & Reviews",
10499    "PER004030" => "Performing Arts / Film / History & Criticism",
10500    "PER004040" => "Performing Arts / Film / Reference",
10501    "PER004050" => "Performing Arts / Film / Screenwriting",
10502    "PER006000" => "Performing Arts / Theater / Miming",
10503    "PER007000" => "Performing Arts / Puppets & Puppetry",
10504    "PER008000" => "Performing Arts / Radio / General",
10505    "PER008010" => "Performing Arts / Radio / History & Criticism",
10506    "PER008020" => "Performing Arts / Radio / Reference",
10507    "PER009000" => "Performing Arts / Reference",
10508    "PER010000" => "Performing Arts / Television / General",
10509    "PER010010" => "Performing Arts / Television / Direction & Production",
10510    "PER010020" => "Performing Arts / Television / Guides & Reviews",
10511    "PER010030" => "Performing Arts / Television / History & Criticism",
10512    "PER010040" => "Performing Arts / Television / Reference",
10513    "PER010050" => "Performing Arts / Television / Screenwriting",
10514    "PER011000" => "Performing Arts / Theater / General",
10515    "PER011010" => "Performing Arts / Theater / Direction & Production",
10516    "PER011020" => "Performing Arts / Theater / History & Criticism",
10517    "PER011030" => "Performing Arts / Theater / Playwriting",
10518    "PER011040" => "Performing Arts / Theater / Stagecraft",
10519    "PER013000" => "Performing Arts / Theater / Broadway & Musical Revue",
10520    "PER014000" => "Performing Arts / Business Aspects",
10521    "PER015000" => "Performing Arts / Comedy",
10522    "PER016000" => "Performing Arts / Screenplays",
10523    "PER017000" => "Performing Arts / Animation",
10524    "PER018000" => "Performing Arts / Individual Director",
10525    "PER019000" => "Performing Arts / Storytelling",
10526    "PER020000" => "Performing Arts / Monologues & Scenes",
10527    "PET000000" => "Pets / General",
10528    "PET002000" => "Pets / Birds",
10529    "PET003000" => "Pets / Cats / General",
10530    "PET003010" => "Pets / Cats / Breeds",
10531    "PET004000" => "Pets / Dogs / General",
10532    "PET004010" => "Pets / Dogs / Breeds",
10533    "PET004020" => "Pets / Dogs / Training",
10534    "PET005000" => "Pets / Fish & Aquariums",
10535    "PET006000" => "Pets / Horses",
10536    "PET008000" => "Pets / Reference",
10537    "PET009000" => "Pets / Reptiles, Amphibians & Terrariums",
10538    "PET010000" => "Pets / Essays & Narratives",
10539    "PET011000" => "Pets / Rabbits, Mice, Hamsters, Guinea Pigs, etc.",
10540    "PHI000000" => "Philosophy / General",
10541    "PHI001000" => "Philosophy / Aesthetics",
10542    "PHI002000" => "Philosophy / History & Surveys / Ancient & Classical",
10543    "PHI003000" => "Philosophy / Eastern",
10544    "PHI004000" => "Philosophy / Epistemology",
10545    "PHI005000" => "Philosophy / Ethics & Moral Philosophy",
10546    "PHI006000" => "Philosophy / Movements / Existentialism",
10547    "PHI007000" => "Philosophy / Free Will & Determinism",
10548    "PHI008000" => "Philosophy / Good & Evil",
10549    "PHI009000" => "Philosophy / History & Surveys / General",
10550    "PHI010000" => "Philosophy / Movements / Humanism",
10551    "PHI011000" => "Philosophy / Logic",
10552    "PHI012000" => "Philosophy / History & Surveys / Medieval",
10553    "PHI013000" => "Philosophy / Metaphysics",
10554    "PHI014000" => "Philosophy / Methodology",
10555    "PHI015000" => "Philosophy / Mind & Body",
10556    "PHI016000" => "Philosophy / History & Surveys / Modern",
10557    "PHI018000" => "Philosophy / Movements / Phenomenology",
10558    "PHI019000" => "Philosophy / Political",
10559    "PHI020000" => "Philosophy / Movements / Pragmatism",
10560    "PHI021000" => "Philosophy / Reference",
10561    "PHI022000" => "Philosophy / Religious",
10562    "PHI023000" => "Philosophy / Taoist",
10563    "PHI025000" => "Philosophy / Zen",
10564    "PHI026000" => "Philosophy / Criticism",
10565    "PHI027000" => "Philosophy / Movements / Deconstruction",
10566    "PHI028000" => "Philosophy / Buddhist",
10567    "PHI029000" => "Philosophy / Movements / Structuralism",
10568    "PHI030000" => "Philosophy / Movements / Utilitarianism",
10569    "PHI031000" => "Philosophy / Movements / General",
10570    "PHI032000" => "Philosophy / Movements / Rationalism",
10571    "PHI033000" => "Philosophy / Hindu",
10572    "PHI034000" => "Philosophy / Social",
10573    "PHI035000" => "Philosophy / Essays",
10574    "PHI036000" => "Philosophy / Hermeneutics",
10575    "PHI037000" => "Philosophy / History & Surveys / Renaissance",
10576    "PHI038000" => "Philosophy / Language",
10577    "PHI039000" => "Philosophy / Movements / Analytic",
10578    "PHI040000" => "Philosophy / Movements / Critical Theory",
10579    "PHI041000" => "Philosophy / Movements / Empiricism",
10580    "PHI042000" => "Philosophy / Movements / Idealism",
10581    "PHI043000" => "Philosophy / Movements / Post-Structuralism",
10582    "PHI044000" => "Philosophy / Movements / Realism",
10583    "PHO000000" => "Photography / General",
10584    "PHO001000" => "Photography / Subjects & Themes / Architectural & Industrial",
10585    "PHO003000" => "Photography / Business Aspects",
10586    "PHO004000" => "Photography / Collections, Catalogs, Exhibitions / General",
10587    "PHO004010" => "Photography / Collections, Catalogs, Exhibitions / Group Shows",
10588    "PHO004020" => "Photography / Collections, Catalogs, Exhibitions / Permanent Collections",
10589    "PHO005000" => "Photography / Criticism",
10590    "PHO006000" => "Photography / Techniques / Darkroom",
10591    "PHO007000" => "Photography / Techniques / Equipment",
10592    "PHO009000" => "Photography / Subjects & Themes / Fashion",
10593    "PHO010000" => "Photography / History",
10594    "PHO011000" => "Photography / Individual Photographers / General",
10595    "PHO011010" => "Photography / Individual Photographers / Artists' Books",
10596    "PHO011020" => "Photography / Individual Photographers / Essays",
10597    "PHO011030" => "Photography / Individual Photographers / Monographs",
10598    "PHO012000" => "Photography / Techniques / Lighting",
10599    "PHO013000" => "Photography / Subjects & Themes / Plants & Animals",
10600    "PHO014000" => "Photography / Photoessays & Documentaries",
10601    "PHO015000" => "Photography / Photojournalism",
10602    "PHO016000" => "Photography / Subjects & Themes / Portraits",
10603    "PHO017000" => "Photography / Reference",
10604    "PHO018000" => "Photography / Techniques / General",
10605    "PHO019000" => "Photography / Subjects & Themes / Regional",
10606    "PHO020000" => "Photography / Techniques / Color",
10607    "PHO021000" => "Photography / Commercial",
10608    "PHO022000" => "Photography / Techniques / Cinematography & Videography",
10609    "PHO023000" => "Photography / Subjects & Themes / General",
10610    "PHO023010" => "Photography / Subjects & Themes / Aerial",
10611    "PHO023020" => "Photography / Subjects & Themes / Children",
10612    "PHO023030" => "Photography / Subjects & Themes / Erotica",
10613    "PHO023040" => "Photography / Subjects & Themes / Landscapes",
10614    "PHO023050" => "Photography / Subjects & Themes / Nudes",
10615    "PHO023060" => "Photography / Subjects & Themes / Sports",
10616    "PHO023070" => "Photography / Subjects & Themes / Celebrations & Events",
10617    "PHO023080" => "Photography / Subjects & Themes / Celebrity",
10618    "PHO023090" => "Photography / Subjects & Themes / Lifestyles",
10619    "PHO023100" => "Photography / Subjects & Themes / Historical",
10620    "PHO024000" => "Photography / Techniques / Digital",
10621    "PHO025000" => "Photography / Annuals",
10622    "POE000000" => "Poetry / General",
10623    "POE001000" => "Poetry / Anthologies (multiple authors)",
10624    "POE003000" => "Poetry / Subjects & Themes / Inspirational & Religious",
10625    "POE005010" => "Poetry / American / General",
10626    "POE005020" => "Poetry / European / English, Irish, Scottish, Welsh",
10627    "POE005030" => "Poetry / European / General",
10628    "POE005050" => "Poetry / American / African American",
10629    "POE005060" => "Poetry / American / Asian American",
10630    "POE005070" => "Poetry / American / Hispanic American",
10631    "POE007000" => "Poetry / African",
10632    "POE008000" => "Poetry / Ancient & Classical",
10633    "POE009000" => "Poetry / Asian / General",
10634    "POE009010" => "Poetry / Asian / Chinese",
10635    "POE009020" => "Poetry / Asian / Japanese",
10636    "POE010000" => "Poetry / Australian & Oceanian",
10637    "POE011000" => "Poetry / Canadian",
10638    "POE012000" => "Poetry / Caribbean & Latin American",
10639    "POE013000" => "Poetry / Middle Eastern",
10640    "POE014000" => "Poetry / Epic",
10641    "POE015000" => "Poetry / Native American",
10642    "POE016000" => "Poetry / Russian & Former Soviet Union",
10643    "POE017000" => "Poetry / European / French",
10644    "POE018000" => "Poetry / European / German",
10645    "POE019000" => "Poetry / European / Italian",
10646    "POE020000" => "Poetry / European / Spanish & Portuguese",
10647    "POE021000" => "Poetry / Gay & Lesbian",
10648    "POE022000" => "Poetry / Medieval",
10649    "POE023000" => "Poetry / Subjects & Themes / General",
10650    "POE023010" => "Poetry / Subjects & Themes / Death",
10651    "POE023020" => "Poetry / Subjects & Themes / Love",
10652    "POE023030" => "Poetry / Subjects & Themes / Nature",
10653    "POE023040" => "Poetry / Subjects & Themes / Places",
10654    "POE024000" => "Poetry / Women Authors",
10655    "POL000000" => "Political Science / General",
10656    "POL001000" => "Political Science / International Relations / Arms Control",
10657    "POL002000" => "Political Science / Public Policy / City Planning & Urban Development",
10658    "POL003000" => "Political Science / Civics & Citizenship",
10659    "POL004000" => "Political Science / Civil Rights",
10660    "POL005000" => "Political Science / Political Ideologies / Communism, Post-Communism & Socialism",
10661    "POL006000" => "Political Science / American Government / Legislative Branch",
10662    "POL007000" => "Political Science / Political Ideologies / Democracy",
10663    "POL008000" => "Political Science / Political Process / Elections",
10664    "POL009000" => "Political Science / Comparative Politics",
10665    "POL010000" => "Political Science / History & Theory",
10666    "POL011000" => "Political Science / International Relations / General",
10667    "POL011010" => "Political Science / International Relations / Diplomacy",
10668    "POL011020" => "Political Science / International Relations / Trade & Tariffs",
10669    "POL012000" => "Political Science / Security (National & International)",
10670    "POL013000" => "Political Science / Labor & Industrial Relations",
10671    "POL014000" => "Political Science / Law Enforcement",
10672    "POL015000" => "Political Science / Political Process / Political Parties",
10673    "POL016000" => "Political Science / Political Process / General",
10674    "POL017000" => "Political Science / Public Affairs & Administration",
10675    "POL018000" => "Political Science / Reference",
10676    "POL019000" => "Political Science / Public Policy / Social Services & Welfare",
10677    "POL020000" => "Political Science / American Government / State & Provincial",
10678    "POL021000" => "Political Science / International Relations / Treaties",
10679    "POL022000" => "Political Science / Constitutions",
10680    "POL023000" => "Political Science / Political Economy",
10681    "POL024000" => "Political Science / Public Policy / Economic Policy",
10682    "POL025000" => "Political Science / Political Process / Leadership",
10683    "POL026000" => "Political Science / Public Policy / Regional Planning",
10684    "POL027000" => "Political Science / Public Policy / Social Security",
10685    "POL028000" => "Political Science / Public Policy / General",
10686    "POL029000" => "Political Science / Public Policy / Social Policy",
10687    "POL030000" => "Political Science / American Government / National",
10688    "POL031000" => "Political Science / Political Ideologies / Nationalism & Patriotism",
10689    "POL032000" => "Political Science / Essays",
10690    "POL033000" => "Political Science / Globalization",
10691    "POL034000" => "Political Science / Peace",
10692    "POL035000" => "Political Science / Political Freedom",
10693    "POL035010" => "Political Science / Human Rights",
10694    "POL036000" => "Political Science / Intelligence & Espionage",
10695    "POL037000" => "Political Science / Terrorism",
10696    "POL038000" => "Political Science / Public Policy / Cultural Policy",
10697    "POL039000" => "Political Science / Censorship",
10698    "POL040000" => "Political Science / American Government / General",
10699    "POL040010" => "Political Science / American Government / Executive Branch",
10700    "POL040020" => "Political Science / World / General",
10701    "POL040030" => "Political Science / American Government / Judicial Branch",
10702    "POL040040" => "Political Science / American Government / Local",
10703    "POL041000" => "Political Science / NGOs (Non-Governmental Organizations)",
10704    "POL042000" => "Political Science / Political Ideologies / General",
10705    "POL042010" => "Political Science / Political Ideologies / Anarchism",
10706    "POL042020" => "Political Science / Political Ideologies / Conservatism & Liberalism",
10707    "POL042030" => "Political Science / Political Ideologies / Fascism & Totalitarianism",
10708    "POL042040" => "Political Science / Political Ideologies / Radicalism",
10709    "POL043000" => "Political Science / Political Process / Political Advocacy",
10710    "POL044000" => "Political Science / Public Policy / Environmental Policy",
10711    "POL045000" => "Political Science / Colonialism & Post-Colonialism",
10712    "POL046000" => "Political Science / Commentary & Opinion",
10713    "POL047000" => "Political Science / Imperialism",
10714    "POL048000" => "Political Science / Intergovernmental Organizations",
10715    "POL049000" => "Political Science / Propaganda",
10716    "POL050000" => "Political Science / Public Policy / Communication Policy",
10717    "POL051000" => "Political Science / Utopias",
10718    "POL052000" => "Political Science / Women in Politics",
10719    "POL053000" => "Political Science / World / African",
10720    "POL054000" => "Political Science / World / Asian",
10721    "POL055000" => "Political Science / World / Australian & Oceanian",
10722    "POL056000" => "Political Science / World / Canadian",
10723    "POL057000" => "Political Science / World / Caribbean & Latin American",
10724    "POL058000" => "Political Science / World / European",
10725    "POL059000" => "Political Science / World / Middle Eastern",
10726    "POL060000" => "Political Science / World / Russian & Former Soviet Union",
10727    "POL061000" => "Political Science / Genocide & War Crimes",
10728    "POL062000" => "Political Science / Geopolitics",
10729    "POL063000" => "Political Science / Public Policy / Science & Technology Policy",
10730    "PSY000000" => "Psychology / General",
10731    "PSY002000" => "Psychology / Developmental / Adolescent",
10732    "PSY003000" => "Psychology / Applied Psychology",
10733    "PSY004000" => "Psychology / Developmental / Child",
10734    "PSY006000" => "Psychology / Psychotherapy / Child & Adolescent",
10735    "PSY007000" => "Psychology / Clinical Psychology",
10736    "PSY008000" => "Psychology / Cognitive Psychology",
10737    "PSY009000" => "Psychology / Psychopathology / Compulsive Behavior",
10738    "PSY010000" => "Psychology / Psychotherapy / Counseling",
10739    "PSY011000" => "Psychology / Psychopathology / Eating Disorders",
10740    "PSY012000" => "Psychology / Education & Training",
10741    "PSY013000" => "Psychology / Emotions",
10742    "PSY014000" => "Psychology / Forensic Psychology",
10743    "PSY015000" => "Psychology / History",
10744    "PSY016000" => "Psychology / Human Sexuality",
10745    "PSY017000" => "Psychology / Interpersonal Relations",
10746    "PSY018000" => "Psychology / Mental Illness",
10747    "PSY020000" => "Psychology / NeuroPsychology",
10748    "PSY021000" => "Psychology / Industrial & Organizational Psychology",
10749    "PSY022000" => "Psychology / Psychopathology / General",
10750    "PSY022010" => "Psychology / Psychopathology / Attention-Deficit Disorder (ADD-ADHD)",
10751    "PSY022020" => "Psychology / Psychopathology / Autism Spectrum Disorders",
10752    "PSY022030" => "Psychology / Psychopathology / Bipolar Disorder",
10753    "PSY022040" => "Psychology / Psychopathology / Post-Traumatic Stress Disorder (PTSD)",
10754    "PSY022050" => "Psychology / Psychopathology / Schizophrenia",
10755    "PSY022060" => "Psychology / Psychopathology / Anxieties & Phobias",
10756    "PSY022070" => "Psychology / Psychopathology / Dissociative Identity Disorder",
10757    "PSY023000" => "Psychology / Personality",
10758    "PSY024000" => "Psychology / Physiological Psychology",
10759    "PSY026000" => "Psychology / Movements / Psychoanalysis",
10760    "PSY028000" => "Psychology / Psychotherapy / General",
10761    "PSY029000" => "Psychology / Reference",
10762    "PSY030000" => "Psychology / Research & Methodology",
10763    "PSY031000" => "Psychology / Social Psychology",
10764    "PSY032000" => "Psychology / Statistics",
10765    "PSY034000" => "Psychology / Creative Ability",
10766    "PSY035000" => "Psychology / Hypnotism",
10767    "PSY036000" => "Psychology / Mental Health",
10768    "PSY037000" => "Psychology / Suicide",
10769    "PSY038000" => "Psychology / Psychopathology / Addiction",
10770    "PSY039000" => "Psychology / Developmental / General",
10771    "PSY040000" => "Psychology / Experimental Psychology",
10772    "PSY041000" => "Psychology / Psychotherapy / Couples & Family",
10773    "PSY042000" => "Psychology / Assessment, Testing & Measurement",
10774    "PSY043000" => "Psychology / Developmental / Adulthood & Aging",
10775    "PSY044000" => "Psychology / Developmental / Lifespan Development",
10776    "PSY045000" => "Psychology / Movements / General",
10777    "PSY045010" => "Psychology / Movements / Behaviorism",
10778    "PSY045020" => "Psychology / Movements / Humanism",
10779    "PSY045030" => "Psychology / Movements / Transpersonal",
10780    "PSY045040" => "Psychology / Movements / Existential",
10781    "PSY045050" => "Psychology / Movements / Gestalt",
10782    "PSY045060" => "Psychology / Movements / Jungian",
10783    "PSY046000" => "Psychology / Practice Management",
10784    "PSY048000" => "Psychology / Psychotherapy / Group",
10785    "PSY049000" => "Psychology / Psychopathology / Depression",
10786    "PSY050000" => "Psychology / EthnoPsychology",
10787    "PSY053000" => "Psychology / Evolutionary Psychology",
10788    "REF000000" => "Reference / General",
10789    "REF001000" => "Reference / Almanacs",
10790    "REF002000" => "Reference / Atlases, Gazetteers & Maps",
10791    "REF004000" => "Reference / Bibliographies & Indexes",
10792    "REF006000" => "Reference / Catalogs",
10793    "REF007000" => "Reference / Curiosities & Wonders",
10794    "REF008000" => "Reference / Dictionaries",
10795    "REF009000" => "Reference / Directories",
10796    "REF010000" => "Reference / Encyclopedias",
10797    "REF011000" => "Reference / Etiquette",
10798    "REF013000" => "Reference / Genealogy & Heraldry",
10799    "REF015000" => "Reference / Personal & Practical Guides",
10800    "REF018000" => "Reference / Questions & Answers",
10801    "REF019000" => "Reference / Quotations",
10802    "REF020000" => "Reference / Research",
10803    "REF022000" => "Reference / Thesauri",
10804    "REF023000" => "Reference / Trivia",
10805    "REF024000" => "Reference / Weddings",
10806    "REF025000" => "Reference / Word Lists",
10807    "REF026000" => "Reference / Writing Skills",
10808    "REF027000" => "Reference / Yearbooks & Annuals",
10809    "REF028000" => "Reference / Handbooks & Manuals",
10810    "REF030000" => "Reference / Consumer Guides",
10811    "REL000000" => "Religion / General",
10812    "REL001000" => "Religion / Agnosticism",
10813    "REL002000" => "Religion / Christianity / Amish",
10814    "REL003000" => "Religion / Christianity / Anglican",
10815    "REL004000" => "Religion / Atheism",
10816    "REL005000" => "Religion / Baha'i",
10817    "REL006000" => "Religion / Biblical Studies / General",
10818    "REL006020" => "Religion / Biblical Biography / General",
10819    "REL006030" => "Religion / Biblical Biography / Old Testament",
10820    "REL006040" => "Religion / Biblical Biography / New Testament",
10821    "REL006050" => "Religion / Biblical Commentary / General",
10822    "REL006060" => "Religion / Biblical Commentary / Old Testament",
10823    "REL006070" => "Religion / Biblical Commentary / New Testament",
10824    "REL006080" => "Religion / Biblical Criticism & Interpretation / General",
10825    "REL006090" => "Religion / Biblical Criticism & Interpretation / Old Testament",
10826    "REL006100" => "Religion / Biblical Criticism & Interpretation / New Testament",
10827    "REL006110" => "Religion / Biblical Meditations / General",
10828    "REL006120" => "Religion / Biblical Meditations / Old Testament",
10829    "REL006130" => "Religion / Biblical Meditations / New Testament",
10830    "REL006140" => "Religion / Biblical Studies / Prophecy",
10831    "REL006150" => "Religion / Biblical Reference / Quotations",
10832    "REL006160" => "Religion / Biblical Reference / General",
10833    "REL006210" => "Religion / Biblical Studies / Old Testament",
10834    "REL006220" => "Religion / Biblical Studies / New Testament",
10835    "REL006400" => "Religion / Biblical Studies / Exegesis & Hermeneutics",
10836    "REL006410" => "Religion / Biblical Reference / Language Study",
10837    "REL006630" => "Religion / Biblical Studies / History & Culture",
10838    "REL006650" => "Religion / Biblical Reference / Atlases",
10839    "REL006660" => "Religion / Biblical Reference / Concordances",
10840    "REL006670" => "Religion / Biblical Reference / Dictionaries & Encyclopedias",
10841    "REL006680" => "Religion / Biblical Reference / Handbooks",
10842    "REL006700" => "Religion / Biblical Studies / Bible Study Guides",
10843    "REL006710" => "Religion / Biblical Studies / Jesus, the Gospels & Acts",
10844    "REL006720" => "Religion / Biblical Studies / Paul's Letters",
10845    "REL006730" => "Religion / Biblical Studies / Prophets",
10846    "REL006740" => "Religion / Biblical Studies / Wisdom Literature",
10847    "REL007000" => "Religion / Buddhism / General",
10848    "REL007010" => "Religion / Buddhism / History",
10849    "REL007020" => "Religion / Buddhism / Rituals & Practice",
10850    "REL007030" => "Religion / Buddhism / Sacred Writings",
10851    "REL007040" => "Religion / Buddhism / Theravada",
10852    "REL007050" => "Religion / Buddhism / Tibetan",
10853    "REL008000" => "Religion / Christian Church / Canon & Ecclesiastical Law",
10854    "REL009000" => "Religion / Christianity / Catechisms",
10855    "REL010000" => "Religion / Christianity / Catholic",
10856    "REL011000" => "Religion / Christian Education / General",
10857    "REL012000" => "Religion / Christian Life / General",
10858    "REL012010" => "Religion / Christian Life / Death, Grief, Bereavement",
10859    "REL012020" => "Religion / Christian Life / Devotional",
10860    "REL012030" => "Religion / Christian Life / Family",
10861    "REL012040" => "Religion / Christian Life / Inspirational",
10862    "REL012050" => "Religion / Christian Life / Love & Marriage",
10863    "REL012060" => "Religion / Christian Life / Men's Issues",
10864    "REL012070" => "Religion / Christian Life / Personal Growth",
10865    "REL012080" => "Religion / Christian Life / Prayer",
10866    "REL012090" => "Religion / Christian Life / Professional Growth",
10867    "REL012100" => "Religion / Christian Life / Relationships",
10868    "REL012110" => "Religion / Christian Life / Social Issues",
10869    "REL012120" => "Religion / Christian Life / Spiritual Growth",
10870    "REL012130" => "Religion / Christian Life / Women's Issues",
10871    "REL013000" => "Religion / Christianity / Literature & the Arts",
10872    "REL014000" => "Religion / Christian Church / Administration",
10873    "REL015000" => "Religion / Christianity / History",
10874    "REL016000" => "Religion / Institutions & Organizations",
10875    "REL017000" => "Religion / Comparative Religion",
10876    "REL018000" => "Religion / Confucianism",
10877    "REL019000" => "Religion / Counseling",
10878    "REL020000" => "Religion / Cults",
10879    "REL021000" => "Religion / Deism",
10880    "REL022000" => "Religion / Devotional",
10881    "REL023000" => "Religion / Christian Ministry / Discipleship",
10882    "REL024000" => "Religion / Eastern",
10883    "REL025000" => "Religion / Ecumenism",
10884    "REL026000" => "Religion / Education",
10885    "REL027000" => "Religion / Christianity / Episcopalian",
10886    "REL028000" => "Religion / Ethics",
10887    "REL029000" => "Religion / Ethnic & Tribal",
10888    "REL030000" => "Religion / Christian Ministry / Evangelism",
10889    "REL032000" => "Religion / Hinduism / General",
10890    "REL032010" => "Religion / Hinduism / History",
10891    "REL032020" => "Religion / Hinduism / Rituals & Practice",
10892    "REL032030" => "Religion / Hinduism / Sacred Writings",
10893    "REL032040" => "Religion / Hinduism / Theology",
10894    "REL033000" => "Religion / History",
10895    "REL034000" => "Religion / Holidays / General",
10896    "REL034010" => "Religion / Holidays / Christian",
10897    "REL034020" => "Religion / Holidays / Christmas & Advent",
10898    "REL034030" => "Religion / Holidays / Easter & Lent",
10899    "REL034040" => "Religion / Holidays / Jewish",
10900    "REL034050" => "Religion / Holidays / Other",
10901    "REL036000" => "Religion / Inspirational",
10902    "REL037000" => "Religion / Islam / General",
10903    "REL037010" => "Religion / Islam / History",
10904    "REL037020" => "Religion / Islam / Law",
10905    "REL037030" => "Religion / Islam / Rituals & Practice",
10906    "REL037040" => "Religion / Islam / Shi'a",
10907    "REL037050" => "Religion / Islam / Sunni",
10908    "REL037060" => "Religion / Islam / Theology",
10909    "REL038000" => "Religion / Jainism",
10910    "REL040000" => "Religion / Judaism / General",
10911    "REL040010" => "Religion / Judaism / Rituals & Practice",
10912    "REL040030" => "Religion / Judaism / History",
10913    "REL040040" => "Religion / Judaism / Sacred Writings",
10914    "REL040050" => "Religion / Judaism / Conservative",
10915    "REL040060" => "Religion / Judaism / Kabbalah & Mysticism",
10916    "REL040070" => "Religion / Judaism / Orthodox",
10917    "REL040080" => "Religion / Judaism / Reform",
10918    "REL040090" => "Religion / Judaism / Theology",
10919    "REL041000" => "Religion / Islam / Koran & Sacred Writings",
10920    "REL042000" => "Religion / Meditations",
10921    "REL043000" => "Religion / Christianity / Mennonite",
10922    "REL044000" => "Religion / Christianity / Methodist",
10923    "REL045000" => "Religion / Christian Ministry / Missions",
10924    "REL046000" => "Religion / Christianity / Church of Jesus Christ of Latter-day Saints (Mormon)",
10925    "REL047000" => "Religion / Mysticism",
10926    "REL049000" => "Religion / Christianity / Orthodox",
10927    "REL050000" => "Religion / Christian Ministry / Counseling & Recovery",
10928    "REL051000" => "Religion / Philosophy",
10929    "REL052000" => "Religion / Prayerbooks / General",
10930    "REL052010" => "Religion / Prayerbooks / Christian",
10931    "REL052020" => "Religion / Prayerbooks / Jewish",
10932    "REL052030" => "Religion / Prayerbooks / Islamic",
10933    "REL053000" => "Religion / Christianity / Protestant",
10934    "REL054000" => "Religion / Reference",
10935    "REL055000" => "Religion / Christian Rituals & Practice / General",
10936    "REL055010" => "Religion / Christian Rituals & Practice / Sacraments",
10937    "REL055020" => "Religion / Christian Rituals & Practice / Worship & Liturgy",
10938    "REL058000" => "Religion / Sermons / General",
10939    "REL058010" => "Religion / Sermons / Christian",
10940    "REL058020" => "Religion / Sermons / Jewish",
10941    "REL059000" => "Religion / Christianity / Shaker",
10942    "REL060000" => "Religion / Shintoism",
10943    "REL061000" => "Religion / Sikhism",
10944    "REL062000" => "Religion / Spirituality",
10945    "REL063000" => "Religion / Christian Life / Stewardship & Giving",
10946    "REL064000" => "Religion / Judaism / Talmud",
10947    "REL065000" => "Religion / Taoism",
10948    "REL066000" => "Religion / Theism",
10949    "REL067000" => "Religion / Christian Theology / General",
10950    "REL067010" => "Religion / Christian Theology / Angelology & Demonology",
10951    "REL067020" => "Religion / Christian Theology / Anthropology",
10952    "REL067030" => "Religion / Christian Theology / Apologetics",
10953    "REL067040" => "Religion / Christian Theology / Christology",
10954    "REL067050" => "Religion / Christian Theology / Ecclesiology",
10955    "REL067060" => "Religion / Christian Theology / Eschatology",
10956    "REL067070" => "Religion / Christian Theology / Ethics",
10957    "REL067080" => "Religion / Christian Theology / History",
10958    "REL067090" => "Religion / Christian Theology / Pneumatology",
10959    "REL067100" => "Religion / Christian Theology / Soteriology",
10960    "REL067110" => "Religion / Christian Theology / Systematic",
10961    "REL067120" => "Religion / Christian Theology / Liberation",
10962    "REL067130" => "Religion / Christian Theology / Process",
10963    "REL068000" => "Religion / Theosophy",
10964    "REL069000" => "Religion / Zoroastrianism",
10965    "REL070000" => "Religion / Christianity / General",
10966    "REL071000" => "Religion / Leadership",
10967    "REL072000" => "Religion / Antiquities & Archaeology",
10968    "REL073000" => "Religion / Christianity / Baptist",
10969    "REL074000" => "Religion / Christian Ministry / Pastoral Resources",
10970    "REL075000" => "Religion / Psychology of Religion",
10971    "REL077000" => "Religion / Faith",
10972    "REL078000" => "Religion / Fundamentalism",
10973    "REL079000" => "Religion / Christianity / Pentecostal & Charismatic",
10974    "REL080000" => "Religion / Christian Ministry / Preaching",
10975    "REL081000" => "Religion / Clergy",
10976    "REL082000" => "Religion / Christianity / Lutheran",
10977    "REL083000" => "Religion / Christianity / Christian Science",
10978    "REL084000" => "Religion / Religion, Politics & State",
10979    "REL085000" => "Religion / Eschatology",
10980    "REL086000" => "Religion / Monasticism",
10981    "REL087000" => "Religion / Prayer",
10982    "REL088000" => "Religion / Christianity / Quaker",
10983    "REL089000" => "Religion / Scientology",
10984    "REL090000" => "Religion / Islam / Sufi",
10985    "REL091000" => "Religion / Christian Education / Children & Youth",
10986    "REL092000" => "Religion / Buddhism / Zen",
10987    "REL093000" => "Religion / Christianity / Calvinist",
10988    "REL094000" => "Religion / Christianity / Denominations",
10989    "REL095000" => "Religion / Christian Education / Adult",
10990    "REL096000" => "Religion / Christianity / Jehovah's Witnesses",
10991    "REL097000" => "Religion / Christianity / Presbyterian",
10992    "REL098000" => "Religion / Christianity / Seventh-Day Adventist",
10993    "REL099000" => "Religion / Christian Life / Spiritual Warfare",
10994    "REL100000" => "Religion / Demonology & Satanism",
10995    "REL101000" => "Religion / Messianic Judaism",
10996    "REL102000" => "Religion / Theology",
10997    "REL103000" => "Religion / Unitarian Universalism",
10998    "REL104000" => "Religion / Christian Theology / Mariology",
10999    "REL105000" => "Religion / Sexuality & Gender Studies",
11000    "REL106000" => "Religion / Religion & Science",
11001    "REL107000" => "Religion / Eckankar",
11002    "REL108000" => "Religion / Christian Church / General",
11003    "REL108010" => "Religion / Christian Church / Growth",
11004    "REL108020" => "Religion / Christian Church / History",
11005    "REL108030" => "Religion / Christian Church / Leadership",
11006    "REL109000" => "Religion / Christian Ministry / General",
11007    "REL109010" => "Religion / Christian Ministry / Adult",
11008    "REL109020" => "Religion / Christian Ministry / Children",
11009    "REL109030" => "Religion / Christian Ministry / Youth",
11010    "REL110000" => "Religion / Christianity / Saints & Sainthood",
11011    "REL111000" => "Religion / Christianity / United Church of Christ",
11012    "REL112000" => "Religion / Gnosticism",
11013    "REL113000" => "Religion / Essays",
11014    "REL114000" => "Religion / Ancient",
11015    "REL115000" => "Religion / Blasphemy, Heresy & Apostasy",
11016    "REL116000" => "Religion / Religious Intolerance, Persecution & Conflict",
11017    "REL117000" => "Religion / Paganism & Neo-Paganism",
11018    "REL118000" => "Religion / Wicca",
11019    "SCI000000" => "Science / General",
11020    "SCI001000" => "Science / Acoustics & Sound",
11021    "SCI003000" => "Science / Applied Sciences",
11022    "SCI004000" => "Science / Astronomy",
11023    "SCI005000" => "Science / Physics / Astrophysics",
11024    "SCI006000" => "Science / Life Sciences / Bacteriology",
11025    "SCI007000" => "Science / Life Sciences / Biochemistry",
11026    "SCI008000" => "Science / Life Sciences / Biology",
11027    "SCI009000" => "Science / Life Sciences / Biophysics",
11028    "SCI010000" => "Science / Biotechnology",
11029    "SCI011000" => "Science / Life Sciences / Botany",
11030    "SCI012000" => "Science / Chaotic Behavior in Systems",
11031    "SCI013000" => "Science / Chemistry / General",
11032    "SCI013010" => "Science / Chemistry / Analytic",
11033    "SCI013020" => "Science / Chemistry / Clinical",
11034    "SCI013030" => "Science / Chemistry / Inorganic",
11035    "SCI013040" => "Science / Chemistry / Organic",
11036    "SCI013050" => "Science / Chemistry / Physical & Theoretical",
11037    "SCI013060" => "Science / Chemistry / Industrial & Technical",
11038    "SCI013070" => "Science / Chemistry / Computational & Molecular Modeling",
11039    "SCI013080" => "Science / Chemistry / Environmental",
11040    "SCI013090" => "Science / Chemistry / Toxicology",
11041    "SCI015000" => "Science / Cosmology",
11042    "SCI016000" => "Science / Physics / Crystallography",
11043    "SCI017000" => "Science / Life Sciences / Cell Biology",
11044    "SCI018000" => "Science / Mechanics / Dynamics",
11045    "SCI019000" => "Science / Earth Sciences / General",
11046    "SCI020000" => "Science / Life Sciences / Ecology",
11047    "SCI021000" => "Science / Physics / Electricity",
11048    "SCI022000" => "Science / Physics / Electromagnetism",
11049    "SCI023000" => "Science / Electron Microscopes & Microscopy",
11050    "SCI024000" => "Science / Energy",
11051    "SCI025000" => "Science / Life Sciences / Zoology / Entomology",
11052    "SCI026000" => "Science / Environmental Science",
11053    "SCI027000" => "Science / Life Sciences / Evolution",
11054    "SCI028000" => "Science / Experiments & Projects",
11055    "SCI029000" => "Science / Life Sciences / Genetics & Genomics",
11056    "SCI030000" => "Science / Earth Sciences / Geography",
11057    "SCI031000" => "Science / Earth Sciences / Geology",
11058    "SCI032000" => "Science / Physics / Geophysics",
11059    "SCI033000" => "Science / Gravity",
11060    "SCI034000" => "Science / History",
11061    "SCI036000" => "Science / Life Sciences / Human Anatomy & Physiology",
11062    "SCI038000" => "Science / Physics / Magnetism",
11063    "SCI039000" => "Science / Life Sciences / Marine Biology",
11064    "SCI040000" => "Science / Physics / Mathematical & Computational",
11065    "SCI041000" => "Science / Mechanics / General",
11066    "SCI042000" => "Science / Earth Sciences / Meteorology & Climatology",
11067    "SCI043000" => "Science / Research & Methodology",
11068    "SCI045000" => "Science / Life Sciences / Microbiology",
11069    "SCI047000" => "Science / Microscopes & Microscopy",
11070    "SCI048000" => "Science / Earth Sciences / Mineralogy",
11071    "SCI049000" => "Science / Life Sciences / Molecular Biology",
11072    "SCI050000" => "Science / Nanoscience",
11073    "SCI051000" => "Science / Physics / Nuclear",
11074    "SCI052000" => "Science / Earth Sciences / Oceanography",
11075    "SCI053000" => "Science / Physics / Optics & Light",
11076    "SCI054000" => "Science / Paleontology",
11077    "SCI055000" => "Science / Physics / General",
11078    "SCI056000" => "Science / Life Sciences / Anatomy & Physiology",
11079    "SCI057000" => "Science / Physics / Quantum Theory",
11080    "SCI058000" => "Science / Radiation",
11081    "SCI059000" => "Science / Radiology",
11082    "SCI060000" => "Science / Reference",
11083    "SCI061000" => "Science / Physics / Relativity",
11084    "SCI063000" => "Science / Study & Teaching",
11085    "SCI064000" => "Science / System Theory",
11086    "SCI065000" => "Science / Mechanics / Thermodynamics",
11087    "SCI066000" => "Science / Time",
11088    "SCI067000" => "Science / Waves & Wave Mechanics",
11089    "SCI068000" => "Science / Weights & Measures",
11090    "SCI070000" => "Science / Life Sciences / Zoology / General",
11091    "SCI070060" => "Science / Life Sciences / Zoology / Ethology (Animal Behavior)",
11092    "SCI070010" => "Science / Life Sciences / Zoology / Ichthyology & Herpetology",
11093    "SCI070020" => "Science / Life Sciences / Zoology / Invertebrates",
11094    "SCI070030" => "Science / Life Sciences / Zoology / Mammals",
11095    "SCI070040" => "Science / Life Sciences / Zoology / Ornithology",
11096    "SCI070050" => "Science / Life Sciences / Zoology / Primatology",
11097    "SCI072000" => "Science / Life Sciences / Developmental Biology",
11098    "SCI073000" => "Science / Life Sciences / Horticulture",
11099    "SCI074000" => "Science / Physics / Atomic & Molecular",
11100    "SCI075000" => "Science / Philosophy & Social Aspects",
11101    "SCI076000" => "Science / Scientific Instruments",
11102    "SCI077000" => "Science / Physics / Condensed Matter",
11103    "SCI078000" => "Science / Spectroscopy & Spectrum Analysis",
11104    "SCI079000" => "Science / Mechanics / Statics",
11105    "SCI080000" => "Science / Essays",
11106    "SCI081000" => "Science / Earth Sciences / Hydrology",
11107    "SCI082000" => "Science / Earth Sciences / Seismology & Volcanism",
11108    "SCI083000" => "Science / Earth Sciences / Limnology",
11109    "SCI084000" => "Science / Mechanics / Aerodynamics",
11110    "SCI085000" => "Science / Mechanics / Fluids",
11111    "SCI086000" => "Science / Life Sciences / General",
11112    "SCI087000" => "Science / Life Sciences / Taxonomy",
11113    "SCI088000" => "Science / Life Sciences / Biological Diversity",
11114    "SCI089000" => "Science / Life Sciences / Neuroscience",
11115    "SCI090000" => "Science / Cognitive Science",
11116    "SCI091000" => "Science / Earth Sciences / Sedimentology & Stratigraphy",
11117    "SCI092000" => "Science / Global Warming & Climate Change",
11118    "SCI093000" => "Science / Laboratory Techniques",
11119    "SCI094000" => "Science / Life Sciences / Mycology",
11120    "SCI095000" => "Science / Mechanics / Hydrodynamics",
11121    "SCI096000" => "Science / Mechanics / Solids",
11122    "SCI097000" => "Science / Physics / Polymer",
11123    "SCI098000" => "Science / Space Science",
11124    "SCI099000" => "Science / Life Sciences / Virology",
11125    "SCI100000" => "Science / Natural History",
11126    "SEL000000" => "Self-Help / General",
11127    "SEL001000" => "Self-Help / Abuse",
11128    "SEL003000" => "Self-Help / Adult Children of Substance Abusers",
11129    "SEL004000" => "Self-Help / Affirmations",
11130    "SEL005000" => "Self-Help / Aging",
11131    "SEL006000" => "Self-Help / Substance Abuse & Addictions / Alcoholism",
11132    "SEL008000" => "Self-Help / Codependency",
11133    "SEL009000" => "Self-Help / Creativity",
11134    "SEL010000" => "Self-Help / Death, Grief, Bereavement",
11135    "SEL011000" => "Self-Help / Depression",
11136    "SEL012000" => "Self-Help / Dreams",
11137    "SEL013000" => "Self-Help / Substance Abuse & Addictions / Drug Dependence",
11138    "SEL014000" => "Self-Help / Eating Disorders",
11139    "SEL015000" => "Self-Help / Handwriting Analysis",
11140    "SEL016000" => "Self-Help / Personal Growth / Happiness",
11141    "SEL017000" => "Self-Help / Self-Hypnosis",
11142    "SEL018000" => "Self-Help / Inner Child",
11143    "SEL019000" => "Self-Help / Meditations",
11144    "SEL020000" => "Self-Help / Mood Disorders",
11145    "SEL021000" => "Self-Help / Motivational & Inspirational",
11146    "SEL023000" => "Self-Help / Personal Growth / Self-Esteem",
11147    "SEL024000" => "Self-Help / Stress Management",
11148    "SEL026000" => "Self-Help / Substance Abuse & Addictions / General",
11149    "SEL026010" => "Self-Help / Substance Abuse & Addictions / Tobacco",
11150    "SEL027000" => "Self-Help / Personal Growth / Success",
11151    "SEL029000" => "Self-Help / Twelve-Step Programs",
11152    "SEL030000" => "Self-Help / Personal Growth / Memory Improvement",
11153    "SEL031000" => "Self-Help / Personal Growth / General",
11154    "SEL032000" => "Self-Help / Spiritual",
11155    "SEL033000" => "Self-Help / Anger Management",
11156    "SEL034000" => "Self-Help / Sexual Instruction",
11157    "SEL035000" => "Self-Help / Time Management",
11158    "SEL036000" => "Self-Help / Anxieties & Phobias",
11159    "SEL037000" => "Self-Help / Neuro-Linguistic Programming (NLP)",
11160    "SEL038000" => "Self-Help / Fashion & Style",
11161    "SEL039000" => "Self-Help / Green Lifestyle",
11162    "SOC000000" => "Social Science / General",
11163    "SOC001000" => "Social Science / Ethnic Studies / African American Studies",
11164    "SOC002000" => "Social Science / Anthropology / General",
11165    "SOC002010" => "Social Science / Anthropology / Cultural",
11166    "SOC002020" => "Social Science / Anthropology / Physical",
11167    "SOC003000" => "Social Science / Archaeology",
11168    "SOC004000" => "Social Science / Criminology",
11169    "SOC005000" => "Social Science / Customs & Traditions",
11170    "SOC006000" => "Social Science / Demography",
11171    "SOC007000" => "Social Science / Emigration & Immigration",
11172    "SOC008000" => "Social Science / Ethnic Studies / General",
11173    "SOC010000" => "Social Science / Feminism & Feminist Theory",
11174    "SOC011000" => "Social Science / Folklore & Mythology",
11175    "SOC012000" => "Social Science / Gay Studies",
11176    "SOC013000" => "Social Science / Gerontology",
11177    "SOC014000" => "Social Science / Holidays (non-religious)",
11178    "SOC015000" => "Social Science / Human Geography",
11179    "SOC016000" => "Social Science / Human Services",
11180    "SOC017000" => "Social Science / Lesbian Studies",
11181    "SOC018000" => "Social Science / Men's Studies",
11182    "SOC019000" => "Social Science / Methodology",
11183    "SOC020000" => "Social Science / Minority Studies",
11184    "SOC021000" => "Social Science / Ethnic Studies / Native American Studies",
11185    "SOC022000" => "Social Science / Popular Culture",
11186    "SOC023000" => "Social Science / Reference",
11187    "SOC024000" => "Social Science / Research",
11188    "SOC025000" => "Social Science / Social Work",
11189    "SOC026000" => "Social Science / Sociology / General",
11190    "SOC026010" => "Social Science / Sociology / Marriage & Family",
11191    "SOC026020" => "Social Science / Sociology / Rural",
11192    "SOC026030" => "Social Science / Sociology / Urban",
11193    "SOC026040" => "SOCIAL SCIENCE / Sociology / Social Theory",
11194    "SOC027000" => "Social Science / Statistics",
11195    "SOC028000" => "Social Science / Women's Studies",
11196    "SOC029000" => "Social Science / People with Disabilities",
11197    "SOC030000" => "Social Science / Penology",
11198    "SOC031000" => "Social Science / Discrimination & Race Relations",
11199    "SOC032000" => "Social Science / Gender Studies",
11200    "SOC033000" => "Social Science / Philanthropy & Charity",
11201    "SOC034000" => "Social Science / Pornography",
11202    "SOC035000" => "Social Science / Volunteer Work",
11203    "SOC036000" => "Social Science / Death & Dying",
11204    "SOC037000" => "Social Science / Future Studies",
11205    "SOC038000" => "Social Science / Freemasonry & Secret Societies",
11206    "SOC039000" => "Social Science / Sociology of Religion",
11207    "SOC040000" => "Social Science / Disasters & Disaster Relief",
11208    "SOC041000" => "Social Science / Essays",
11209    "SOC042000" => "Social Science / Developing & Emerging Countries",
11210    "SOC043000" => "Social Science / Ethnic Studies / Asian American Studies",
11211    "SOC044000" => "Social Science / Ethnic Studies / Hispanic American Studies",
11212    "SOC045000" => "Social Science / Poverty & Homelessness",
11213    "SOC046000" => "Social Science / Abortion & Birth Control",
11214    "SOC047000" => "Social Science / Children's Studies",
11215    "SOC048000" => "Social Science / Islamic Studies",
11216    "SOC049000" => "Social Science / Jewish Studies",
11217    "SOC050000" => "Social Science / Social Classes",
11218    "SOC051000" => "Social Science / Violence in Society",
11219    "SOC052000" => "Social Science / Media Studies",
11220    "SOC053000" => "Social Science / Regional Studies",
11221    "SOC054000" => "Social Science / Slavery",
11222    "SOC055000" => "Social Science / Agriculture & Food",
11223    "SOC056000" => "Social Science / Black Studies (Global)",
11224    "SOC057000" => "Social Science / Disease & Health Issues",
11225    "SOC058000" => "Social Science / Conspiracy Theories",
11226    "SOC059000" => "Social Science / Prostitution & Sex Trade",
11227    "SOC060000" => "Social Science / Sexual Abuse & Harassment",
11228    "SOC061000" => "Social Science / Body Language & Nonverbal Communication",
11229    "SOC062000" => "Social Science / Indigenous Studies",
11230    "SPO000000" => "Sports & Recreation / General",
11231    "SPO001000" => "Sports & Recreation / Air Sports",
11232    "SPO002000" => "Sports & Recreation / Archery",
11233    "SPO003000" => "Sports & Recreation / Baseball / General",
11234    "SPO003010" => "Sports & Recreation / Coaching / Baseball",
11235    "SPO003020" => "Sports & Recreation / Baseball / Essays & Writings",
11236    "SPO003030" => "Sports & Recreation / Baseball / History",
11237    "SPO003040" => "Sports & Recreation / Baseball / Statistics",
11238    "SPO004000" => "Sports & Recreation / Basketball",
11239    "SPO005000" => "Sports & Recreation / Boating",
11240    "SPO006000" => "Sports & Recreation / Bodybuilding & Weight Training",
11241    "SPO007000" => "Sports & Recreation / Bowling",
11242    "SPO008000" => "Sports & Recreation / Boxing",
11243    "SPO009000" => "Sports & Recreation / Camping",
11244    "SPO010000" => "Sports & Recreation / Canoeing",
11245    "SPO011000" => "Sports & Recreation / Cycling",
11246    "SPO012000" => "Sports & Recreation / Essays",
11247    "SPO014000" => "Sports & Recreation / Fishing",
11248    "SPO015000" => "Sports & Recreation / Football",
11249    "SPO016000" => "Sports & Recreation / Golf",
11250    "SPO017000" => "Sports & Recreation / Gymnastics",
11251    "SPO018000" => "Sports & Recreation / Hiking",
11252    "SPO019000" => "Sports & Recreation / History",
11253    "SPO020000" => "Sports & Recreation / Hockey",
11254    "SPO021000" => "Sports & Recreation / Horse Racing",
11255    "SPO022000" => "Sports & Recreation / Hunting",
11256    "SPO023000" => "Sports & Recreation / Ice & Figure Skating",
11257    "SPO024000" => "Sports & Recreation / Juggling",
11258    "SPO025000" => "Sports & Recreation / Kayaking",
11259    "SPO026000" => "Sports & Recreation / Lacrosse",
11260    "SPO027000" => "Sports & Recreation / Martial Arts & Self-Defense",
11261    "SPO028000" => "Sports & Recreation / Motor Sports",
11262    "SPO029000" => "Sports & Recreation / Mountaineering",
11263    "SPO030000" => "Sports & Recreation / Outdoor Skills",
11264    "SPO031000" => "Sports & Recreation / Racket Sports",
11265    "SPO032000" => "Sports & Recreation / Racquetball",
11266    "SPO033000" => "Sports & Recreation / Reference",
11267    "SPO034000" => "Sports & Recreation / Roller & In-Line Skating",
11268    "SPO035000" => "Sports & Recreation / Running & Jogging",
11269    "SPO036000" => "Sports & Recreation / Sailing",
11270    "SPO037000" => "Sports & Recreation / Shooting",
11271    "SPO038000" => "Sports & Recreation / Skateboarding",
11272    "SPO039000" => "Sports & Recreation / Skiing",
11273    "SPO040000" => "Sports & Recreation / Soccer",
11274    "SPO041000" => "Sports & Recreation / Sports Psychology",
11275    "SPO042000" => "Sports & Recreation / Squash",
11276    "SPO043000" => "Sports & Recreation / Swimming & Diving",
11277    "SPO044000" => "Sports & Recreation / Table Tennis",
11278    "SPO045000" => "Sports & Recreation / Tennis",
11279    "SPO046000" => "Sports & Recreation / Track & Field",
11280    "SPO047000" => "Sports & Recreation / Training",
11281    "SPO048000" => "Sports & Recreation / Triathlon",
11282    "SPO049000" => "Sports & Recreation / Volleyball",
11283    "SPO050000" => "Sports & Recreation / Walking",
11284    "SPO051000" => "Sports & Recreation / Water Sports",
11285    "SPO052000" => "Sports & Recreation / Winter Sports",
11286    "SPO053000" => "Sports & Recreation / Wrestling",
11287    "SPO054000" => "Sports & Recreation / Cricket",
11288    "SPO055000" => "Sports & Recreation / Polo",
11289    "SPO056000" => "Sports & Recreation / Rugby",
11290    "SPO057000" => "Sports & Recreation / Equestrian",
11291    "SPO058000" => "Sports & Recreation / Olympics",
11292    "SPO059000" => "Sports & Recreation / Scuba & Snorkeling",
11293    "SPO060000" => "Sports & Recreation / Pool, Billiards, Snooker",
11294    "SPO061000" => "Sports & Recreation / Coaching / General",
11295    "SPO061010" => "Sports & Recreation / Coaching / Basketball",
11296    "SPO061020" => "Sports & Recreation / Coaching / Football",
11297    "SPO061030" => "Sports & Recreation / Coaching / Soccer",
11298    "SPO062000" => "Sports & Recreation / Dog Racing",
11299    "SPO063000" => "Sports & Recreation / Equipment & Supplies",
11300    "SPO064000" => "Sports & Recreation / Extreme Sports",
11301    "SPO065000" => "Sports & Recreation / Rodeos",
11302    "SPO066000" => "Sports & Recreation / Sociology of Sports",
11303    "SPO067000" => "Sports & Recreation / Softball",
11304    "SPO068000" => "Sports & Recreation / Business Aspects",
11305    "SPO069000" => "Sports & Recreation / Surfing",
11306    "SPO070000" => "Sports & Recreation / Cheerleading",
11307    "SPO071000" => "Sports & Recreation / Fencing",
11308    "SPO072000" => "Sports & Recreation / Snowboarding",
11309    "SPO073000" => "Sports & Recreation / Field Hockey",
11310    "STU000000" => "Study Aids / General",
11311    "STU001000" => "Study Aids / ACT",
11312    "STU002000" => "Study Aids / Advanced Placement",
11313    "STU003000" => "Study Aids / Armed Forces",
11314    "STU004000" => "Study Aids / Book Notes",
11315    "STU006000" => "Study Aids / Citizenship",
11316    "STU007000" => "Study Aids / Civil Service",
11317    "STU008000" => "Study Aids / CLEP (College-Level Examination Program)",
11318    "STU009000" => "Study Aids / College Entrance",
11319    "STU010000" => "Study Aids / College Guides",
11320    "STU011000" => "Study Aids / CPA (Certified Public Accountant)",
11321    "STU012000" => "Study Aids / GED (General Educational Development Tests)",
11322    "STU013000" => "Study Aids / GMAT (Graduate Management Admission Test)",
11323    "STU015000" => "Study Aids / Graduate School Guides",
11324    "STU016000" => "Study Aids / GRE (Graduate Record Examination)",
11325    "STU017000" => "Study Aids / LSAT (Law School Admission Test)",
11326    "STU018000" => "Study Aids / MAT (Miller Analogies Test)",
11327    "STU019000" => "Study Aids / NTE (National Teacher Examinations)",
11328    "STU021000" => "Study Aids / Professional",
11329    "STU022000" => "Study Aids / Regents",
11330    "STU024000" => "Study Aids / SAT",
11331    "STU025000" => "Study Aids / High School Entrance",
11332    "STU026000" => "Study Aids / Study Guides",
11333    "STU027000" => "Study Aids / Tests",
11334    "STU028000" => "Study Aids / TOEFL (Test of English as a Foreign Language)",
11335    "STU029000" => "Study Aids / Vocational",
11336    "STU031000" => "Study Aids / Financial Aid",
11337    "STU032000" => "Study Aids / MCAT (Medical College Admission Test)",
11338    "STU033000" => "Study Aids / PSAT & NMSQT (National Merit Scholarship Qualifying Test)",
11339    "STU034000" => "Study Aids / Bar Exam",
11340    "TEC000000" => "Technology & Engineering / General",
11341    "TEC001000" => "Technology & Engineering / Acoustics & Sound",
11342    "TEC002000" => "Technology & Engineering / Aeronautics & Astronautics",
11343    "TEC003000" => "Technology & Engineering / Agriculture / General",
11344    "TEC003010" => "Technology & Engineering / Agriculture / Tropical Agriculture",
11345    "TEC003020" => "Technology & Engineering / Agriculture / Animal Husbandry",
11346    "TEC003030" => "Technology & Engineering / Agriculture / Agronomy / Crop Science",
11347    "TEC003040" => "Technology & Engineering / Agriculture / Forestry",
11348    "TEC003050" => "Technology & Engineering / Agriculture / Irrigation",
11349    "TEC003060" => "Technology & Engineering / Agriculture / Agronomy / Soil Science",
11350    "TEC003070" => "Technology & Engineering / Agriculture / Sustainable Agriculture",
11351    "TEC003080" => "Technology & Engineering / Agriculture / Agronomy / General",
11352    "TEC003090" => "Technology & Engineering / Agriculture / Organic",
11353    "TEC003100" => "Technology & Engineering / Agriculture / Beekeeping",
11354    "TEC004000" => "Technology & Engineering / Automation",
11355    "TEC005000" => "Technology & Engineering / Construction / General",
11356    "TEC005010" => "Technology & Engineering / Construction / Carpentry",
11357    "TEC005020" => "Technology & Engineering / Construction / Contracting",
11358    "TEC005030" => "Technology & Engineering / Construction / Electrical",
11359    "TEC005040" => "Technology & Engineering / Construction / Estimating",
11360    "TEC005050" => "Technology & Engineering / Construction / Heating, Ventilation & Air Conditioning",
11361    "TEC005060" => "Technology & Engineering / Construction / Masonry",
11362    "TEC005070" => "Technology & Engineering / Construction / Plumbing",
11363    "TEC005080" => "Technology & Engineering / Construction / Roofing",
11364    "TEC006000" => "Technology & Engineering / Drafting & Mechanical Drawing",
11365    "TEC007000" => "Technology & Engineering / Electrical",
11366    "TEC008000" => "Technology & Engineering / Electronics / General",
11367    "TEC008010" => "Technology & Engineering / Electronics / Circuits / General",
11368    "TEC008020" => "Technology & Engineering / Electronics / Circuits / Integrated",
11369    "TEC008030" => "Technology & Engineering / Electronics / Circuits / Logic",
11370    "TEC008050" => "Technology & Engineering / Electronics / Circuits / VLSI & ULSI",
11371    "TEC008060" => "Technology & Engineering / Electronics / Digital",
11372    "TEC008070" => "Technology & Engineering / Electronics / Microelectronics",
11373    "TEC008080" => "Technology & Engineering / Electronics / Optoelectronics",
11374    "TEC008090" => "Technology & Engineering / Electronics / Semiconductors",
11375    "TEC008100" => "Technology & Engineering / Electronics / Solid State",
11376    "TEC008110" => "Technology & Engineering / Electronics / Transistors",
11377    "TEC009000" => "Technology & Engineering / Engineering (General)",
11378    "TEC009010" => "Technology & Engineering / Chemical & Biochemical",
11379    "TEC009020" => "Technology & Engineering / Civil / General",
11380    "TEC009060" => "Technology & Engineering / Industrial Engineering",
11381    "TEC009070" => "Technology & Engineering / Mechanical",
11382    "TEC009090" => "Technology & Engineering / Automotive",
11383    "TEC009100" => "Technology & Engineering / Civil / Bridges",
11384    "TEC009110" => "Technology & Engineering / Civil / Dams & Reservoirs",
11385    "TEC009120" => "Technology & Engineering / Civil / Earthquake",
11386    "TEC009130" => "Technology & Engineering / Civil / Flood Control",
11387    "TEC009140" => "Technology & Engineering / Civil / Highway & Traffic",
11388    "TEC009150" => "Technology & Engineering / Civil / Soil & Rock",
11389    "TEC009160" => "Technology & Engineering / Civil / Transport",
11390    "TEC010000" => "Technology & Engineering / Environmental / General",
11391    "TEC010010" => "Technology & Engineering / Environmental / Pollution Control",
11392    "TEC010020" => "Technology & Engineering / Environmental / Waste Management",
11393    "TEC010030" => "Technology & Engineering / Environmental / Water Supply",
11394    "TEC011000" => "Technology & Engineering / Fiber Optics",
11395    "TEC012000" => "Technology & Engineering / Food Science",
11396    "TEC013000" => "Technology & Engineering / Fracture Mechanics",
11397    "TEC014000" => "Technology & Engineering / Hydraulics",
11398    "TEC015000" => "Technology & Engineering / Imaging Systems",
11399    "TEC016000" => "Technology & Engineering / Industrial Design / General",
11400    "TEC016010" => "Technology & Engineering / Industrial Design / Packaging",
11401    "TEC016020" => "Technology & Engineering / Industrial Design / Product",
11402    "TEC017000" => "Technology & Engineering / Industrial Health & Safety",
11403    "TEC018000" => "Technology & Engineering / Industrial Technology",
11404    "TEC019000" => "Technology & Engineering / Lasers & Photonics",
11405    "TEC020000" => "Technology & Engineering / Manufacturing",
11406    "TEC021000" => "Technology & Engineering / Materials Science",
11407    "TEC022000" => "Technology & Engineering / Measurement",
11408    "TEC023000" => "Technology & Engineering / Metallurgy",
11409    "TEC024000" => "Technology & Engineering / Microwaves",
11410    "TEC025000" => "Technology & Engineering / Military Science",
11411    "TEC026000" => "Technology & Engineering / Mining",
11412    "TEC027000" => "Technology & Engineering / Nanotechnology & MEMS",
11413    "TEC028000" => "Technology & Engineering / Power Resources / Nuclear",
11414    "TEC029000" => "Technology & Engineering / Operations Research",
11415    "TEC030000" => "Technology & Engineering / Optics",
11416    "TEC031000" => "Technology & Engineering / Power Resources / General",
11417    "TEC031010" => "Technology & Engineering / Power Resources / Alternative & Renewable",
11418    "TEC031020" => "Technology & Engineering / Power Resources / Electrical",
11419    "TEC031030" => "Technology & Engineering / Power Resources / Fossil Fuels",
11420    "TEC032000" => "Technology & Engineering / Quality Control",
11421    "TEC033000" => "Technology & Engineering / Radar",
11422    "TEC034000" => "Technology & Engineering / Radio",
11423    "TEC035000" => "Technology & Engineering / Reference",
11424    "TEC036000" => "Technology & Engineering / Remote Sensing & Geographic Information Systems",
11425    "TEC037000" => "Technology & Engineering / Robotics",
11426    "TEC039000" => "Technology & Engineering / Superconductors & Superconductivity",
11427    "TEC040000" => "Technology & Engineering / Technical & Manufacturing Industries & Trades",
11428    "TEC041000" => "Technology & Engineering / Telecommunications",
11429    "TEC043000" => "Technology & Engineering / Television & Video",
11430    "TEC044000" => "Technology & Engineering / Technical Writing",
11431    "TEC045000" => "Technology & Engineering / Fire Science",
11432    "TEC046000" => "Technology & Engineering / Machinery",
11433    "TEC047000" => "Technology & Engineering / Petroleum",
11434    "TEC048000" => "Technology & Engineering / Cartography",
11435    "TEC049000" => "Technology & Engineering / Fisheries & Aquaculture",
11436    "TEC050000" => "Technology & Engineering / Holography",
11437    "TEC052000" => "Technology & Engineering / Social Aspects",
11438    "TEC054000" => "Technology & Engineering / Surveying",
11439    "TEC055000" => "Technology & Engineering / Textiles & Polymers",
11440    "TEC056000" => "Technology & Engineering / History",
11441    "TEC057000" => "Technology & Engineering / Inventions",
11442    "TEC058000" => "Technology & Engineering / Pest Control",
11443    "TEC059000" => "Technology & Engineering / Biomedical",
11444    "TEC060000" => "Technology & Engineering / Marine & Naval",
11445    "TEC061000" => "Technology & Engineering / Mobile & Wireless Communications",
11446    "TEC062000" => "Technology & Engineering / Project Management",
11447    "TEC063000" => "Technology & Engineering / Structural",
11448    "TEC064000" => "Technology & Engineering / Sensors",
11449    "TEC065000" => "Technology & Engineering / Emergency Management",
11450    "TEC066000" => "Technology & Engineering / Research",
11451    "TEC067000" => "Technology & Engineering / Signals & Signal Processing",
11452    "TEC068000" => "Technology & Engineering / Tribology",
11453    "TRA000000" => "Transportation / General",
11454    "TRA001000" => "Transportation / Automotive / General",
11455    "TRA001010" => "Transportation / Automotive / Antique & Classic",
11456    "TRA001020" => "Transportation / Automotive / Buyer's Guides",
11457    "TRA001030" => "Transportation / Automotive / Customizing",
11458    "TRA001050" => "Transportation / Automotive / History",
11459    "TRA001060" => "Transportation / Automotive / Pictorial",
11460    "TRA001140" => "Transportation / Automotive / Repair & Maintenance",
11461    "TRA001150" => "Transportation / Automotive / Trucks",
11462    "TRA002000" => "Transportation / Aviation / General",
11463    "TRA002010" => "Transportation / Aviation / History",
11464    "TRA002030" => "Transportation / Aviation / Repair & Maintenance",
11465    "TRA002040" => "Transportation / Aviation / Commercial",
11466    "TRA002050" => "Transportation / Aviation / Piloting & Flight Instruction",
11467    "TRA003000" => "Transportation / Motorcycles / General",
11468    "TRA003010" => "Transportation / Motorcycles / History",
11469    "TRA003020" => "Transportation / Motorcycles / Pictorial",
11470    "TRA003030" => "Transportation / Motorcycles / Repair & Maintenance",
11471    "TRA004000" => "Transportation / Railroads / General",
11472    "TRA004010" => "Transportation / Railroads / History",
11473    "TRA004020" => "Transportation / Railroads / Pictorial",
11474    "TRA006000" => "Transportation / Ships & Shipbuilding / General",
11475    "TRA006010" => "Transportation / Ships & Shipbuilding / History",
11476    "TRA006020" => "Transportation / Ships & Shipbuilding / Pictorial",
11477    "TRA006030" => "Transportation / Ships & Shipbuilding / Repair & Maintenance",
11478    "TRA008000" => "Transportation / Navigation",
11479    "TRA009000" => "Transportation / Public Transportation",
11480    "TRA010000" => "Transportation / Bicycles",
11481    "TRU000000" => "True Crime / General",
11482    "TRU001000" => "True Crime / Espionage",
11483    "TRU002000" => "True Crime / Murder / General",
11484    "TRU002010" => "True Crime / Murder / Serial Killers",
11485    "TRU003000" => "True Crime / Organized Crime",
11486    "TRU004000" => "True Crime / Hoaxes & Deceptions",
11487    "TRU005000" => "True Crime / White Collar Crime",
11488    "TRV000000" => "Travel / General",
11489    "TRV001000" => "Travel / Special Interest / Adventure",
11490    "TRV002000" => "Travel / Africa / General",
11491    "TRV002010" => "Travel / Africa / Central",
11492    "TRV002020" => "Travel / Africa / East",
11493    "TRV002030" => "Travel / Africa / Kenya",
11494    "TRV002040" => "Travel / Africa / Morocco",
11495    "TRV002050" => "Travel / Africa / North",
11496    "TRV002060" => "Travel / Africa / Republic of South Africa",
11497    "TRV002070" => "Travel / Africa / South",
11498    "TRV002080" => "Travel / Africa / West",
11499    "TRV003000" => "Travel / Asia / General",
11500    "TRV003010" => "Travel / Asia / Central",
11501    "TRV003020" => "Travel / Asia / China",
11502    "TRV003030" => "Travel / Asia / Far East",
11503    "TRV003040" => "Travel / Asia / India & South Asia",
11504    "TRV003050" => "Travel / Asia / Japan",
11505    "TRV003060" => "Travel / Asia / Southeast",
11506    "TRV003070" => "Travel / Asia / Southwest",
11507    "TRV004000" => "Travel / Australia & Oceania",
11508    "TRV005000" => "Travel / Bed & Breakfast",
11509    "TRV006000" => "Travel / Canada / General",
11510    "TRV006010" => "Travel / Canada / Atlantic Provinces (NB, NF, NS, PE)",
11511    "TRV006020" => "Travel / Canada / Ontario (ON)",
11512    "TRV006030" => "Travel / Canada / Prairie Provinces (MB, SK)",
11513    "TRV006040" => "Travel / Canada / Territories & Nunavut (NT, NU, YT)",
11514    "TRV006050" => "Travel / Canada / Western Provinces (AB, BC)",
11515    "TRV006060" => "Travel / Canada / Quebec (QC)",
11516    "TRV007000" => "Travel / Caribbean & West Indies",
11517    "TRV008000" => "Travel / Central America",
11518    "TRV009000" => "Travel / Europe / General",
11519    "TRV009010" => "Travel / Europe / Austria",
11520    "TRV009020" => "Travel / Europe / Benelux Countries (Belgium, Netherlands, Luxembourg)",
11521    "TRV009030" => "Travel / Europe / Denmark",
11522    "TRV009040" => "Travel / Europe / Eastern",
11523    "TRV009050" => "Travel / Europe / France",
11524    "TRV009060" => "Travel / Europe / Germany",
11525    "TRV009070" => "Travel / Europe / Great Britain",
11526    "TRV009080" => "Travel / Europe / Greece",
11527    "TRV009090" => "Travel / Europe / Iceland & Greenland",
11528    "TRV009100" => "Travel / Europe / Ireland",
11529    "TRV009110" => "Travel / Europe / Italy",
11530    "TRV009120" => "Travel / Europe / Scandinavia (Finland, Norway, Sweden)",
11531    "TRV009130" => "Travel / Europe / Spain & Portugal",
11532    "TRV009140" => "Travel / Europe / Switzerland",
11533    "TRV009150" => "Travel / Europe / Western",
11534    "TRV009160" => "Travel / Europe / Cyprus",
11535    "TRV010000" => "Travel / Essays & Travelogues",
11536    "TRV011000" => "Travel / Special Interest / Family",
11537    "TRV012000" => "Travel / Former Soviet Republics",
11538    "TRV013000" => "Travel / Hotels, Inns & Hostels",
11539    "TRV014000" => "Travel / Mexico",
11540    "TRV015000" => "Travel / Middle East / General",
11541    "TRV015010" => "Travel / Middle East / Egypt",
11542    "TRV015020" => "Travel / Middle East / Israel",
11543    "TRV015030" => "Travel / Middle East / Turkey",
11544    "TRV016000" => "Travel / Museums, Tours, Points of Interest",
11545    "TRV018000" => "Travel / Parks & Campgrounds",
11546    "TRV019000" => "Travel / Pictorials",
11547    "TRV020000" => "Travel / Polar Regions",
11548    "TRV021000" => "Travel / Reference",
11549    "TRV022000" => "Travel / Restaurants",
11550    "TRV023000" => "Travel / Russia",
11551    "TRV024000" => "Travel / South America / General",
11552    "TRV024010" => "Travel / South America / Argentina",
11553    "TRV024020" => "Travel / South America / Brazil",
11554    "TRV024030" => "Travel / South America / Chile & Easter Island",
11555    "TRV024040" => "Travel / South America / Ecuador & Galapagos Islands",
11556    "TRV024050" => "Travel / South America / Peru",
11557    "TRV025000" => "Travel / United States / General",
11558    "TRV025010" => "Travel / United States / Midwest / General",
11559    "TRV025020" => "Travel / United States / Midwest / East North Central (IL, IN, MI, OH, WI)",
11560    "TRV025030" => "Travel / United States / Midwest / West North Central (IA, KS, MN, MO, ND, NE, SD)",
11561    "TRV025040" => "Travel / United States / Northeast / General",
11562    "TRV025050" => "Travel / United States / Northeast / Middle Atlantic (NJ, NY, PA)",
11563    "TRV025060" => "Travel / United States / Northeast / New England (CT, MA, ME, NH, RI, VT)",
11564    "TRV025070" => "Travel / United States / South / General",
11565    "TRV025080" => "Travel / United States / South / East South Central (AL, KY, MS, TN)",
11566    "TRV025090" => "Travel / United States / South / South Atlantic (DC, DE, FL, GA, MD, NC, SC, VA, WV)",
11567    "TRV025100" => "Travel / United States / South / West South Central (AR, LA, OK, TX)",
11568    "TRV025110" => "Travel / United States / West / General",
11569    "TRV025120" => "Travel / United States / West / Mountain (AZ, CO, ID, MT, NM, NV, UT, WY)",
11570    "TRV025130" => "Travel / United States / West / Pacific (AK, CA, HI, OR, WA)",
11571    "TRV026000" => "Travel / Special Interest / General",
11572    "TRV026010" => "Travel / Special Interest / Business",
11573    "TRV026020" => "Travel / Special Interest / Ecotourism",
11574    "TRV026030" => "Travel / Special Interest / Handicapped",
11575    "TRV026040" => "Travel / Special Interest / Pets",
11576    "TRV026050" => "Travel / Special Interest / Senior",
11577    "TRV026060" => "Travel / Special Interest / Religious",
11578    "TRV026070" => "Travel / Special Interest / Gay & Lesbian",
11579    "TRV026080" => "Travel / Special Interest / Sports",
11580    "TRV026090" => "Travel / Special Interest / Literary",
11581    "TRV027000" => "Travel / Maps & Road Atlases",
11582    "TRV028000" => "Travel / Cruises",
11583    "TRV029000" => "Travel / Amusement & Theme Parks",
11584    "TRV030000" => "Travel / Resorts & Spas",
11585    "TRV031000" => "Travel / Road Travel",
11586    "TRV032000" => "Travel / Shopping",
11587    "TRV033000" => "Travel / Budget",
11588    "TRV034000" => "Travel / Hikes & Walks",
11589    "TRV035000" => "Travel / Rail Travel"
11590};
11591
11592static BIC_CODES: Map<&'static str, &'static str> = phf_map! {
11593    "A" => "The arts",
11594    "AB" => "The arts: general issues",
11595    "ABA" => "Theory of art",
11596    "ABC" => "Conservation, restoration & care of artworks",
11597    "ABK" => "Forgery, falsification & theft of artworks",
11598    "ABQ" => "Art: financial aspects",
11599    "AC" => "History of art / art & design styles",
11600    "ACB" => "Art styles not defined by date",
11601    "ACBK" => "Art of indigenous peoples",
11602    "ACBN" => "Naive art",
11603    "ACBP" => "Oriental art",
11604    "ACBS" => "Colonial art",
11605    "ACC" => "History of art: pre-history",
11606    "ACG" => "History of art: ancient & classical art,BCE to c 500 CE",
11607    "ACK" => "History of art: Byzantine & Medieval art c 500 CE to c 1400",
11608    "ACN" => "History of art & design styles: c 1400 to c 1600",
11609    "ACND" => "Renaissance art",
11610    "ACNH" => "Art & design styles: Mannerism",
11611    "ACQ" => "History of art & design styles: c 1600 to c 1800",
11612    "ACQB" => "Art & design styles: Baroque",
11613    "ACQH" => "Art & design styles: Classicism",
11614    "ACV" => "History of art & design styles: c 1800 to c 1900",
11615    "ACVC" => "Art & design styles: Romanticism",
11616    "ACVM" => "Art & design styles: Pre-Raphaelite art",
11617    "ACVN" => "Art & design styles: Arts & Crafts style",
11618    "ACVT" => "Art & design styles: Impressionism & Post-Impressionism",
11619    "ACVY" => "Art & design styles: Art Nouveau",
11620    "ACX" => "History of art & design styles: from c 1900 -",
11621    "ACXD" => "Art & design styles: c 1900 to c 1960",
11622    "ACXD1" => "Art & design styles: Expressionism",
11623    "ACXD2" => "Art & design styles: Modernist design & Bauhaus",
11624    "ACXD3" => "Art & design styles: Art Deco",
11625    "ACXD5" => "Art & design styles: Cubism",
11626    "ACXD7" => "Art & design styles: Surrealism & Dada",
11627    "ACXD9" => "Art & design styles: Abstract Expressionism",
11628    "ACXJ" => "Art & design styles: from c 1960",
11629    "ACXJ1" => "Art & design styles: Pop art",
11630    "ACXJ4" => "Art & design styles: Minimalism",
11631    "ACXJ5" => "Art & design styles: Conceptual art",
11632    "ACXJ8" => "Art & design styles: Postmodernism",
11633    "AF" => "Art forms",
11634    "AFC" => "Painting & paintings",
11635    "AFCC" => "Watercolours",
11636    "AFCL" => "Oils",
11637    "AFF" => "Drawing & drawings",
11638    "AFH" => "Prints & printmaking",
11639    "AFJ" => "Other graphic art forms",
11640    "AFJD" => "Collage & photomontage",
11641    "AFJG" => "Graffiti & street art",
11642    "AFK" => "Non-graphic art forms",
11643    "AFKB" => "Sculpture",
11644    "AFKC" => "Carvings: artworks",
11645    "AFKG" => "Precious metal, precious stones & jewellery: artworks & design",
11646    "AFKN" => "Installation art",
11647    "AFKP" => "Performance art",
11648    "AFKV" => "Electronic, holographic & video art",
11649    "AFP" => "Ceramic arts, pottery, glass",
11650    "AFPC" => "Ceramics: artworks",
11651    "AFPM" => "Mosaics: artworks",
11652    "AFPS" => "Stained glass: artworks",
11653    "AFT" => "Decorative arts",
11654    "AFTB" => "Folk art",
11655    "AFTC" => "Celtic arts & crafts",
11656    "AFW" => "Textile artworks",
11657    "AFWD" => "Textile artworks: carpets & rugs",
11658    "AFWH" => "Textile artworks: tapestries, hangings & quilts",
11659    "AFY" => "Body art & tattooing",
11660    "AG" => "Art treatments & subjects",
11661    "AGB" => "Individual artists, art monographs",
11662    "AGC" => "Exhibition catalogues & specific collections",
11663    "AGH" => "Human figures depicted in art",
11664    "AGHF" => "Portraits in art",
11665    "AGHN" => "Nudes depicted in art",
11666    "AGHX" => "Erotic art",
11667    "AGK" => "Small-scale, secular & domestic scenes in art",
11668    "AGN" => "Animals & nature in art (still life, landscapes & seascapes, etc)",
11669    "AGNB" => "Botanical art",
11670    "AGP" => "Man-made objects depicted in art (cityscapes, machines, etc)",
11671    "AGR" => "Religious subjects depicted in art",
11672    "AGZ" => "Art techniques & principles",
11673    "AJ" => "Photography & photographs",
11674    "AJB" => "Individual photographers",
11675    "AJC" => "Photographs: collections",
11676    "AJCP" => "Photographs: portraits",
11677    "AJCR" => "Photographic reportage",
11678    "AJCX" => "Erotic & nude photography",
11679    "AJG" => "Photographic equipment & techniques",
11680    "AJR" => "Special kinds of photography",
11681    "AJRD" => "Cinematography, television camerawork",
11682    "AJRH" => "Video photography",
11683    "AJRK" => "Aerial photography",
11684    "AK" => "Industrial / commercial art & design",
11685    "AKB" => "Individual designers",
11686    "AKC" => "Graphic design",
11687    "AKD" => "Typography & lettering",
11688    "AKH" => "Book design",
11689    "AKL" => "Illustration & commercial art",
11690    "AKLB" => "Illustration",
11691    "AKLC" => "Comic book & cartoon art",
11692    "AKLC1" => "Graphic novel & Manga artwork",
11693    "AKLP" => "Poster art",
11694    "AKP" => "Product design",
11695    "AKR" => "Furniture design",
11696    "AKT" => "Fashion & textiles: design",
11697    "AKTA" => "Fashion design & theory",
11698    "AKTH" => "History of fashion",
11699    "AKTX" => "Textile design & theory",
11700    "AM" => "Architecture",
11701    "AMA" => "Theory of architecture",
11702    "AMB" => "Individual architects & architectural firms",
11703    "AMC" => "Architectural structure & design",
11704    "AMCR" => "Environmentally-friendly architecture & design",
11705    "AMD" => "Architecture: professional practice",
11706    "AMG" => "Public buildings: civic, commercial, industrial, etc",
11707    "AMGC" => "Concert halls, arenas, stadia",
11708    "AMGD" => "Memorials, monuments",
11709    "AMK" => "Residential buildings, domestic buildings",
11710    "AMKD" => "Houses, apartments, flats, etc",
11711    "AMKH" => "Palaces, chateaux, country houses",
11712    "AMKL" => "Castles & fortifications",
11713    "AMN" => "Religious buildings",
11714    "AMR" => "Professional interior design",
11715    "AMV" => "Landscape art & architecture",
11716    "AMVD" => "City & town planning - architectural aspects",
11717    "AMX" => "History of architecture",
11718    "AN" => "Theatre studies",
11719    "ANB" => "Theatre: individual actors & directors",
11720    "ANC" => "Acting techniques",
11721    "ANF" => "Theatre direction & production",
11722    "ANH" => "Theatre: technical & background skills",
11723    "ANS" => "Theatre management",
11724    "AP" => "Film, TV & radio",
11725    "APB" => "Individual actors & performers",
11726    "APF" => "Films, cinema",
11727    "APFA" => "Film theory & criticism",
11728    "APFB" => "Individual film directors, film-makers",
11729    "APFD" => "Film scripts & screenplays",
11730    "APFG" => "Film guides & reviews",
11731    "APFN" => "Film: styles & genres",
11732    "APFR" => "Documentary films",
11733    "APFV" => "Animated films",
11734    "APFX" => "Film production: technical & background skills",
11735    "APT" => "Television",
11736    "APTD" => "Television scripts & screenplays",
11737    "APTS" => "Television soap operas",
11738    "APTX" => "Television production: technical & background skills",
11739    "APW" => "Radio",
11740    "APWD" => "Radio scripts",
11741    "AS" => "Dance & other performing arts",
11742    "ASD" => "Dance",
11743    "ASDC" => "Choreography",
11744    "ASDL" => "Ballet",
11745    "ASDR" => "Ballroom dancing",
11746    "ASDT" => "Contemporary dance",
11747    "ASDX" => "Folk dancing",
11748    "ASZ" => "Other performing arts",
11749    "ASZB" => "Performing arts: comedy",
11750    "ASZC" => "Mime",
11751    "ASZD" => "Street theatre",
11752    "ASZG" => "Conjuring & magic",
11753    "ASZH" => "Variety shows, music hall, cabaret",
11754    "ASZJ" => "Juggling",
11755    "ASZM" => "Puppetry, miniature & toy theatre",
11756    "ASZP" => "Pageants, parades, festivals",
11757    "ASZW" => "Circus",
11758    "ASZX" => "Animal spectacles",
11759    "AV" => "Music",
11760    "AVA" => "Theory of music & musicology",
11761    "AVC" => "Music reviews & criticism",
11762    "AVD" => "Discographies & buyer's guides",
11763    "AVG" => "Music: styles & genres",
11764    "AVGC" => "Western \"classical\" music",
11765    "AVGC1" => "Early music (up to c 1000 CE)",
11766    "AVGC2" => "Medieval & Renaissance music (c 1000 to c 1600)",
11767    "AVGC3" => "Baroque music (c 1600 to c 1750)",
11768    "AVGC4" => "Classical music (c 1750 to c 1830)",
11769    "AVGC5" => "Romantic music (c 1830 to c 1900)",
11770    "AVGC6" => "20th century & contemporary classical music",
11771    "AVGC8" => "Choral music",
11772    "AVGC9" => "Opera",
11773    "AVGD" => "Sacred & religious music",
11774    "AVGE" => "Non-Western music: traditional & \"classical\"",
11775    "AVGF" => "Light orchestral & big band music",
11776    "AVGG" => "Brass band, military music & marches",
11777    "AVGH" => "Folk & traditional music",
11778    "AVGJ" => "Jazz",
11779    "AVGK" => "Blues",
11780    "AVGL" => "Country & Western music",
11781    "AVGM" => "Musicals",
11782    "AVGN" => "Popular music, easy listening",
11783    "AVGP" => "Rock & Pop music",
11784    "AVGQ" => "Soul & R 'n' B",
11785    "AVGR" => "Rap & Hip-Hop",
11786    "AVGS" => "Reggae",
11787    "AVGT" => "Heavy Metal music",
11788    "AVGU" => "Punk, New Wave & Indie",
11789    "AVGV" => "Electronic music",
11790    "AVGW" => "World music",
11791    "AVGZ" => "Ambient & New Age music",
11792    "AVH" => "Individual composers & musicians, specific bands & groups",
11793    "AVQ" => "Musical scores, lyrics & libretti",
11794    "AVQS" => "Songbooks",
11795    "AVR" => "Musical instruments & instrumental ensembles",
11796    "AVRB" => "Orchestras",
11797    "AVRD" => "Chamber ensembles",
11798    "AVRG" => "Keyboard instruments",
11799    "AVRJ" => "Percussion instruments",
11800    "AVRL" => "String instruments",
11801    "AVRL1" => "Guitar",
11802    "AVRN" => "Wind instruments",
11803    "AVRQ" => "Mechanical musical instruments",
11804    "AVRS" => "Electronic musical instruments",
11805    "AVS" => "Techniques of music / music tutorials",
11806    "AVX" => "Music recording & reproduction",
11807    "B" => "Biography & True Stories",
11808    "BG" => "Biography: general",
11809    "BGA" => "Autobiography: general",
11810    "BGB" => "Biography: business & industry",
11811    "BGBA" => "Autobiography: business & industry",
11812    "BGF" => "Biography: arts & entertainment",
11813    "BGFA" => "Autobiography: arts & entertainment",
11814    "BGH" => "Biography: historical, political & military",
11815    "BGHA" => "Autobiography: historical, political & military",
11816    "BGL" => "Biography: literary",
11817    "BGLA" => "Autobiography: literary",
11818    "BGR" => "Biography: royalty",
11819    "BGRA" => "Autobiography: royalty",
11820    "BGS" => "Biography: sport",
11821    "BGSA" => "Autobiography: sport",
11822    "BGT" => "Biography: science, technology & medicine",
11823    "BGTA" => "Autobiography: science, technology & medicine",
11824    "BGX" => "Biography: religious & spiritual",
11825    "BGXA" => "Autobiography: religious & spiritual",
11826    "BJ" => "Diaries, letters & journals",
11827    "BK" => "Collected biographies",
11828    "BM" => "Memoirs",
11829    "BT" => "True stories",
11830    "BTC" => "True crime",
11831    "BTH" => "True stories: discovery / historical / scientific",
11832    "BTM" => "True war  & combat stories",
11833    "BTP" => "True stories of heroism, endurance & survival",
11834    "BTX" => "Erotic confessions & true stories",
11835    "C" => "Language",
11836    "CB" => "Language: reference & general",
11837    "CBD" => "Dictionaries",
11838    "CBDX" => "Bilingual & multilingual dictionaries",
11839    "CBF" => "Thesauri",
11840    "CBG" => "Usage & grammar guides",
11841    "CBP" => "Public speaking guides",
11842    "CBV" => "Creative writing & creative writing guides",
11843    "CBVS" => "Screenwriting techniques",
11844    "CBW" => "Writing & editing guides",
11845    "CBWJ" => "Journalistic style guides",
11846    "CBWT" => "Technical writing",
11847    "CBX" => "Language: history & general works",
11848    "CF" => "linguistics",
11849    "CFA" => "Philosophy of language",
11850    "CFB" => "Sociolinguistics",
11851    "CFC" => "Literacy",
11852    "CFD" => "Psycholinguistics",
11853    "CFDC" => "Language acquisition",
11854    "CFDM" => "Bilingualism & multilingualism",
11855    "CFF" => "Historical & comparative linguistics",
11856    "CFFD" => "Dialect, slang & jargon",
11857    "CFG" => "Semantics, discourse analysis, etc",
11858    "CFGA" => "Semantics & pragmatics",
11859    "CFGR" => "Discourse analysis",
11860    "CFH" => "Phonetics, phonology",
11861    "CFK" => "Grammar, syntax & morphology",
11862    "CFL" => "Palaeography (history of writing)",
11863    "CFLA" => "Writing systems, alphabets",
11864    "CFM" => "Lexicography",
11865    "CFP" => "Translation & interpretation",
11866    "CFX" => "Computational linguistics",
11867    "CFZ" => "Sign languages, Braille & other linguistic communication",
11868    "CJ" => "Language teaching & learning (other than ELT)",
11869    "CJA" => "Language teaching theory & methods",
11870    "CJB" => "Language teaching & learning material & coursework",
11871    "CJBG" => "Grammar & vocabulary",
11872    "CJBR" => "Language readers",
11873    "CJBT" => "Language self-study texts",
11874    "CJBV" => "Language learning: audio-visual & multimedia",
11875    "CJC" => "Language learning: specific skills",
11876    "CJCK" => "Speaking / pronunciation skills",
11877    "CJCL" => "Listening skills",
11878    "CJCR" => "Reading skills",
11879    "CJCW" => "Writing skills",
11880    "Code" => "Heading",
11881    "D" => "Literature & literary studies",
11882    "DB" => "Classical texts",
11883    "DC" => "Poetry",
11884    "DCF" => "Poetry by individual poets",
11885    "DCQ" => "Poetry anthologies (various poets)",
11886    "DD" => "Plays, playscripts",
11887    "DDS" => "Shakespeare plays",
11888    "DN" => "Prose: non-fiction",
11889    "DNF" => "Literary essays",
11890    "DNJ" => "Reportage & collected journalism",
11891    "DNS" => "Speeches",
11892    "DQ" => "Anthologies (non-poetry)",
11893    "DS" => "Literature: history & criticism",
11894    "DSA" => "Literary theory",
11895    "DSB" => "Literary studies: general",
11896    "DSBB" => "Literary studies: classical, early & medieval",
11897    "DSBD" => "Literary studies: c 1500 to c 1800",
11898    "DSBF" => "Literary studies: c 1800 to c 1900",
11899    "DSBH" => "Literary studies: from c 1900 -",
11900    "DSBH5" => "Literary studies: post-colonial literature",
11901    "DSC" => "Literary studies: poetry & poets",
11902    "DSG" => "Literary studies: plays & playwrights",
11903    "DSGS" => "Shakespeare studies & criticism",
11904    "DSK" => "Literary studies: fiction, novelists & prose writers",
11905    "DSR" => "Literary reference works",
11906    "DSRC" => "Literary companions, book reviews & guides",
11907    "DSY" => "Children’s & teenage literature studies",
11908    "DSYC" => "Children’s & teenage book reviews & guides",
11909    "E" => "English language teaching (ELT)",
11910    "EB" => "ELT background & reference material",
11911    "EBA" => "ELT: teaching theory & methods",
11912    "EBAL" => "Applied linguistics for ELT",
11913    "EBAR" => "ELT resource books for teachers",
11914    "EBD" => "ELT dictionaries & reference",
11915    "EL" => "ELT: learning material & coursework",
11916    "ELG" => "ELT grammar, vocabulary & pronunciation",
11917    "ELGG" => "ELT grammar",
11918    "ELGP" => "ELT pronunciation",
11919    "ELGV  " => "ELT vocabulary",
11920    "ELH" => "ELT graded readers",
11921    "ELHB" => "ELT non-fiction & background readers",
11922    "ELHF" => "ELT literature & fiction readers",
11923    "ELM" => "ELT non-book material & resources",
11924    "ELP" => "ELT workbooks, practice books & exercises",
11925    "ELS" => "ELT self-study texts",
11926    "ELV" => "ELT examination practice tests",
11927    "ELX" => "ELT: specific skills",
11928    "ELXD" => "ELT: speaking skills",
11929    "ELXG" => "ELT: listening skills",
11930    "ELXJ" => "ELT: reading skills",
11931    "ELXN" => "ELT: writing skills",
11932    "ES" => "ELT: English for specific purposes",
11933    "ESB" => "ELT: English for business",
11934    "ESF" => "ELT: English for academic purposes",
11935    "EST" => "ELT: English for technical & scientific purposes",
11936    "ESV" => "ELT: English for travel & communications",
11937    "F" => "Fiction & related items",
11938    "FA" => "Modern & contemporary fiction (post c 1945)",
11939    "FC" => "Classic fiction (pre c 1945)",
11940    "FF" => "Crime & mystery",
11941    "FFC" => "Classic crime",
11942    "FFH" => "Historical mysteries",
11943    "FH" => "Thriller / suspense",
11944    "FHD" => "Espionage & spy thriller",
11945    "FHP" => "Political / legal thriller",
11946    "FJ" => "Adventure",
11947    "FJH" => "Historical adventure",
11948    "FJM" => "War & combat fiction",
11949    "FJMC" => "Napoleonic War fiction",
11950    "FJMF" => "First World War fiction",
11951    "FJMS" => "Second World War fiction",
11952    "FJMV" => "Vietnam War fiction",
11953    "FJW" => "Westerns",
11954    "FK" => "Horror & ghost stories",
11955    "FKC" => "Classic horror & ghost stories",
11956    "FL" => "Science fiction",
11957    "FLC" => "Classic science fiction",
11958    "FLS" => "Space opera",
11959    "FM" => "Fantasy",
11960    "FMR" => "Fantasy romance",
11961    "FP" => "Erotic fiction",
11962    "FQ" => "Myth & legend told as fiction",
11963    "FR" => "Romance",
11964    "FRD" => "Adult & contemporary romance",
11965    "FRH" => "Historical romance",
11966    "FT" => "Sagas",
11967    "FV" => "Historical fiction",
11968    "FW" => "Religious & spiritual fiction",
11969    "FX" => "Graphic novels",
11970    "FXA" => "Graphic novels: Manga",
11971    "FXL" => "Graphic novels: literary & memoirs",
11972    "FXS" => "Graphic novels: superheroes & super-villains",
11973    "FXZ" => "Graphic novels: true stories & non-fiction",
11974    "FY" => "Fiction: special features",
11975    "FYB" => "Short stories",
11976    "FYT" => "Fiction in translation",
11977    "FZ" => "Fiction-related items",
11978    "FZC" => "Fiction companions",
11979    "FZG" => "Graphic novels: history & criticism",
11980    "G" => "Reference, information & interdisciplinary subjects",
11981    "GB" => "Encyclopaedias & reference works",
11982    "GBA" => "General encyclopaedias",
11983    "GBC" => "Reference works",
11984    "GBCB" => "Dictionaries of biography (Who's Who)",
11985    "GBCQ" => "Dictionaries of quotations",
11986    "GBCR" => "Bibliographies, catalogues",
11987    "GBCS" => "Serials, periodicals, abstracts, indexes",
11988    "GBCT" => "Directories",
11989    "GBCY" => "Yearbooks, annuals, almanacs",
11990    "GBG" => "Geographical reference",
11991    "GBGM" => "World atlases / world maps",
11992    "GBGP" => "Place names & gazetteers",
11993    "GL" => "Library & information sciences",
11994    "GLC" => "Library, archive & information management",
11995    "GLF" => "IT, Internet & electronic resources in libraries",
11996    "GLH" => "Acquisitions & collection development",
11997    "GLK" => "Bibliographic & subject control",
11998    "GLM" => "Library & information services",
11999    "GLMA" => "Academic & specialist libraries",
12000    "GLMB" => "Public libraries",
12001    "GLMC" => "School libraries & young reader services ",
12002    "GLMG" => "Reference services",
12003    "GLML" => "Circulation services (eg interlibrary loans)",
12004    "GLMX" => "Community & outreach services",
12005    "GLP" => "Archiving, preservation & digitisation ",
12006    "GM" => "Museology & heritage studies",
12007    "GP" => "Research & information: general",
12008    "GPF" => "Information theory",
12009    "GPFC" => "Cybernetics & systems theory",
12010    "GPH" => "Data analysis: general",
12011    "GPJ" => "Coding theory & cryptology",
12012    "GPQ" => "Decision theory: general",
12013    "GPQD" => "Risk assessment",
12014    "GPS" => "Research methods: general",
12015    "GT" => "Interdisciplinary studies",
12016    "GTB" => "Regional studies",
12017    "GTC" => "Communication studies",
12018    "GTE" => "Semiotics / semiology",
12019    "GTF" => "Development studies",
12020    "GTG" => "General studies",
12021    "GTH" => "Flags, emblems, symbols, logos",
12022    "GTJ" => "Peace studies & conflict resolution",
12023    "GTN" => "Institutions & learned societies: general",
12024    "GTR" => "Cognitive science",
12025    "H" => "Humanities",
12026    "HB" => "History",
12027    "HBA" => "History: theory & methods",
12028    "HBAH" => "Historiography",
12029    "HBG" => "General & world history",
12030    "HBJ" => "Regional & national history",
12031    "HBJD" => "European history",
12032    "HBJD1" => "British & Irish history",
12033    "HBJF" => "Asian history",
12034    "HBJF1" => "Middle Eastern history",
12035    "HBJH" => "African history",
12036    "HBJK" => "History of the Americas",
12037    "HBJM" => "Australasian & Pacific history",
12038    "HBJQ" => "History of other lands",
12039    "HBL" => "History: earliest times to present day",
12040    "HBLA" => "Ancient history: to c 500 CE",
12041    "HBLA1" => "Classical history / classical civilisation",
12042    "HBLC" => "Early history: c 500 to c 1450/1500",
12043    "HBLC1" => "Medieval history",
12044    "HBLH" => "Early modern history: c 1450/1500 to c 1700",
12045    "HBLL" => "Modern history to 20th century: c 1700 to c 1900",
12046    "HBLW" => "20th century history: c 1900  to c 2000",
12047    "HBLW3" => "Postwar 20th century history, from c 1945 to c 2000",
12048    "HBLX" => "21st century history: from c 2000 -",
12049    "HBT" => "History: specific events & topics",
12050    "HBTB" => "Social & cultural history",
12051    "HBTD" => "Oral history",
12052    "HBTG" => "Genealogy, heraldry, names & honours",
12053    "HBTK" => "Industrialisation & industrial history",
12054    "HBTM" => "Maritime history",
12055    "HBTP" => "Historical geography",
12056    "HBTP1" => "Historical maps & atlases",
12057    "HBTQ" => "Colonialism & imperialism",
12058    "HBTR" => "National liberation & independence, post-colonialism",
12059    "HBTS" => "Slavery & abolition of slavery",
12060    "HBTV" => "Revolutions, uprisings, rebellions",
12061    "HBTV2" => "French Revolution",
12062    "HBTV4" => "Russian Revolution",
12063    "HBTW" => "The Cold War",
12064    "HBTZ" => "Genocide & ethnic cleansing",
12065    "HBTZ1" => "The Holocaust",
12066    "HBW" => "Military history",
12067    "HBWC" => "Crusades",
12068    "HBWE" => "English Civil War",
12069    "HBWF" => "American War of Independence",
12070    "HBWH" => "Napoleonic Wars",
12071    "HBWJ" => "American Civil War",
12072    "HBWL" => "Crimean War",
12073    "HBWM" => "Boer Wars",
12074    "HBWN" => "First World War",
12075    "HBWP" => "Spanish Civil War",
12076    "HBWQ" => "Second World War",
12077    "HBWS" => "Military history: post WW2 conflicts",
12078    "HBWS1" => "Korean War",
12079    "HBWS2" => "Vietnam War",
12080    "HBWS3" => "Gulf War",
12081    "HBWS4" => "Afghan War",
12082    "HBWS5" => "Iraq War",
12083    "HD" => "Archaeology",
12084    "HDA" => "Archaeological theory",
12085    "HDD" => "Archaeology by period / region",
12086    "HDDA" => "Prehistoric archaeology",
12087    "HDDC" => "Middle & Near Eastern archaeology",
12088    "HDDG" => "Egyptian archaeology / Egyptology",
12089    "HDDH" => "Biblical archaeology",
12090    "HDDK" => "Classical Greek & Roman archaeology",
12091    "HDDM" => "Medieval European archaeology",
12092    "HDL" => "Landscape archaeology",
12093    "HDP" => "Environmental archaeology",
12094    "HDR" => "Underwater archaeology",
12095    "HDT" => "Industrial archaeology",
12096    "HDW" => "Archaeological science, methodology & techniques",
12097    "HP" => "Philosophy",
12098    "HPC" => "History of Western philosophy",
12099    "HPCA" => "Western philosophy: Ancient, to c 500",
12100    "HPCB" => "Western philosophy: Medieval & Renaissance, c 500 to c 1600",
12101    "HPCD" => "Western philosophy: c 1600 to c 1900",
12102    "HPCD1" => "Western philosophy: Enlightenment",
12103    "HPCF" => "Western philosophy, from c 1900 -",
12104    "HPCF3" => "Phenomenology & Existentialism",
12105    "HPCF5" => "Analytical philosophy & Logical Positivism",
12106    "HPCF7" => "Deconstructionism, Structuralism, Post-structuralism",
12107    "HPD" => "Non-Western philosophy",
12108    "HPDC" => "Islamic & Arabic philosophy",
12109    "HPDF" => "Oriental & Indian philosophy",
12110    "HPJ" => "Philosophy: metaphysics & ontology",
12111    "HPK" => "Philosophy: epistemology & theory of knowledge",
12112    "HPL" => "Philosophy: logic",
12113    "HPM" => "Philosophy of mind",
12114    "HPN" => "Philosophy: aesthetics",
12115    "HPQ" => "Ethics & moral philosophy",
12116    "HPS" => "Social & political philosophy",
12117    "HPX" => "Popular philosophy",
12118    "HR" => "Religion & beliefs",
12119    "HRA" => "Religion: general",
12120    "HRAB" => "Philosophy of religion",
12121    "HRAB1" => "Nature & existence of God",
12122    "HRAC" => "Comparative religion",
12123    "HRAF" => "Interfaith relations",
12124    "HRAM" => "Religious issues & debates",
12125    "HRAM1" => "Religious ethics",
12126    "HRAM2" => "Religion & politics",
12127    "HRAM3" => "Religion & science",
12128    "HRAM6" => "Religious fundamentalism",
12129    "HRAM7" => "Blasphemy, heresy, apostasy",
12130    "HRAM9" => "Religious intolerance, persecution & conflict",
12131    "HRAX" => "History of religion",
12132    "HRC" => "Christianity",
12133    "HRCA" => "The historical Jesus",
12134    "HRCC" => "Christian Churches & denominations",
12135    "HRCC1" => "The Early Church",
12136    "HRCC2" => "Church history",
12137    "HRCC7" => "Roman Catholicism, Roman Catholic Church",
12138    "HRCC8" => "Orthodox & Oriental Churches",
12139    "HRCC9" => "Protestantism & Protestant Churches",
12140    "HRCC91" => "Anglican & Episcopalian Churches, Church of England",
12141    "HRCC92" => "Baptist Churches",
12142    "HRCC93" => "Calvinist, Reformed & Presbyterian Churches",
12143    "HRCC95" => "Methodist Churches",
12144    "HRCC96" => "Pentecostal Churches",
12145    "HRCC97" => "Quakers (Religious Society of Friends)",
12146    "HRCC99" => "Other Nonconformist & Evangelical Churches",
12147    "HRCF" => "Bibles",
12148    "HRCF1" => "Old Testaments",
12149    "HRCF2" => "New Testaments",
12150    "HRCG" => "Biblical studies & exegesis",
12151    "HRCG1" => "Biblical commentaries",
12152    "HRCG2" => "Biblical concordances",
12153    "HRCG3" => "Biblical exegesis & hermeneutics",
12154    "HRCG7" => "Bible studies: for individual or small group study",
12155    "HRCG9" => "Bible readings, selections & meditations",
12156    "HRCJ" => "Ecumenism",
12157    "HRCL" => "Christian liturgy, prayerbooks & hymnals",
12158    "HRCL1" => "Christian prayerbooks",
12159    "HRCL2" => "Christian hymnals",
12160    "HRCM" => "Christian theology",
12161    "HRCP" => "Christian sermons",
12162    "HRCR" => "Christian worship, rites & ceremonies",
12163    "HRCR1" => "Christian prayer",
12164    "HRCS" => "Christian spirituality & religious experience",
12165    "HRCS1" => "Christian mysticism",
12166    "HRCV" => "Christian life & practice",
12167    "HRCV1" => "Christian sacraments",
12168    "HRCV2" => "Christian instruction",
12169    "HRCV3" => "Christian counselling",
12170    "HRCV4" => "Christian aspects of sexuality, gender & relationships",
12171    "HRCV9" => "Personal Christian testimony & popular inspirational works",
12172    "HRCX" => "Christian institutions & organizations",
12173    "HRCX1" => "Christian leaders & leadership",
12174    "HRCX4" => "Christian ministry & pastoral activity",
12175    "HRCX6" => "Christian social thought & activity",
12176    "HRCX7" => "Christian mission & evangelism",
12177    "HRCX8" => "Christian communities & monasticism",
12178    "HRCZ" => "Christian & quasi-Christian cults & sects",
12179    "HRE" => "Buddhism",
12180    "HREC" => "Buddhist worship, rites & ceremonies",
12181    "HREP" => "Buddhist life & practice",
12182    "HRES" => "Buddhist sacred texts",
12183    "HREX" => "Tibetan Buddhism",
12184    "HREZ" => "Zen Buddhism",
12185    "HRG" => "Hinduism",
12186    "HRGC" => "Hindu worship, rites & ceremonies",
12187    "HRGP" => "Hindu life & practice",
12188    "HRGS" => "Hindu sacred texts",
12189    "HRH" => "Islam",
12190    "HRHC" => "Islamic worship, rites & ceremonies",
12191    "HRHP" => "Islamic life & practice",
12192    "HRHS" => "The Koran",
12193    "HRHT" => "Islamic theology",
12194    "HRHX" => "Sufism & Islamic mysticism",
12195    "HRJ" => "Judaism",
12196    "HRJC" => "Judaism: worship, rites & ceremonies",
12197    "HRJP" => "Judaism: life & practice",
12198    "HRJS" => "Judaism: sacred texts",
12199    "HRJT" => "Judaism: theology",
12200    "HRJX" => "Judaism: mysticism",
12201    "HRK" => "Other non-Christian religions",
12202    "HRKB" => "Baha'i",
12203    "HRKJ" => "Jainism",
12204    "HRKN" => "Oriental religions",
12205    "HRKN1" => "Confucianism",
12206    "HRKN3" => "Shintoism",
12207    "HRKN5" => "Taoism",
12208    "HRKP" => "Ancient religions & mythologies",
12209    "HRKP1" => "Ancient Egyptian religion & mythology",
12210    "HRKP2" => "Celtic religion & mythology",
12211    "HRKP3" => "Ancient Greek religion & mythology",
12212    "HRKP4" => "Roman religion & mythology",
12213    "HRKP5" => "Norse religion & mythology",
12214    "HRKS" => "Sikhism",
12215    "HRKT" => "Tribal religions",
12216    "HRKZ" => "Zoroastrianism",
12217    "HRL" => "Aspects of religion (non-Christian)",
12218    "HRLB" => "Theology",
12219    "HRLC" => "Sacred texts",
12220    "HRLC1" => "Criticism & exegesis of sacred texts",
12221    "HRLD" => "Prayers & liturgical material",
12222    "HRLF" => "Worship, rites & ceremonies",
12223    "HRLF9" => "Prayer",
12224    "HRLK" => "Spirituality & religious experience",
12225    "HRLK2" => "Mysticism",
12226    "HRLM" => "Religious life & practice",
12227    "HRLM3" => "Religious instruction",
12228    "HRLM5" => "Religious counselling",
12229    "HRLM7" => "Religious aspects of sexuality, gender & relationships",
12230    "HRLP" => "Religious institutions & organizations",
12231    "HRLP1" => "Religious & spiritual leaders",
12232    "HRLP5" => "Religious social & pastoral thought & activity",
12233    "HRLP7" => "Religious communities & monasticism",
12234    "HRQ" => "Alternative belief systems",
12235    "HRQA" => "Humanist & secular alternatives to religion",
12236    "HRQA5" => "Agnosticism & atheism",
12237    "HRQC" => "Eclectic & esoteric religions & belief systems",
12238    "HRQC1" => "Gnosticism",
12239    "HRQC5" => "Theosophy & Anthroposophy",
12240    "HRQM" => "Contemporary non-Christian & para-Christian cults & sects",
12241    "HRQM2" => "Spiritualism",
12242    "HRQX" => "Occult studies",
12243    "HRQX2" => "Magic, alchemy & hermetic thought",
12244    "HRQX5" => "Witchcraft",
12245    "HRQX9" => "Satanism & demonology",
12246    "J" => "Society & social sciences",
12247    "JF" => "Society & culture: general",
12248    "JFC" => "Cultural studies",
12249    "JFCA" => "Popular culture",
12250    "JFCD" => "Material culture",
12251    "JFCK" => "Fashion & society",
12252    "JFCV" => "Food & society",
12253    "JFCX" => "History of ideas",
12254    "JFD" => "Media studies",
12255    "JFDT" => "TV & society",
12256    "JFDV" => "Advertising & society",
12257    "JFF" => "Social issues & processes",
12258    "JFFA" => "Poverty  & unemployment",
12259    "JFFB" => "Housing & homelessness",
12260    "JFFC" => "Social impact of disasters",
12261    "JFFC1" => "Famine",
12262    "JFFD" => "Refugees & political asylum",
12263    "JFFE" => "Violence in society",
12264    "JFFE1" => "Child abuse",
12265    "JFFE2" => "Sexual abuse & harassment",
12266    "JFFE3" => "Domestic violence",
12267    "JFFG" => "Disability: social aspects",
12268    "JFFH" => "Illness & addiction: social aspects",
12269    "JFFH1" => "Drug & substance abuse: social aspects",
12270    "JFFH2" => "HIV / AIDS: social aspects",
12271    "JFFJ" => "Social discrimination & inequality",
12272    "JFFK" => "Feminism & feminist theory",
12273    "JFFL" => "Political correctness",
12274    "JFFM" => "Social mobility",
12275    "JFFN" => "Migration, immigration & emigration",
12276    "JFFP" => "Social interaction",
12277    "JFFR" => "Social forecasting, future studies",
12278    "JFFS" => "Globalization",
12279    "JFFT" => "Consumerism",
12280    "JFFU" => "Public safety issues",
12281    "JFFX" => "Corruption in society",
12282    "JFFZ" => "Animals & society",
12283    "JFH" => "Popular beliefs & controversial knowledge",
12284    "JFHC" => "Conspiracy theories",
12285    "JFHF" => "Folklore, myths & legends",
12286    "JFHX" => "Hoaxes & deceptions",
12287    "JFM" => "Ethical issues & debates",
12288    "JFMA" => "Ethical issues: abortion & birth control",
12289    "JFMC" => "Ethical issues: capital punishment",
12290    "JFMD" => "Ethical issues: censorship",
12291    "JFME" => "Ethical issues: euthanasia & right to die",
12292    "JFMG" => "Ethical issues: scientific & technological developments",
12293    "JFMP" => "Ethical issues: pornography & obscenity",
12294    "JFMX" => "Ethical issues: prostitution & sex industry",
12295    "JFS" => "Social groups",
12296    "JFSC" => "Social classes",
12297    "JFSF" => "Rural communities",
12298    "JFSG" => "Urban communities",
12299    "JFSJ" => "Gender studies, gender groups",
12300    "JFSJ1" => "Gender studies: women",
12301    "JFSJ2" => "Gender studies: men",
12302    "JFSJ5" => "Gender studies: transsexuals & hermaphroditism",
12303    "JFSK" => "Gay & Lesbian studies",
12304    "JFSK1" => "Lesbian studies",
12305    "JFSK2" => "Gay studies (Gay men)",
12306    "JFSL" => "Ethnic studies",
12307    "JFSL1" => "Ethnic minorities & multicultural studies",
12308    "JFSL3" => "Black & Asian studies",
12309    "JFSL4" => "Hispanic & Latino studies",
12310    "JFSL9" => "Indigenous peoples",
12311    "JFSP" => "Age groups",
12312    "JFSP1" => "Age groups: children",
12313    "JFSP2" => "Age groups: adolescents",
12314    "JFSP3" => "Age groups: adults",
12315    "JFSP31" => "Age groups: the elderly",
12316    "JFSR" => "Religious groups: social & cultural aspects",
12317    "JFSR1" => "Jewish studies",
12318    "JFSR2" => "Islamic studies",
12319    "JFSS" => "Alternative lifestyles",
12320    "JFSV" => "Social groups: clubs & societies",
12321    "JFSV1" => "Freemasonry & secret societies",
12322    "JH" => "Sociology & anthropology",
12323    "JHB" => "Sociology",
12324    "JHBA" => "Social theory",
12325    "JHBC" => "Social research & statistics",
12326    "JHBD" => "Population & demography",
12327    "JHBF" => "Sociology: birth",
12328    "JHBK" => "Sociology: family & relationships",
12329    "JHBK5" => "Sociology: sexual relations",
12330    "JHBL" => "Sociology: work & labour",
12331    "JHBS" => "Sociology: sport & leisure",
12332    "JHBT" => "Sociology: customs & traditions",
12333    "JHBZ" => "Sociology: death & dying",
12334    "JHM" => "Anthropology",
12335    "JHMC" => "Social & cultural anthropology, ethnography",
12336    "JHMP" => "Physical anthropology",
12337    "JK" => "Social services & welfare, criminology",
12338    "JKS" => "Social welfare & social services",
12339    "JKSB" => "Welfare & benefit systems",
12340    "JKSB1" => "Child welfare",
12341    "JKSF" => "Adoption & fostering",
12342    "JKSG" => "Care of the elderly",
12343    "JKSM" => "Care of the mentally ill",
12344    "JKSN" => "Social work",
12345    "JKSN1" => "Charities, voluntary services & philanthropy",
12346    "JKSN2" => "Counselling & advice services",
12347    "JKSR" => "Aid & relief programmes",
12348    "JKSW" => "Emergency services",
12349    "JKSW1" => "Police & security services",
12350    "JKSW2" => "Fire services",
12351    "JKSW3" => "Ambulance & rescue services",
12352    "JKV" => "Crime & criminology",
12353    "JKVC" => "Causes & prevention of crime",
12354    "JKVF" => "Criminal investigation & detection",
12355    "JKVF1" => "Forensic science",
12356    "JKVG" => "Drugs trade / drug trafficking",
12357    "JKVJ" => "Street crime / gun crime",
12358    "JKVK" => "Corporate crime",
12359    "JKVM" => "Organized crime",
12360    "JKVP" => "Penology & punishment",
12361    "JKVP1" => "Prisons",
12362    "JKVQ" => "Offenders",
12363    "JKVQ1" => "Rehabilitation of offenders",
12364    "JKVQ2" => "Juvenile offenders",
12365    "JKVS" => "Probation services",
12366    "JM" => "Psychology",
12367    "JMA" => "Psychological theory & schools of thought",
12368    "JMAF" => "Psychoanalytical theory (Freudian psychology)",
12369    "JMAJ" => "Analytical & Jungian psychology",
12370    "JMAL" => "Behavioural theory (Behaviourism)",
12371    "JMAN" => "Humanistic psychology",
12372    "JMAQ" => "Cognitivism, cognitive theory",
12373    "JMB" => "Psychological methodology",
12374    "JMBT" => "Psychological testing & measurement",
12375    "JMC" => "Child & developmental psychology",
12376    "JMD" => "Psychology of ageing",
12377    "JMF" => "Family psychology",
12378    "JMG" => "Psychology of gender",
12379    "JMH" => "Social, group or collective psychology",
12380    "JMJ" => "Occupational & industrial psychology",
12381    "JMK" => "Criminal or forensic psychology",
12382    "JML" => "Experimental psychology",
12383    "JMM" => "Physiological & neuro-psychology, biopsychology",
12384    "JMP" => "Abnormal psychology",
12385    "JMQ" => "Psychology: emotions",
12386    "JMR" => "Cognition & cognitive psychology",
12387    "JMRL" => "Learning",
12388    "JMRM" => "Memory",
12389    "JMRN" => "Intelligence & reasoning",
12390    "JMRP" => "Perception",
12391    "JMS" => "The self, ego, identity, personality",
12392    "JMT" => "States of consciousness",
12393    "JMTC" => "Conscious & unconscious",
12394    "JMTD" => "Sleep & dreams",
12395    "JMTH" => "Hypnosis",
12396    "JMTK" => "Drug-induced states",
12397    "JMU" => "Sexual behaviour",
12398    "JMX" => "Parapsychological studies",
12399    "JN" => "Education",
12400    "JNA" => "Philosophy & theory of education",
12401    "JNAM" => "Moral & social purpose of education",
12402    "JNB" => "History of education",
12403    "JNC" => "Educational psychology",
12404    "JNF" => "Educational strategies & policy",
12405    "JNFD" => "Literacy strategies",
12406    "JNFG" => "Numeracy strategies",
12407    "JNFN" => "Inclusive education / mainstreaming",
12408    "JNFR" => "Multicultural education",
12409    "JNH" => "Education: care & counselling of students",
12410    "JNHB" => "Bullying & anti-bullying strategies",
12411    "JNHT" => "Truancy & anti-truancy strategies",
12412    "JNHX" => "Exclusions / dropping out of school",
12413    "JNK" => "Organization & management of education",
12414    "JNKA" => "Admissions procedures",
12415    "JNKC" => "Curriculum planning & development",
12416    "JNKD" => "Examinations & assessment",
12417    "JNKF" => "Schools inspection (& preparing for inspection)",
12418    "JNKG" => "Funding of education & student finance",
12419    "JNKH" => "Teaching staff",
12420    "JNKH1" => "Teacher assessment",
12421    "JNKN" => "Non-teaching & support staff",
12422    "JNKP" => "School/community relations & school/home relations",
12423    "JNKR" => "School governors & school boards",
12424    "JNKS" => "Students & student organisations",
12425    "JNL" => "Schools",
12426    "JNLA" => "Pre-school & kindergarten",
12427    "JNLB" => "Primary & middle schools",
12428    "JNLC" => "Secondary schools",
12429    "JNLP" => "Independent schools, private education",
12430    "JNLR" => "Faith (religious) schools",
12431    "JNM" => "Higher & further education, tertiary education",
12432    "JNMF" => "Colleges of further education",
12433    "JNMH" => "Colleges of higher education",
12434    "JNMN" => "Universities",
12435    "JNMT" => "Teacher training",
12436    "JNP" => "Adult education, continuous learning",
12437    "JNQ" => "Open learning, home learning, distance education",
12438    "JNR" => "Careers guidance",
12439    "JNRV" => "Industrial or vocational training",
12440    "JNS" => "Teaching of specific groups & persons with special educational needs",
12441    "JNSC" => "Teaching of physically disabled students",
12442    "JNSC1" => "Teaching of hearing-impaired students",
12443    "JNSC2" => "Teaching of visually impaired students",
12444    "JNSG" => "Teaching of students with specific learning difficulties / needs",
12445    "JNSG1" => "Teaching of dyslexic students",
12446    "JNSG2" => "Teaching of autistic students",
12447    "JNSL" => "Teaching of students with emotional & behavioural difficulties",
12448    "JNSP" => "Teaching of gifted students",
12449    "JNSV" => "Teaching of students with English as a second language (TESOL)",
12450    "JNT" => "Teaching skills & techniques",
12451    "JNU" => "Teaching of a specific subject",
12452    "JNUM" => "Teachers' classroom resources & material",
12453    "JNV" => "Educational equipment & technology, computer-aided learning (CAL)",
12454    "JNW" => "Extra-curricular activities",
12455    "JNWT" => "Educational visits & field trips",
12456    "JNZ" => "Study & learning skills: general",
12457    "JP" => "Politics & government",
12458    "JPA" => "Political science & theory",
12459    "JPB" => "Comparative politics",
12460    "JPF" => "Political ideologies",
12461    "JPFB" => "Anarchism",
12462    "JPFC" => "Marxism & Communism",
12463    "JPFF" => "Socialism & left-of-centre democratic ideologies",
12464    "JPFK" => "Liberalism & centre democratic ideologies",
12465    "JPFM" => "Conservatism & right-of-centre democratic ideologies",
12466    "JPFN" => "Nationalism",
12467    "JPFQ" => "Fascism & Nazism",
12468    "JPFR" => "Religious & theocratic ideologies",
12469    "JPH" => "Political structure & processes",
12470    "JPHC" => "Constitution: government & the state",
12471    "JPHF" => "Elections & referenda",
12472    "JPHL" => "Political leaders & leadership",
12473    "JPHV" => "Political structures: democracy",
12474    "JPHX" => "Political structures: totalitarianism & dictatorship",
12475    "JPL" => "Political parties",
12476    "JPLM" => "Political manifestos",
12477    "JPP" => "Public administration",
12478    "JPQ" => "Central government",
12479    "JPQB" => "Central government policies",
12480    "JPR" => "Regional government",
12481    "JPRB" => "Regional government policies",
12482    "JPS" => "International relations",
12483    "JPSD" => "Diplomacy",
12484    "JPSF" => "Arms negotiation & control",
12485    "JPSH" => "Espionage & secret services",
12486    "JPSL" => "Geopolitics",
12487    "JPSN" => "International institutions",
12488    "JPSN1" => "United Nations & UN agencies",
12489    "JPSN2" => "EU & European institutions",
12490    "JPV" => "Political control & freedoms",
12491    "JPVH" => "Human rights",
12492    "JPVH1" => "Civil rights & citizenship",
12493    "JPVH2" => "Freedom of information & freedom of speech",
12494    "JPVH3" => "Land rights",
12495    "JPVH4" => "Religious freedom / freedom of worship",
12496    "JPVK" => "Public opinion & polls",
12497    "JPVL" => "Political campaigning & advertising",
12498    "JPVN" => "Propaganda",
12499    "JPVR" => "Political oppression & persecution",
12500    "JPW" => "Political activism",
12501    "JPWD" => "Pressure groups & lobbying",
12502    "JPWF" => "Demonstrations & protest movements",
12503    "JPWH" => "Non-governmental organizations (NGOs)",
12504    "JPWJ" => "Political subversion",
12505    "JPWL" => "Terrorism, armed struggle",
12506    "JPWL1" => "Political assassinations",
12507    "JPWL2" => "Terrorist attack",
12508    "JPWQ" => "Revolutionary groups & movements",
12509    "JPWS" => "Armed conflict",
12510    "JPZ" => "Political corruption",
12511    "JW" => "Warfare & defence",
12512    "JWA" => "Theory of warfare & military science",
12513    "JWD" => "Land forces & warfare",
12514    "JWDG" => "Irregular or guerrilla forces & warfare",
12515    "JWF" => "Naval forces & warfare",
12516    "JWG" => "Air forces & warfare",
12517    "JWH" => "Special & elite forces",
12518    "JWJ" => "Military administration",
12519    "JWK" => "Defence strategy, planning & research",
12520    "JWKF" => "Military intelligence",
12521    "JWKT" => "Military tactics",
12522    "JWKW" => "Civil defence",
12523    "JWL" => "War & defence operations",
12524    "JWLF" => "Battles & campaigns",
12525    "JWLP" => "Peacekeeping operations",
12526    "JWM" => "Weapons & equipment",
12527    "JWMC" => "Chemical & biological weapons",
12528    "JWMN" => "Nuclear weapons",
12529    "JWMV" => "Military vehicles",
12530    "JWMV1" => "Tanks & military land vehicles",
12531    "JWMV2" => "Military & naval ships",
12532    "JWMV3" => "Military aircraft",
12533    "JWT" => "Military life & institutions",
12534    "JWTR" => "Regiments",
12535    "JWTU" => "Uniforms & insignia",
12536    "JWTY" => "Memorials & rolls of honour",
12537    "JWX" => "Other warfare & defence issues",
12538    "JWXF" => "Arms trade",
12539    "JWXK" => "War crimes",
12540    "JWXN" => "Mercenaries",
12541    "JWXR" => "Prisoners of war",
12542    "JWXT" => "Mutiny",
12543    "JWXV" => "Military veterans",
12544    "JWXZ" => "Combat / defence skills & manuals",
12545    "K" => "Economics, finance, business & management",
12546    "KC" => "Economics",
12547    "KCA" => "Economic theory & philosophy",
12548    "KCB" => "Macroeconomics",
12549    "KCBM" => "Monetary economics",
12550    "KCC" => "Microeconomics",
12551    "KCCD" => "Domestic trade",
12552    "KCD" => "Economics of industrial organisation",
12553    "KCF" => "Labour economics",
12554    "KCFM" => "Employment & unemployment",
12555    "KCG" => "Economic growth",
12556    "KCH" => "Econometrics",
12557    "KCHS" => "Economic statistics",
12558    "KCJ" => "Economic forecasting",
12559    "KCK" => "Behavioural economics",
12560    "KCL" => "International economics",
12561    "KCLF" => "International finance",
12562    "KCLT" => "International trade",
12563    "KCLT1" => "Trade agreements",
12564    "KCM" => "Development economics & emerging economies",
12565    "KCN" => "Environmental economics",
12566    "KCP" => "Political economy",
12567    "KCQ" => "Health economics",
12568    "KCR" => "Welfare economics",
12569    "KCS" => "Economic systems & structures",
12570    "KCT" => "Agricultural economics",
12571    "KCU" => "Urban economics",
12572    "KCX" => "Economic & financial crises & disasters",
12573    "KCY" => "Popular economics",
12574    "KCZ" => "Economic history",
12575    "KF" => "Finance & accounting",
12576    "KFC" => "Accounting",
12577    "KFCC" => "Cost accounting",
12578    "KFCF" => "Financial accounting",
12579    "KFCM" => "Management accounting & bookkeeping",
12580    "KFCP" => "Public finance accounting",
12581    "KFCR" => "Financial reporting, financial statements",
12582    "KFCX" => "Accounting: study & revision guides",
12583    "KFF" => "Finance",
12584    "KFFD" => "Public finance",
12585    "KFFD1" => "Taxation",
12586    "KFFH" => "Corporate finance",
12587    "KFFK" => "Banking",
12588    "KFFL" => "Credit & credit institutions",
12589    "KFFM" => "Investment & securities",
12590    "KFFM1" => "Commodities",
12591    "KFFM2" => "Stocks & shares",
12592    "KFFN" => "Insurance & actuarial studies",
12593    "KFFP" => "Pensions",
12594    "KFFR" => "Property & real estate",
12595    "KFFX" => "Banking & finance: study & revision guides",
12596    "KJ" => "Business & management",
12597    "KJB" => "Business studies: general",
12598    "KJBX" => "Business & management: study & revision guides",
12599    "KJC" => "Business strategy",
12600    "KJD" => "Business innovation",
12601    "KJE" => "E-commerce: business aspects",
12602    "KJF" => "Business competition",
12603    "KJG" => "Business ethics & social responsibility",
12604    "KJH" => "Entrepreneurship",
12605    "KJJ" => "Business & the environment, ‘Green’ approaches to business",
12606    "KJK" => "International business",
12607    "KJL" => "Consultancy & grants for businesses",
12608    "KJM" => "Management & management techniques",
12609    "KJMB" => "Management: leadership & motivation",
12610    "KJMD" => "Management decision making",
12611    "KJMP" => "Project management",
12612    "KJMQ" => "Quality Assurance (QA) & Total Quality Management (TQM)",
12613    "KJMT" => "Time management",
12614    "KJMV" => "Management of specific areas",
12615    "KJMV1" => "Budgeting & financial management",
12616    "KJMV2" => "Personnel & human resources management",
12617    "KJMV3" => "Knowledge management",
12618    "KJMV4" => "Management of real estate, property & plant",
12619    "KJMV5" => "Production & quality control management",
12620    "KJMV6" => "Research & development management",
12621    "KJMV7" => "Sales & marketing management",
12622    "KJMV8" => "Purchasing & supply management",
12623    "KJMV9" => "Distribution & warehousing management",
12624    "KJN" => "Business negotiation",
12625    "KJP" => "Business communication & presentation",
12626    "KJQ" => "Business mathematics & systems",
12627    "KJR" => "Corporate governance",
12628    "KJRD" => "Boards & directors: role & responsibilities",
12629    "KJRS" => "Company secretary: role & responsibilities",
12630    "KJS" => "Sales & marketing",
12631    "KJSA" => "Advertising",
12632    "KJSM" => "Market research",
12633    "KJSP" => "Public relations",
12634    "KJSU" => "Customer services",
12635    "KJT" => "Operational research",
12636    "KJU" => "Organizational theory & behaviour",
12637    "KJV" => "Ownership & organization of enterprises",
12638    "KJVB" => "Takeovers, mergers & buy-outs",
12639    "KJVD" => "Privatization",
12640    "KJVF" => "Franchises",
12641    "KJVG" => "Multinationals",
12642    "KJVN" => "Public ownership / nationalization",
12643    "KJVP" => "Monopolies",
12644    "KJVS" => "Small businesses & self-employed",
12645    "KJVT" => "Outsourcing",
12646    "KJVV" => "Joint ventures",
12647    "KJVW" => "Employee-ownership & co-operatives",
12648    "KJVX" => "Non-profitmaking organizations",
12649    "KJW" => "Office & workplace",
12650    "KJWB" => "Office management",
12651    "KJWF" => "Office systems & equipment",
12652    "KJWS" => "Secretarial, clerical & office skills",
12653    "KJWX" => "Working patterns & practices",
12654    "KJZ" => "History of specific companies / corporate history",
12655    "KN" => "Industry & industrial studies",
12656    "KNA" => "Primary industries",
12657    "KNAC" => "Agriculture & related industries",
12658    "KNAF" => "Fisheries & related industries",
12659    "KNAL" => "Forestry & related industries",
12660    "KNAT" => "Mining industry",
12661    "KNB" => "Energy industries & utilities",
12662    "KNBC" => "Coal & solid fuel industries",
12663    "KNBG" => "Gas industries",
12664    "KNBL" => "Electrical power industries",
12665    "KNBN" => "Nuclear power industries",
12666    "KNBP" => "Petroleum & oil industries",
12667    "KNBT" => "Alternative & renewable energy industries",
12668    "KNBW" => "Water industries",
12669    "KND" => "Manufacturing industries",
12670    "KNDC" => "Chemical industries",
12671    "KNDD" => "Textile industries",
12672    "KNDF" => "Food manufacturing & related industries",
12673    "KNDF1" => "Tobacco industry",
12674    "KNDH" => "Hi-tech manufacturing industries",
12675    "KNDH1" => "Biotechnology industries",
12676    "KNDM" => "Armaments industries",
12677    "KNDP" => "Pharmaceutical industries",
12678    "KNDR" => "Road vehicle manufacturing industry",
12679    "KNDS" => "Shipbuilding industry",
12680    "KNDV" => "Aviation manufacturing industry",
12681    "KNG" => "Transport industries",
12682    "KNGR" => "Road transport industries",
12683    "KNGS" => "Shipping industries",
12684    "KNGT" => "Railway transport industries",
12685    "KNGV" => "Aerospace & air transport industries",
12686    "KNGV1" => "Airports",
12687    "KNJ" => "Construction & heavy industry",
12688    "KNJC" => "Construction industry",
12689    "KNJH" => "Iron, steel & metals industries",
12690    "KNP" => "Distributive industries",
12691    "KNPR" => "Retail sector",
12692    "KNPW" => "Wholesale sector",
12693    "KNS" => "Service industries",
12694    "KNSG" => "Tourism industry",
12695    "KNSH" => "Hospitality industry",
12696    "KNSJ" => "Events management industries",
12697    "KNSP" => "Sport & leisure industries",
12698    "KNSS" => "Security services",
12699    "KNSS1" => "Surveillance services",
12700    "KNST" => "Financial services industry",
12701    "KNSX" => "Fashion & beauty industries",
12702    "KNSZ" => "Funeral services",
12703    "KNT" => "Media, information & communication industries",
12704    "KNTC" => "Cinema industry",
12705    "KNTD" => "Radio & television industry",
12706    "KNTF" => "Music industry",
12707    "KNTJ" => "Press & journalism",
12708    "KNTP" => "Publishing industry & book trade",
12709    "KNTR" => "Printing, packaging & reprographic industry",
12710    "KNTT" => "Postal & telecommunications industries",
12711    "KNTX" => "Information technology industries",
12712    "KNTX1" => "Internet & WWW industries",
12713    "KNTY" => "Advertising industry",
12714    "KNV" => "Civil service & public sector",
12715    "KNX" => "Industrial relations, health & safety",
12716    "KNXB" => "Industrial relations",
12717    "KNXB1" => "Strikes",
12718    "KNXB2" => "Trade unions",
12719    "KNXB3" => "Industrial arbitration & negotiation",
12720    "KNXC" => "Health & safety issues",
12721    "L" => "Law",
12722    "LA" => "Jurisprudence & general issues",
12723    "LAB" => "Jurisprudence & philosophy of law",
12724    "LAF" => "Systems of law",
12725    "LAFC" => "Common law",
12726    "LAFD" => "Civil codes / Civil law",
12727    "LAFR" => "Roman law",
12728    "LAFS" => "Islamic law",
12729    "LAFX" => "Ecclesiastical (canon) law",
12730    "LAM" => "Comparative law",
12731    "LAQ" => "Law & society",
12732    "LAQG" => "Gender & the law",
12733    "LAR" => "Criminology: legal aspects",
12734    "LAS" => "Legal skills & practice",
12735    "LASD" => "Advocacy",
12736    "LASP" => "Paralegals & paralegalism",
12737    "LAT" => "Legal profession: general",
12738    "LATC" => "Legal ethics & professional conduct",
12739    "LAY" => "Law as it applies to other professions",
12740    "LAZ" => "Legal history",
12741    "LB" => "International law",
12742    "LBB" => "Public international law",
12743    "LBBC" => "Treaties & other sources of international law",
12744    "LBBC1" => "Customary law",
12745    "LBBD" => "Diplomatic law",
12746    "LBBF" => "Jurisdiction & immunities",
12747    "LBBJ" => "International law of territory & statehood",
12748    "LBBK" => "Law of the sea",
12749    "LBBM" => "International economic & trade law",
12750    "LBBM1" => "Tariffs",
12751    "LBBM3" => "Investment treaties & disputes",
12752    "LBBP" => "International environmental law",
12753    "LBBR" => "International human rights law",
12754    "LBBS" => "International humanitarian law",
12755    "LBBU" => "International organisations & institutions",
12756    "LBBV" => "Responsibility of states & other entities",
12757    "LBBZ" => "International criminal law",
12758    "LBD" => "International law of transport, communications & commerce",
12759    "LBDA" => "International space & aerospace law",
12760    "LBDK" => "Transnational commercial law",
12761    "LBDM" => "International maritime law",
12762    "LBDT" => "International communications & telecommunications law",
12763    "LBG" => "Private international law & conflict of laws",
12764    "LBH" => "Settlement of international disputes",
12765    "LBHG" => "International courts & procedures",
12766    "LBHT" => "International arbitration",
12767    "LBL" => "International law reports",
12768    "LN" => "Laws of Specific jurisdictions",
12769    "LNA" => "Legal system: general",
12770    "LNAA" => "Courts & procedure",
12771    "LNAA1" => "Judicial powers",
12772    "LNAA2" => "Legal system: law of contempt",
12773    "LNAC" => "Civil procedure, litigation & dispute resolution",
12774    "LNAC1" => "Civil remedies",
12775    "LNAC12" => "Restitution",
12776    "LNAC14" => "Damages & compensation",
12777    "LNAC16" => "Injunctions & other orders",
12778    "LNAC3" => "Civil procedure: law of evidence",
12779    "LNAC5" => "Arbitration, mediation & alternative dispute resolution",
12780    "LNAF" => "Legal system: costs & funding",
12781    "LNAL" => "Regulation of legal profession",
12782    "LNB" => "Private / Civil law: general works",
12783    "LNC" => "Company, commercial & competition law",
12784    "LNCB" => "Commercial law",
12785    "LNCB1" => "Franchising law",
12786    "LNCB2" => "E-commerce law",
12787    "LNCB3" => "Sale of goods law",
12788    "LNCB4" => "Outsourcing law",
12789    "LNCB5" => "Shipping law",
12790    "LNCB6" => "Aviation law",
12791    "LNCD" => "Company law",
12792    "LNCD1" => "Mergers & acquisitions law",
12793    "LNCF" => "Partnership law",
12794    "LNCH" => "Competition law / Antitrust law",
12795    "LNCJ" => "Contract law",
12796    "LNCL" => "Agency law",
12797    "LNCN" => "Procurement law",
12798    "LNCQ" => "Construction & engineering law",
12799    "LNCR" => "Energy & natural resources law",
12800    "LND" => "Constitutional & administrative law",
12801    "LNDA" => "Citizenship & nationality law",
12802    "LNDA1" => "Immigration law",
12803    "LNDA3" => "Asylum law",
12804    "LNDC" => "Human rights & civil liberties law",
12805    "LNDC2" => "Privacy law",
12806    "LNDC4" => "Freedom of expression law",
12807    "LNDF" => "Freedom of information law",
12808    "LNDH" => "Government powers",
12809    "LNDK" => "Military & defence law",
12810    "LNDM" => "Judicial review",
12811    "LNDP" => "Parliamentary & legislative practice",
12812    "LNDS" => "Election law",
12813    "LNDU" => "Local government law",
12814    "LNF" => "Criminal law & procedure",
12815    "LNFB" => "Criminal justice law",
12816    "LNFG" => "Offences against the government",
12817    "LNFJ" => "Offences against the person",
12818    "LNFJ1" => "Harassment law",
12819    "LNFL" => "Offences against property",
12820    "LNFN" => "Fraud",
12821    "LNFQ" => "Juvenile criminal law",
12822    "LNFR" => "Offences against public health, safety, order",
12823    "LNFT" => "Road traffic law, motoring offences",
12824    "LNFV" => "Terrorism law",
12825    "LNFX" => "Criminal procedure",
12826    "LNFX1" => "Sentencing & punishment",
12827    "LNFX3" => "Criminal procedure: law of evidence",
12828    "LNFX5" => "Police law & police procedures",
12829    "LNH" => "Employment & labour law",
12830    "LNHD" => "Discrimination in employment law",
12831    "LNHH" => "Occupational health & safety law",
12832    "LNHR" => "Industrial relations & trade unions law",
12833    "LNHU" => "Employment contracts",
12834    "LNJ" => "Entertainment & media law",
12835    "LNJD" => "Defamation law (slander & libel)",
12836    "LNJS" => "Sport & the law",
12837    "LNJX" => "Advertising, marketing & sponsorship law",
12838    "LNK" => "Environment, transport & planning law",
12839    "LNKF" => "Agricultural law",
12840    "LNKG" => "Animal law",
12841    "LNKJ" => "Environment law",
12842    "LNKN" => "Nature Conservation law",
12843    "LNKT" => "Transport law",
12844    "LNKV" => "Highways",
12845    "LNKW" => "Planning law",
12846    "LNL" => "Equity & trusts",
12847    "LNM" => "Family law",
12848    "LNMB" => "Family law: marriage & divorce",
12849    "LNMC" => "Family law: cohabitation",
12850    "LNMF" => "Family law: same-sex partnership",
12851    "LNMK" => "Family law: children",
12852    "LNP" => "Financial law",
12853    "LNPA" => "Accounting law",
12854    "LNPB" => "Banking law",
12855    "LNPC" => "Bankruptcy & insolvency",
12856    "LNPD" => "Capital markets & securities law & regulation",
12857    "LNPF" => "Financial services law & regulation",
12858    "LNPN" => "Insurance law",
12859    "LNPP" => "Pensions law",
12860    "LNQ" => "IT & Communications law",
12861    "LNQD" => "Data protection law",
12862    "LNR" => "Intellectual property law",
12863    "LNRC" => "Copyright law",
12864    "LNRD" => "Patents law",
12865    "LNRF" => "Trademarks law",
12866    "LNRL" => "Designs law",
12867    "LNRV" => "Confidential information law",
12868    "LNS" => "Property law",
12869    "LNSH" => "Land & real estate law",
12870    "LNSH1" => "Ownership & mortgage law",
12871    "LNSH3" => "Landlord & tenant law",
12872    "LNSH5" => "Conveyancing law",
12873    "LNSH7" => "Rating & valuation law",
12874    "LNSH9" => "Housing law",
12875    "LNSP" => "Personal property law",
12876    "LNT" => "Social law",
12877    "LNTC" => "Charity law",
12878    "LNTD" => "Education & the law",
12879    "LNTH" => "Social security & welfare law",
12880    "LNTH1" => "Social insurance law",
12881    "LNTJ" => "Public health & safety law",
12882    "LNTM" => "Medical & healthcare law",
12883    "LNTM1" => "Mental health law",
12884    "LNTM2" => "Regulation of medicines & medical devices",
12885    "LNTQ" => "Disability & the law",
12886    "LNTS" => "Law & the elderly",
12887    "LNTU" => "Consumer protection law",
12888    "LNTX" => "Licensing, gaming & club law",
12889    "LNU" => "Taxation & duties law",
12890    "LNUC" => "Corporate tax",
12891    "LNUP" => "Personal tax",
12892    "LNUS" => "Sales tax  & Customs duties",
12893    "LNUT" => "Trusts & estates taxation",
12894    "LNV" => "Torts / Delicts",
12895    "LNVC" => "Negligence",
12896    "LNVF" => "Nuisance",
12897    "LNVJ" => "Personal injury",
12898    "LNW" => "Wills & probate / Succession",
12899    "LNZ" => "Primary sources of law",
12900    "LNZC" => "Case law",
12901    "LNZL" => "Legislation",
12902    "LR" => "Law: study & revision guides",
12903    "M" => "Medicine",
12904    "MB" => "Medicine: general issues",
12905    "MBD" => "Medical profession",
12906    "MBDC" => "Medical ethics & professional conduct",
12907    "MBDP" => "Doctor/patient relationship",
12908    "MBF" => "Medical bioinformatics",
12909    "MBG" => "Medical equipment & techniques",
12910    "MBGL" => "Medical laboratory testing & techniques",
12911    "MBGR" => "Medical research",
12912    "MBGR1" => "Clinical trials",
12913    "MBGT" => "Telemedicine",
12914    "MBN" => "Public health & preventive medicine",
12915    "MBNC" => "Medical screening",
12916    "MBNH" => "Personal & public health",
12917    "MBNH1" => "Hygiene",
12918    "MBNH2" => "Environmental factors",
12919    "MBNH3" => "Dietetics & nutrition",
12920    "MBNH4" => "Birth control, contraception, family planning",
12921    "MBNH9" => "Health psychology",
12922    "MBNS" => "Epidemiology & medical statistics",
12923    "MBP" => "Health systems & services",
12924    "MBPC" => "General practice",
12925    "MBPK" => "Mental health services",
12926    "MBPM" => "Medical administration & management",
12927    "MBPR" => "Medical insurance",
12928    "MBQ" => "Medicolegal issues",
12929    "MBS" => "Medical sociology",
12930    "MBX" => "History of medicine",
12931    "MF" => "Pre-clinical medicine: basic sciences",
12932    "MFC" => "Anatomy",
12933    "MFCC" => "Cytology",
12934    "MFCH" => "Histology",
12935    "MFCR" => "Regional anatomy",
12936    "MFCX" => "Dissection",
12937    "MFG" => "Physiology",
12938    "MFGC" => "Cellular physiology",
12939    "MFGG" => "Regional physiology",
12940    "MFGM" => "Metabolism",
12941    "MFGV" => "Biomechanics, human kinetics",
12942    "MFK" => "Human reproduction, growth & development",
12943    "MFKC" => "Reproductive medicine",
12944    "MFKC1" => "Infertility & fertilization",
12945    "MFKC3" => "Embryology",
12946    "MFKH" => "Human growth & development",
12947    "MFKH3" => "Maturation & ageing",
12948    "MFN" => "Medical genetics",
12949    "MJ" => "Clinical & internal medicine",
12950    "MJA" => "Medical diagnosis",
12951    "MJAD" => "Examination of patients",
12952    "MJC" => "Diseases & disorders",
12953    "MJCG" => "Congenital diseases & disorders",
12954    "MJCG1" => "Hereditary diseases & disorders",
12955    "MJCJ" => "Infectious & contagious diseases",
12956    "MJCJ1" => "Venereal diseases",
12957    "MJCJ2" => "HIV / AIDS",
12958    "MJCJ3" => "Hospital infections",
12959    "MJCL" => "Oncology",
12960    "MJCL1" => "Radiotherapy",
12961    "MJCL2" => "Chemotherapy",
12962    "MJCM" => "Immunology",
12963    "MJCM1" => "Allergies",
12964    "MJD" => "Cardiovascular medicine",
12965    "MJE" => "Musculoskeletal medicine",
12966    "MJF" => "Haematology",
12967    "MJG" => "Endocrinology",
12968    "MJGD" => "Diabetes",
12969    "MJH" => "Gastroenterology",
12970    "MJJ" => "Hepatology",
12971    "MJK" => "Dermatology",
12972    "MJL" => "Respiratory medicine",
12973    "MJM" => "Rheumatology",
12974    "MJN" => "Neurology & clinical neurophysiology",
12975    "MJNA" => "Autism & Asperger’s Syndrome",
12976    "MJND" => "Alzheimer’s & dementia",
12977    "MJP" => "Otorhinolaryngology (ENT)",
12978    "MJPD" => "Audiology & otology",
12979    "MJQ" => "Ophthalmology",
12980    "MJR" => "Renal medicine & nephrology",
12981    "MJRD" => "Haemodialysis",
12982    "MJS" => "Urology & urogenital medicine",
12983    "MJT" => "Gynaecology & obstetrics",
12984    "MJTF" => "Materno-fetal medicine",
12985    "MJW" => "Paediatric medicine",
12986    "MJWN" => "Neonatal medicine",
12987    "MJX" => "Geriatric medicine",
12988    "MJZ" => "Gene therapy",
12989    "MM" => "Other branches of medicine",
12990    "MMB" => "Anaesthetics",
12991    "MMBP" => "Pain & pain management",
12992    "MMC" => "Palliative medicine",
12993    "MMD" => "Dentistry",
12994    "MMDS" => "Oral & maxillofacial surgery",
12995    "MMF" => "Pathology",
12996    "MMFC" => "Cytopathology",
12997    "MMFH" => "Histopathology",
12998    "MMFM" => "Medical microbiology & virology",
12999    "MMFP" => "Medical parasitology",
13000    "MMG" => "Pharmacology",
13001    "MMGT" => "Medical toxicology",
13002    "MMGW" => "Psychopharmacology",
13003    "MMH" => "Psychiatry",
13004    "MMJ" => "Clinical psychology",
13005    "MMJT" => "Psychotherapy",
13006    "MMJT1" => "Cognitive behavioural therapy",
13007    "MMK" => "Accident & emergency medicine",
13008    "MMKB" => "Trauma & shock",
13009    "MMKD" => "Burns",
13010    "MMKL" => "Intensive care medicine",
13011    "MMN" => "Nuclear medicine",
13012    "MMP" => "Medical imaging",
13013    "MMPF" => "Ultrasonics",
13014    "MMPG" => "Nuclear magnetic resonance (NMR / MRI)",
13015    "MMPH" => "Radiology",
13016    "MMPJ" => "Tomography",
13017    "MMQ" => "Forensic medicine",
13018    "MMR" => "Environmental medicine",
13019    "MMRB" => "Aviation & space medicine",
13020    "MMRD" => "Diving & hyperbaric medicine",
13021    "MMRP" => "Occupational medicine",
13022    "MMRT" => "Tropical medicine",
13023    "MMS" => "Sports injuries & medicine",
13024    "MMZ" => "Therapy & therapeutics",
13025    "MMZD" => "Eating disorders & therapy",
13026    "MMZF" => "Obesity: treatment & therapy",
13027    "MMZL" => "Speech & language disorders & therapy",
13028    "MMZR" => "Addiction & therapy",
13029    "MMZS" => "Sleep disorders & therapy",
13030    "MN" => "Surgery",
13031    "MNB" => "Surgical techniques",
13032    "MNC" => "General surgery",
13033    "MNG" => "Gastrointestinal & colorectal surgery",
13034    "MNH" => "Cardiothoracic surgery",
13035    "MNJ" => "Vascular surgery",
13036    "MNK" => "Surgical oncology",
13037    "MNL" => "Critical care surgery",
13038    "MNN" => "Neurosurgery",
13039    "MNP" => "Plastic & reconstructive surgery",
13040    "MNPC" => "Cosmetic surgery",
13041    "MNQ" => "Transplant surgery",
13042    "MNS" => "Orthopaedics & fractures",
13043    "MNZ" => "Peri-operative care",
13044    "MQ" => "Nursing & ancillary services",
13045    "MQC" => "Nursing",
13046    "MQCA" => "Nursing fundamentals & skills",
13047    "MQCB" => "Nursing research & theory",
13048    "MQCH" => "Nurse/patient relationship",
13049    "MQCL" => "Nursing specialties",
13050    "MQCL1" => "Accident & emergency nursing",
13051    "MQCL2" => "Intensive care nursing",
13052    "MQCL3" => "Paediatric nursing",
13053    "MQCL4" => "Geriatric nursing",
13054    "MQCL5" => "Psychiatric nursing",
13055    "MQCL6" => "Surgical nursing",
13056    "MQCL9" => "Terminal care nursing",
13057    "MQCM" => "Nursing pharmacology",
13058    "MQCW" => "Nursing sociology",
13059    "MQCX" => "Community nursing",
13060    "MQCZ" => "Nursing management & leadership",
13061    "MQD" => "Midwifery",
13062    "MQDB" => "Birthing methods",
13063    "MQF" => "First aid & paramedical services",
13064    "MQH" => "Radiography",
13065    "MQK" => "Chiropody & podiatry",
13066    "MQP" => "Pharmacy / dispensing",
13067    "MQR" => "Optometry / opticians",
13068    "MQS" => "Physiotherapy",
13069    "MQT" => "Occupational therapy",
13070    "MQTC" => "Creative therapy (eg art, music, drama)",
13071    "MQU" => "Medical counselling",
13072    "MQV" => "Rehabilitation",
13073    "MQVB" => "Rehabilitation: brain & spinal injuries",
13074    "MQW" => "Biomedical engineering",
13075    "MQWB" => "Orthotics",
13076    "MQWP" => "Prosthetics",
13077    "MQZ" => "Mortuary practice",
13078    "MR" => "Medical study & revision guides & reference material",
13079    "MRG" => "Medical study & revision guides",
13080    "MRGD" => "Medical revision aids: MRCP",
13081    "MRGK" => "Medical revision aids: MRCS",
13082    "MRGL" => "Medical revision aids: PLAB",
13083    "MRT" => "Medical charts, colour atlases",
13084    "MX" => "Complementary medicine",
13085    "MXH" => "Chiropractic & osteopathy",
13086    "MZ" => "Veterinary medicine",
13087    "MZC" => "Veterinary medicine: small animals (pets)",
13088    "MZD" => "Veterinary medicine: large animals (domestic / farm)",
13089    "MZDH" => "Equine veterinary medicine",
13090    "MZF" => "Veterinary medicine: laboratory animals",
13091    "MZG" => "Veterinary medicine: exotic & zoo animals",
13092    "MZH" => "Veterinary anatomy & physiology",
13093    "MZK" => "Veterinary pathology & histology",
13094    "MZL" => "Veterinary nutrition",
13095    "MZM" => "Veterinary medicine: infectious diseases & therapeutics",
13096    "MZMP" => "Veterinary bacteriology, virology, parasitology",
13097    "MZP" => "Veterinary pharmacology",
13098    "MZR" => "Veterinary radiology",
13099    "MZS" => "Veterinary surgery",
13100    "MZSN" => "Veterinary anaesthetics",
13101    "MZT" => "Veterinary dentistry",
13102    "MZV" => "Veterinary nursing",
13103    "MZX" => "Complementary medicine for animals",
13104    "P" => "Mathematics & science",
13105    "PB" => "Mathematics",
13106    "PBB" => "Philosophy of mathematics",
13107    "PBC" => "Mathematical foundations",
13108    "PBCD" => "Mathematical logic",
13109    "PBCH" => "Set theory",
13110    "PBCN" => "Number systems",
13111    "PBD" => "Discrete mathematics",
13112    "PBF" => "Algebra",
13113    "PBG" => "Groups & group theory",
13114    "PBH" => "Number theory",
13115    "PBJ" => "Pre-calculus",
13116    "PBK" => "Calculus & mathematical analysis",
13117    "PBKA" => "Calculus",
13118    "PBKB" => "Real analysis, real variables",
13119    "PBKD" => "Complex analysis, complex variables",
13120    "PBKF" => "Functional analysis & transforms",
13121    "PBKJ" => "Differential calculus & equations",
13122    "PBKL" => "Integral calculus & equations",
13123    "PBKQ" => "Calculus of variations",
13124    "PBKS" => "Numerical analysis",
13125    "PBM" => "Geometry",
13126    "PBMB" => "Trigonometry",
13127    "PBMH" => "Euclidean geometry",
13128    "PBML" => "Non-Euclidean geometry",
13129    "PBMP" => "Differential & Riemannian geometry",
13130    "PBMS" => "Analytic geometry",
13131    "PBMW" => "Algebraic geometry",
13132    "PBMX" => "Fractal geometry",
13133    "PBP" => "Topology",
13134    "PBPD" => "Algebraic topology",
13135    "PBPH" => "Analytic topology",
13136    "PBT" => "Probability & statistics",
13137    "PBTB" => "Bayesian inference",
13138    "PBU" => "Optimization",
13139    "PBUD" => "Game theory",
13140    "PBUH" => "Linear programming",
13141    "PBV" => "Combinatorics & graph theory",
13142    "PBW" => "Applied mathematics",
13143    "PBWH" => "Mathematical modelling",
13144    "PBWL" => "Stochastics",
13145    "PBWR" => "Nonlinear science",
13146    "PBWS" => "Chaos theory",
13147    "PBWX" => "Fuzzy set theory",
13148    "PBX" => "History of mathematics",
13149    "PD" => "Science: general issues",
13150    "PDA" => "Philosophy of science",
13151    "PDC" => "Scientific nomenclature & classification",
13152    "PDD" => "Scientific standards",
13153    "PDDM" => "Mensuration & systems of measurement",
13154    "PDE" => "Maths for scientists",
13155    "PDG" => "Industrial applications of scientific research & technological innovation",
13156    "PDK" => "Science funding & policy",
13157    "PDN" => "Scientific equipment, experiments & techniques",
13158    "PDND" => "Microscopy",
13159    "PDR" => "Impact of science & technology on society",
13160    "PDX" => "History of science",
13161    "PDZ" => "Popular science",
13162    "PDZM" => "Popular mathematics",
13163    "PG" => "Astronomy, space & time",
13164    "PGC" => "Theoretical & mathematical astronomy",
13165    "PGG" => "Astronomical observation: observatories, equipment & methods",
13166    "PGK" => "Cosmology & the universe",
13167    "PGM" => "Galaxies & stars",
13168    "PGS" => "Solar system: the Sun & planets",
13169    "PGT" => "Astronomical charts & atlases",
13170    "PGZ" => "Time (chronology), time systems & standards",
13171    "PH" => "Physics",
13172    "PHD" => "Classical mechanics",
13173    "PHDB" => "Elementary mechanics",
13174    "PHDD" => "Analytical mechanics",
13175    "PHDF" => "Fluid mechanics",
13176    "PHDS" => "Wave mechanics (vibration & acoustics)",
13177    "PHDT" => "Dynamics & statics",
13178    "PHDV" => "Gravity",
13179    "PHDY" => "Energy",
13180    "PHF" => "Materials / States of matter",
13181    "PHFB" => "Low temperature physics",
13182    "PHFC" => "Condensed matter physics (liquid state & solid state physics)",
13183    "PHFC1" => "Soft matter physics",
13184    "PHFC2" => "Mesoscopic physics",
13185    "PHFG" => "Physics of gases",
13186    "PHFP" => "Plasma physics",
13187    "PHH" => "Thermodynamics & heat",
13188    "PHJ" => "Optical physics",
13189    "PHJL" => "Laser physics",
13190    "PHK" => "Electricity, electromagnetism & magnetism",
13191    "PHM" => "Atomic & molecular physics",
13192    "PHN" => "Nuclear physics",
13193    "PHP" => "Particle & high-energy physics",
13194    "PHQ" => "Quantum physics (quantum mechanics & quantum field theory)",
13195    "PHR" => "Relativity physics",
13196    "PHS" => "Statistical physics",
13197    "PHU" => "Mathematical physics",
13198    "PHV" => "Applied physics",
13199    "PHVB" => "Astrophysics",
13200    "PHVD" => "Medical physics",
13201    "PHVG" => "Geophysics",
13202    "PHVJ" => "Atmospheric physics",
13203    "PHVN" => "Biophysics",
13204    "PHVQ" => "Chemical physics",
13205    "PHVS" => "Cryogenics",
13206    "PN" => "Chemistry",
13207    "PNF" => "Analytical chemistry",
13208    "PNFC" => "Chromatography",
13209    "PNFR" => "Magnetic resonance",
13210    "PNFS" => "Spectrum analysis, spectrochemistry, mass spectrometry",
13211    "PNK" => "Inorganic chemistry",
13212    "PNN" => "Organic chemistry",
13213    "PNND" => "Organometallic chemistry",
13214    "PNNP" => "Polymer chemistry",
13215    "PNR" => "Physical chemistry",
13216    "PNRC" => "Colloid chemistry",
13217    "PNRD" => "Catalysis",
13218    "PNRH" => "Electrochemistry & magnetochemistry",
13219    "PNRL" => "Nuclear chemistry, photochemistry & radiation",
13220    "PNRP" => "Quantum & theoretical chemistry",
13221    "PNRS" => "Solid state chemistry",
13222    "PNRW" => "Thermochemistry & chemical thermodynamics",
13223    "PNRX" => "Surface chemistry & adsorption",
13224    "PNT" => "Crystallography",
13225    "PNV" => "Mineralogy & gems",
13226    "PS" => "Biology, life sciences",
13227    "PSA" => "Life sciences: general issues",
13228    "PSAB" => "Taxonomy & systematics",
13229    "PSAD" => "Bio-ethics",
13230    "PSAF" => "Ecological science, the Biosphere",
13231    "PSAG" => "Xenobiotics",
13232    "PSAJ" => "Evolution",
13233    "PSAK" => "Genetics (non-medical)",
13234    "PSAK1" => "DNA & Genome",
13235    "PSAN" => "Neurosciences",
13236    "PSB" => "Biochemistry",
13237    "PSBC" => "Proteins",
13238    "PSBF" => "Carbohydrates",
13239    "PSBH" => "Lipids",
13240    "PSBM" => "Biochemical immunology",
13241    "PSBT" => "Toxicology (non-medical)",
13242    "PSBZ" => "Enzymology",
13243    "PSC" => "Developmental biology",
13244    "PSD" => "Molecular biology",
13245    "PSF" => "Cellular biology (cytology)",
13246    "PSG" => "Microbiology (non-medical)",
13247    "PSGD" => "Bacteriology (non-medical)",
13248    "PSGH" => "Parasitology (non-medical)",
13249    "PSGL" => "Virology (non-medical)",
13250    "PSGN" => "Protozoa",
13251    "PSP" => "Hydrobiology",
13252    "PSPF" => "Freshwater biology",
13253    "PSPM" => "Marine biology",
13254    "PSQ" => "Mycology, fungi (non-medical)",
13255    "PST" => "Botany & plant sciences",
13256    "PSTD" => "Plant physiology",
13257    "PSTL" => "Plant reproduction & propagation",
13258    "PSTP" => "Plant pathology & diseases",
13259    "PSTS" => "Plant ecology",
13260    "PSTV" => "Phycology, algae & lichens",
13261    "PSV" => "Zoology & animal sciences",
13262    "PSVD" => "Animal physiology",
13263    "PSVH" => "Animal reproduction",
13264    "PSVL" => "Animal pathology & diseases",
13265    "PSVP" => "Animal behaviour",
13266    "PSVS" => "Animal ecology",
13267    "PSVT" => "Zoology: Invertebrates",
13268    "PSVT3" => "Molluscs",
13269    "PSVT5" => "Crustaceans",
13270    "PSVT6" => "Arachnids",
13271    "PSVT7" => "Insects (entomology)",
13272    "PSVW" => "Zoology: Vertebrates",
13273    "PSVW1" => "Fishes (ichthyology)",
13274    "PSVW3" => "Amphibians",
13275    "PSVW5" => "Reptiles",
13276    "PSVW6" => "Birds (ornithology)",
13277    "PSVW7" => "Zoology: Mammals",
13278    "PSVW71" => "Marsupials & monotremes",
13279    "PSVW73" => "Marine & freshwater mammals",
13280    "PSVW79" => "Primates",
13281    "PSX" => "Human biology",
13282    "PSXE" => "Early man",
13283    "PSXM" => "Medical anthropology",
13284    "R" => "Earth sciences, geography, environment, planning",
13285    "RB" => "Earth sciences",
13286    "RBC" => "Volcanology & seismology",
13287    "RBG" => "Geology & the lithosphere",
13288    "RBGB" => "Soil science, sedimentology",
13289    "RBGD" => "Geological surface processes (geomorphology)",
13290    "RBGF" => "Historical geology",
13291    "RBGG" => "Petrology",
13292    "RBGH" => "Stratigraphy",
13293    "RBGK" => "Geochemistry",
13294    "RBGL" => "Economic geology",
13295    "RBK" => "Hydrology & the hydrosphere",
13296    "RBKC" => "Oceanography (seas)",
13297    "RBKF" => "Limnology (freshwater)",
13298    "RBP" => "Meteorology & climatology",
13299    "RBX" => "Palaeontology",
13300    "RG" => "Geography",
13301    "RGB" => "Physical geography & topography",
13302    "RGBA" => "Arid zones, deserts",
13303    "RGBC" => "Grasslands, heaths, prairies, tundra",
13304    "RGBF" => "Wetlands, swamps, fens",
13305    "RGBL" => "Forests, rainforests",
13306    "RGBP" => "Deltas, estuaries, coastal regions",
13307    "RGBR" => "Coral reefs",
13308    "RGBS" => "Mountains",
13309    "RGC" => "Human geography",
13310    "RGCM" => "Economic geography",
13311    "RGCP" => "Political geography",
13312    "RGL" => "Regional geography",
13313    "RGM" => "Biogeography",
13314    "RGR" => "Geographical discovery & exploration",
13315    "RGS" => "Geographical maps (specialist)",
13316    "RGV" => "Cartography, map-making & projections",
13317    "RGW" => "Geographical information systems (GIS) & remote sensing",
13318    "RGY" => "Geodesy & surveying for maps & charts",
13319    "RN" => "The environment",
13320    "RNA" => "Environmentalist thought & ideology",
13321    "RNB" => "Environmentalist, conservationist & Green organizations",
13322    "RNC" => "Applied ecology",
13323    "RNCB" => "Biodiversity",
13324    "RND" => "Environmental policy & protocols",
13325    "RNF" => "Environmental management",
13326    "RNFD" => "Drought & water supply",
13327    "RNFF" => "Food security & supply",
13328    "RNFY" => "Energy resources",
13329    "RNH" => "Waste management",
13330    "RNK" => "Conservation of the environment",
13331    "RNKH" => "Conservation of wildlife & habitats",
13332    "RNKH1" => "Endangered species & extinction of species",
13333    "RNP" => "Pollution & threats to the environment",
13334    "RNPD" => "Deforestation",
13335    "RNPG" => "Climate change",
13336    "RNQ" => "Nuclear issues",
13337    "RNR" => "Natural disasters",
13338    "RNT" => "Social impact of environmental issues",
13339    "RNU" => "Sustainability",
13340    "RP" => "Regional & area planning",
13341    "RPC" => "Urban & municipal planning",
13342    "RPG" => "Rural planning",
13343    "RPT" => "Transport planning & policy",
13344    "T" => "Technology, engineering, agriculture",
13345    "TB" => "Technology: general issues",
13346    "TBC" => "Engineering: general",
13347    "TBD" => "Technical design",
13348    "TBDG" => "Ergonomics",
13349    "TBG" => "Engineering graphics & technical drawing",
13350    "TBJ" => "Maths for engineers",
13351    "TBM" => "Instruments & instrumentation engineering",
13352    "TBMM" => "Engineering measurement & calibration",
13353    "TBN" => "Nanotechnology",
13354    "TBR" => "Intermediate technology",
13355    "TBX" => "History of engineering & technology",
13356    "TBY" => "Inventions & inventors",
13357    "TC" => "Biochemical engineering",
13358    "TCB" => "Biotechnology",
13359    "TCBG" => "Genetic engineering",
13360    "TCBS" => "Biosensors",
13361    "TD" => "Industrial chemistry & manufacturing technologies",
13362    "TDC" => "Industrial chemistry",
13363    "TDCB" => "Chemical engineering",
13364    "TDCC" => "Heavy chemicals",
13365    "TDCD" => "Detergents technology",
13366    "TDCG" => "Powder technology",
13367    "TDCH" => "Insecticide & herbicide technology",
13368    "TDCJ" => "Pigments, dyestuffs & paint technology",
13369    "TDCJ1" => "Cosmetics technology",
13370    "TDCK" => "Surface-coating technology",
13371    "TDCP" => "Plastics & polymers technology",
13372    "TDCQ" => "Ceramics & glass technology",
13373    "TDCR" => "Rubber technology",
13374    "TDCT" => "Food & beverage technology",
13375    "TDCT1" => "Brewing technology",
13376    "TDCT2" => "Winemaking technology",
13377    "TDCW" => "Pharmaceutical technology",
13378    "TDG" => "Leather & fur technology",
13379    "TDH" => "Textile & fibre technology",
13380    "TDJ" => "Timber & wood processing",
13381    "TDJP" => "Pulp & paper technology",
13382    "TDM" => "Metals technology / metallurgy",
13383    "TDP" => "Other manufacturing technologies",
13384    "TDPB" => "Precision instruments manufacture",
13385    "TDPB1" => "Clocks, chronometers & watches (horology)",
13386    "TDPD" => "Household appliances manufacture",
13387    "TDPF" => "Furniture & furnishings manufacture",
13388    "TDPH" => "Clothing & footware manufacture",
13389    "TDPP" => "Printing & reprographic technology",
13390    "TG" => "Mechanical engineering & materials",
13391    "TGB" => "Mechanical engineering",
13392    "TGBF" => "Tribology (friction & lubrication)",
13393    "TGBN" => "Engines & power transmission",
13394    "TGBN1" => "Steam engines",
13395    "TGM" => "Materials science",
13396    "TGMB" => "Engineering thermodynamics",
13397    "TGMD" => "Mechanics of solids",
13398    "TGMD4" => "Dynamics & vibration",
13399    "TGMD5" => "Stress & fracture",
13400    "TGMF" => "Mechanics of fluids",
13401    "TGMF1" => "Aerodynamics",
13402    "TGMF2" => "Hydraulics & pneumatics",
13403    "TGMF3" => "Flow, turbulence, rheology",
13404    "TGMT" => "Testing of materials",
13405    "TGMT1" => "Non-destructive testing",
13406    "TGP" => "Production engineering",
13407    "TGPC" => "Computer aided manufacture (CAM)",
13408    "TGPQ" => "Industrial quality control",
13409    "TGPR" => "Reliability engineering",
13410    "TGX" => "Engineering skills & trades",
13411    "TGXT" => "Tool making",
13412    "TGXW" => "Welding",
13413    "TH" => "Energy technology & engineering",
13414    "THF" => "Fossil fuel technologies",
13415    "THFG" => "Gas technology",
13416    "THFP" => "Petroleum technology",
13417    "THFS" => "Solid fuel technology",
13418    "THK" => "Nuclear power & engineering",
13419    "THN" => "Heat transfer processes",
13420    "THR" => "Electrical engineering",
13421    "THRB" => "Power generation & distribution",
13422    "THRD" => "Power networks, systems, stations & plants",
13423    "THRF" => "Power utilization & applications",
13424    "THRH" => "Energy conversion & storage",
13425    "THRM" => "Electric motors",
13426    "THRS" => "Electrician skills",
13427    "THT" => "Energy efficiency",
13428    "THX" => "Alternative & renewable energy sources & technology",
13429    "TJ" => "Electronics & communications engineering",
13430    "TJF" => "Electronics engineering",
13431    "TJFC" => "Circuits & components",
13432    "TJFD" => "Electronic devices & materials",
13433    "TJFD1" => "Microprocessors",
13434    "TJFD3" => "Transistors",
13435    "TJFD5" => "Semi-conductors & super-conductors",
13436    "TJFM" => "Automatic control engineering",
13437    "TJFM1" => "Robotics",
13438    "TJFN" => "Microwave technology",
13439    "TJK" => "Communications engineering / telecommunications",
13440    "TJKD" => "Radar",
13441    "TJKR" => "Radio technology",
13442    "TJKS" => "Satellite communication",
13443    "TJKT" => "Telephone technology",
13444    "TJKT1" => "Mobile phone technology",
13445    "TJKV" => "Television technology",
13446    "TJKW" => "WAP (wireless) technology",
13447    "TN" => "Civil engineering, surveying & building",
13448    "TNC" => "Structural engineering",
13449    "TNCB" => "Surveying",
13450    "TNCB1" => "Quantity surveying",
13451    "TNCC" => "Soil & rock mechanics",
13452    "TNCE" => "Earthquake engineering",
13453    "TNCJ" => "Bridges",
13454    "TNF" => "Hydraulic engineering",
13455    "TNFD" => "Dams & reservoirs",
13456    "TNFH" => "Harbours & ports",
13457    "TNFL" => "Flood control",
13458    "TNFR" => "Land reclamation & drainage",
13459    "TNH" => "Highway & traffic engineering",
13460    "TNK" => "Building construction & materials",
13461    "TNKF" => "Fire protection & safety",
13462    "TNKH" => "Heating, lighting, ventilation",
13463    "TNKS" => "Security & fire alarm systems",
13464    "TNKX" => "Conservation of buildings & building materials",
13465    "TNT" => "Building skills & trades",
13466    "TNTB" => "Bricklaying & plastering",
13467    "TNTC" => "Carpentry",
13468    "TNTP" => "Plumbing",
13469    "TNTR" => "Roofing",
13470    "TQ" => "Environmental science, engineering & technology",
13471    "TQD" => "Environmental monitoring",
13472    "TQK" => "Pollution control",
13473    "TQS" => "Sanitary & municipal engineering",
13474    "TQSR" => "Waste treatment & disposal",
13475    "TQSR1" => "Sewage treatment & disposal",
13476    "TQSR3" => "Hazardous waste treatment & disposal",
13477    "TQSW" => "Water supply & treatment",
13478    "TQSW1" => "Water purification & desalinization",
13479    "TR" => "Transport technology & trades",
13480    "TRC" => "Automotive technology & trades",
13481    "TRCS" => "Automotive (motor mechanic) skills",
13482    "TRCT" => "Road transport & haulage trades",
13483    "TRF" => "Railway technology, engineering & trades",
13484    "TRFT" => "Railway trades",
13485    "TRL" => "Shipbuilding technology, engineering & trades",
13486    "TRLD" => "Ship design & naval architecture",
13487    "TRLN" => "Navigation & seamanship",
13488    "TRLT" => "Maritime / nautical trades",
13489    "TRP" => "Aerospace & aviation technology",
13490    "TRPS" => "Aviation skills / piloting",
13491    "TRT" => "Intelligent & automated transport system technology",
13492    "TT" => "Other technologies & applied sciences",
13493    "TTA" => "Acoustic & sound engineering",
13494    "TTB" => "Applied optics",
13495    "TTBF" => "Fibre optics",
13496    "TTBL" => "Laser technology & holography",
13497    "TTBM" => "Imaging systems & technology",
13498    "TTBS" => "Scanning systems & technology",
13499    "TTD" => "Space science",
13500    "TTDS" => "Astronautics",
13501    "TTM" => "Military engineering",
13502    "TTMW" => "Ordnance, weapons technology",
13503    "TTP" => "Explosives technology & pyrotechnics",
13504    "TTS" => "Marine engineering",
13505    "TTSH" => "Offshore engineering",
13506    "TTSX" => "Sonar",
13507    "TTU" => "Mining technology & engineering",
13508    "TTV" => "Other vocational technologies & trades",
13509    "TTVC" => "Hotel & catering trades",
13510    "TTVH" => "Hairdressing & salon skills",
13511    "TTVR" => "Traditional trades & skills",
13512    "TTX" => "Taxidermy",
13513    "TV" => "Agriculture & farming",
13514    "TVB" => "Agricultural science",
13515    "TVD" => "Agricultural engineering & machinery",
13516    "TVDR" => "Irrigation",
13517    "TVF" => "Sustainable agriculture",
13518    "TVG" => "Organic farming",
13519    "TVH" => "Animal husbandry",
13520    "TVHB" => "Animal breeding",
13521    "TVHF" => "Dairy farming",
13522    "TVHH" => "Apiculture (beekeeping)",
13523    "TVHP" => "Poultry farming",
13524    "TVK" => "Agronomy & crop production",
13525    "TVKC" => "Cereal crops",
13526    "TVKF" => "Fertilizers & manures",
13527    "TVM" => "Smallholdings",
13528    "TVP" => "Pest control",
13529    "TVQ" => "Tropical agriculture: practice & techniques",
13530    "TVR" => "Forestry & silviculture: practice & techniques",
13531    "TVS" => "Horticulture",
13532    "TVSW" => "Viticulture",
13533    "TVT" => "Aquaculture & fish-farming: practice & techniques",
13534    "U" => "Computing & information technology",
13535    "UB" => "Information technology: general issues",
13536    "UBH" => "Health & safety aspects of IT",
13537    "UBJ" => "Ethical & social aspects of IT",
13538    "UBL" => "Legal aspects of IT",
13539    "UBW" => "Internet: general works",
13540    "UD" => "Digital lifestyle",
13541    "UDA" => "Personal organisation software & apps",
13542    "UDB" => "Internet guides & online services",
13543    "UDBA" => "Online shopping & auctions",
13544    "UDBD" => "Internet searching",
13545    "UDBG" => "Internet gambling",
13546    "UDBM" => "Online finance & investing",
13547    "UDBR" => "Internet browsers",
13548    "UDBS" => "Social networking",
13549    "UDBV" => "Virtual worlds",
13550    "UDF" => "Email: consumer/user guides",
13551    "UDH" => "Portable & handheld devices: consumer/user guides",
13552    "UDM" => "Digital music: consumer/user guides",
13553    "UDP" => "Digital photography: consumer/user guides",
13554    "UDQ" => "Digital video: consumer/user guides",
13555    "UDT" => "Mobile phones: consumer/user guides",
13556    "UDV" => "Digital TV & media centres: consumer/user guides",
13557    "UDX" => "Computer games / online games: strategy guides",
13558    "UF" => "Business applications",
13559    "UFB" => "Integrated software packages",
13560    "UFBC" => "Microsoft Office",
13561    "UFBF" => "Microsoft Works",
13562    "UFBL" => "Lotus Smartsuite",
13563    "UFBP" => "OpenOffice",
13564    "UFBS" => "StarOffice",
13565    "UFBW" => "iWork",
13566    "UFC" => "Spreadsheet software",
13567    "UFCE" => "Excel",
13568    "UFCL" => "Lotus 1-2-3",
13569    "UFD" => "Word processing software",
13570    "UFDM" => "Microsoft Word",
13571    "UFG" => "Presentation graphics software",
13572    "UFGP" => "PowerPoint",
13573    "UFK" => "Accounting software",
13574    "UFL" => "Enterprise software",
13575    "UFLS" => "SAP (Systems, applications & products in databases)",
13576    "UFM" => "Mathematical & statistical software",
13577    "UFP" => "Project management software",
13578    "UFS" => "Collaboration & group software",
13579    "UG" => "Graphical & digital media applications",
13580    "UGB" => "Web graphics & design",
13581    "UGC" => "Computer-aided design (CAD)",
13582    "UGD" => "Desktop publishing",
13583    "UGG" => "Computer games design",
13584    "UGK" => "3D graphics & modelling",
13585    "UGL" => "Illustration & drawing software",
13586    "UGM" => "Digital music: professional",
13587    "UGN" => "Digital animation",
13588    "UGP" => "Photo & image editing",
13589    "UGV" => "Digital video: professional",
13590    "UK" => "Computer hardware",
13591    "UKC" => "Supercomputers",
13592    "UKD" => "Mainframes & minicomputers",
13593    "UKF" => "Servers",
13594    "UKG" => "Grid & parallel computing",
13595    "UKM" => "Embedded systems",
13596    "UKN" => "Network hardware",
13597    "UKP" => "Personal computers",
13598    "UKPC" => "PCs (IBM-compatible personal computers)",
13599    "UKPM" => "Macintosh",
13600    "UKR" => "Maintenance & repairs",
13601    "UKS" => "Storage media & peripherals",
13602    "UKX" => "Utilities & tools",
13603    "UL" => "Operating systems",
13604    "ULD" => "Windows & variants",
13605    "ULDF" => "Windows 7",
13606    "ULDG" => "Windows Vista",
13607    "ULDL" => "Windows 2003",
13608    "ULDP" => "Windows XP",
13609    "ULDT" => "Windows 2000",
13610    "ULDX" => "Windows NT",
13611    "ULH" => "Macintosh OS",
13612    "ULL" => "Linux",
13613    "ULLD" => "Debian",
13614    "ULLR" => "Red Hat",
13615    "ULLS" => "SUSE",
13616    "ULLU" => "UBUNTU",
13617    "ULN" => "UNIX",
13618    "ULNB" => "BSD / FreeBSD",
13619    "ULNH" => "HP-UX",
13620    "ULNM" => "IBM AIX",
13621    "ULNS" => "Sun Solaris",
13622    "ULP" => "Handheld operating systems",
13623    "ULQ" => "IBM mainframe operating systems",
13624    "ULR" => "Real time operating systems",
13625    "UM" => "Computer programming / software development",
13626    "UMA" => "Program concepts / learning to program",
13627    "UMB" => "Algorithms & data structures",
13628    "UMC" => "Compilers",
13629    "UMF" => "Agile programming",
13630    "UMG" => "Aspect programming / AOP",
13631    "UMH" => "Extreme programming",
13632    "UMJ" => "Functional programming",
13633    "UMK" => "Games development & programming",
13634    "UMKB" => "2D graphics: games programming",
13635    "UMKC" => "3D graphics: games programming",
13636    "UMKL" => "Level design: games programming",
13637    "UML" => "Graphics programming",
13638    "UMN" => "Object-oriented programming (OOP)",
13639    "UMP" => "Microsoft programming",
13640    "UMPN" => ".Net programming",
13641    "UMPW" => "Windows programming",
13642    "UMQ" => "Macintosh programming",
13643    "UMR" => "Network programming",
13644    "UMS" => "Mobile & handheld device programming / Apps programming",
13645    "UMT" => "Database programming",
13646    "UMW" => "Web programming",
13647    "UMWS" => "Web services",
13648    "UMX" => "Programming & scripting languages: general",
13649    "UMZ" => "Software Engineering",
13650    "UMZL" => "Unified Modeling Language (UML)",
13651    "UMZT" => "Software testing & verification",
13652    "UMZW" => "Object oriented software engineering",
13653    "UN" => "Databases",
13654    "UNA" => "Database design & theory",
13655    "UNAR" => "Relational databases",
13656    "UNC" => "Data capture & analysis",
13657    "UND" => "Data warehousing",
13658    "UNF" => "Data mining",
13659    "UNH" => "Information retrieval",
13660    "UNJ" => "Object-oriented databases",
13661    "UNK" => "Distributed databases",
13662    "UNN" => "Databases & the Web",
13663    "UNS" => "Database software",
13664    "UNSB" => "Oracle",
13665    "UNSC" => "Access",
13666    "UNSF" => "FileMaker",
13667    "UNSJ" => "SQL Server / MS SQL",
13668    "UNSK" => "SQLite",
13669    "UNSM" => "MySQL",
13670    "UNSP" => "PostgreSQL",
13671    "UNSX" => "IBM DB2",
13672    "UNSY" => "Sybase",
13673    "UQ" => "Computer certification",
13674    "UQF" => "Computer certification: Microsoft",
13675    "UQJ" => "Computer certification: Cisco",
13676    "UQL" => "Computer certification: ECDL",
13677    "UQR" => "Computer certification: CompTia",
13678    "UQT" => "Computer certification: CLAiT",
13679    "UR" => "Computer security",
13680    "URD" => "Privacy & data protection",
13681    "URH" => "Computer fraud & hacking",
13682    "URJ" => "Computer viruses, Trojans & worms",
13683    "URQ" => "Firewalls",
13684    "URS" => "Spam",
13685    "URW" => "Spyware",
13686    "URY" => "Data encryption",
13687    "UT" => "Computer networking & communications",
13688    "UTC" => "Cloud computing",
13689    "UTD" => "Client-Server networking",
13690    "UTF" => "Network management",
13691    "UTFB" => "Computer systems back-up & data recovery",
13692    "UTG" => "Grid computing",
13693    "UTM" => "Electronic mail (email): professional",
13694    "UTN" => "Network security",
13695    "UTP" => "Networking standards & protocols",
13696    "UTR" => "Distributed systems",
13697    "UTS" => "Networking packages",
13698    "UTV" => "Virtualisation",
13699    "UTW" => "WAP networking & applications",
13700    "UTX" => "EDI (electronic data interchange)",
13701    "UY" => "Computer science",
13702    "UYA" => "Mathematical theory of computation",
13703    "UYAM" => "Maths for computer scientists",
13704    "UYD" => "Systems analysis & design",
13705    "UYF" => "Computer architecture & logic design",
13706    "UYFL" => "Assembly languages",
13707    "UYFP" => "Parallel processing",
13708    "UYM" => "Computer modelling & simulation",
13709    "UYQ" => "Artificial intelligence",
13710    "UYQE" => "Expert systems / knowledge-based systems",
13711    "UYQL" => "Natural language & machine translation",
13712    "UYQM" => "Machine learning",
13713    "UYQN" => "Neural networks & fuzzy systems",
13714    "UYQP" => "Pattern recognition",
13715    "UYQS" => "Speech recognition",
13716    "UYQV" => "Computer vision",
13717    "UYS" => "Signal processing",
13718    "UYT" => "Image processing",
13719    "UYU" => "Audio processing",
13720    "UYV" => "Virtual reality",
13721    "UYZ" => "Human-computer interaction",
13722    "UYZF" => "Information visualization",
13723    "UYZG" => "User interface design & usability",
13724    "UYZM" => "Information architecture",
13725    "V" => "Health & personal development",
13726    "VF" => "Family & health",
13727    "VFB" => "Personal safety",
13728    "VFD" => "Popular medicine & health",
13729    "VFDF" => "First aid for the home",
13730    "VFDM" => "Men's health",
13731    "VFDW" => "Women's health",
13732    "VFG" => "Home nursing & caring",
13733    "VFJ" => "Coping with personal problems",
13734    "VFJB" => "Coping with illness & specific conditions",
13735    "VFJD" => "Coping with disability",
13736    "VFJG" => "Coping with old age",
13737    "VFJJ" => "Coping with eating disorders",
13738    "VFJK" => "Coping with drug & alcohol abuse",
13739    "VFJP" => "Coping with anxiety & phobias",
13740    "VFJS" => "Coping with stress",
13741    "VFJX" => "Coping with death & bereavement",
13742    "VFL" => "Giving up smoking",
13743    "VFM" => "Fitness & diet",
13744    "VFMD" => "Diets & dieting",
13745    "VFMG" => "Exercise & workout books",
13746    "VFMS" => "Massage",
13747    "VFV" => "Family & relationships",
13748    "VFVC" => "Sex & sexuality, sex manuals",
13749    "VFVG" => "Dating, relationships, living together & marriage",
13750    "VFVK" => "Adoption",
13751    "VFVS" => "Separation & divorce",
13752    "VFVX" => "Intergenerational relationships",
13753    "VFX" => "Advice on parenting",
13754    "VFXB" => "Pregnancy, birth & baby care",
13755    "VFXB1" => "Baby names",
13756    "VFXC" => "Child care & upbringing",
13757    "VFXC1" => "Teenagers: advice for parents",
13758    "VS" => "Self-help & personal development",
13759    "VSB" => "Personal finance",
13760    "VSC" => "Advice on careers & achieving success",
13761    "VSD" => "Law, citizenship & rights for the lay person",
13762    "VSF" => "Roadcraft, driving & the Highway Code",
13763    "VSG" => "Consumer advice",
13764    "VSH" => "Housing & property for the individual - buying/selling & legal aspects",
13765    "VSK" => "Advice on education",
13766    "VSL" => "Adult literacy guides & handbooks",
13767    "VSN" => "Adult numeracy guides & handbooks",
13768    "VSP" => "Popular psychology",
13769    "VSPM" => "Assertiveness, motivation & self-esteem",
13770    "VSPT" => "Memory improvement & thinking techniques",
13771    "VSPX" => "Neuro Linguistic Programming (NLP)",
13772    "VSR" => "Retirement",
13773    "VSW" => "Living & working abroad",
13774    "VSZ" => "Green lifestyle & self-sufficiency",
13775    "VX" => "Mind, Body, Spirit",
13776    "VXA" => "Mind, Body, Spirit: thought & practice",
13777    "VXF" => "Fortune-telling & divination",
13778    "VXFA" => "Astrology",
13779    "VXFA1" => "Star signs & horoscopes",
13780    "VXFC" => "Fortune-telling by cards (cartomancy)",
13781    "VXFC1" => "Tarot",
13782    "VXFD" => "The I Ching",
13783    "VXFG" => "Graphology",
13784    "VXFJ" => "Palmistry, phrenology & physiognomy",
13785    "VXFN" => "Numerology",
13786    "VXFT" => "Clairvoyance & precognition",
13787    "VXH" => "Complementary therapies, healing & health",
13788    "VXHA" => "Alexander technique",
13789    "VXHC" => "Aromatherapy & essential oils",
13790    "VXHH" => "Homoeopathy",
13791    "VXHJ" => "Reflexology",
13792    "VXHK" => "Reiki",
13793    "VXHT" => "Traditional medicine & herbal remedies",
13794    "VXHT1" => "Chinese medicine & acupuncture",
13795    "VXHT2" => "Ayurvedic therapies",
13796    "VXM" => "Mind, body, spirit: meditation & visualisation",
13797    "VXN" => "Dreams & their interpretation",
13798    "VXP" => "Psychic powers & psychic phenomena",
13799    "VXPC" => "Crystals & colour-healing",
13800    "VXPH" => "Chakras, auras & spiritual energy",
13801    "VXPJ" => "Astral projection & out-of-body experiences",
13802    "VXPR" => "The afterlife, reincarnation & past lives",
13803    "VXPS" => "Spirit guides, angels & channelling",
13804    "VXQ" => "Unexplained phenomena / the paranormal",
13805    "VXQB" => "UFOs & extraterrestrial beings",
13806    "VXQG" => "Ghosts & poltergeists",
13807    "VXQM" => "Monsters & legendary beings",
13808    "VXV" => "Feng Shui",
13809    "VXW" => "Mysticism, magic & ritual",
13810    "VXWK" => "Kabbalah: popular works",
13811    "VXWM" => "Magic, spells & alchemy",
13812    "VXWS" => "Shamanism, paganism & druidry",
13813    "VXWT" => "Witchcraft & Wicca",
13814    "W" => "Lifestyle, sport & leisure",
13815    "WB" => "Cookery / food & drink etc",
13816    "WBA" => "General cookery & recipes",
13817    "WBB" => "TV / celebrity chef cookbooks",
13818    "WBC" => "Cooking for one",
13819    "WBD" => "Budget cookery",
13820    "WBF" => "Quick & easy cooking",
13821    "WBH" => "Health & wholefood cookery",
13822    "WBHS" => "Cookery for specific diets & conditions",
13823    "WBJ" => "Vegetarian cookery",
13824    "WBN" => "National & regional cuisine",
13825    "WBQ" => "Cooking for/with children",
13826    "WBR" => "Cooking for parties",
13827    "WBS" => "Cooking with specific gadgets",
13828    "WBT" => "Cookery by ingredient",
13829    "WBTB" => "Cooking with meat & game",
13830    "WBTC" => "Cooking with chicken & other poultry",
13831    "WBTF" => "Cooking with fish & seafood",
13832    "WBTH" => "Cooking with herbs & spices",
13833    "WBTP" => "Pasta dishes",
13834    "WBTR" => "Cooking with dairy products",
13835    "WBTX" => "Cooking with chocolate",
13836    "WBV" => "Cookery dishes & courses",
13837    "WBVD" => "Soups & starters",
13838    "WBVG" => "Salads",
13839    "WBVM" => "Main courses",
13840    "WBVQ" => "Desserts",
13841    "WBVS" => "Cakes, baking, icing & sugarcraft",
13842    "WBW" => "Preserving & freezing",
13843    "WBX" => "Beverages",
13844    "WBXD" => "Alcoholic beverages",
13845    "WBXD1" => "Wines",
13846    "WBXD2" => "Beers",
13847    "WBXD3" => "Spirits & cocktails",
13848    "WBXN" => "Non-alcoholic beverages",
13849    "WBZ" => "Cigars & smoking",
13850    "WC" => "Antiques & collectables",
13851    "WCB" => "Antiques & collectables: buyer's guides",
13852    "WCC" => "Care & restoration of antiques",
13853    "WCF" => "Coins, banknotes, medals, seals (numismatics)",
13854    "WCG" => "Stamps, philately",
13855    "WCJ" => "Antique clocks, watches, musical boxes & automata",
13856    "WCK" => "Militaria, arms & armour",
13857    "WCL" => "Antique furniture / furniture collecting",
13858    "WCN" => "Antiques & collectables: ceramics & glass",
13859    "WCP" => "Antiques & collectables: jewellery",
13860    "WCR" => "Antiques & collectables: gold & silver (other than jewellery)",
13861    "WCS" => "Antiques & collectables: books, manuscripts, ephemera & printed matter",
13862    "WCU" => "Antiques & collectables: pictures, prints & maps",
13863    "WCV" => "Antiques & collectables: carpets, rugs & textiles",
13864    "WCW" => "Antiques & collectables: toys, games & models",
13865    "WCX" => "Antiques & collectables: scientific & musical instruments",
13866    "WD" => "Hobbies, quizzes & games",
13867    "WDH" => "Hobbies",
13868    "WDHM" => "Model railways",
13869    "WDHR" => "Radio-controlled models",
13870    "WDHW" => "Role-playing, war games & fantasy sports",
13871    "WDJ" => "3-D images & optical illusions",
13872    "WDK" => "Puzzles & quizzes",
13873    "WDKC" => "Crosswords",
13874    "WDKN" => "Sudoku & number puzzles",
13875    "WDKX" => "Trivia & quiz question books",
13876    "WDM" => "Indoor games",
13877    "WDMC" => "Card games",
13878    "WDMC1" => "Bridge",
13879    "WDMC2" => "Poker",
13880    "WDMG" => "Board games",
13881    "WDMG1" => "Chess",
13882    "WDP" => "Gambling: theories & methods",
13883    "WF" => "Handicrafts, decorative arts & crafts",
13884    "WFA" => "Painting & art manuals",
13885    "WFB" => "Needlework & fabric crafts",
13886    "WFBC" => "Embroidery crafts",
13887    "WFBL" => "Lace & lacemaking",
13888    "WFBQ" => "Quiltmaking, patchwork & applique",
13889    "WFBS" => "Knitting & crochet",
13890    "WFBV" => "Batik & tie-dye",
13891    "WFC" => "Ropework, knots & macrame",
13892    "WFF" => "Rug & carpetmaking",
13893    "WFG" => "Spinning & weaving",
13894    "WFH" => "Toys: making & decorating",
13895    "WFJ" => "Jewellery & beadcraft",
13896    "WFK" => "Decorative finishes & surfaces",
13897    "WFL" => "Decorative wood & metalwork",
13898    "WFLF" => "Picture framing",
13899    "WFN" => "Pottery, ceramics & glass crafts",
13900    "WFS" => "Carving & modelling, moulding & casting",
13901    "WFT" => "Book & paper crafts",
13902    "WFTG" => "Greeting cards",
13903    "WFTM" => "Origami & paper engineering",
13904    "WFTS" => "Scrapbook keeping",
13905    "WFU" => "Lettering & calligraphy",
13906    "WFV" => "Rural crafts",
13907    "WFW" => "Flower arranging & floral crafts",
13908    "WG" => "Transport: general interest",
13909    "WGC" => "Road & motor vehicles: general interest",
13910    "WGCB" => "Motor cars: general interest",
13911    "WGCF" => "Buses, trams & commercial vehicles: general interest",
13912    "WGCK" => "Motorcycles: general interest",
13913    "WGCT" => "Tractors & farm vehicles: general interest",
13914    "WGCV" => "Vehicle maintenance & manuals",
13915    "WGF" => "Trains & railways: general interest",
13916    "WGG" => "Ships & boats: general interest",
13917    "WGGN" => "Narrowboats & canals",
13918    "WGGV" => "Boatbuilding & maintenance",
13919    "WGM" => "Aircraft: general interest",
13920    "WH" => "Humour",
13921    "WHC" => "Cartoons & comic strips",
13922    "WHG" => "TV tie-in humour",
13923    "WHJ" => "Jokes & riddles",
13924    "WHL" => "Slang & dialect humour",
13925    "WHP" => "Parodies & spoofs",
13926    "WHX" => "Humour collections & anthologies",
13927    "WJ" => "Lifestyle & personal style guides",
13928    "WJF" => "Fashion & style guides",
13929    "WJH" => "Cosmetics, hair & beauty",
13930    "WJK" => "Interior design, decor & style guides",
13931    "WJS" => "Shopping guides",
13932    "WJW" => "Weddings, wedding planners",
13933    "WJX" => "Parties, etiquette & entertaining",
13934    "WK" => "Home & house maintenance",
13935    "WKD" => "DIY: general",
13936    "WKDM" => "DIY: house maintenance manuals",
13937    "WKDW" => "DIY: carpentry & woodworking",
13938    "WKH" => "Household hints",
13939    "WKR" => "Home renovation & extension",
13940    "WM" => "Gardening",
13941    "WMB" => "Gardens (descriptions, history etc)",
13942    "WMD" => "Garden design & planning",
13943    "WMF" => "Greenhouses, conservatories, patios",
13944    "WMP" => "Gardening: plants",
13945    "WMPC" => "Gardening: flowers",
13946    "WMPF" => "Gardening: growing fruit & vegetables",
13947    "WMPH" => "Gardening: herbs",
13948    "WMPM" => "Succulents & cacti",
13949    "WMPS" => "Gardening: shrubs & trees",
13950    "WMPX" => "House plants",
13951    "WMQ" => "Specialized gardening methods",
13952    "WMQB" => "Bonsai",
13953    "WMQF" => "Organic gardening",
13954    "WMQL" => "Landscape gardening",
13955    "WMQN" => "Natural & wild gardening",
13956    "WMQP" => "Gardening with native plants",
13957    "WMQR" => "Container gardening",
13958    "WMQW" => "Water gardens, pools",
13959    "WMT" => "Allotments",
13960    "WN" => "Natural history",
13961    "WNA" => "Dinosaurs & the prehistoric world",
13962    "WNC" => "Wildlife: general interest",
13963    "WNCB" => "Wildlife: birds & birdwatching",
13964    "WNCF" => "Wildlife: mammals",
13965    "WNCK" => "Wildlife: reptiles & amphibians",
13966    "WNCN" => "Wildlife: butterflies, other insects & spiders",
13967    "WNCS" => "Wildlife: aquatic creatures",
13968    "WNCS1" => "Sea life & the seashore",
13969    "WNCS2" => "Freshwater life",
13970    "WND" => "The countryside, country life",
13971    "WNF" => "Farm & working animals",
13972    "WNG" => "Domestic animals & pets",
13973    "WNGC" => "Cats as pets",
13974    "WNGD" => "Dogs as pets",
13975    "WNGD1" => "Dog obedience & training",
13976    "WNGF" => "Fishes & aquaria",
13977    "WNGH" => "Horses & ponies",
13978    "WNGK" => "Birds, including cage birds, as pets",
13979    "WNGR" => "Rabbits & rodents as pets",
13980    "WNGS" => "Reptiles & amphibians as pets",
13981    "WNGX" => "Insects & spiders as pets",
13982    "WNH" => "Zoos & wildlife parks",
13983    "WNP" => "Trees, wildflowers & plants",
13984    "WNR" => "Rocks, minerals & fossils",
13985    "WNW" => "The Earth: natural history general",
13986    "WNWM" => "Weather",
13987    "WNX" => "Popular astronomy & space",
13988    "WQ" => "Local interest, family history & nostalgia",
13989    "WQH" => "Local history",
13990    "WQN" => "Nostalgia: general",
13991    "WQP" => "Places in old photographs",
13992    "WQY" => "Family history, tracing ancestors",
13993    "WS" => "Sports & outdoor recreation",
13994    "WSB" => "Sporting events & management",
13995    "WSBB" => "Olympic & Paralympic games",
13996    "WSBG" => "Sports governing bodies",
13997    "WSBM" => "Sports management & facilities",
13998    "WSBT" => "Sports teams & clubs",
13999    "WSBV" => "Sporting venues",
14000    "WSBX" => "History of sport",
14001    "WSC" => "Disability sports",
14002    "WSD" => "Sports training & coaching",
14003    "WSDF" => "Sport science, physical education",
14004    "WSDP" => "Sports psychology",
14005    "WSDX" => "Drug abuse in sport",
14006    "WSE" => "Extreme sports",
14007    "WSF" => "Air sports & recreations",
14008    "WSJ" => "Ball games",
14009    "WSJA" => "Football (Soccer, Association football)",
14010    "WSJA1" => "World Cup",
14011    "WSJC" => "Cricket",
14012    "WSJF" => "Rugby football",
14013    "WSJF1" => "Rugby Union",
14014    "WSJF2" => "Rugby League",
14015    "WSJG" => "Golf",
14016    "WSJH" => "Hockey",
14017    "WSJJ" => "Lacrosse",
14018    "WSJK" => "Hurling",
14019    "WSJL" => "Gaelic football",
14020    "WSJM" => "Basketball",
14021    "WSJN" => "Netball",
14022    "WSJQ" => "Australian Rules football",
14023    "WSJR" => "Racket games",
14024    "WSJR2" => "Tennis",
14025    "WSJR3" => "Badminton",
14026    "WSJR4" => "Squash & rackets",
14027    "WSJR5" => "Table tennis",
14028    "WSJS" => "American football",
14029    "WSJT" => "Baseball",
14030    "WSJV" => "Volleyball",
14031    "WSJY" => "Bowls, bowling, petanque",
14032    "WSJZ" => "Snooker, billiards, pool",
14033    "WSK" => "Track & field sports, athletics",
14034    "WSKC" => "Marathon & cross-country running",
14035    "WSKQ" => "Multidiscipline sports",
14036    "WSL" => "Gymnastics",
14037    "WSM" => "Weightlifting",
14038    "WSN" => "Equestrian & animal sports",
14039    "WSNB" => "Horse racing",
14040    "WSNF" => "Riding, showjumping & horsemanship",
14041    "WSNP" => "Greyhound racing",
14042    "WSP" => "Motor sports",
14043    "WSPC" => "Car racing",
14044    "WSPC1" => "Formula 1 & Grand Prix",
14045    "WSPG" => "Motor rallying / rally driving",
14046    "WSPM" => "Motorcycle racing",
14047    "WSQ" => "Cycling",
14048    "WSR" => "Rollerblading, skateboarding, etc",
14049    "WSS" => "Water sports & recreations",
14050    "WSSC" => "Swimming & diving",
14051    "WSSC1" => "Sub-aqua swimming",
14052    "WSSG" => "Surfing, windsurfing, water skiing",
14053    "WSSN" => "Boating",
14054    "WSSN1" => "Motor / power boating & cruising",
14055    "WSSN3" => "Sailing",
14056    "WSSN5" => "Canoeing & kayaking",
14057    "WSSN7" => "Rowing",
14058    "WST" => "Combat sports & self-defence",
14059    "WSTB" => "Boxing",
14060    "WSTC" => "Wrestling",
14061    "WSTF" => "Fencing",
14062    "WSTM" => "Oriental martial arts",
14063    "WSU" => "Bodybuilding",
14064    "WSW" => "Winter sports",
14065    "WSWK" => "Skiing",
14066    "WSWM" => "Snowboarding",
14067    "WSWS" => "Ice-skating",
14068    "WSWY" => "Ice hockey",
14069    "WSX" => "Field sports: fishing, hunting, shooting",
14070    "WSXF" => "Fishing, angling",
14071    "WSXH" => "Hunting or shooting animals & game",
14072    "WSXR" => "Archery",
14073    "WSXS" => "Small firearms, guns & other equipment",
14074    "WSXT" => "Target shooting",
14075    "WSZ" => "Active outdoor pursuits",
14076    "WSZC" => "Walking, hiking, trekking",
14077    "WSZG" => "Climbing & mountaineering",
14078    "WSZK" => "Orienteering",
14079    "WSZN" => "Caving & potholing",
14080    "WSZR" => "Camping & woodcraft",
14081    "WSZV" => "Outdoor survival skills",
14082    "WT" => "Travel & holiday",
14083    "WTD" => "Travel tips & advice: general",
14084    "WTH" => "Travel & holiday guides",
14085    "WTHA" => "Adventure holidays",
14086    "WTHB" => "Business travel",
14087    "WTHC" => "Eco-tourist guides",
14088    "WTHF" => "Travel with children / family holidays",
14089    "WTHH" => "Hotel & holiday accommodation guides",
14090    "WTHH1" => "Caravan & camp-site guides",
14091    "WTHM" => "Museum, historic sites, gallery & art guides",
14092    "WTHR" => "Restaurant, cafe & pub guides",
14093    "WTHT" => "Theme parks & funfairs",
14094    "WTHX" => "Cruises",
14095    "WTK" => "Language phrasebooks",
14096    "WTL" => "Travel writing",
14097    "WTLC" => "Classic travel writing",
14098    "WTLP" => "Expeditions",
14099    "WTM" => "Places & peoples: general & pictorial works",
14100    "WTR" => "Travel maps & atlases",
14101    "WTRD" => "Road atlases & maps",
14102    "WTRM" => "Travel maps",
14103    "WTRS" => "Street maps & city plans",
14104    "WZ" => "Miscellaneous items",
14105    "WZG" => "Gift books",
14106    "WZS" => "Stationery items",
14107    "Y" => "Children's, Teenage & educational",
14108    "YB" => "Picture books, activity books & early learning material",
14109    "YBC" => "Picture books",
14110    "YBCB" => "Baby books",
14111    "YBCH" => "Picture books: character books",
14112    "YBCS" => "Picture storybooks",
14113    "YBG" => "Interactive & activity books & packs",
14114    "YBGC" => "Colouring & painting activity books",
14115    "YBGK" => "Press out & kit books",
14116    "YBGP" => "Pop-up & lift-the-flap books",
14117    "YBGS" => "Sticker & stamp books",
14118    "YBGT" => "Novelty, toy & die-cut books",
14119    "YBGT1" => "Sound story, noisy books, musical books",
14120    "YBGT3" => "Touch & feel books",
14121    "YBGT5" => "Magnet books",
14122    "YBGT7" => "Jigsaw books",
14123    "YBL" => "Early learning / early learning concepts",
14124    "YBLA" => "Early learning: ABC books / alphabet books",
14125    "YBLA1" => "Early learning: first word books",
14126    "YBLB" => "Early learning: rhyming & wordplay books",
14127    "YBLB1" => "Early learning: verse & rhymes",
14128    "YBLC" => "Early learning: numbers & counting",
14129    "YBLD" => "Early learning: colours",
14130    "YBLF" => "Early learning: opposites",
14131    "YBLH" => "Early learning: size, shapes & patterns",
14132    "YBLJ" => "Early learning: time & seasons",
14133    "YBLJ1" => "Early learning: telling the time",
14134    "YBLN" => "Early learning: first experiences",
14135    "YBLN1" => "Early learning: the senses",
14136    "YBLP" => "Early learning: people who help us",
14137    "YBLT" => "Early learning: things that go",
14138    "YD" => "Children's / Teenage poetry, anthologies, annuals",
14139    "YDA" => "Annuals (Children's / Teenage)",
14140    "YDC" => "Anthologies (Children's / Teenage)",
14141    "YDP" => "Poetry (Children's / Teenage)",
14142    "YF" => "Children's / Teenage fiction & true stories",
14143    "YFA" => "Classic fiction (Children's / Teenage)",
14144    "YFB" => "General fiction (Children's / Teenage)",
14145    "YFC" => "Adventure stories (Children's / Teenage)",
14146    "YFCB" => "Thrillers (Children's / Teenage)",
14147    "YFCF" => "Crime & mystery fiction (Children's / Teenage)",
14148    "YFD" => "Horror & ghost stories, chillers (Children's / Teenage)",
14149    "YFG" => "Science fiction (Children's / Teenage)",
14150    "YFH" => "Fantasy & magical realism (Children's / Teenage)",
14151    "YFHR" => "Fantasy romance (Teenage)",
14152    "YFJ" => "Traditional stories (Children's / Teenage)",
14153    "YFM" => "Romance & relationships stories (Children's / Teenage)",
14154    "YFN" => "Family & home stories (Children's / Teenage)",
14155    "YFP" => "Animal stories (Children's / Teenage)",
14156    "YFQ" => "Humorous stories (Children's / Teenage)",
14157    "YFR" => "Sporting stories (Children's / Teenage)",
14158    "YFS" => "School stories (Children's / Teenage)",
14159    "YFT" => "Historical fiction (Children's / Teenage)",
14160    "YFU" => "Short stories (Children's / Teenage)",
14161    "YFW" => "Comic strip fiction / graphic novels (Children's / Teenage)",
14162    "YFY" => "True stories (Children's / Teenage)",
14163    "YN" => "Children's / Teenage: general non-fiction",
14164    "YNA" => "Art: general interest (Children's / Teenage)",
14165    "YNC" => "Music: general interest (Children's / Teenage)",
14166    "YNCP" => "Pop music (Children's / Teenage)",
14167    "YND" => "Drama & performing (Children's / Teenage)",
14168    "YNDB" => "Dance, ballet (Children's / Teenage)",
14169    "YNDS" => "Playscripts (Children's / Teenage)",
14170    "YNF" => "Television & film (Children's / Teenage)",
14171    "YNG" => "General knowledge & trivia (Children's / Teenage)",
14172    "YNGL" => "Libraries, museums, schools (Children's / Teenage)",
14173    "YNH" => "History & the past: general interest (Children's / Teenage)",
14174    "YNJ" => "Warfare, battles, armed forces (Children's / Teenage)",
14175    "YNK" => "Work & industry / world of work (Children's / Teenage)",
14176    "YNL" => "Literature, books & writers (Children’s/Teenage)",
14177    "YNM" => "People & places (Children's / Teenage)",
14178    "YNN" => "Natural history (Children’s/Teenage)",
14179    "YNNA" => "Dinosaurs & prehistoric world (Children's / Teenage)",
14180    "YNND" => "Pets (Children's / Teenage)",
14181    "YNNF" => "Farm animals (Children's / Teenage)",
14182    "YNNR" => "Wildlife (Children's / Teenage)",
14183    "YNP" => "Practical interests (Children's / Teenage)",
14184    "YNPC" => "Cooking & food (Children's / Teenage)",
14185    "YNPG" => "Gardening (Children's / Teenage)",
14186    "YNPH" => "Handicrafts (Children's / Teenage)",
14187    "YNPK" => "Money (Children's / Teenage)",
14188    "YNR" => "Religion & beliefs: general interest (Children's / Teenage)",
14189    "YNRB" => "Bibles & bible stories (Children's / Teenage)",
14190    "YNT" => "Science & technology: general interest (Children's / Teenage)",
14191    "YNTB" => "Buildings & construction (Children's / Teenage)",
14192    "YNTR" => "Transport (Children's / Teenage)",
14193    "YNTS" => "Space (Children's / Teenage)",
14194    "YNU" => "Humour & jokes (Children's / Teenage)",
14195    "YNUC" => "Cartoons & comic strips (Children's / Teenage)",
14196    "YNV" => "Hobbies, quizzes & games (Children's / Teenage)",
14197    "YNVP" => "Puzzle books (Children's / Teenage)",
14198    "YNVU" => "Computer game guides (Children's / Teenage)",
14199    "YNW" => "Sports & outdoor recreation (Children's / Teenage)",
14200    "YNWA" => "Football / soccer (Children's / Teenage)",
14201    "YNWB" => "Rugby (Children's / Teenage)",
14202    "YNWC" => "Cricket (Children's / Teenage)",
14203    "YNWG" => "Athletics & gymnastics (Children's / Teenage)",
14204    "YNWW" => "Swimming & water sports (Children's / Teenage)",
14205    "YNWY" => "Cycling, boarding & skating (Children's / Teenage)",
14206    "YNX" => "Mysteries, the supernatural, monsters & mythological beings (Children’s/Teenage)",
14207    "YNXF" => "UFOs & extraterrestrial beings (Children's / Teenage)",
14208    "YNXW" => "Witches & ghosts (Children's / Teenage)",
14209    "YQ" => "Educational material",
14210    "YQA" => "Educational: Art & design",
14211    "YQB" => "Educational: Music",
14212    "YQC" => "Educational: English language & literacy",
14213    "YQCR" => "Educational: English language: readers & reading schemes",
14214    "YQCR5" => "Educational: English language: readers & reading schemes: Synthetic Phonics",
14215    "YQCS" => "Educational: English language: reading & writing skills",
14216    "YQCS1" => "Educational: writing skills: handwriting",
14217    "YQCS5" => "Educational: English language: reading skills: Synthetic Phonics",
14218    "YQD" => "Educational: drama studies",
14219    "YQE" => "Educational: English literature",
14220    "YQEF" => "School editions of English literature fiction texts",
14221    "YQES" => "School editions of Shakespeare",
14222    "YQF" => "Educational: Languages other than English",
14223    "YQFL" => "Educational: literature in languages other than English",
14224    "YQG" => "Educational: Geography",
14225    "YQH" => "Educational: History",
14226    "YQJ" => "Educational: Social sciences",
14227    "YQJP" => "Educational: Psychology",
14228    "YQM" => "Educational: Mathematics & numeracy",
14229    "YQMT" => "Educational: Mathematics & numeracy: times tables",
14230    "YQN" => "Educational: Citizenship & social education",
14231    "YQNP" => "Educational: Personal, social & health education (PSHE)",
14232    "YQR" => "Educational: Religious studies",
14233    "YQRA" => "Educational: school assembly resource material",
14234    "YQRC" => "Educational: Religious studies: Christianity",
14235    "YQRN" => "Educational: Religious studies: Non-Christian religions",
14236    "YQRN1" => "Educational: Religious studies: Judaism",
14237    "YQRN2" => "Educational: Religious studies: Islam",
14238    "YQRN3" => "Educational: Religious studies: Hinduism",
14239    "YQRN4" => "Educational: Religious studies: Buddhism",
14240    "YQS" => "Educational: Sciences, general science",
14241    "YQSB" => "Educational: Biology",
14242    "YQSC" => "Educational: Chemistry",
14243    "YQSP" => "Educational: Physics",
14244    "YQT" => "Educational: Technology",
14245    "YQTD" => "Educational: Design & technology",
14246    "YQTF" => "Educational: Food technology",
14247    "YQTU" => "Educational: IT & computing, ICT",
14248    "YQV" => "Educational: Business studies & economics",
14249    "YQW" => "Educational: Physical education (including dance)",
14250    "YQX" => "Educational: General studies / study skills general",
14251    "YQY" => "Educational: Vocational subjects",
14252    "YQZ" => "Educational: study & revision guides",
14253    "YR" => "Reference material (Children's / Teenage)",
14254    "YRD" => "Dictionaries, school dictionaries (Children's / Teenage)",
14255    "YRDC" => "Picture dictionaries (Children's / Teenage)",
14256    "YRDL" => "Bilingual/multilingual dictionaries (Children's / Teenage)",
14257    "YRE" => "Encyclopaedias (Children's / Teenage)",
14258    "YRG" => "Reference works (Children's / Teenage)",
14259    "YRW" => "Atlases & maps (Children’s/Teenage)",
14260    "YX" => "Personal & social issues (Children's / Teenage)",
14261    "YXA" => "Personal & social issues: body & health (Children's / Teenage)",
14262    "YXAX" => "Personal & social issues: sex education & the facts of life (Children's / Teenage)",
14263    "YXC" => "Personal & social issues: bullying, violence & abuse (Children's / Teenage)",
14264    "YXF" => "Personal & social issues: family issues (Children's / Teenage)",
14265    "YXFD" => "Personal & social issues: divorce, separation, family break-up (Children's / Teenage)",
14266    "YXFM" => "Personal & social issues: siblings (Children's / Teenage)",
14267    "YXFT" => "Personal & social issues: teenage pregnancy (Children's / Teenage)",
14268    "YXG" => "Personal & social issues: death & bereavement (Children's / Teenage)",
14269    "YXJ" => "Personal & social issues: drugs & addiction (Children's / Teenage)",
14270    "YXK" => "Personal & social issues: disability & special needs (Children's / Teenage)",
14271    "YXL" => "Personal & social issues: self-awareness & self-esteem (Children's / Teenage)",
14272    "YXN" => "Personal & social issues: racism & multiculturalism (Children's / Teenage)",
14273    "YXS" => "Personal & social issues: sexuality & relationships (Children's / Teenage)",
14274    "YXT" => "Personal & social issues: truancy & school problems (Children's / Teenage)",
14275    "YXV" => "Personal & social issues: careers guidance (Teenage)",
14276    "YXZ" => "Social issues (Children's / Teenage)",
14277    "YXZG" => "Social issues: environment & green issues (Children's / Teenage)",
14278    "YXZR" => "Social issues: religious issues (Children's / Teenage)",
14279    "YXZW" => "Social issues: war & conflict issues (Children's / Teenage)",
14280    "YZ" => "Stationery & miscellaneous items (Children's / Teenage)",
14281    "1D" => "Europe",
14282    "1DB" => "British Isles",
14283    "1DBK" => "United Kingdom, Great Britain",
14284    "1DBKE" => "England",
14285    "1DBKEA" => "East Anglia",
14286    "1DBKEAC" => "Cambridgeshire",
14287    "1DBKEAL" => "Lincolnshire",
14288    "1DBKEAN" => "Norfolk",
14289    "1DBKEAS" => "Suffolk",
14290    "1DBKEAX" => "Essex",
14291    "1DBKEM" => "Midlands",
14292    "1DBKEMD" => "Derbyshire & Peak District",
14293    "1DBKEMF" => "Herefordshire",
14294    "1DBKEML" => "Leicestershire",
14295    "1DBKEMM" => "Northamptonshire",
14296    "1DBKEMN" => "Nottinghamshire",
14297    "1DBKEMP" => "Shropshire",
14298    "1DBKEMR" => "Rutland",
14299    "1DBKEMS" => "Staffordshire",
14300    "1DBKEMT" => "Worcestershire",
14301    "1DBKEMW" => "Warwickshire, West Midlands",
14302    "1DBKEN" => "North West England",
14303    "1DBKENC" => "Cheshire",
14304    "1DBKENL" => "Lancashire, Greater Manchester, Merseyside",
14305    "1DBKENM" => "Cumbria & Lake District",
14306    "1DBKES" => "South & South East England",
14307    "1DBKESB" => "Berkshire",
14308    "1DBKESD" => "Bedfordshire",
14309    "1DBKESF" => "Oxfordshire",
14310    "1DBKESH" => "Hampshire",
14311    "1DBKESK" => "Kent",
14312    "1DBKESL" => "London, Greater London",
14313    "1DBKESR" => "Surrey",
14314    "1DBKEST" => "Hertfordshire",
14315    "1DBKESU" => "Buckinghamshire",
14316    "1DBKESW" => "Isle of Wight",
14317    "1DBKESX" => "Sussex",
14318    "1DBKEW" => "South West England",
14319    "1DBKEWC" => "Cornwall",
14320    "1DBKEWD" => "Devon",
14321    "1DBKEWG" => "Gloucestershire",
14322    "1DBKEWS" => "Somerset, Bristol",
14323    "1DBKEWT" => "Dorset",
14324    "1DBKEWW" => "Wiltshire",
14325    "1DBKEY" => "North & North East England",
14326    "1DBKEYD" => "Durham",
14327    "1DBKEYK" => "Yorkshire",
14328    "1DBKEYN" => "Northumberland, Tyne & Wear",
14329    "1DBKN" => "Northern Ireland",
14330    "1DBKS" => "Scotland",
14331    "1DBKSB" => "Lowland Scotland & Borders",
14332    "1DBKSC" => "Central Scotland",
14333    "1DBKSH" => "Northern Scotland, Highlands & Islands",
14334    "1DBKSHF" => "Orkney Islands",
14335    "1DBKSHJ" => "Shetland Islands",
14336    "1DBKSHL" => "Western Isles, Outer Hebrides",
14337    "1DBKSHQ" => "Isle of Skye",
14338    "1DBKW" => "Wales",
14339    "1DBKWC" => "Mid Wales",
14340    "1DBKWN" => "North Wales",
14341    "1DBKWS" => "South Wales",
14342    "1DBKWV" => "Southwest Wales",
14343    "1DBKX" => "Channel Islands",
14344    "1DBKZ" => "Isle of Man",
14345    "1DBR" => "Ireland",
14346    "1DD" => "Western Continental Europe",
14347    "1DDB" => "Belgium",
14348    "1DDF" => "France",
14349    "1DDFC" => "Corsica",
14350    "1DDFM" => "Monaco",
14351    "1DDL" => "Luxembourg",
14352    "1DDN" => "Netherlands",
14353    "1DF" => "Central Europe",
14354    "1DFA" => "Austria",
14355    "1DFG" => "Germany",
14356    "1DFGE" => "East Germany, DDR",
14357    "1DFGW" => "West Germany",
14358    "1DFH" => "Switzerland",
14359    "1DFHA" => "Alps",
14360    "1DFL" => "Liechtenstein",
14361    "1DN" => "Northern Europe, Scandinavia",
14362    "1DNC" => "Iceland",
14363    "1DND" => "Denmark",
14364    "1DNDF" => "Faroe Islands",
14365    "1DNF" => "Finland",
14366    "1DNN" => "Norway",
14367    "1DNS" => "Sweden",
14368    "1DS" => "Southern Europe",
14369    "1DSE" => "Spain",
14370    "1DSEB" => "Balearic islands",
14371    "1DSEP" => "Pyrenees",
14372    "1DSG" => "Gibraltar",
14373    "1DSM" => "Malta",
14374    "1DSN" => "Andorra",
14375    "1DSP" => "Portugal",
14376    "1DST" => "Italy",
14377    "1DSTA" => "Sardinia",
14378    "1DSTC" => "Sicily",
14379    "1DSU" => "San Marino",
14380    "1DSV" => "Vatican",
14381    "1DV" => "Eastern Europe",
14382    "1DVC" => "Cyprus",
14383    "1DVG" => "Greece",
14384    "1DVGS" => "Greek islands",
14385    "1DVGSC" => "Crete",
14386    "1DVH" => "Hungary",
14387    "1DVK" => "Former Czechoslovakia",
14388    "1DVKC" => "Czech Republic",
14389    "1DVKS" => "Slovakia",
14390    "1DVP" => "Poland",
14391    "1DVT" => "Turkey",
14392    "1DVU" => "Former Soviet Union, USSR (Europe)",
14393    "1DVUA" => "Russia",
14394    "1DVUAC" => "Chechnya",
14395    "1DVUB" => "Belarus (Belorussia)",
14396    "1DVUC" => "Latvia",
14397    "1DVUE" => "Estonia",
14398    "1DVUF" => "Lithuania",
14399    "1DVUG" => "Georgia",
14400    "1DVUK" => "Ukraine",
14401    "1DVUM" => "Moldova (Moldavia)",
14402    "1DVUR" => "Armenia",
14403    "1DVUZ" => "Azerbaijan",
14404    "1DVW" => "Southeast Europe",
14405    "1DVWA" => "Albania",
14406    "1DVWB" => "Bulgaria",
14407    "1DVWR" => "Romania",
14408    "1DVWY" => "Yugoslavia & former Yugoslavia",
14409    "1DVWYB" => "Bosnia-Herzegovina",
14410    "1DVWYC" => "Croatia",
14411    "1DVWYK" => "Kosovo",
14412    "1DVWYM" => "Macedonia",
14413    "1DVWYN" => "Montenegro",
14414    "1DVWYS" => "Serbia",
14415    "1DVWYV" => "Slovenia",
14416    "1F" => "Asia",
14417    "1FB" => "Middle East",
14418    "1FBH" => "Israel",
14419    "1FBJ" => "Jordan",
14420    "1FBL" => "Lebanon",
14421    "1FBN" => "Iran",
14422    "1FBP" => "Palestine",
14423    "1FBQ" => "Iraq",
14424    "1FBS" => "Syria",
14425    "1FBX" => "Arabian peninsula",
14426    "1FBXB" => "Bahrain",
14427    "1FBXK" => "Kuwait",
14428    "1FBXM" => "Oman",
14429    "1FBXQ" => "Qatar",
14430    "1FBXS" => "Saudi Arabia",
14431    "1FBXU" => "United Arab Emirates",
14432    "1FBXY" => "Yemen",
14433    "1FC" => "Central Asia",
14434    "1FCA" => "Afghanistan",
14435    "1FCD" => "Tajikistan (Tadzhikistan)",
14436    "1FCK" => "Kyrgyzstan (Kirghizstan, Kirghizia)",
14437    "1FCS" => "Siberia",
14438    "1FCT" => "Turkmenistan",
14439    "1FCU" => "Uzbekistan",
14440    "1FCZ" => "Kazakhstan",
14441    "1FK" => "Indian sub-continent",
14442    "1FKA" => "India",
14443    "1FKAH" => "Himalayas",
14444    "1FKAS" => "Andaman & Nicobar Islands",
14445    "1FKB" => "Bangladesh",
14446    "1FKH" => "Bhutan",
14447    "1FKN" => "Nepal",
14448    "1FKP" => "Pakistan",
14449    "1FKS" => "Sri Lanka (Ceylon)",
14450    "1FM" => "South East Asia",
14451    "1FMB" => "Myanmar (Burma)",
14452    "1FMC" => "Cambodia",
14453    "1FML" => "Laos",
14454    "1FMM" => "Malaysia",
14455    "1FMN" => "Indonesia",
14456    "1FMNB" => "Bali",
14457    "1FMNT" => "East Timor",
14458    "1FMNX" => "Borneo",
14459    "1FMP" => "Philippines",
14460    "1FMR" => "Brunei",
14461    "1FMS" => "Singapore",
14462    "1FMT" => "Thailand",
14463    "1FMV" => "Vietnam",
14464    "1FP" => "East Asia, Far East",
14465    "1FPC" => "China",
14466    "1FPCH" => "Hong Kong",
14467    "1FPCM" => "Macao",
14468    "1FPCT" => "Tibet",
14469    "1FPCW" => "Taiwan",
14470    "1FPJ" => "Japan",
14471    "1FPK" => "Korea",
14472    "1FPKN" => "North Korea",
14473    "1FPKS" => "South Korea",
14474    "1FPM" => "Mongolia",
14475    "1H" => "Africa",
14476    "1HB" => "North Africa",
14477    "1HBA" => "Algeria",
14478    "1HBC" => "Chad",
14479    "1HBE" => "Egypt",
14480    "1HBEN" => "Nile river",
14481    "1HBES" => "Suez canal",
14482    "1HBL" => "Libya",
14483    "1HBM" => "Morocco",
14484    "1HBMA" => "Atlas Mountains",
14485    "1HBS" => "Sudan",
14486    "1HBT" => "Tunisia",
14487    "1HBW" => "Western Sahara",
14488    "1HBX" => "The Sahara",
14489    "1HF" => "Sub-Saharan Africa",
14490    "1HFD" => "West Africa",
14491    "1HFDA" => "Mauritania",
14492    "1HFDB" => "Benin",
14493    "1HFDE" => "Sierra Leone",
14494    "1HFDF" => "Burkina Faso",
14495    "1HFDG" => "Gambia",
14496    "1HFDH" => "Ghana",
14497    "1HFDL" => "Liberia",
14498    "1HFDM" => "Mali",
14499    "1HFDN" => "Nigeria",
14500    "1HFDR" => "Niger",
14501    "1HFDS" => "Senegal",
14502    "1HFDT" => "Togo",
14503    "1HFDU" => "Guinea",
14504    "1HFDV" => "Cape Verde",
14505    "1HFDX" => "Guinea-Bissau",
14506    "1HFDY" => "Ivory Coast",
14507    "1HFG" => "East Africa",
14508    "1HFGA" => "Ethiopia",
14509    "1HFGD" => "Djibouti",
14510    "1HFGE" => "Eritrea",
14511    "1HFGK" => "Kenya",
14512    "1HFGQ" => "Burundi",
14513    "1HFGR" => "Rwanda",
14514    "1HFGS" => "Somalia",
14515    "1HFGSR" => "Republic of Somaliland",
14516    "1HFGT" => "Tanzania",
14517    "1HFGU" => "Uganda",
14518    "1HFJ" => "Central Africa",
14519    "1HFJA" => "Cameroon",
14520    "1HFJC" => "Congo",
14521    "1HFJG" => "Gabon",
14522    "1HFJQ" => "Equatorial Guinea",
14523    "1HFJR" => "Central African Republic",
14524    "1HFJS" => "Sao Tome & Principe",
14525    "1HFJZ" => "Democratic Republic of Congo (Zaire)",
14526    "1HFM" => "Southern Africa",
14527    "1HFMA" => "Angola",
14528    "1HFMB" => "Botswana",
14529    "1HFMK" => "Swaziland",
14530    "1HFML" => "Lesotho",
14531    "1HFMM" => "Malawi",
14532    "1HFMN" => "Namibia",
14533    "1HFMQ" => "Mozambique",
14534    "1HFMQZ" => "Zambesi river",
14535    "1HFMS" => "Republic of South Africa",
14536    "1HFMW" => "Zimbabwe",
14537    "1HFMZ" => "Zambia",
14538    "1HS" => "South Indian Ocean Islands",
14539    "1HSC" => "Comoros",
14540    "1HSM" => "Madagascar",
14541    "1HSU" => "Mauritius",
14542    "1HSV" => "Maldives",
14543    "1HSY" => "Seychelles",
14544    "1K" => "The Americas",
14545    "1KB" => "North America",
14546    "1KBB" => "USA",
14547    "1KBBE" => "Northeastern & North Atlantic states",
14548    "1KBBEC" => "Connecticut",
14549    "1KBBEH" => "New Hampshire",
14550    "1KBBEJ" => "New Jersey",
14551    "1KBBEN" => "Maine",
14552    "1KBBEP" => "Pennsylvania",
14553    "1KBBER" => "Rhode Island",
14554    "1KBBES" => "Massachusetts",
14555    "1KBBEV" => "Vermont",
14556    "1KBBEY" => "New York",
14557    "1KBBF" => "Southeastern & South Atlantic states",
14558    "1KBBFC" => "District of Columbia (Washington, DC)",
14559    "1KBBFD" => "Delaware",
14560    "1KBBFG" => "Georgia",
14561    "1KBBFL" => "Florida",
14562    "1KBBFM" => "Maryland",
14563    "1KBBFN" => "North Carolina",
14564    "1KBBFS" => "South Carolina",
14565    "1KBBFV" => "Virginia",
14566    "1KBBFW" => "West Virginia",
14567    "1KBBN" => "North Central & Mid-West states",
14568    "1KBBNC" => "Illinois",
14569    "1KBBND" => "Indiana",
14570    "1KBBNF" => "Iowa",
14571    "1KBBNG" => "Michigan",
14572    "1KBBNH" => "Ohio",
14573    "1KBBNK" => "Kansas",
14574    "1KBBNN" => "Nebraska",
14575    "1KBBNR" => "North Dakota",
14576    "1KBBNS" => "South Dakota",
14577    "1KBBNT" => "Minnesota",
14578    "1KBBNU" => "Missouri",
14579    "1KBBNW" => "Wisconsin",
14580    "1KBBS" => "Central Southern states",
14581    "1KBBSB" => "Alabama",
14582    "1KBBSH" => "Oklahoma",
14583    "1KBBSK" => "Kentucky",
14584    "1KBBSL" => "Louisiana",
14585    "1KBBSM" => "Mississippi",
14586    "1KBBSN" => "Tennessee",
14587    "1KBBSR" => "Arkansas",
14588    "1KBBSX" => "Texas",
14589    "1KBBW" => "Western & Pacific Coast states",
14590    "1KBBWC" => "Colorado",
14591    "1KBBWD" => "Idaho",
14592    "1KBBWF" => "California",
14593    "1KBBWK" => "Alaska",
14594    "1KBBWM" => "Montana",
14595    "1KBBWN" => "Nevada",
14596    "1KBBWR" => "Oregon",
14597    "1KBBWS" => "Washington state",
14598    "1KBBWU" => "Utah",
14599    "1KBBWX" => "New Mexico",
14600    "1KBBWY" => "Wyoming",
14601    "1KBBWZ" => "Arizona",
14602    "1KBC" => "Canada",
14603    "1KBCB" => "British Columbia",
14604    "1KBCF" => "Newfoundland",
14605    "1KBCL" => "Alberta",
14606    "1KBCM" => "Manitoba",
14607    "1KBCN" => "Nunavut",
14608    "1KBCO" => "Ontario",
14609    "1KBCP" => "Prince Edward Island",
14610    "1KBCQ" => "Quebec",
14611    "1KBCR" => "New Brunswick",
14612    "1KBCS" => "Saskatchewan",
14613    "1KBCV" => "Nova Scotia",
14614    "1KBCW" => "Northwest Territories",
14615    "1KBCY" => "Yukon Territory",
14616    "1KBG" => "Great Lakes",
14617    "1KJ" => "Caribbean islands",
14618    "1KJC" => "Cuba",
14619    "1KJD" => "Dominican Republic",
14620    "1KJH" => "Haiti",
14621    "1KJM" => "Cayman Islands",
14622    "1KJP" => "Puerto Rico",
14623    "1KJW" => "West Indies",
14624    "1KJWB" => "Bahamas",
14625    "1KJWJ" => "Jamaica",
14626    "1KJWT" => "Turks & Caicos Islands",
14627    "1KJWV" => "Leeward Islands",
14628    "1KJWVA" => "Anguilla",
14629    "1KJWVB" => "Antigua & Barbuda",
14630    "1KJWVG" => "Guadeloupe",
14631    "1KJWVK" => "St Kitts-Nevis",
14632    "1KJWVM" => "Montserrat",
14633    "1KJWVV" => "Virgin Islands",
14634    "1KJWVVK" => "Virgin Islands (UK)",
14635    "1KJWVVS" => "Virgin Islands (USA)",
14636    "1KJWW" => "Windward Islands",
14637    "1KJWWB" => "Barbados",
14638    "1KJWWD" => "Dominica",
14639    "1KJWWG" => "Grenada",
14640    "1KJWWL" => "St Lucia",
14641    "1KJWWM" => "Martinique",
14642    "1KJWWT" => "Trinidad & Tobago",
14643    "1KJWWV" => "St Vincent",
14644    "1KJX" => "Lesser Antilles",
14645    "1KJXA" => "Aruba",
14646    "1KJXN" => "Netherlands Antilles",
14647    "1KL" => "Latin America",
14648    "1KLC" => "Central America",
14649    "1KLCB" => "Belize",
14650    "1KLCG" => "Guatemala",
14651    "1KLCH" => "Honduras",
14652    "1KLCM" => "Mexico",
14653    "1KLCN" => "Nicaragua",
14654    "1KLCP" => "Panama",
14655    "1KLCPC" => "Panama canal",
14656    "1KLCR" => "Costa Rica",
14657    "1KLCS" => "El Salvador",
14658    "1KLS" => "South America",
14659    "1KLSA" => "Argentina",
14660    "1KLSB" => "Brazil",
14661    "1KLSBZ" => "Amazon river",
14662    "1KLSC" => "Colombia",
14663    "1KLSE" => "Ecuador",
14664    "1KLSEG" => "Galapagos Islands",
14665    "1KLSF" => "French Guiana",
14666    "1KLSG" => "Guyana",
14667    "1KLSH" => "Chile",
14668    "1KLSL" => "Bolivia",
14669    "1KLSP" => "Paraguay",
14670    "1KLSR" => "Peru",
14671    "1KLSS" => "Surinam (Suriname)",
14672    "1KLSU" => "Uruguay",
14673    "1KLSV" => "Venezuela",
14674    "1KLSX" => "Andes",
14675    "1M" => "Australasia, Oceania & other land areas",
14676    "1MB" => "Australasia",
14677    "1MBF" => "Australia",
14678    "1MBFC" => "Australian Capital Territory (ACT)",
14679    "1MBFN" => "New South Wales",
14680    "1MBFQ" => "Queensland",
14681    "1MBFS" => "South Australia",
14682    "1MBFT" => "Tasmania",
14683    "1MBFV" => "Victoria",
14684    "1MBFW" => "Western Australia",
14685    "1MBFX" => "Northern Territory",
14686    "1MBN" => "New Zealand",
14687    "1MK" => "Oceania",
14688    "1MKC" => "Micronesia",
14689    "1MKCB" => "Belau (Palau)",
14690    "1MKCC" => "Caroline Islands",
14691    "1MKCF" => "Federated States of Micronesia",
14692    "1MKCG" => "Gilbert Islands",
14693    "1MKCM" => "Marshall Islands",
14694    "1MKCN" => "Nauru",
14695    "1MKCU" => "Guam",
14696    "1MKCV" => "Northern Marianas",
14697    "1MKL" => "Melanesia",
14698    "1MKLF" => "Fiji",
14699    "1MKLN" => "New Caledonia",
14700    "1MKLP" => "Papua New Guinea",
14701    "1MKLS" => "Solomon Islands",
14702    "1MKLV" => "Vanuatu",
14703    "1MKP" => "Polynesia",
14704    "1MKPC" => "Cook Islands",
14705    "1MKPCR" => "Raratonga",
14706    "1MKPE" => "Easter Island",
14707    "1MKPF" => "French Polynesia",
14708    "1MKPFT" => "Tahiti",
14709    "1MKPH" => "Hawaii",
14710    "1MKPK" => "Kiribati",
14711    "1MKPN" => "Niue",
14712    "1MKPP" => "Pitcairn Island",
14713    "1MKPR" => "Samoa",
14714    "1MKPRA" => "American Samoa",
14715    "1MKPRW" => "Western Samoa",
14716    "1MKPT" => "Tonga",
14717    "1MKPV" => "Tuvalu",
14718    "1MKPW" => "Wallis & Futuna",
14719    "1MT" => "Other land areas",
14720    "1MTA" => "Atlantic Ocean islands",
14721    "1MTAN" => "North Atlantic islands",
14722    "1MTANB" => "Bermuda",
14723    "1MTANC" => "Canary Islands",
14724    "1MTANM" => "Madeira",
14725    "1MTANZ" => "Azores",
14726    "1MTAS" => "South Atlantic islands",
14727    "1MTASC" => "Ascension Island",
14728    "1MTASF" => "Falklands",
14729    "1MTASG" => "South Georgia",
14730    "1MTASH" => "St Helena",
14731    "1MTAST" => "Tristan da Cunha",
14732    "1MTN" => "Arctic regions",
14733    "1MTNG" => "Greenland",
14734    "1MTS" => "Antarctica",
14735    "1Q" => "Other geographical groupings, oceans & seas",
14736    "1QD" => "Empires & historical states",
14737    "1QDA" => "Ancient World",
14738    "1QDAA" => "Assyria",
14739    "1QDAB" => "Babylonia",
14740    "1QDAE" => "Ancient Egypt",
14741    "1QDAG" => "Ancient Greece",
14742    "1QDAK" => "Pre-Columbian America",
14743    "1QDAL" => "Ancient / Biblical Israel",
14744    "1QDAM" => "Mesopotamia",
14745    "1QDAP" => "Persian Empire",
14746    "1QDAR" => "Ancient Rome",
14747    "1QDAS" => "Sumeria",
14748    "1QDAZ" => "Byzantine Empire",
14749    "1QDB" => "British Empire",
14750    "1QDH" => "Holy Roman Empire",
14751    "1QDM" => "Mongol Empire",
14752    "1QDT" => "Ottoman Empire",
14753    "1QDU" => "Austro-Hungarian Empire",
14754    "1QF" => "Political, socio-economic & strategic groupings",
14755    "1QFC" => "The Commonwealth",
14756    "1QFE" => "EU (European Union)",
14757    "1QFG" => "Developing countries",
14758    "1QFH" => "Industrialized / developed countries",
14759    "1QFM" => "Islamic countries",
14760    "1QFN" => "NATO",
14761    "1QFP" => "OPEC",
14762    "1QFS" => "ASEAN",
14763    "1QFW" => "Warsaw Pact, Eastern bloc",
14764    "1QM" => "Climatic regions",
14765    "1QMP" => "Polar regions",
14766    "1QMT" => "Tropics",
14767    "1QR" => "Groupings linked by seas",
14768    "1QRM" => "Mediterranean countries",
14769    "1QRP" => "Pacific Rim countries",
14770    "1QS" => "Oceans & seas",
14771    "1QSA" => "Atlantic Ocean",
14772    "1QSAN" => "North Atlantic",
14773    "1QSAS" => "South Atlantic",
14774    "1QSB" => "Baltic Sea",
14775    "1QSC" => "Caribbean Sea",
14776    "1QSD" => "Gulf of Mexico",
14777    "1QSE" => "Irish Sea",
14778    "1QSF" => "North Sea",
14779    "1QSG" => "English Channel",
14780    "1QSH" => "Adriatic Sea",
14781    "1QSJ" => "Caspian Sea",
14782    "1QSK" => "Black Sea",
14783    "1QSL" => "Red Sea",
14784    "1QSM" => "Mediterranean Sea",
14785    "1QSN" => "Indian Ocean",
14786    "1QSP" => "Pacific Ocean",
14787    "1QSPN" => "North Pacific",
14788    "1QSPS" => "South Pacific",
14789    "1QSR" => "Arctic Ocean",
14790    "1QSS" => "Southern Ocean",
14791    "1QST" => "Tasman Sea",
14792    "2A" => "Indo-European languages",
14793    "2AB" => "English",
14794    "2ABA" => "Anglo-Saxon",
14795    "2ABC" => "Middle English",
14796    "2ABM" => "American English",
14797    "2ABU" => "Australian English",
14798    "2AC" => "Germanic & Scandinavian languages",
14799    "2ACC" => "Scots (Lallans, the Doric)",
14800    "2ACCU" => "Ulster Scots (Ullans)",
14801    "2ACD" => "Dutch",
14802    "2ACF" => "Flemish",
14803    "2ACG" => "German",
14804    "2ACK" => "Afrikaans",
14805    "2ACS" => "Scandinavian languages",
14806    "2ACSC" => "Icelandic",
14807    "2ACSD" => "Danish",
14808    "2ACSF" => "Faroese",
14809    "2ACSJ" => "Jutish",
14810    "2ACSN" => "Norwegian",
14811    "2ACSW" => "Swedish",
14812    "2ACSX" => "Old Norse",
14813    "2ACY" => "Yiddish",
14814    "2ACZ" => "Other Germanic languages & dialects",
14815    "2AD" => "Romance, Italic & Rhaeto-Romanic languages",
14816    "2ADC" => "Catalan",
14817    "2ADF" => "French",
14818    "2ADFP" => "Provencal",
14819    "2ADH" => "Corsican",
14820    "2ADL" => "Latin",
14821    "2ADP" => "Portuguese",
14822    "2ADPB" => "Brazilian Portuguese",
14823    "2ADQ" => "Galician (Gallego, Galego)",
14824    "2ADR" => "Romanian",
14825    "2ADS" => "Spanish",
14826    "2ADSL" => "Latin-American Spanish",
14827    "2ADT" => "Italian",
14828    "2ADV" => "Sardinian",
14829    "2AF" => "Celtic languages",
14830    "2AFB" => "Breton",
14831    "2AFC" => "Cornish",
14832    "2AFG" => "Gaulish",
14833    "2AFM" => "Manx",
14834    "2AFR" => "Irish Gaelic",
14835    "2AFS" => "Scottish Gaelic",
14836    "2AFW" => "Welsh",
14837    "2AG" => "Slavic (Slavonic) languages",
14838    "2AGB" => "Bulgarian",
14839    "2AGC" => "Church Slavic",
14840    "2AGK" => "Slovak",
14841    "2AGL" => "Belarusian (Belorussian)",
14842    "2AGM" => "Macedonian",
14843    "2AGP" => "Polish",
14844    "2AGR" => "Russian",
14845    "2AGS" => "Serbo-Croatian",
14846    "2AGSC" => "Croatian",
14847    "2AGSS" => "Serbian",
14848    "2AGU" => "Ukrainian",
14849    "2AGV" => "Slovenian",
14850    "2AGW" => "Wendish (Lusatian, Sorbian)",
14851    "2AGZ" => "Czech",
14852    "2AH" => "Hellenic languages",
14853    "2AHA" => "Ancient (Classical) Greek",
14854    "2AHB" => "Biblical Greek",
14855    "2AHM" => "Modern Greek",
14856    "2AJ" => "Baltic & other Indo-European languages",
14857    "2AJB" => "Baltic languages",
14858    "2AJBL" => "Lithuanian",
14859    "2AJBV" => "Latvian (Lettish)",
14860    "2AJK" => "Other Indo-European languages",
14861    "2AJKL" => "Albanian",
14862    "2AJKR" => "Armenian",
14863    "2B" => "Indic, East Indo-European & Dravidian languages",
14864    "2BB" => "Early Indic languages",
14865    "2BBA" => "Sanskrit",
14866    "2BBP" => "Pali",
14867    "2BM" => "Modern Indic languages",
14868    "2BMB" => "Bengali",
14869    "2BMD" => "Marathi",
14870    "2BMG" => "Gujarati",
14871    "2BMH" => "Hindi",
14872    "2BMJ" => "Rajasthani",
14873    "2BMK" => "Kashmiri",
14874    "2BMN" => "Nepali",
14875    "2BMP" => "Punjabi",
14876    "2BMR" => "Romany",
14877    "2BMS" => "Sinhalese",
14878    "2BMSM" => "Maldivian",
14879    "2BMU" => "Urdu",
14880    "2BR" => "Dravidian languages",
14881    "2BRB" => "Brahui",
14882    "2BRK" => "Kannada (Kanarese)",
14883    "2BRL" => "Telugu",
14884    "2BRM" => "Malayalam",
14885    "2BRT" => "Tamil",
14886    "2BX" => "Indo-Iranian languages",
14887    "2BXF" => "Persian (Farsi)",
14888    "2BXK" => "Kurdish",
14889    "2BXL" => "Pashto (Pushto, Afghan)",
14890    "2BXZ" => "Zend Avestan",
14891    "2C" => "Afro-Asiatic languages",
14892    "2CS" => "Semitic languages",
14893    "2CSA" => "Aramaic",
14894    "2CSB" => "Assyro-Babylonian (Akkadian) languages",
14895    "2CSJ" => "Hebrew",
14896    "2CSM" => "Maltese",
14897    "2CSR" => "Arabic",
14898    "2CSS" => "Syriac",
14899    "2CST" => "Ethiopic",
14900    "2CSTA" => "Amharic",
14901    "2CSTT" => "Tigrinya",
14902    "2CX" => "Non-Semitic Afro-Asiatic languages",
14903    "2CXB" => "Berber (Tuareg)",
14904    "2CXC" => "Coptic",
14905    "2CXG" => "Egyptian",
14906    "2CXH" => "Hausa",
14907    "2CXS" => "Somali",
14908    "2CXSR" => "Oromo",
14909    "2F" => "Ural-Altaic & Hyperborean languages",
14910    "2FC" => "Finno-Ugric languages",
14911    "2FCD" => "Estonian",
14912    "2FCF" => "Finnish (Suomi)",
14913    "2FCL" => "Lappish (Sami)",
14914    "2FCM" => "Hungarian (Magyar)",
14915    "2FM" => "Turkic languages",
14916    "2FMC" => "Turkish",
14917    "2FMH" => "Kirghiz",
14918    "2FMK" => "Kazakh",
14919    "2FMN" => "Turkmen",
14920    "2FMU" => "Uzbek",
14921    "2FMZ" => "Azerbaijani",
14922    "2FV" => "Mongolian",
14923    "2FW" => "Tungusic languages",
14924    "2FWK" => "Evenki",
14925    "2FWM" => "Manchu",
14926    "2FX" => "Hyperborean & Paleosiberian languages",
14927    "2G" => "East & Southeast Asian languages",
14928    "2GD" => "Sino-Tibetan languages",
14929    "2GDB" => "Burmese",
14930    "2GDC" => "Chinese",
14931    "2GDCC" => "Cantonese",
14932    "2GDCK" => "Hokkien",
14933    "2GDCM" => "Mandarin",
14934    "2GDCW" => "Wu",
14935    "2GDCY" => "Amoy",
14936    "2GDK" => "Karen",
14937    "2GDT" => "Tibetan",
14938    "2GJ" => "Japanese",
14939    "2GK" => "Korean",
14940    "2GR" => "Other Southeast Asian languages, Austroasiatic languages",
14941    "2GRH" => "Cambodian (Khmer)",
14942    "2GRL" => "Lao",
14943    "2GRM" => "Hmong (Miao)",
14944    "2GRS" => "Thai (Siamese)",
14945    "2GRV" => "Vietnamese",
14946    "2H" => "African languages",
14947    "2HC" => "Niger-Congo languages",
14948    "2HCB" => "Bantu languages",
14949    "2HCBA" => "Bantu proper (Narrow Bantu)",
14950    "2HCBB" => "Central Bantu languages",
14951    "2HCBBC" => "Chichewa (Chewa)",
14952    "2HCBBF" => "Chilomwe (Lomwe)",
14953    "2HCBBH" => "Chinyanja (Cinyanja, Nyanja)",
14954    "2HCBBJ" => "Chitonga (Tonga)",
14955    "2HCBBL" => "Chitumbuka (Tumbuka)",
14956    "2HCBBN" => "Chiyao (Yao)",
14957    "2HCBBP" => "Icibemba (Bemba)",
14958    "2HCBBQ" => "Kiikaonde (Kaonde)",
14959    "2HCBBR" => "Kongo",
14960    "2HCBBS" => "Lunda",
14961    "2HCBBU" => "Luvale",
14962    "2HCBD" => "kiSwahili (Swahili)",
14963    "2HCBH" => "OtjiHerero (Herero)",
14964    "2HCBK" => "Kikuyu",
14965    "2HCBL" => "Nyoro-Ganda group",
14966    "2HCBLG" => "Luganda (Ganda)",
14967    "2HCBLR" => "Nyankore (Runyankore-Rukiga)",
14968    "2HCBM" => "Fang (Yaunde-Fang)",
14969    "2HCBN" => "Duala",
14970    "2HCBP" => "Tshivenda & Venda group",
14971    "2HCBQ" => "Shona",
14972    "2HCBS" => "Sotho-Tswana group",
14973    "2HCBSA" => "Sesotho (Sotho, Sesotho sa Leboa, Southern Sotho)",
14974    "2HCBSB" => "Sepedi (Northern Sotho)",
14975    "2HCBSD" => "Setswana (Tswana)",
14976    "2HCBSF" => "Silozi",
14977    "2HCBV" => "XiTsonga (Tsonga)",
14978    "2HCBW" => "Siswati (Swazi)",
14979    "2HCBX" => "isiXhosa (Xhosa)",
14980    "2HCBY" => "isiNdebele (Ndebele)",
14981    "2HCBZ" => "isiZulu (Zulu)",
14982    "2HCW" => "West Atlantic & Volta Congo languages",
14983    "2HCWF" => "Fulani (Fulah)",
14984    "2HCWV" => "Volta-Congo languages",
14985    "2HCWVB" => "Ibo (Igbo)",
14986    "2HCWVD" => "Dagbani (Dagomba)",
14987    "2HCWVE" => "Ewe",
14988    "2HCWVG" => "Ga",
14989    "2HCWVN" => "Fante",
14990    "2HCWVS" => "Asante Twi",
14991    "2HCWVT" => "Akwapim Twi",
14992    "2HCWVY" => "Yoruba",
14993    "2HK" => "Khoisan languages",
14994    "2HN" => "Nilo-Saharan & Chari-Nile (Macrosudanic) languages",
14995    "2HND" => "Dinka",
14996    "2HNM" => "Masai",
14997    "2HNR" => "Nubian",
14998    "2HNT" => "Teso (Ateso)",
14999    "2HX" => "Other African languages",
15000    "2J" => "American indigenous languages",
15001    "2JN" => "North & Central American indigenous languages",
15002    "2JNA" => "Aleut",
15003    "2JNB" => "Inuit",
15004    "2JNC" => "Algonkian (Algonquin) languages",
15005    "2JND" => "Na-Dene & Athapascan (Athabascan) languages",
15006    "2JNG" => "Iroquoian & Siouan languages",
15007    "2JNM" => "Mayan",
15008    "2JNN" => "Uto-Aztecan languages",
15009    "2JNZ" => "Zuni",
15010    "2JS" => "South American & Caribbean indigenous languages",
15011    "2JSC" => "Carib (Cariban)",
15012    "2JSG" => "Guarani",
15013    "2JSQ" => "Quechuan",
15014    "2P" => "Oceanic & Austronesian languages",
15015    "2PB" => "Australian Aboriginal languages",
15016    "2PBA" => "Aranda (Arunta)",
15017    "2PBG" => "Murngin",
15018    "2PBJ" => "Pitjantjatjara",
15019    "2PBL" => "Alyawarr",
15020    "2PBM" => "Warumungu",
15021    "2PBP" => "Pintupi",
15022    "2PBR" => "Arrernte",
15023    "2PBT" => "Pertame",
15024    "2PBU" => "Luritja",
15025    "2PBW" => "Warlpiri",
15026    "2PBY" => "Yankunytjatjara",
15027    "2PC" => "Papuan languages",
15028    "2PCS" => "Susuami",
15029    "2PG" => "Austronesian & Malayo-Polynesian languages",
15030    "2PGB" => "Formosan (Taiwanese)",
15031    "2PGG" => "Malagasy",
15032    "2PGJ" => "Tagalog (Filipino)",
15033    "2PGN" => "Indonesian languages",
15034    "2PGNA" => "Indonesian (Bahasa Indonesia)",
15035    "2PGNC" => "Balinese",
15036    "2PGND" => "Javanese",
15037    "2PGNM" => "Malay (Bahasa Malaysia)",
15038    "2PGP" => "Oceanic & Polynesian languages",
15039    "2PGPA" => "Maori",
15040    "2PGPF" => "Fijian",
15041    "2PGPG" => "Tongan",
15042    "2PGPH" => "Tahitian",
15043    "2PGPR" => "Rarotongan",
15044    "2PGPS" => "Samoan",
15045    "2PGPW" => "Hawaiian",
15046    "2PGPX" => "Other Oceanic languages",
15047    "2PGPXK" => "Mokilese",
15048    "2PGPXM" => "Marshallese",
15049    "2PGPXN" => "Ponapean",
15050    "2PGPXP" => "Palauan",
15051    "2PGPXT" => "Tokelauan",
15052    "2Z" => "Other languages",
15053    "2ZB" => "Basque",
15054    "2ZC" => "Caucasian languages",
15055    "2ZCG" => "Georgian",
15056    "2ZM" => "Sumerian",
15057    "2ZP" => "Pidgins & Creoles",
15058    "2ZPT" => "Tok Pisin",
15059    "2ZX" => "Artificial languages",
15060    "2ZXA" => "Afrihili",
15061    "2ZXC" => "Occidental",
15062    "2ZXP" => "Esperanto",
15063    "2ZXT" => "Interlingua",
15064    "3B" => "Prehistory",
15065    "3D" => "BCE to c 500 CE",
15066    "3F" => "c 500 CE to c 1000 CE",
15067    "3H" => "c 1000 CE to c 1500",
15068    "3J" => "Modern period, c 1500 onwards",
15069    "3JB" => "c 1500 to c 1600",
15070    "3JD" => "c 1600 to c 1700",
15071    "3JF" => "c 1700 to c 1800",
15072    "3JH" => "c 1800 to c 1900",
15073    "3JJ" => "20th century",
15074    "3JJC" => "c 1900 - c 1914",
15075    "3JJF" => "c 1914 to c 1918 (including WW1)",
15076    "3JJG" => "c 1918 to c 1939 (Inter-war period)",
15077    "3JJH" => "c 1939 to c 1945 (including WW2)",
15078    "3JJP" => "c 1945 to c 2000 (Post-war period)",
15079    "3JJPG" => "c 1945 to c 1960",
15080    "3JJPK" => "c 1960 to c 1970",
15081    "3JJPL" => "c 1970 to c 1980",
15082    "3JJPN" => "c 1980 to c 1990",
15083    "3JJPR" => "c 1990 to c 2000",
15084    "3JM" => "21st century",
15085    "3JMC" => "c 2000 to c 2010",
15086    "3JMG" => "c 2010 to c 2020",
15087    "4E" => "ELT examinations & certificates",
15088    "4EA" => "Cambridge Young Learners English Tests",
15089    "4EAA" => "Cambridge Young Learners English Tests Level 1 Cambridge Starters",
15090    "4EAM" => "Cambridge Young Learners English Tests Level 2 Cambridge Movers",
15091    "4EAY" => "Cambridge Young Learners English Tests Level 3 Cambridge Flyers",
15092    "4EB" => "Cambridge Level 1 Key English Test (KET)",
15093    "4EC" => "Cambridge Level 2 Preliminary English Test (PET)",
15094    "4ED" => "Cambridge Level 3 First Certificate in English (FCE)",
15095    "4EF" => "Cambridge Level 4 Certificate in Advanced English (CAE)",
15096    "4EG" => "Cambridge Level 5 Certificate of Proficiency in English (CPE)",
15097    "4EL" => "Cambridge International English Language Testing System (IELTS)",
15098    "4EN" => "Test of English as a Foreign Language (TOEFL)",
15099    "4EQ" => "Certificate in Communicative Skills in English (CCSE)",
15100    "4EX" => "ELT examinations in English for specific purposes",
15101    "4EXB" => "Business English Certificate (BEC)",
15102    "4EXC" => "Certificate in English for International Business & Trade (CEIBT)",
15103    "4EXJ" => "Oxford International Business English Certificate (OIBEC)",
15104    "4EXK" => "Cambridge Examination in English for Language Teachers (CEELT)",
15105    "4EXM" => "Test of English for International Communication (TOEIC)",
15106    "4EZ" => "Other ELT examinations",
15107    "4K" => "Designed / suitable for UK curricula & examinations",
15108    "4KD" => "UK educational tests",
15109    "4KDP" => "Standardized educational test",
15110    "4KDQ" => "Non-standardized educational test",
15111    "4KH" => "Designed / suitable for National Curriculum",
15112    "4KHA" => "For National Curriculum Early Years",
15113    "4KHF" => "For National Curriculum Key Stage 1",
15114    "4KHJ" => "For National Curriculum Key Stage 2",
15115    "4KHN" => "For National Curriculum Key Stage 3",
15116    "4KHT" => "For National Curriculum Key Stage 4 & GCSE",
15117    "4KL" => "Designed / suitable for A & AS Level",
15118    "4KLR" => "A/AS Level study & revision guides",
15119    "4KM" => "Designed for Key Skills",
15120    "4KMC" => "Designed for Key Skills: Communication",
15121    "4KMN" => "Designed for Key Skills: Application of number",
15122    "4KMT" => "Designed for Key Skills: Information Technology (IT)",
15123    "4KS" => "Designed / suitable for Scottish examinations & grades",
15124    "4KSC" => "For P1-P3 (Scottish)",
15125    "4KSD" => "For P4-P6 (Scottish)",
15126    "4KSF" => "For P7-S2 (Scottish)",
15127    "4KSL" => "For Access 3 (Scottish)",
15128    "4KSM" => "For Intermediate 2 (Scottish)",
15129    "4KSN" => "For Intermediate 1 (Scottish)",
15130    "4KSS" => "For Standard Grade (Scottish)",
15131    "4KST" => "For Higher Grade (Scottish)",
15132    "4KSV" => "For Advanced Higher Grade (Scottish)",
15133    "4KT" => "Designed / suitable for Scottish Curriculum for Excellence (CfE) Levels",
15134    "4KTB" => "For CfE Early Level (Scottish)",
15135    "4KTG" => "For CfE First Level (Scottish)",
15136    "4KTJ" => "For CfE Second Level (Scottish)",
15137    "4KTP" => "For CfE Third Level (Scottish)",
15138    "4KTR" => "For CfE Fourth Level (Scottish)",
15139    "4KV" => "Designed / suitable for UK vocational qualifications",
15140    "4KVC" => "For NVQ / SVQ (National / Scottish Vocational Qualification)",
15141    "4KVCR" => "For NVQ / SVQ 1",
15142    "4KVCS" => "For NVQ / SVQ 2",
15143    "4KVCT" => "For NVQ / SVQ 3",
15144    "4KVCU" => "For NVQ / SVQ 4",
15145    "4KVN" => "For GNVQ (General National Vocational Qualification)",
15146    "4KVNF" => "For GNVQ Foundation",
15147    "4KVNN" => "For GNVQ Intermediate",
15148    "4KVNV" => "For GNVQ Advanced",
15149    "4KVS" => "For GSVQ (General Scottish Vocational Qualification)",
15150    "4KVSF" => "For GSVQ Foundation",
15151    "4KVSN" => "For QSVQ Intermediate",
15152    "4KVSV" => "For QSVQ Advanced",
15153    "4KVT" => "For BTEC (Business And Technology Education Council)",
15154    "4KVTA" => "BTEC Introductory Certificate - Level 1 qualification",
15155    "4KVTB" => "BTEC Introductory Diploma - Level 1 qualification",
15156    "4KVTF" => "BTEC First Certificate - Level 2 qualification",
15157    "4KVTG" => "BTEC First Diploma - Level 2 qualification",
15158    "4KVTJ" => "BTEC National Award - Level 3 qualification",
15159    "4KVTK" => "BTEC National Certificate - Level 3 qualification",
15160    "4KVTL" => "BTEC National Diploma - Level 3 qualification",
15161    "4KVTQ" => "BTEC Foundation Diploma in Art and Design",
15162    "4KVTX" => "BTEC Higher National Certificate",
15163    "4KVTY" => "BTEC Higher National Diploma",
15164    "4M" => "International curricula & examinations",
15165    "4MB" => "International Baccalaureate (IB) Diploma",
15166    "4MG" => "International GCSE (IGCSE)",
15167    "4P" => "Designed / suitable for other (non-UK) curricula & examinations",
15168    "4PC" => "Designed / suitable for Irish examinations & educational levels",
15169    "4PCJ" => "For Junior Certificate (Irish)",
15170    "4PCN" => "For Transition Year (Irish)",
15171    "4PCR" => "For Leaving Certificate (Irish)",
15172    "4PCV" => "For Post-Leaving Certificate (Irish)",
15173    "4PZ" => "Designed / suitable for South African examinations & educational levels",
15174    "4PZC" => "For General Education & Training (GET) (South Africa)",
15175    "4PZCB" => "Reception / Early Childhood Development Grade R or Grade 0 (South Africa)",
15176    "4PZCD" => "Foundation Phase Grade 1 (South Africa)",
15177    "4PZCF" => "Foundation Phase Grade 2 (South Africa)",
15178    "4PZCH" => "Foundation Phase Grade 3 (South Africa)",
15179    "4PZCJ" => "Intermediate Phase Grade 4 (South Africa)",
15180    "4PZCL" => "Intermediate Phase Grade 5 (South Africa)",
15181    "4PZCN" => "Intermediate Phase Grade 6 (South Africa)",
15182    "4PZCP" => "Senior Phase Grade 7 (South Africa)",
15183    "4PZCR" => "Senior Phase Grade 8 (South Africa)",
15184    "4PZCT" => "Senior Phase Grade 9 (South Africa)",
15185    "4PZF" => "For Further Education & Training (FET): Academic grades (South Africa)",
15186    "4PZFG" => "FET Grade 10 (South Africa)",
15187    "4PZFK" => "FET Grade 11 (South Africa)",
15188    "4PZFM" => "FET Grade 12 (South Africa)",
15189    "4PZT" => "For FET: Technical & Vocational Grades (South Africa)",
15190    "4PZTQ" => "FET Grade N1 (South Africa)",
15191    "4PZTS" => "FET Grade N2 (South Africa)",
15192    "4PZTV" => "FET Grade N3 (South Africa)",
15193    "4W" => "Designed for differentiated learning",
15194    "4Y" => "Designed for home learning",
15195    "5A" => "Interest age / level",
15196    "5AB" => "For children c 0-2 years",
15197    "5AC" => "Interest age: from c 3 years",
15198    "5AD" => "Interest age: from c 4 years",
15199    "5AF" => "Interest age: from c 5 years",
15200    "5AG" => "Interest age: from c 6 years",
15201    "5AH" => "Interest age: from c 7 years",
15202    "5AJ" => "Interest age: from c 8 years",
15203    "5AK" => "Interest age: from c 9 years",
15204    "5AL" => "Interest age: from c 10 years",
15205    "5AM" => "Interest age: from c 11 years",
15206    "5AN" => "Interest age: from c 12 years",
15207    "5AP" => "Interest age: from c 13 years",
15208    "5AQ" => "Interest age: from c 14 years",
15209    "5AR" => "For reluctant readers (children)",
15210    "5AX" => "For emergent readers (adult)",
15211    "5H" => "Holidays & seasonal interest",
15212    "5HC" => "Christmas",
15213    "5HE" => "Easter",
15214    "5HF" => "Father’s Day",
15215    "5HH" => "Hallowe’en",
15216    "5HM" => "Mother’s Day",
15217    "5HV" => "Valentine’s Day",
15218    "5S" => "Of specific Gay & Lesbian interest",
15219    "5SG" => "Of specific Gay interest",
15220    "5SL" => "Of specific Lesbian interest",
15221    "5X" => "Contains explicit material"
15222};