Correcting authoritytypecode values where my typo used the number '0' as
[koha.git] / misc / marc21_standard_auth_frameworks.sql
1 -- *******************************************************
2 -- KOHA 3.0 MARC 21 STANDARD DEFAULT AUTHORITY FRAMEWORKS 
3 --                 POST-INSTALLATION SCRIPT               
4 --                                                        
5 --                  PRETEST VERSION 0.0.4                 
6 --                       2007-08-21                       
7 --                                                        
8 --                         edited                         
9 --                   by thd for LibLime                   
10 --                                                        
11 --                       BASED UPON                       
12 --                                                        
13 --   KOHA MARC 21 STANDARD DEFAULT AUTHORITY FRAMEWORKS   
14 --                                                        
15 --                  PRETEST VERSION 0.0.4                 
16 --                       2007-08-21                       
17 --                                                        
18 --  original default requiring greater user customisation 
19 --               created by a few Koha Hands              
20 --                 guided by Paul POULAIN                 
21 --                                                        
22 --       revised and greatly enlarged to completion,      
23 --            well not quite complete yet today           
24 --        but close enough for someone to have use,       
25 --                   by thd for LibLime                   
26 -- *******************************************************
27
28
29
30 -- ***********************************************************************
31 --                                                                        
32 -- STOP, DO NOT PROCEED FURTHER WITHOUT FIRST DUMPIMPING                  
33 -- auth_tag_structure AND auth_subfield_structure TABLES IF NOT THE       
34 -- ENTIRE KOHA DATABASE.                                                  
35 --                                                                        
36 -- However, if you have a Koha installation with no authority framework   
37 -- modifications or no records yet then this script should do no harm     
38 -- and actually help protect you from future data loss when editing       
39 -- authority records including holdings information.                      
40 --                                                                        
41 -- Code still needs to be written for preserving information from         
42 -- installed bibliographic and authority frameworks and then updating     
43 -- the frameworks and the bibliographic records losslessly.  A modest     
44 -- task but everything takes time.                                        
45 --                                                                        
46 -- Despite the above warning, you are more likely to loose data from      
47 -- authority records held in Koha if your authority frameworks            
48 -- are less complete than the one provided in this file rather than from  
49 -- possible risks from the simple design of the this installation         
50 -- script.                                                                
51 --                                                                        
52 -- If you have an existing Koha installation, your default Koha MARC 21   
53 -- bibliographic framework will not be updated from the standard Koha     
54 -- update script.  This SQL script will update your authority             
55 -- frameworks and should be applied after you have run the standard Koha  
56 -- update script.                                                         
57 --                                                                        
58 -- See comments below for some provisions that may need adjusting to      
59 -- support your Koha database.                                            
60 --                                                                        
61 -- A complete MySQL Koha SQL database may be dumped for backup with the   
62 -- following command syntax as one line where the -h option is only       
63 -- needed if applying this script for a database held on a remote         
64 -- server.                                                                
65 --                                                                        
66 -- mysqldump --allow-keywords --single-transaction                        
67 -- [-h YourMySQLServername] -u YourKohaMySQLUsername -p                   
68 -- YourKohaDatabasename > KohaBackup.sql                                  
69 --                                                                        
70 -- Now that you have been warned, this SQL file may be run and            
71 -- imported using the following command syntax as one line where the      
72 -- -h option is only needed if applying this script for a database held   
73 -- on a remote server.                                                    
74 --                                                                        
75 -- mysql [-h YourMySQLServername] -uYourKohaMySQLUsername                 
76 -- -p YourKohaDatabasename < /path/to/marc21_standard_auth_frameworks.sql 
77 --                                                                        
78 -- ***********************************************************************
79
80
81 SET FOREIGN_KEY_CHECKS = 0;
82
83
84 -- ADJUST ME
85 -- -- Uncomment the following commented lines to purge authority records.
86 --
87 -- DROP TABLE IF EXISTS `auth_subfield_table`;
88 -- CREATE TABLE IF NOT EXISTS `auth_subfield_table` (
89 --   `subfieldid` bigint(20) unsigned NOT NULL auto_increment,
90 --   `authid` bigint(20) unsigned NOT NULL default '0',
91 --   `tag` varchar(3) NOT NULL default '',
92 --   `tagorder` tinyint(4) NOT NULL default '1',
93 --   `tag_indicator` varchar(2) NOT NULL default '',
94 --   `subfieldcode` char(1) NOT NULL default '',
95 --   `subfieldorder` tinyint(4) NOT NULL default '1',
96 --   `subfieldvalue` varchar(255) default NULL,
97 --   PRIMARY KEY  (`subfieldid`),
98 --   KEY `authid` (`authid`),
99 --   KEY `tag` (`tag`),
100 --   KEY `subfieldcode` (`subfieldcode`),
101 --   KEY `subfieldvalue` (`subfieldvalue`)
102 --   
103 -- )
104 -- 
105 -- -- ADJUST ME
106 -- -- Uncomment the line below and adjust if needed.
107 -- -- ENGINE=MyISAM DEFAULT CHARSET=utf8
108 -- 
109 -- ;
110 -- 
111 -- 
112 -- DROP TABLE IF EXISTS `auth_word`;
113 -- CREATE TABLE IF NOT EXISTS `auth_word` (
114 --   `authid` bigint(20) NOT NULL default '0',
115 --   `tagsubfield` varchar(4) NOT NULL default '',
116 --   `tagorder` tinyint(4) NOT NULL default '1',
117 --   `subfieldorder` tinyint(4) NOT NULL default '1',
118 --   `word` varchar(255) NOT NULL default '',
119 --   `sndx_word` varchar(255) NOT NULL default '',
120 --   KEY `authid` (`authid`),
121 --   KEY `auth_search` (`tagsubfield`,`word`),
122 --   KEY `word` (`word`),
123 --   KEY `sndx_word` (`sndx_word`)
124 --   
125 -- )
126 -- 
127 -- -- ADJUST ME
128 -- -- Uncomment the line below and adjust if needed.
129 -- -- ENGINE=MyISAM DEFAULT CHARSET=utf8
130 -- 
131 -- ;
132 -- 
133 -- 
134 -- DROP TABLE IF EXISTS `auth_header`;
135 -- CREATE TABLE IF NOT EXISTS `auth_header` (
136 --   `authid` bigint(20) unsigned NOT NULL auto_increment,
137 --   `authtypecode` varchar(10) NOT NULL default '',
138 --   `datecreated` date NOT NULL default '0000-00-00',
139 --   `datemodified` date default NULL,
140 --   `origincode` varchar(20) default NULL,
141 --   `authtrees` text,
142 --   PRIMARY KEY  (`authid`),
143 --   KEY `origincode` (`origincode`)
144 --   
145 -- )
146 -- 
147 -- -- ADJUST ME
148 -- -- Uncomment the line below and adjust if needed.
149 -- -- ENGINE=MyISAM DEFAULT CHARSET=utf8
150 -- 
151 -- ;
152 -- 
153 -- 
154
155
156
157 -- ******************************************************
158
159
160
161 DROP TABLE IF EXISTS `auth_types`;
162 CREATE TABLE IF NOT EXISTS `auth_types` (
163   `authtypecode` varchar(10) NOT NULL default '',
164   `authtypetext` varchar(255) NOT NULL default '',
165   `auth_tag_to_report` varchar(3) NOT NULL default '',
166   `summary` text NOT NULL,
167   PRIMARY KEY  (`authtypecode`)
168   
169 )
170
171 -- ADJUST ME
172 -- Uncomment the line below and adjust if needed.
173 -- ENGINE=MyISAM DEFAULT CHARSET=utf8
174
175 ;
176
177
178
179 -- ******************************************************
180
181
182
183 -- ******************************************************
184 -- KOHA DEFAULT MARC 21 AUTHORITY TYPE. 
185 -- ******************************************************
186
187 -- This authority type includes all fields and subfieds used by any 
188 -- authority type. 
189
190 INSERT INTO `auth_types` VALUES ('', 'Default', '', '');
191
192
193 -- ******************************************************
194 -- KOHA SUPPORTED STANDARD MARC 21 AUTHORITY TYPES. 
195 -- ******************************************************
196
197 -- These authority types are supported for for guiding the cataloguer to 
198 -- fill authorised values in Koha MARC bibliographic editor.
199
200
201 INSERT INTO `auth_types` VALUES ('PERSO_NAME', 'Personal Name', '100', 'Personal Names');
202 INSERT INTO `auth_types` VALUES ('CORPO_NAME', 'Corporate Name', '110', 'Corporate Names');
203 INSERT INTO `auth_types` VALUES ('MEETI_NAME', 'Meeting Name', '111', 'Meeting Name');
204 INSERT INTO `auth_types` VALUES ('UNIF_TITLE', 'Uniform Title', '130', 'Uniform Title');
205 INSERT INTO `auth_types` VALUES ('CHRON_TERM', 'Chronological Term', '148', 'Chronological Term');
206 INSERT INTO `auth_types` VALUES ('TOPIC_TERM', 'Topical Term', '150', 'Topical Term');
207 INSERT INTO `auth_types` VALUES ('GEOGR_NAME', 'Geographic Name', '151', 'Geographic Name');
208 INSERT INTO `auth_types` VALUES ('GENRE/FORM', 'Genre/Form Term', '155', 'Genre/Form Term');
209
210
211 -- ******************************************************
212 -- KOHA UNSUPPORTED STANDARD MARC 21 AUTHORITY TYPES. 
213 -- ******************************************************
214
215 -- These authority types are only supported for guiding the cataloguer to 
216 -- fill authorised values in the Koha MARC bibliographic editor to the 
217 -- extent that they have already been included in a primary authority type, 
218 -- therefore, they have not yet been specified.
219 --
220 -- Minimal primary authorities including subdivisions may currently be 
221 -- built by a script which uses the values in bibliographic records but 
222 -- include no tracings and references which are necessarily not present 
223 -- in bibliographic records.
224
225
226 -- INSERT INTO `auth_types` VALUES ('TOPIC_SUBD', 'General Topical Term Subdivision', '180', 'General Topical Term Subdivision');
227 -- INSERT INTO `auth_types` VALUES ('GEOGR_SUBD', 'Geographic Subdivision', '181', 'Geographic Subdivision');
228 -- INSERT INTO `auth_types` VALUES ('CHRON_SUBD', 'Chronological Subdivision', '182', 'Chronological Subdivision');
229 -- INSERT INTO `auth_types` VALUES ('FORM_SUBDI', 'Form Subdivision', '185', 'Form Subdivision');
230
231
232
233 -- ******************************************************
234
235
236
237 DROP TABLE IF EXISTS `auth_tag_structure`;
238 CREATE TABLE IF NOT EXISTS `auth_tag_structure` (
239   `authtypecode` char(10) NOT NULL default '',
240   `tagfield` char(3) NOT NULL default '',
241   `liblibrarian` char(255) NOT NULL default '',
242   `libopac` char(255) NOT NULL default '',
243   `repeatable` tinyint(4) NOT NULL default '0',
244   `mandatory` tinyint(4) NOT NULL default '0',
245   `authorised_value` char(10) default NULL,
246   PRIMARY KEY  (`authtypecode`,`tagfield`)
247   
248 )
249
250 -- ADJUST ME
251 -- Uncomment the line below and adjust if needed.
252 -- ENGINE=MyISAM DEFAULT CHARSET=utf8
253
254 ;
255
256
257 DROP TABLE IF EXISTS `auth_subfield_structure`;
258 CREATE TABLE IF NOT EXISTS `auth_subfield_structure` (
259   `authtypecode` char(10) NOT NULL default '',
260   `tagfield` char(3) NOT NULL default '',
261   `tagsubfield` char(1) NOT NULL default '',
262   `liblibrarian` char(255) NOT NULL default '',
263   `libopac` char(255) NOT NULL default '',
264   `repeatable` tinyint(4) NOT NULL default '0',
265   `mandatory` tinyint(4) NOT NULL default '0',
266   `tab` tinyint(1) default NULL,
267   `authorised_value` char(10) default NULL,
268   `value_builder` char(80) default NULL,
269   `seealso` char(255) default NULL,
270   PRIMARY KEY  (`authtypecode`,`tagfield`,`tagsubfield`),
271   KEY `tab` (`authtypecode`,`tab`)
272   
273 )
274
275 -- ADJUST ME
276 -- Uncomment the line below and adjust if needed.
277 -- ENGINE=MyISAM DEFAULT CHARSET=utf8
278
279 ;
280
281
282 -- *****************************************************************
283 -- MARC 21 AUTHORITY FIELDS/SUBFIELDS AND COMMMONLY USED EXTENSIONS 
284 -- *****************************************************************
285
286
287 -- No support for subfield visibility is yet provided by the Koha code 
288 -- matching the column name 'hidden' in the bibliographic framework.
289 -- 
290 -- Needs checking for errors but probably tolerable for use on a production. 
291 -- A server can be upgraded easily from later versions of this file.
292 --                                                                          
293 -- In the absense of more column support for qualifying the relative 
294 -- importance of subfields to the record editor, some modest modification of 
295 -- the default framework is needed setting the not-useful non-Koha holdings 
296 -- subfields to not managed in Koha.
297
298 -- MARC fields including letters as part of the field identifier are from RLIN
299 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
300 -- been using letters in fields because there are not enough local use number 
301 -- fields which have not already been specified for very large union catalogue 
302 -- networks such as RLIN itself.
303
304 -- Fields ending in a or b are temporary placeholders for information from
305 -- a numeric value until a non-conflicting way to treat the content under the
306 -- proper original numeric field is adopted.  090 for LC call numbers is much 
307 -- too common and important so 999 is also provided as a temporary place 
308 -- holder until all Koha code for finding control fields has been changed from 
309 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
310 -- mistaken matching of fields with letters such as 09o if they were control 
311 -- fields.
312
313 -- Fields and subfields which belong exclusively in a classification 
314 -- framework have been marked '[CLASSIFICATION FRAMEWORK]'.  They are retained 
315 -- or included here becuase some had been included previously and Koha does 
316 -- not yet have a classification framework.
317
318
319 INSERT INTO `auth_tag_structure` VALUES ('', '000', 'LEADER', 'LEADER', 0, 1, NULL);
320 INSERT INTO `auth_tag_structure` VALUES ('', '001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 1, NULL);
321 INSERT INTO `auth_tag_structure` VALUES ('', '003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 1, NULL);
322 INSERT INTO `auth_tag_structure` VALUES ('', '005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 1, NULL);
323 INSERT INTO `auth_tag_structure` VALUES ('', '008', 'FIXED-LENGTH DATA ELEMENTS', 'FIXED-LENGTH DATA ELEMENTS', 0, 1, NULL);
324 INSERT INTO `auth_tag_structure` VALUES ('', '010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, NULL);
325 INSERT INTO `auth_tag_structure` VALUES ('', '014', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 1, 0, NULL);
326 INSERT INTO `auth_tag_structure` VALUES ('', '016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, NULL);
327 INSERT INTO `auth_tag_structure` VALUES ('', '020', 'INTERNATIONAL STANDARD BOOK NUMBER', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL);
328 INSERT INTO `auth_tag_structure` VALUES ('', '022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL);
329 INSERT INTO `auth_tag_structure` VALUES ('', '024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL);
330 INSERT INTO `auth_tag_structure` VALUES ('', '031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, NULL);
331 INSERT INTO `auth_tag_structure` VALUES ('', '034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL);
332 INSERT INTO `auth_tag_structure` VALUES ('', '035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL);
333 INSERT INTO `auth_tag_structure` VALUES ('', '040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 1, NULL);
334 INSERT INTO `auth_tag_structure` VALUES ('', '042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, NULL);
335 INSERT INTO `auth_tag_structure` VALUES ('', '043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL);
336 INSERT INTO `auth_tag_structure` VALUES ('', '045', 'TIME PERIOD OF HEADING', 'TIME PERIOD OF HEADING', 0, 0, NULL);
337 INSERT INTO `auth_tag_structure` VALUES ('', '050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL);
338 INSERT INTO `auth_tag_structure` VALUES ('', '052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL);
339 INSERT INTO `auth_tag_structure` VALUES ('', '053', 'LC CLASSIFICATION NUMBER', 'LC CLASSIFICATION NUMBER', 1, 0, NULL);
340 INSERT INTO `auth_tag_structure` VALUES ('', '055', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 1, 0, NULL);
341 INSERT INTO `auth_tag_structure` VALUES ('', '058', 'LC CLASSIFICATION NUMBER ASSIGNED IN CANADA [OBSOLETE, CAN/MARC]', 'LC CLASSIFICATION NUMBER ASSIGNED IN CANADA [OBSOLETE, CAN/MARC]', 1, 0, NULL);
342 INSERT INTO `auth_tag_structure` VALUES ('', '060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL);
343 INSERT INTO `auth_tag_structure` VALUES ('', '063', 'NLM CLASSIFICATION NUMBER ASSIGNED BY NLM [OBSOLETE, CAN/MARC]', 'NLM CLASSIFICATION NUMBER ASSIGNED BY NLM [OBSOLETE, CAN/MARC]', 1, 0, NULL);
344 INSERT INTO `auth_tag_structure` VALUES ('', '065', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL);
345 INSERT INTO `auth_tag_structure` VALUES ('', '066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL);
346 INSERT INTO `auth_tag_structure` VALUES ('', '068', 'NLM CLASSIFICATION NUMBER ASSIGNED IN CANADA [OBSOLETE, CAN/MARC]', 'NLM CLASSIFICATION NUMBER ASSIGNED IN CANADA [OBSOLETE, CAN/MARC]', 1, 0, NULL);
347 INSERT INTO `auth_tag_structure` VALUES ('', '070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL);
348 INSERT INTO `auth_tag_structure` VALUES ('', '072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL);
349 INSERT INTO `auth_tag_structure` VALUES ('', '073', 'SUBDIVISION USAGE', 'SUBDIVISION USAGE', 0, 0, NULL);
350 INSERT INTO `auth_tag_structure` VALUES ('', '082', 'DEWEY DECIMAL CALL NUMBER', 'DEWEY DECIMAL CALL NUMBER', 1, 0, NULL);
351 INSERT INTO `auth_tag_structure` VALUES ('', '083', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL);
352 INSERT INTO `auth_tag_structure` VALUES ('', '084', 'CLASSIFICATION SCHEME AND EDITION [CLASSIFICATION FORMAT]', 'CLASSIFICATION SCHEME AND EDITION [CLASSIFICATION FORMAT]', 0, 0, NULL);
353 INSERT INTO `auth_tag_structure` VALUES ('', '086', 'GOVERNMENT DOCUMENT CALL NUMBER', 'GOVERNMENT DOCUMENT CALL NUMBER', 1, 0, NULL);
354 INSERT INTO `auth_tag_structure` VALUES ('', '087', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL);
355 INSERT INTO `auth_tag_structure` VALUES ('', '088', 'DOCUMENT SHELVING NUMBER (CODOC) [OBSOLETE, CAN/MARC]', 'DOCUMENT SHELVING NUMBER (CODOC) [OBSOLETE, CAN/MARC]', 1, 0, NULL);
356 INSERT INTO `auth_tag_structure` VALUES ('', '090', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, NULL);
357 INSERT INTO `auth_tag_structure` VALUES ('', '091', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 0, 0, NULL);
358 INSERT INTO `auth_tag_structure` VALUES ('', '092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, NULL);
359 INSERT INTO `auth_tag_structure` VALUES ('', '093', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
360 INSERT INTO `auth_tag_structure` VALUES ('', '096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, NULL);
361 INSERT INTO `auth_tag_structure` VALUES ('', '097', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
362 INSERT INTO `auth_tag_structure` VALUES ('', '098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, NULL);
363 INSERT INTO `auth_tag_structure` VALUES ('', '099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, NULL);
364 INSERT INTO `auth_tag_structure` VALUES ('', '100', 'HEADING--PERSONAL NAME', 'HEADING--PERSONAL NAME', 0, 0, NULL);
365 INSERT INTO `auth_tag_structure` VALUES ('', '110', 'HEADING--CORPORATE NAME', 'HEADING--CORPORATE NAME', 0, 0, NULL);
366 INSERT INTO `auth_tag_structure` VALUES ('', '111', 'HEADING--MEETING NAME', 'HEADING--MEETING NAME', 0, 0, NULL);
367 INSERT INTO `auth_tag_structure` VALUES ('', '130', 'HEADING--UNIFORM TITLE', 'HEADING--UNIFORM TITLE', 0, 0, NULL);
368 INSERT INTO `auth_tag_structure` VALUES ('', '140', 'UNIFORM TITLE [OBSOLETE, CAN/MARC]', 'UNIFORM TITLE [OBSOLETE, CAN/MARC]', 1, 0, NULL);
369 INSERT INTO `auth_tag_structure` VALUES ('', '143', 'COLLECTIVE TITLE [OBSOLETE, CAN/MARC]', 'COLLECTIVE TITLE [OBSOLETE, CAN/MARC]', 1, 0, NULL);
370 INSERT INTO `auth_tag_structure` VALUES ('', '148', 'HEADING--CHRONOLOGICAL TERM', 'HEADING--CHRONOLOGICAL TERM', 0, 0, NULL);
371 INSERT INTO `auth_tag_structure` VALUES ('', '150', 'HEADING--TOPICAL TERM', 'HEADING--TOPICAL TERM', 0, 0, NULL);
372 INSERT INTO `auth_tag_structure` VALUES ('', '151', 'HEADING--GEOGRAPHIC NAME', 'HEADING--GEOGRAPHIC NAME', 0, 0, NULL);
373 INSERT INTO `auth_tag_structure` VALUES ('', '153', 'CLASSIFICATION NUMBER [CLASSIFICATION FORMAT]', 'CLASSIFICATION NUMBER [CLASSIFICATION FORMAT]', 0, 0, NULL);
374 INSERT INTO `auth_tag_structure` VALUES ('', '154', 'GENERAL EXPLANATORY INDEX TERM [CLASSIFICATION FORMAT]', 'GENERAL EXPLANATORY INDEX TERM [CLASSIFICATION FORMAT]', 0, 0, NULL);
375 INSERT INTO `auth_tag_structure` VALUES ('', '155', 'HEADING--GENRE/FORM TERM', 'HEADING--GENRE/FORM TERM', 0, 0, NULL);
376 INSERT INTO `auth_tag_structure` VALUES ('', '180', 'HEADING--GENERAL SUBDIVISION', 'HEADING--GENERAL SUBDIVISION', 0, 0, NULL);
377 INSERT INTO `auth_tag_structure` VALUES ('', '181', 'HEADING--GEOGRAPHIC SUBDIVISION', 'HEADING--GEOGRAPHIC SUBDIVISION', 0, 0, NULL);
378 INSERT INTO `auth_tag_structure` VALUES ('', '182', 'HEADING--CHRONOLOGICAL SUBDIVISION', 'HEADING--CHRONOLOGICAL SUBDIVISION', 0, 0, NULL);
379 INSERT INTO `auth_tag_structure` VALUES ('', '185', 'HEADING--FORM SUBDIVISION', 'HEADING--FORM SUBDIVISION', 0, 0, NULL);
380 INSERT INTO `auth_tag_structure` VALUES ('', '253', 'COMPLEX SEE REFERENCE [CLASSIFICATION FORMAT]', 'COMPLEX SEE REFERENCE [CLASSIFICATION FORMAT]', 1, 0, NULL);
381 INSERT INTO `auth_tag_structure` VALUES ('', '260', 'COMPLEX SEE REFERENCE--SUBJECT', 'COMPLEX SEE REFERENCE--SUBJECT', 1, 0, NULL);
382 INSERT INTO `auth_tag_structure` VALUES ('', '353', 'COMPLEX SEE ALSO REFERENCE [CLASSIFICATION FORMAT]', 'COMPLEX SEE ALSO REFERENCE [CLASSIFICATION FORMAT]', 1, 0, NULL);
383 INSERT INTO `auth_tag_structure` VALUES ('', '360', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 1, 0, NULL);
384 INSERT INTO `auth_tag_structure` VALUES ('', '400', 'SEE FROM TRACING--PERSONAL NAME', 'SEE FROM TRACING--PERSONAL NAME', 1, 0, NULL);
385 INSERT INTO `auth_tag_structure` VALUES ('', '410', 'SEE FROM TRACING--CORPORATE NAME', 'SEE FROM TRACING--CORPORATE NAME', 1, 0, NULL);
386 INSERT INTO `auth_tag_structure` VALUES ('', '411', 'SEE FROM TRACING--MEETING NAME', 'SEE FROM TRACING--MEETING NAME', 1, 0, NULL);
387 INSERT INTO `auth_tag_structure` VALUES ('', '430', 'SEE FROM TRACING--UNIFORM TITLE', 'SEE FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
388 INSERT INTO `auth_tag_structure` VALUES ('', '448', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
389 INSERT INTO `auth_tag_structure` VALUES ('', '450', 'SEE FROM TRACING--TOPICAL TERM', 'SEE FROM TRACING--TOPICAL TERM', 1, 0, NULL);
390 INSERT INTO `auth_tag_structure` VALUES ('', '451', 'SEE FROM TRACING--GEOGRAPHIC NAME', 'SEE FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
391 INSERT INTO `auth_tag_structure` VALUES ('', '453', 'INVALID NUMBER TRACING [CLASSIFICATION FORMAT]', 'INVALID NUMBER TRACING [CLASSIFICATION FORMAT]', 1, 0, NULL);
392 INSERT INTO `auth_tag_structure` VALUES ('', '455', 'SEE FROM TRACING--GENRE/FORM TERM', 'SEE FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
393 INSERT INTO `auth_tag_structure` VALUES ('', '480', 'SEE FROM TRACING--GENERAL SUBDIVISION', 'SEE FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
394 INSERT INTO `auth_tag_structure` VALUES ('', '481', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
395 INSERT INTO `auth_tag_structure` VALUES ('', '482', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
396 INSERT INTO `auth_tag_structure` VALUES ('', '485', 'SEE FROM TRACING--FORM SUBDIVISION', 'SEE FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
397 INSERT INTO `auth_tag_structure` VALUES ('', '500', 'SEE ALSO FROM TRACING--PERSONAL NAME', 'SEE ALSO FROM TRACING--PERSONAL NAME', 1, 0, NULL);
398 INSERT INTO `auth_tag_structure` VALUES ('', '510', 'SEE ALSO FROM TRACING--CORPORATE NAME', 'SEE ALSO FROM TRACING--CORPORATE NAME', 1, 0, NULL);
399 INSERT INTO `auth_tag_structure` VALUES ('', '511', 'SEE ALSO FROM TRACING--MEETING NAME', 'SEE ALSO FROM TRACING--MEETING NAME', 1, 0, NULL);
400 INSERT INTO `auth_tag_structure` VALUES ('', '530', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
401 INSERT INTO `auth_tag_structure` VALUES ('', '548', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
402 INSERT INTO `auth_tag_structure` VALUES ('', '550', 'SEE ALSO FROM TRACING--TOPICAL TERM', 'SEE ALSO FROM TRACING--TOPICAL TERM', 1, 0, NULL);
403 INSERT INTO `auth_tag_structure` VALUES ('', '551', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
404 INSERT INTO `auth_tag_structure` VALUES ('', '553', 'VALID NUMBER TRACING [CLASSIFICATION FORMAT]', 'VALID NUMBER TRACING [CLASSIFICATION FORMAT]', 1, 0, NULL);
405 INSERT INTO `auth_tag_structure` VALUES ('', '555', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
406 INSERT INTO `auth_tag_structure` VALUES ('', '580', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
407 INSERT INTO `auth_tag_structure` VALUES ('', '581', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
408 INSERT INTO `auth_tag_structure` VALUES ('', '582', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
409 INSERT INTO `auth_tag_structure` VALUES ('', '585', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
410 INSERT INTO `auth_tag_structure` VALUES ('', '640', 'SERIES DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'SERIES DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL);
411 INSERT INTO `auth_tag_structure` VALUES ('', '641', 'SERIES NUMBERING PECULIARITIES', 'SERIES NUMBERING PECULIARITIES', 1, 0, NULL);
412 INSERT INTO `auth_tag_structure` VALUES ('', '642', 'SERIES NUMBERING EXAMPLE', 'SERIES NUMBERING EXAMPLE', 1, 0, NULL);
413 INSERT INTO `auth_tag_structure` VALUES ('', '643', 'SERIES PLACE AND PUBLISHER/ISSUING BODY', 'SERIES PLACE AND PUBLISHER/ISSUING BODY', 1, 0, NULL);
414 INSERT INTO `auth_tag_structure` VALUES ('', '644', 'SERIES ANALYSIS PRACTICE', 'SERIES ANALYSIS PRACTICE', 1, 0, NULL);
415 INSERT INTO `auth_tag_structure` VALUES ('', '645', 'SERIES TRACING PRACTICE', 'SERIES TRACING PRACTICE', 1, 0, NULL);
416 INSERT INTO `auth_tag_structure` VALUES ('', '646', 'SERIES CLASSIFICATION PRACTICE', 'SERIES CLASSIFICATION PRACTICE', 1, 0, NULL);
417 INSERT INTO `auth_tag_structure` VALUES ('', '663', 'COMPLEX SEE ALSO REFERENCE--NAME', 'COMPLEX SEE ALSO REFERENCE--NAME', 0, 0, NULL);
418 INSERT INTO `auth_tag_structure` VALUES ('', '664', 'COMPLEX SEE REFERENCE--NAME', 'COMPLEX SEE REFERENCE--NAME', 0, 0, NULL);
419 INSERT INTO `auth_tag_structure` VALUES ('', '665', 'HISTORY REFERENCE', 'HISTORY REFERENCE', 0, 0, NULL);
420 INSERT INTO `auth_tag_structure` VALUES ('', '666', 'GENERAL EXPLANATORY REFERENCE--NAME', 'GENERAL EXPLANATORY REFERENCE--NAME', 0, 0, NULL);
421 INSERT INTO `auth_tag_structure` VALUES ('', '667', 'NONPUBLIC GENERAL NOTE', 'NONPUBLIC GENERAL NOTE', 1, 0, NULL);
422 INSERT INTO `auth_tag_structure` VALUES ('', '668', 'CHARACTERS IN NONROMAN ALPHABETS [OBSOLETE]', 'CHARACTERS IN NONROMAN ALPHABETS [OBSOLETE]', 1, 0, NULL);
423 INSERT INTO `auth_tag_structure` VALUES ('', '670', 'SOURCE DATA FOUND', 'SOURCE DATA FOUND', 1, 0, NULL);
424 INSERT INTO `auth_tag_structure` VALUES ('', '671', 'NOTE--WORK CATALOGUED [OBSOLETE, CAN/MARC ONLY]', 'NOTE--WORK CATALOGUED [OBSOLETE, CAN/MARC ONLY]', 1, 0, NULL);
425 INSERT INTO `auth_tag_structure` VALUES ('', '675', 'SOURCE DATA NOT FOUND', 'SOURCE DATA NOT FOUND', 0, 0, NULL);
426 INSERT INTO `auth_tag_structure` VALUES ('', '676', 'NOTE--CATALOGUING RULES (NAMES/TITLES) [OBSOLETE, CAN/MARC ONLY]', 'NOTE--CATALOGUING RULES (NAMES/TITLES) [OBSOLETE, CAN/MARC ONLY]', 0, 0, NULL);
427 INSERT INTO `auth_tag_structure` VALUES ('', '678', 'BIOGRAPHICAL OR HISTORICAL DATA', 'BIOGRAPHICAL OR HISTORICAL DATA', 1, 0, NULL);
428 INSERT INTO `auth_tag_structure` VALUES ('', '680', 'PUBLIC GENERAL NOTE', 'PUBLIC GENERAL NOTE', 1, 0, NULL);
429 INSERT INTO `auth_tag_structure` VALUES ('', '681', 'SUBJECT EXAMPLE TRACING NOTE', 'SUBJECT EXAMPLE TRACING NOTE', 1, 0, NULL);
430 INSERT INTO `auth_tag_structure` VALUES ('', '682', 'DELETED HEADING INFORMATION', 'DELETED HEADING INFORMATION', 0, 0, NULL);
431 INSERT INTO `auth_tag_structure` VALUES ('', '683', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
432 INSERT INTO `auth_tag_structure` VALUES ('', '684', 'AUXILIARY INSTRUCTION NOTE [CLASSIFICATION FORMAT]', 'AUXILIARY INSTRUCTION NOTE [CLASSIFICATION FORMAT]', 1, 0, NULL);
433 INSERT INTO `auth_tag_structure` VALUES ('', '685', 'NOTE--SOURCE DATA FOUND (SUBJECTS) [OBSOLETE, CAN/MARC ONLY]', 'NOTE--SOURCE DATA FOUND (SUBJECTS) [OBSOLETE, CAN/MARC ONLY]', 1, 0, NULL);
434 INSERT INTO `auth_tag_structure` VALUES ('', '68a', 'HISTORY NOTE [CLASSIFICATION FORMAT]', 'HISTORY NOTE [CLASSIFICATION FORMAT]', 1, 0, NULL);
435 INSERT INTO `auth_tag_structure` VALUES ('', '686', 'NOTE--SOURCE DATA NOT FOUND (SUBJECTS) [OBSOLETE, CAN/MARC ONLY]', 'NOTE--SOURCE DATA NOT FOUND (SUBJECTS) [OBSOLETE, CAN/MARC ONLY]', 1, 0, NULL);
436 INSERT INTO `auth_tag_structure` VALUES ('', '68b', 'RELATIONSHIP TO SOURCE NOTE [CLASSIFICATION FORMAT]', 'RELATIONSHIP TO SOURCE NOTE [CLASSIFICATION FORMAT]', 1, 0, NULL);
437 INSERT INTO `auth_tag_structure` VALUES ('', '687', 'NOTE--USAGE (SUBJECTS) [OBSOLETE, CAN/MARC ONLY]', 'NOTE--USAGE (SUBJECTS) [OBSOLETE, CAN/MARC ONLY]', 1, 0, NULL);
438 INSERT INTO `auth_tag_structure` VALUES ('', '688', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
439 INSERT INTO `auth_tag_structure` VALUES ('', '700', 'ESTABLISHED HEADING LINKING ENTRY--PERSONAL NAME', 'ESTABLISHED HEADING LINKING ENTRY--PERSONAL NAME', 1, 0, NULL);
440 INSERT INTO `auth_tag_structure` VALUES ('', '710', 'ESTABLISHED HEADING LINKING ENTRY--CORPORATE NAME', 'ESTABLISHED HEADING LINKING ENTRY--CORPORATE NAME', 1, 0, NULL);
441 INSERT INTO `auth_tag_structure` VALUES ('', '711', 'ESTABLISHED HEADING LINKING ENTRY--MEETING NAME', 'ESTABLISHED HEADING LINKING ENTRY--MEETING NAME', 1, 0, NULL);
442 INSERT INTO `auth_tag_structure` VALUES ('', '730', 'ESTABLISHED HEADING LINKING ENTRY--UNIFORM TITLE', 'ESTABLISHED HEADING LINKING ENTRY--UNIFORM TITLE', 1, 0, NULL);
443 INSERT INTO `auth_tag_structure` VALUES ('', '748', 'ESTABLISHED HEADING LINKING ENTRY--CHRONOLOGICAL TERM', 'ESTABLISHED HEADING LINKING ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL);
444 INSERT INTO `auth_tag_structure` VALUES ('', '750', 'ESTABLISHED HEADING LINKING ENTRY--TOPICAL TERM', 'ESTABLISHED HEADING LINKING ENTRY--TOPICAL TERM', 1, 0, NULL);
445 INSERT INTO `auth_tag_structure` VALUES ('', '751', 'ESTABLISHED HEADING LINKING ENTRY--GEOGRAPHIC NAME', 'ESTABLISHED HEADING LINKING ENTRY--GEOGRAPHIC NAME', 1, 0, NULL);
446 INSERT INTO `auth_tag_structure` VALUES ('', '753', 'INDEX TERM--UNCONTROLLED [CLASSIFICATION FORMAT]', 'INDEX TERM--UNCONTROLLED [CLASSIFICATION FORMAT]', 1, 0, NULL);
447 INSERT INTO `auth_tag_structure` VALUES ('', '754', 'INDEX TERM--FACETED TOPICAL TERMS [CLASSIFICATION FORMAT]', 'INDEX TERM--FACETED TOPICAL TERMS [CLASSIFICATION FORMAT]', 1, 0, NULL);
448 INSERT INTO `auth_tag_structure` VALUES ('', '755', 'ESTABLISHED HEADING LINKING ENTRY--GENRE/FORM TERM', 'ESTABLISHED HEADING LINKING ENTRY--GENRE/FORM TERM', 1, 0, NULL);
449 INSERT INTO `auth_tag_structure` VALUES ('', '761', 'ADD OR DIVIDE LIKE INSTRUCTIONS [CLASSIFICATION FORMAT]', 'ADD OR DIVIDE LIKE INSTRUCTIONS [CLASSIFICATION FORMAT]', 1, 0, NULL);
450 INSERT INTO `auth_tag_structure` VALUES ('', '762', 'TABLE IDENTIFICATION [CLASSIFICATION FORMAT]', 'TABLE IDENTIFICATION [CLASSIFICATION FORMAT]', 1, 0, NULL);
451 INSERT INTO `auth_tag_structure` VALUES ('', '763', 'INTERNAL SUBARRANGEMENT OR ADD TABLE ENTRY [CLASSIFICATION FORMAT]', 'INTERNAL SUBARRANGEMENT OR ADD TABLE ENTRY [CLASSIFICATION FORMAT]', 1, 0, NULL);
452 INSERT INTO `auth_tag_structure` VALUES ('', '764', 'RULE IDENTIFICATION [CLASSIFICATION FORMAT]', 'RULE IDENTIFICATION [CLASSIFICATION FORMAT]', 1, 0, NULL);
453 INSERT INTO `auth_tag_structure` VALUES ('', '765', 'SYNTHESIZED NUMBER COMPONENTS [CLASSIFICATION FORMAT]', 'SYNTHESIZED NUMBER COMPONENTS [CLASSIFICATION FORMAT]', 1, 0, NULL);
454 INSERT INTO `auth_tag_structure` VALUES ('', '766', 'SECONDARY TABLE INFORMATION [CLASSIFICATION FORMAT]', 'SECONDARY TABLE INFORMATION [CLASSIFICATION FORMAT]', 1, 0, NULL);
455 INSERT INTO `auth_tag_structure` VALUES ('', '768', 'CITATION AND PREFERENCE ORDER INSTRUCTIONS [CLASSIFICATION FORMAT]', 'CITATION AND PREFERENCE ORDER INSTRUCTIONS [CLASSIFICATION FORMAT]', 1, 0, NULL);
456 INSERT INTO `auth_tag_structure` VALUES ('', '780', 'SUBDIVISION LINKING ENTRY--GENERAL SUBDIVISION', 'SUBDIVISION LINKING ENTRY--GENERAL SUBDIVISION', 1, 0, NULL);
457 INSERT INTO `auth_tag_structure` VALUES ('', '781', 'SUBDIVISION LINKING ENTRY--GEOGRAPHIC SUBDIVISION', 'SUBDIVISION LINKING ENTRY--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
458 INSERT INTO `auth_tag_structure` VALUES ('', '782', 'SUBDIVISION LINKING ENTRY--CHRONOLOGICAL SUBDIVISION', 'SUBDIVISION LINKING ENTRY--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
459 INSERT INTO `auth_tag_structure` VALUES ('', '785', 'SUBDIVISION LINKING ENTRY--FORM SUBDIVISION', 'SUBDIVISION LINKING ENTRY--FORM SUBDIVISION', 1, 0, NULL);
460 INSERT INTO `auth_tag_structure` VALUES ('', '788', 'COMPLEX LINKING ENTRY DATA', 'COMPLEX LINKING ENTRY DATA', 0, 0, NULL);
461 INSERT INTO `auth_tag_structure` VALUES ('', '856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL);
462 INSERT INTO `auth_tag_structure` VALUES ('', '880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL);
463
464
465
466 INSERT INTO `auth_subfield_structure` VALUES ('', '000', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
467 INSERT INTO `auth_subfield_structure` VALUES ('', '001', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
468 INSERT INTO `auth_subfield_structure` VALUES ('', '003', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
469 INSERT INTO `auth_subfield_structure` VALUES ('', '005', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
470 INSERT INTO `auth_subfield_structure` VALUES ('', '008', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
471 INSERT INTO `auth_subfield_structure` VALUES ('', '010', 'a', 'LC control number', 'LC control number', 0, 0, 0, NULL, NULL, NULL);
472 INSERT INTO `auth_subfield_structure` VALUES ('', '010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, 0, NULL, NULL, NULL);
473 INSERT INTO `auth_subfield_structure` VALUES ('', '010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
474 INSERT INTO `auth_subfield_structure` VALUES ('', '014', 'a', 'Control number of related bibliographic record', 'Control number of related bibliographic record', 0, 0, 0, NULL, NULL, NULL);
475 INSERT INTO `auth_subfield_structure` VALUES ('', '014', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
476 INSERT INTO `auth_subfield_structure` VALUES ('', '014', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
477 INSERT INTO `auth_subfield_structure` VALUES ('', '016', 'a', 'Record control number', 'Record control number', 0, 0, 0, NULL, NULL, NULL);
478 INSERT INTO `auth_subfield_structure` VALUES ('', '016', 'z', 'Canceled/invalid record control number', 'Canceled/invalid record control number', 1, 0, 0, NULL, NULL, NULL);
479 INSERT INTO `auth_subfield_structure` VALUES ('', '016', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
480 INSERT INTO `auth_subfield_structure` VALUES ('', '016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
481 INSERT INTO `auth_subfield_structure` VALUES ('', '020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 0, NULL, NULL, NULL);
482 INSERT INTO `auth_subfield_structure` VALUES ('', '020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
483 INSERT INTO `auth_subfield_structure` VALUES ('', '020', 'z', 'Canceled/invalid ISBN', 'Canceled/invalid ISBN', 1, 0, 0, NULL, NULL, NULL);
484 INSERT INTO `auth_subfield_structure` VALUES ('', '020', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
485 INSERT INTO `auth_subfield_structure` VALUES ('', '020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
486 INSERT INTO `auth_subfield_structure` VALUES ('', '022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 0, NULL, NULL, NULL);
487 INSERT INTO `auth_subfield_structure` VALUES ('', '022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, 0, NULL, NULL, NULL);
488 INSERT INTO `auth_subfield_structure` VALUES ('', '022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, 0, NULL, NULL, NULL);
489 INSERT INTO `auth_subfield_structure` VALUES ('', '022', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
490 INSERT INTO `auth_subfield_structure` VALUES ('', '022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
491 INSERT INTO `auth_subfield_structure` VALUES ('', '024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, 0, NULL, NULL, NULL);
492 INSERT INTO `auth_subfield_structure` VALUES ('', '024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
493 INSERT INTO `auth_subfield_structure` VALUES ('', '024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, 0, NULL, NULL, NULL);
494 INSERT INTO `auth_subfield_structure` VALUES ('', '024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, 0, NULL, NULL, NULL);
495 INSERT INTO `auth_subfield_structure` VALUES ('', '024', '2', 'Source of number or code', 'Source of number or code', 0, 0, 0, NULL, NULL, NULL);
496 INSERT INTO `auth_subfield_structure` VALUES ('', '024', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
497 INSERT INTO `auth_subfield_structure` VALUES ('', '024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
498 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'a', 'Number of work', 'Number of work', 0, 0, 0, NULL, NULL, NULL);
499 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'b', 'Number of movement', 'Number of movement', 0, 0, 0, NULL, NULL, NULL);
500 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, 0, NULL, NULL, NULL);
501 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, 0, NULL, NULL, NULL);
502 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'e', 'Role', 'Role', 0, 0, 0, NULL, NULL, NULL);
503 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'g', 'Clef', 'Clef', 0, 0, 0, NULL, NULL, NULL);
504 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, 0, NULL, NULL, NULL);
505 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'n', 'Key signature', 'Key signature', 0, 0, 0, NULL, NULL, NULL);
506 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'o', 'Time signature', 'Time signature', 0, 0, 0, NULL, NULL, NULL);
507 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'p', 'Musical notation', 'Musical notation', 0, 0, 0, NULL, NULL, NULL);
508 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'q', 'General note', 'General note', 1, 0, 0, NULL, NULL, NULL);
509 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'r', 'Key or mode', 'Key or mode', 0, 0, 0, NULL, NULL, NULL);
510 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 's', 'Coded validity note', 'Coded validity note', 1, 0, 0, NULL, NULL, NULL);
511 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 't', 'Text incipit', 'Text incipit', 1, 0, 0, NULL, NULL, NULL);
512 INSERT INTO `auth_subfield_structure` VALUES ('', '031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 0, NULL, NULL, NULL);
513 INSERT INTO `auth_subfield_structure` VALUES ('', '031', '2', 'System code', 'System code', 0, 0, 0, NULL, NULL, NULL);
514 INSERT INTO `auth_subfield_structure` VALUES ('', '031', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
515 INSERT INTO `auth_subfield_structure` VALUES ('', '031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
516 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, 0, NULL, NULL, NULL);
517 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, 0, NULL, NULL, NULL);
518 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, 0, NULL, NULL, NULL);
519 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, 0, NULL, NULL, NULL);
520 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, 0, NULL, NULL, NULL);
521 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, 0, NULL, NULL, NULL);
522 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, 0, NULL, NULL, NULL);
523 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, 0, NULL, NULL, NULL);
524 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'p', 'Equinox', 'Equinox', 0, 0, 0, NULL, NULL, NULL);
525 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'r', 'Distance from earth', 'Distance from earth',  1, 0, 0, NULL, NULL, NULL);
526 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, 0, NULL, NULL, NULL);
527 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, 0, NULL, NULL, NULL);
528 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'x', 'Beginning date', 'Beginning date', 0, 0, 0, NULL, NULL, NULL);
529 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'y', 'Ending date', 'Ending date', 0, 0, 0, NULL, NULL, NULL);
530 INSERT INTO `auth_subfield_structure` VALUES ('', '034', 'z', 'Name of extraterrestrial body', 'Name of extraterrestrial body', 0, 0, 0, NULL, NULL, NULL);
531 INSERT INTO `auth_subfield_structure` VALUES ('', '034', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
532 INSERT INTO `auth_subfield_structure` VALUES ('', '034', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
533 INSERT INTO `auth_subfield_structure` VALUES ('', '034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
534 INSERT INTO `auth_subfield_structure` VALUES ('', '035', 'a', 'System control number', 'System control number', 0, 0, 0, NULL, NULL, NULL);
535 INSERT INTO `auth_subfield_structure` VALUES ('', '035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, 0, NULL, NULL, NULL);
536 INSERT INTO `auth_subfield_structure` VALUES ('', '035', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
537 INSERT INTO `auth_subfield_structure` VALUES ('', '035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
538 INSERT INTO `auth_subfield_structure` VALUES ('', '040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 1, 0, NULL, NULL, NULL);
539 INSERT INTO `auth_subfield_structure` VALUES ('', '040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, 0, NULL, NULL, NULL);
540 INSERT INTO `auth_subfield_structure` VALUES ('', '040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, 0, NULL, NULL, NULL);
541 INSERT INTO `auth_subfield_structure` VALUES ('', '040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, 0, NULL, NULL, NULL);
542 INSERT INTO `auth_subfield_structure` VALUES ('', '040', 'e', 'Description conventions', 'Description conventions', 0, 0, 0, NULL, NULL, NULL);
543 INSERT INTO `auth_subfield_structure` VALUES ('', '040', 'f', 'Subject heading or thesaurus conventions', 'Subject heading or thesaurus conventions', 0, 0, 0, NULL, NULL, NULL);
544 INSERT INTO `auth_subfield_structure` VALUES ('', '040', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
545 INSERT INTO `auth_subfield_structure` VALUES ('', '040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
546 INSERT INTO `auth_subfield_structure` VALUES ('', '042', 'a', 'Authentication code', 'Authentication code', 1, 0, 0, NULL, NULL, NULL);
547 INSERT INTO `auth_subfield_structure` VALUES ('', '043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, 0, NULL, NULL, NULL);
548 INSERT INTO `auth_subfield_structure` VALUES ('', '043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, 0, NULL, NULL, NULL);
549 INSERT INTO `auth_subfield_structure` VALUES ('', '043', 'c', 'ISO code', 'ISO code', 1, 0, 0, NULL, NULL, NULL);
550 INSERT INTO `auth_subfield_structure` VALUES ('', '043', '2', 'Source of local code', 'Source of local code', 1, 0, 0, NULL, NULL, NULL);
551 INSERT INTO `auth_subfield_structure` VALUES ('', '043', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
552 INSERT INTO `auth_subfield_structure` VALUES ('', '043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
553 INSERT INTO `auth_subfield_structure` VALUES ('', '045', 'a', 'Time period code', 'Time period code', 1, 0, 0, NULL, NULL, NULL);
554 INSERT INTO `auth_subfield_structure` VALUES ('', '045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 0, 0, 0, NULL, NULL, NULL);
555 INSERT INTO `auth_subfield_structure` VALUES ('', '045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, 0, NULL, NULL, NULL);
556 INSERT INTO `auth_subfield_structure` VALUES ('', '045', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
557 INSERT INTO `auth_subfield_structure` VALUES ('', '045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
558 INSERT INTO `auth_subfield_structure` VALUES ('', '050', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
559 INSERT INTO `auth_subfield_structure` VALUES ('', '050', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
560 INSERT INTO `auth_subfield_structure` VALUES ('', '050', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
561 INSERT INTO `auth_subfield_structure` VALUES ('', '050', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
562 INSERT INTO `auth_subfield_structure` VALUES ('', '050', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
563 INSERT INTO `auth_subfield_structure` VALUES ('', '050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
564 INSERT INTO `auth_subfield_structure` VALUES ('', '052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, 0, NULL, NULL, NULL);
565 INSERT INTO `auth_subfield_structure` VALUES ('', '052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, 0, NULL, NULL, NULL);
566 INSERT INTO `auth_subfield_structure` VALUES ('', '052', 'd', 'Populated place name', 'Populated place name', 1, 0, 0, NULL, NULL, NULL);
567 INSERT INTO `auth_subfield_structure` VALUES ('', '052', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
568 INSERT INTO `auth_subfield_structure` VALUES ('', '052', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
569 INSERT INTO `auth_subfield_structure` VALUES ('', '052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
570 INSERT INTO `auth_subfield_structure` VALUES ('', '053', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
571 INSERT INTO `auth_subfield_structure` VALUES ('', '053', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 1, 0, 0, NULL, NULL, NULL);
572 INSERT INTO `auth_subfield_structure` VALUES ('', '053', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
573 INSERT INTO `auth_subfield_structure` VALUES ('', '053', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
574 INSERT INTO `auth_subfield_structure` VALUES ('', '053', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
575 INSERT INTO `auth_subfield_structure` VALUES ('', '053', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
576 INSERT INTO `auth_subfield_structure` VALUES ('', '055', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
577 INSERT INTO `auth_subfield_structure` VALUES ('', '055', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
578 INSERT INTO `auth_subfield_structure` VALUES ('', '055', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
579 INSERT INTO `auth_subfield_structure` VALUES ('', '055', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
580 INSERT INTO `auth_subfield_structure` VALUES ('', '055', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
581 INSERT INTO `auth_subfield_structure` VALUES ('', '055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
582 INSERT INTO `auth_subfield_structure` VALUES ('', '058', 'a', 'LC classification number--Single number or beginning number of a range', 'LC classification number--Single number or beginning number of a range', 0, 0, 0, NULL, NULL, NULL);
583 INSERT INTO `auth_subfield_structure` VALUES ('', '058', 'b', 'LC classification number--End number of a range', 'LC classification number--End number of a range', 0, 0, 0, NULL, NULL, NULL);
584 INSERT INTO `auth_subfield_structure` VALUES ('', '058', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
585 INSERT INTO `auth_subfield_structure` VALUES ('', '058', '5', 'Library to which class number applies', 'Library to which class number applies', 1, 0, 0, NULL, NULL, NULL);
586 INSERT INTO `auth_subfield_structure` VALUES ('', '058', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
587 INSERT INTO `auth_subfield_structure` VALUES ('', '060', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
588 INSERT INTO `auth_subfield_structure` VALUES ('', '060', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
589 INSERT INTO `auth_subfield_structure` VALUES ('', '060', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
590 INSERT INTO `auth_subfield_structure` VALUES ('', '060', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
591 INSERT INTO `auth_subfield_structure` VALUES ('', '060', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
592 INSERT INTO `auth_subfield_structure` VALUES ('', '060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
593 INSERT INTO `auth_subfield_structure` VALUES ('', '063', 'a', 'NLM classification number--Single number or beginning number of a range', 'NLM classification number--Single number or beginning number of a range', 0, 0, 0, NULL, NULL, NULL);
594 INSERT INTO `auth_subfield_structure` VALUES ('', '063', 'b', 'NLM classification number--End number of a range', 'NLM classification number--End number of a range', 0, 0, 0, NULL, NULL, NULL);
595 INSERT INTO `auth_subfield_structure` VALUES ('', '063', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
596 INSERT INTO `auth_subfield_structure` VALUES ('', '065', 'a', 'Classification number element--single number or beginning of span', 'Classification number element--single number or beginning of span', 0, 0, 0, NULL, NULL, NULL);
597 INSERT INTO `auth_subfield_structure` VALUES ('', '065', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
598 INSERT INTO `auth_subfield_structure` VALUES ('', '065', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
599 INSERT INTO `auth_subfield_structure` VALUES ('', '065', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
600 INSERT INTO `auth_subfield_structure` VALUES ('', '065', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
601 INSERT INTO `auth_subfield_structure` VALUES ('', '065', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
602 INSERT INTO `auth_subfield_structure` VALUES ('', '065', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
603 INSERT INTO `auth_subfield_structure` VALUES ('', '066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, 0, NULL, NULL, NULL);
604 INSERT INTO `auth_subfield_structure` VALUES ('', '066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, 0, NULL, NULL, NULL);
605 INSERT INTO `auth_subfield_structure` VALUES ('', '066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, 0, NULL, NULL, NULL);
606 INSERT INTO `auth_subfield_structure` VALUES ('', '068', 'a', 'NLM classification number--Single number or beginning number of a range', 'NLM classification number--Single number or beginning number of a range', 0, 0, 0, NULL, NULL, NULL);
607 INSERT INTO `auth_subfield_structure` VALUES ('', '068', 'b', 'NLM classification number--End number of a range', 'NLM classification number--End number of a range', 0, 0, 0, NULL, NULL, NULL);
608 INSERT INTO `auth_subfield_structure` VALUES ('', '068', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
609 INSERT INTO `auth_subfield_structure` VALUES ('', '068', '5', 'Library to which class number applies', 'Library to which class number applies', 1, 0, 0, NULL, NULL, NULL);
610 INSERT INTO `auth_subfield_structure` VALUES ('', '070', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
611 INSERT INTO `auth_subfield_structure` VALUES ('', '070', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
612 INSERT INTO `auth_subfield_structure` VALUES ('', '070', 'd', 'Volume/dates to which call number applies', 'Volume/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
613 INSERT INTO `auth_subfield_structure` VALUES ('', '070', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
614 INSERT INTO `auth_subfield_structure` VALUES ('', '070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
615 INSERT INTO `auth_subfield_structure` VALUES ('', '072', 'a', 'Subject category code', 'Subject category code', 0, 0, 0, NULL, NULL, NULL);
616 INSERT INTO `auth_subfield_structure` VALUES ('', '072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, 0, NULL, NULL, NULL);
617 INSERT INTO `auth_subfield_structure` VALUES ('', '072', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
618 INSERT INTO `auth_subfield_structure` VALUES ('', '072', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
619 INSERT INTO `auth_subfield_structure` VALUES ('', '072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
620 INSERT INTO `auth_subfield_structure` VALUES ('', '073', 'a', 'Subdivision usage', 'Subdivision usage', 1, 0, 0, NULL, NULL, NULL);
621 INSERT INTO `auth_subfield_structure` VALUES ('', '073', 'z', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
622 INSERT INTO `auth_subfield_structure` VALUES ('', '073', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
623 INSERT INTO `auth_subfield_structure` VALUES ('', '073', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
624 INSERT INTO `auth_subfield_structure` VALUES ('', '082', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
625 INSERT INTO `auth_subfield_structure` VALUES ('', '082', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
626 INSERT INTO `auth_subfield_structure` VALUES ('', '082', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
627 INSERT INTO `auth_subfield_structure` VALUES ('', '082', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
628 INSERT INTO `auth_subfield_structure` VALUES ('', '082', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
629 INSERT INTO `auth_subfield_structure` VALUES ('', '082', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
630 INSERT INTO `auth_subfield_structure` VALUES ('', '082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
631 INSERT INTO `auth_subfield_structure` VALUES ('', '083', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
632 INSERT INTO `auth_subfield_structure` VALUES ('', '083', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
633 INSERT INTO `auth_subfield_structure` VALUES ('', '083', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
634 INSERT INTO `auth_subfield_structure` VALUES ('', '083', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
635 INSERT INTO `auth_subfield_structure` VALUES ('', '083', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
636 INSERT INTO `auth_subfield_structure` VALUES ('', '083', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
637 INSERT INTO `auth_subfield_structure` VALUES ('', '083', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
638 INSERT INTO `auth_subfield_structure` VALUES ('', '083', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
639 INSERT INTO `auth_subfield_structure` VALUES ('', '084', 'a', 'Classification scheme code', 'Classification scheme code', 0, 0, 0, NULL, NULL, NULL);
640 INSERT INTO `auth_subfield_structure` VALUES ('', '084', 'b', 'Edition title', 'Edition title', 0, 0, 0, NULL, NULL, NULL);
641 INSERT INTO `auth_subfield_structure` VALUES ('', '084', 'c', 'Edition identifier', 'Edition identifier', 0, 0, 0, NULL, NULL, NULL);
642 INSERT INTO `auth_subfield_structure` VALUES ('', '084', 'd', 'Source edition identifier', 'Source edition identifier', 0, 0, 0, NULL, NULL, NULL);
643 INSERT INTO `auth_subfield_structure` VALUES ('', '084', 'e', 'Language code', 'Language code', 1, 0, 0, NULL, NULL, NULL);
644 INSERT INTO `auth_subfield_structure` VALUES ('', '084', 'f', 'Authorization', 'Authorization', 1, 0, 0, NULL, NULL, NULL);
645 INSERT INTO `auth_subfield_structure` VALUES ('', '084', 'n', 'Variations', 'Variations', 1, 0, 0, NULL, NULL, NULL);
646 INSERT INTO `auth_subfield_structure` VALUES ('', '084', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
647 INSERT INTO `auth_subfield_structure` VALUES ('', '084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
648 INSERT INTO `auth_subfield_structure` VALUES ('', '086', 'a', 'Call number', 'Call number', 0, 0, 0, NULL, NULL, NULL);
649 INSERT INTO `auth_subfield_structure` VALUES ('', '086', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
650 INSERT INTO `auth_subfield_structure` VALUES ('', '086', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
651 INSERT INTO `auth_subfield_structure` VALUES ('', '086', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
652 INSERT INTO `auth_subfield_structure` VALUES ('', '086', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
653 INSERT INTO `auth_subfield_structure` VALUES ('', '086', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
654 INSERT INTO `auth_subfield_structure` VALUES ('', '086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
655 INSERT INTO `auth_subfield_structure` VALUES ('', '087', 'a', 'Classification number element--Single number or beginning number of span', 'Classification number element--Single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
656 INSERT INTO `auth_subfield_structure` VALUES ('', '087', 'b', 'Classification number element--Ending number of span', 'Classification number element--Ending number of span', 0, 0, 0, NULL, NULL, NULL);
657 INSERT INTO `auth_subfield_structure` VALUES ('', '087', 'c', 'Explanatory information', 'Explanatory information', 0, 0, 0, NULL, NULL, NULL);
658 INSERT INTO `auth_subfield_structure` VALUES ('', '087', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
659 INSERT INTO `auth_subfield_structure` VALUES ('', '087', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
660 INSERT INTO `auth_subfield_structure` VALUES ('', '087', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
661 INSERT INTO `auth_subfield_structure` VALUES ('', '088', 'a', 'Document shelving number (CODOC)', 'Document shelving number (CODOC)', 0, 0, 0, NULL, NULL, NULL);
662 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'a', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, 0, NULL, NULL, NULL);
663 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'b', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
664 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
665 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, 0, NULL, NULL, NULL);
666 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'f', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
667 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, 0, NULL, NULL, NULL);
668 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, 0, NULL, NULL, NULL);
669 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
670 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
671 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, 0, NULL, NULL, NULL);
672 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, 0, NULL, NULL, NULL);
673 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
674 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
675 INSERT INTO `auth_subfield_structure` VALUES ('', '090', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
676 INSERT INTO `auth_subfield_structure` VALUES ('', '090', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
677 INSERT INTO `auth_subfield_structure` VALUES ('', '090', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
678 INSERT INTO `auth_subfield_structure` VALUES ('', '090', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
679 INSERT INTO `auth_subfield_structure` VALUES ('', '090', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
680 INSERT INTO `auth_subfield_structure` VALUES ('', '091', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
681 INSERT INTO `auth_subfield_structure` VALUES ('', '091', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
682 INSERT INTO `auth_subfield_structure` VALUES ('', '091', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
683 INSERT INTO `auth_subfield_structure` VALUES ('', '091', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
684 INSERT INTO `auth_subfield_structure` VALUES ('', '091', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
685 INSERT INTO `auth_subfield_structure` VALUES ('', '091', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
686 INSERT INTO `auth_subfield_structure` VALUES ('', '091', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
687 INSERT INTO `auth_subfield_structure` VALUES ('', '091', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
688 INSERT INTO `auth_subfield_structure` VALUES ('', '092', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
689 INSERT INTO `auth_subfield_structure` VALUES ('', '092', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
690 INSERT INTO `auth_subfield_structure` VALUES ('', '092', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
691 INSERT INTO `auth_subfield_structure` VALUES ('', '092', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
692 INSERT INTO `auth_subfield_structure` VALUES ('', '092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
693 INSERT INTO `auth_subfield_structure` VALUES ('', '092', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
694 INSERT INTO `auth_subfield_structure` VALUES ('', '092', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
695 INSERT INTO `auth_subfield_structure` VALUES ('', '092', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
696 INSERT INTO `auth_subfield_structure` VALUES ('', '092', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
697 INSERT INTO `auth_subfield_structure` VALUES ('', '093', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
698 INSERT INTO `auth_subfield_structure` VALUES ('', '093', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
699 INSERT INTO `auth_subfield_structure` VALUES ('', '093', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
700 INSERT INTO `auth_subfield_structure` VALUES ('', '093', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
701 INSERT INTO `auth_subfield_structure` VALUES ('', '093', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
702 INSERT INTO `auth_subfield_structure` VALUES ('', '093', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
703 INSERT INTO `auth_subfield_structure` VALUES ('', '093', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
704 INSERT INTO `auth_subfield_structure` VALUES ('', '093', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
705 INSERT INTO `auth_subfield_structure` VALUES ('', '096', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
706 INSERT INTO `auth_subfield_structure` VALUES ('', '096', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
707 INSERT INTO `auth_subfield_structure` VALUES ('', '096', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
708 INSERT INTO `auth_subfield_structure` VALUES ('', '096', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
709 INSERT INTO `auth_subfield_structure` VALUES ('', '096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
710 INSERT INTO `auth_subfield_structure` VALUES ('', '096', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
711 INSERT INTO `auth_subfield_structure` VALUES ('', '096', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
712 INSERT INTO `auth_subfield_structure` VALUES ('', '096', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
713 INSERT INTO `auth_subfield_structure` VALUES ('', '096', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
714 INSERT INTO `auth_subfield_structure` VALUES ('', '097', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
715 INSERT INTO `auth_subfield_structure` VALUES ('', '097', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
716 INSERT INTO `auth_subfield_structure` VALUES ('', '097', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
717 INSERT INTO `auth_subfield_structure` VALUES ('', '097', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
718 INSERT INTO `auth_subfield_structure` VALUES ('', '097', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
719 INSERT INTO `auth_subfield_structure` VALUES ('', '097', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
720 INSERT INTO `auth_subfield_structure` VALUES ('', '097', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
721 INSERT INTO `auth_subfield_structure` VALUES ('', '097', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
722 INSERT INTO `auth_subfield_structure` VALUES ('', '098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, 0, NULL, NULL, NULL);
723 INSERT INTO `auth_subfield_structure` VALUES ('', '098', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
724 INSERT INTO `auth_subfield_structure` VALUES ('', '098', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
725 INSERT INTO `auth_subfield_structure` VALUES ('', '098', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
726 INSERT INTO `auth_subfield_structure` VALUES ('', '098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
727 INSERT INTO `auth_subfield_structure` VALUES ('', '098', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
728 INSERT INTO `auth_subfield_structure` VALUES ('', '098', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
729 INSERT INTO `auth_subfield_structure` VALUES ('', '098', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
730 INSERT INTO `auth_subfield_structure` VALUES ('', '098', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
731 INSERT INTO `auth_subfield_structure` VALUES ('', '099', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
732 INSERT INTO `auth_subfield_structure` VALUES ('', '099', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
733 INSERT INTO `auth_subfield_structure` VALUES ('', '099', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
734 INSERT INTO `auth_subfield_structure` VALUES ('', '099', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
735 INSERT INTO `auth_subfield_structure` VALUES ('', '099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
736 INSERT INTO `auth_subfield_structure` VALUES ('', '099', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
737 INSERT INTO `auth_subfield_structure` VALUES ('', '099', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
738 INSERT INTO `auth_subfield_structure` VALUES ('', '099', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
739 INSERT INTO `auth_subfield_structure` VALUES ('', '099', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
740 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'a', 'Personal name', 'Personal name', 0, 0, 1, NULL, NULL, '''100b'',''100c'',''100q'',''100d'',''100t'',''100o'',''100m'',''100r'',''100s'',''100k'',''100n'',''100p'',''100g'',''100l'',''100f'',''100h'',''100x'',''100z'',''100y'',''100v''');
741 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'b', 'Numeration', 'Numeration', 0, 0, 1, NULL, NULL, NULL);
742 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 1, NULL, NULL, NULL);
743 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 1, NULL, NULL, NULL);
744 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'e', 'Relator term', 'Relator term', 1, 0, 1, NULL, NULL, NULL);
745 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'f', 'Date of a work', 'Date of a work', 0, 0, 1, NULL, NULL, NULL);
746 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 1, NULL, NULL, NULL);
747 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'h', 'Medium', 'Medium', 0, 0, 1, NULL, NULL, NULL);
748 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 1, NULL, NULL, NULL);
749 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'k', 'Form subheading', 'Form subheading', 1, 0, 1, NULL, NULL, NULL);
750 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'l', 'Language of a work', 'Language of a work', 0, 0, 1, NULL, NULL, NULL);
751 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 1, NULL, NULL, NULL);
752 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
753 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 1, NULL, NULL, NULL);
754 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
755 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 1, NULL, NULL, NULL);
756 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'r', 'Key for music', 'Key for music', 0, 0, 1, NULL, NULL, NULL);
757 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 's', 'Version', 'Version', 0, 0, 1, NULL, NULL, NULL);
758 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 't', 'Title of a work', 'Title of a work', 0, 0, 1, NULL, NULL, NULL);
759 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
760 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
761 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
762 INSERT INTO `auth_subfield_structure` VALUES ('', '100', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
763 INSERT INTO `auth_subfield_structure` VALUES ('', '100', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
764 INSERT INTO `auth_subfield_structure` VALUES ('', '100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
765 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 1, NULL, NULL, '''110b'',''110c'',''110d'',''110t'',''110o'',''110m'',''110r'',''110s'',''110k'',''110n'',''110p'',''110g'',''110l'',''110f'',''110h'',''110x'',''110z'',''110y'',''110v''');
766 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 1, NULL, NULL, NULL);
767 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 1, NULL, NULL, NULL);
768 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 1, NULL, NULL, NULL);
769 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'e', 'Relator term', 'Relator term', 1, 0, 1, NULL, NULL, NULL);
770 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'f', 'Date of a work', 'Date of a work', 0, 0, 1, NULL, NULL, NULL);
771 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 1, NULL, NULL, NULL);
772 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'h', 'Medium', 'Medium', 0, 0, 1, NULL, NULL, NULL);
773 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'k', 'Form subheading', 'Form subheading', 1, 0, 1, NULL, NULL, NULL);
774 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'l', 'Language of a work', 'Language of a work', 0, 0, 1, NULL, NULL, NULL);
775 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 1, NULL, NULL, NULL);
776 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 1, NULL, NULL, NULL);
777 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 1, NULL, NULL, NULL);
778 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
779 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'r', 'Key for music', 'Key for music', 0, 0, 1, NULL, NULL, NULL);
780 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 's', 'Version', 'Version', 0, 0, 1, NULL, NULL, NULL);
781 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 't', 'Title of a work', 'Title of a work', 0, 0, 1, NULL, NULL, NULL);
782 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
783 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
784 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
785 INSERT INTO `auth_subfield_structure` VALUES ('', '110', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
786 INSERT INTO `auth_subfield_structure` VALUES ('', '110', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
787 INSERT INTO `auth_subfield_structure` VALUES ('', '110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
788 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 1, NULL, NULL, '''111e'',''111c'',''111d'',''111t'',''111s'',''111k'',''111n'',''111p'',''111g'',''111l'',''111f'',''111h'',''111x'',''111z'',''111y'',''111v''');
789 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, 1, NULL, NULL, NULL);
790 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 1, NULL, NULL, NULL);
791 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 1, NULL, NULL, NULL);
792 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 1, NULL, NULL, NULL);
793 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'f', 'Date of a work', 'Date of a work', 0, 0, 1, NULL, NULL, NULL);
794 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 1, NULL, NULL, NULL);
795 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'h', 'Medium', 'Medium', 0, 0, 1, NULL, NULL, NULL);
796 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'j', 'Relator term', 'Relator term', 0, 0, 1, NULL, NULL, NULL);
797 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'k', 'Form subheading', 'Form subheading', 1, 0, 1, NULL, NULL, NULL);
798 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'l', 'Language of a work', 'Language of a work', 0, 0, 1, NULL, NULL, NULL);
799 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 1, NULL, NULL, NULL);
800 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
801 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 1, NULL, NULL, NULL);
802 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 's', 'Version', 'Version', 0, 0, 1, NULL, NULL, NULL);
803 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 't', 'Title of a work', 'Title of a work', 0, 0, 1, NULL, NULL, NULL);
804 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
805 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
806 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
807 INSERT INTO `auth_subfield_structure` VALUES ('', '111', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
808 INSERT INTO `auth_subfield_structure` VALUES ('', '111', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
809 INSERT INTO `auth_subfield_structure` VALUES ('', '111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
810 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'a', 'Uniform title', 'Uniform title', 0, 0, 1, NULL, NULL, '''130o'',''130m'',''130r'',''130s'',''130d'',''130k'',''130n'',''130p'',''130g'',''130l'',''130f'',''130h'',''130t'',''130x'',''130z'',''130y'',''130v''');
811 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 1, NULL, NULL, NULL);
812 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'f', 'Date of a work', 'Date of a work', 0, 0, 1, NULL, NULL, NULL);
813 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 1, NULL, NULL, NULL);
814 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'h', 'Medium', 'Medium', 0, 0, 1, NULL, NULL, NULL);
815 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'k', 'Form subheading', 'Form subheading', 1, 0, 1, NULL, NULL, NULL);
816 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'l', 'Language of a work', 'Language of a work', 0, 0, 1, NULL, NULL, NULL);
817 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 1, NULL, NULL, NULL);
818 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
819 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 1, NULL, NULL, NULL);
820 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
821 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'r', 'Key for music', 'Key for music', 0, 0, 1, NULL, NULL, NULL);
822 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 's', 'Version', 'Version', 0, 0, 1, NULL, NULL, NULL);
823 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 't', 'Title of a work', 'Title of a work', 0, 0, 1, NULL, NULL, NULL);
824 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
825 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
826 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
827 INSERT INTO `auth_subfield_structure` VALUES ('', '130', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
828 INSERT INTO `auth_subfield_structure` VALUES ('', '130', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
829 INSERT INTO `auth_subfield_structure` VALUES ('', '130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
830 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'a', 'Uniform title', 'Uniform title', 0, 0, 1, NULL, NULL, NULL);
831 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'd', 'Date of treaty', 'Date of treaty', 1, 0, 1, NULL, NULL, NULL);
832 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'f', 'Date of a work', 'Date of a work', 0, 0, 1, NULL, NULL, NULL);
833 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 1, NULL, NULL, NULL);
834 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'h', 'General material designation', 'General material designation', 0, 0, 1, NULL, NULL, NULL);
835 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'k', 'Form subheading', 'Form subheading', 1, 0, 1, NULL, NULL, NULL);
836 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'l', 'Language', 'Language', 0, 0, 1, NULL, NULL, NULL);
837 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 1, NULL, NULL, NULL);
838 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'n', 'Number of part or section/serial, thematic, or opus number', 'Number of part or section/serial, thematic, or opus number', 1, 0, 1, NULL, NULL, NULL);
839 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'o', 'Arranged or arr. for music', 'Arranged or arr. for music', 0, 0, 1, NULL, NULL, NULL);
840 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'p', 'Part or section', 'Part or section', 1, 0, 1, NULL, NULL, NULL);
841 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'r', 'Key for music', 'Key for music', 0, 0, 1, NULL, NULL, NULL);
842 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'x', 'General subject subdivision', 'General subject subdivision', 1, 0, 1, NULL, NULL, NULL);
843 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'y', 'Period subject subdivision', 'Period subject subdivision', 1, 0, 1, NULL, NULL, NULL);
844 INSERT INTO `auth_subfield_structure` VALUES ('', '140', 'z', 'Place subject subdivision', 'Place subject subdivision', 1, 0, 1, NULL, NULL, NULL);
845 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'a', 'Collective title', 'Collective title', 0, 0, 1, NULL, NULL, NULL);
846 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'd', 'Date of treaty', 'Date of treaty', 1, 0, 1, NULL, NULL, NULL);
847 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'f', 'Date of a work', 'Date of a work', 0, 0, 1, NULL, NULL, NULL);
848 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 1, NULL, NULL, NULL);
849 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'h', 'General material designation', 'General material designation', 0, 0, 1, NULL, NULL, NULL);
850 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'k', 'Form subheading', 'Form subheading', 1, 0, 1, NULL, NULL, NULL);
851 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'l', 'Language', 'Language', 0, 0, 1, NULL, NULL, NULL);
852 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 1, NULL, NULL, NULL);
853 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'n', 'Number of part or section/serial, thematic, or opus number', 'Number of part or section/serial, thematic, or opus number', 1, 0, 1, NULL, NULL, NULL);
854 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'o', 'Arranged or arr. for music', 'Arranged or arr. for music', 0, 0, 1, NULL, NULL, NULL);
855 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'p', 'Part or section', 'Part or section', 1, 0, 1, NULL, NULL, NULL);
856 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 'r', 'Key for music', 'Key for music', 0, 0, 1, NULL, NULL, NULL);
857 INSERT INTO `auth_subfield_structure` VALUES ('', '143', 's', 'Version', 'Version', 1, 0, 1, NULL, NULL, NULL);
858 INSERT INTO `auth_subfield_structure` VALUES ('', '148', 'a', 'Chronological term', 'Chronological term', 0, 0, 1, NULL, NULL, '''148y'',''148x'',''148z'',''148v''');
859 INSERT INTO `auth_subfield_structure` VALUES ('', '148', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
860 INSERT INTO `auth_subfield_structure` VALUES ('', '148', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
861 INSERT INTO `auth_subfield_structure` VALUES ('', '148', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
862 INSERT INTO `auth_subfield_structure` VALUES ('', '148', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
863 INSERT INTO `auth_subfield_structure` VALUES ('', '148', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
864 INSERT INTO `auth_subfield_structure` VALUES ('', '148', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
865 INSERT INTO `auth_subfield_structure` VALUES ('', '150', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 1, NULL, NULL, '''150x'',''150z'',''150y'',''150v''');
866 INSERT INTO `auth_subfield_structure` VALUES ('', '150', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, 1, NULL, NULL, NULL);
867 INSERT INTO `auth_subfield_structure` VALUES ('', '150', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
868 INSERT INTO `auth_subfield_structure` VALUES ('', '150', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
869 INSERT INTO `auth_subfield_structure` VALUES ('', '150', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
870 INSERT INTO `auth_subfield_structure` VALUES ('', '150', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
871 INSERT INTO `auth_subfield_structure` VALUES ('', '150', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
872 INSERT INTO `auth_subfield_structure` VALUES ('', '150', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
873 INSERT INTO `auth_subfield_structure` VALUES ('', '151', 'a', 'Geographic name', 'Geographic name', 0, 0, 1, NULL, NULL, '''151z'',''151x'',''151y'',''151v''');
874 INSERT INTO `auth_subfield_structure` VALUES ('', '151', 'b', 'Name following place as an entry element {OBSOLETE]', 'Name following place as an entry element {OBSOLETE]', 0, 0, 1, NULL, NULL, NULL);
875 INSERT INTO `auth_subfield_structure` VALUES ('', '151', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
876 INSERT INTO `auth_subfield_structure` VALUES ('', '151', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
877 INSERT INTO `auth_subfield_structure` VALUES ('', '151', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
878 INSERT INTO `auth_subfield_structure` VALUES ('', '151', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
879 INSERT INTO `auth_subfield_structure` VALUES ('', '151', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
880 INSERT INTO `auth_subfield_structure` VALUES ('', '151', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
881 INSERT INTO `auth_subfield_structure` VALUES ('', '153', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 1, NULL, NULL, NULL);
882 INSERT INTO `auth_subfield_structure` VALUES ('', '153', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 1, NULL, NULL, NULL);
883 INSERT INTO `auth_subfield_structure` VALUES ('', '153', 'h', 'Caption hierarchy', 'Caption hierarchy', 1, 0, 1, NULL, NULL, NULL);
884 INSERT INTO `auth_subfield_structure` VALUES ('', '153', 'j', 'Caption', 'Caption', 0, 0, 1, NULL, NULL, NULL);
885 INSERT INTO `auth_subfield_structure` VALUES ('', '153', 'k', 'Summary number span caption hierarchy', 'Summary number span caption hierarchy', 1, 0, 1, NULL, NULL, NULL);
886 INSERT INTO `auth_subfield_structure` VALUES ('', '153', 'z', 'Table identification', 'Table identification', 0, 0, 1, NULL, NULL, NULL);
887 INSERT INTO `auth_subfield_structure` VALUES ('', '153', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
888 INSERT INTO `auth_subfield_structure` VALUES ('', '153', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
889 INSERT INTO `auth_subfield_structure` VALUES ('', '154', 'a', 'General explanatory index term', 'General explanatory index term', 0, 0, 1, NULL, NULL, NULL);
890 INSERT INTO `auth_subfield_structure` VALUES ('', '154', 'b', 'General explanatory index term--Succeeding level', 'General explanatory index term--Succeeding level', 1, 0, 1, NULL, NULL, NULL);
891 INSERT INTO `auth_subfield_structure` VALUES ('', '154', 'f', 'Schedule identification', 'Schedule identification', 1, 0, 1, NULL, NULL, NULL);
892 INSERT INTO `auth_subfield_structure` VALUES ('', '154', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
893 INSERT INTO `auth_subfield_structure` VALUES ('', '154', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
894 INSERT INTO `auth_subfield_structure` VALUES ('', '155', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 1, NULL, NULL, '''155v'',''155x'',''155z'',''155y''');
895 INSERT INTO `auth_subfield_structure` VALUES ('', '155', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
896 INSERT INTO `auth_subfield_structure` VALUES ('', '155', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
897 INSERT INTO `auth_subfield_structure` VALUES ('', '155', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
898 INSERT INTO `auth_subfield_structure` VALUES ('', '155', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
899 INSERT INTO `auth_subfield_structure` VALUES ('', '155', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
900 INSERT INTO `auth_subfield_structure` VALUES ('', '155', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
901 INSERT INTO `auth_subfield_structure` VALUES ('', '180', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
902 INSERT INTO `auth_subfield_structure` VALUES ('', '180', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
903 INSERT INTO `auth_subfield_structure` VALUES ('', '180', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
904 INSERT INTO `auth_subfield_structure` VALUES ('', '180', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
905 INSERT INTO `auth_subfield_structure` VALUES ('', '180', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
906 INSERT INTO `auth_subfield_structure` VALUES ('', '180', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
907 INSERT INTO `auth_subfield_structure` VALUES ('', '181', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
908 INSERT INTO `auth_subfield_structure` VALUES ('', '181', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
909 INSERT INTO `auth_subfield_structure` VALUES ('', '181', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
910 INSERT INTO `auth_subfield_structure` VALUES ('', '181', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
911 INSERT INTO `auth_subfield_structure` VALUES ('', '181', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
912 INSERT INTO `auth_subfield_structure` VALUES ('', '181', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
913 INSERT INTO `auth_subfield_structure` VALUES ('', '182', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
914 INSERT INTO `auth_subfield_structure` VALUES ('', '182', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
915 INSERT INTO `auth_subfield_structure` VALUES ('', '182', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
916 INSERT INTO `auth_subfield_structure` VALUES ('', '182', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
917 INSERT INTO `auth_subfield_structure` VALUES ('', '182', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
918 INSERT INTO `auth_subfield_structure` VALUES ('', '182', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
919 INSERT INTO `auth_subfield_structure` VALUES ('', '185', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
920 INSERT INTO `auth_subfield_structure` VALUES ('', '185', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
921 INSERT INTO `auth_subfield_structure` VALUES ('', '185', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
922 INSERT INTO `auth_subfield_structure` VALUES ('', '185', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
923 INSERT INTO `auth_subfield_structure` VALUES ('', '185', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
924 INSERT INTO `auth_subfield_structure` VALUES ('', '185', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
925 INSERT INTO `auth_subfield_structure` VALUES ('', '253', 'a', 'Classification number referred to--Single number or beginning number of span', 'Classification number referred to--Single number or beginning number of span', 1, 0, 2, NULL, NULL, NULL);
926 INSERT INTO `auth_subfield_structure` VALUES ('', '253', 'c', 'Classification number referred to--Ending number of span', 'Classification number referred to--Ending number of span', 1, 0, 2, NULL, NULL, NULL);
927 INSERT INTO `auth_subfield_structure` VALUES ('', '253', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 2, NULL, NULL, NULL);
928 INSERT INTO `auth_subfield_structure` VALUES ('', '253', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 2, NULL, NULL, NULL);
929 INSERT INTO `auth_subfield_structure` VALUES ('', '253', 'z', 'Table identification', 'Table identification', 1, 0, 2, NULL, NULL, NULL);
930 INSERT INTO `auth_subfield_structure` VALUES ('', '253', '6', 'Linkage', 'Linkage', 0, 0, 2, NULL, NULL, NULL);
931 INSERT INTO `auth_subfield_structure` VALUES ('', '253', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 2, NULL, NULL, NULL);
932 INSERT INTO `auth_subfield_structure` VALUES ('', '260', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 2, NULL, NULL, NULL);
933 INSERT INTO `auth_subfield_structure` VALUES ('', '260', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 2, NULL, NULL, NULL);
934 INSERT INTO `auth_subfield_structure` VALUES ('', '260', '6', 'Linkage', 'Linkage', 0, 0, 2, NULL, NULL, NULL);
935 INSERT INTO `auth_subfield_structure` VALUES ('', '260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 2, NULL, NULL, NULL);
936 INSERT INTO `auth_subfield_structure` VALUES ('', '353', 'a', 'Classification number referred to--Single number or beginning number of span', 'Classification number referred to--Single number or beginning number of span', 1, 0, 3, NULL, NULL, NULL);
937 INSERT INTO `auth_subfield_structure` VALUES ('', '353', 'c', 'Classification number referred to--Ending number of span', 'Classification number referred to--Ending number of span', 1, 0, 3, NULL, NULL, NULL);
938 INSERT INTO `auth_subfield_structure` VALUES ('', '353', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 3, NULL, NULL, NULL);
939 INSERT INTO `auth_subfield_structure` VALUES ('', '353', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 3, NULL, NULL, NULL);
940 INSERT INTO `auth_subfield_structure` VALUES ('', '353', 'z', 'Table identification', 'Table identification', 1, 0, 3, NULL, NULL, NULL);
941 INSERT INTO `auth_subfield_structure` VALUES ('', '353', '6', 'Linkage', 'Linkage', 0, 0, 3, NULL, NULL, NULL);
942 INSERT INTO `auth_subfield_structure` VALUES ('', '353', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 3, NULL, NULL, NULL);
943 INSERT INTO `auth_subfield_structure` VALUES ('', '360', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 3, NULL, NULL, NULL);
944 INSERT INTO `auth_subfield_structure` VALUES ('', '360', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 3, NULL, NULL, NULL);
945 INSERT INTO `auth_subfield_structure` VALUES ('', '360', '6', 'Linkage', 'Linkage', 0, 0, 3, NULL, NULL, NULL);
946 INSERT INTO `auth_subfield_structure` VALUES ('', '360', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 3, NULL, NULL, NULL);
947 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'a', 'Personal name', 'Personal name', 0, 0, 4, NULL, NULL, '''400b'',''400c'',''400q'',''400d'',''400t'',''400o'',''400m'',''400r'',''400s'',''400k'',''400n'',''400p'',''400g'',''400l'',''400f'',''400h'',''400x'',''400z'',''400y'',''400v''');
948 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'b', 'Numeration', 'Numeration', 0, 0, 4, NULL, NULL, NULL);
949 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 4, NULL, NULL, NULL);
950 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 4, NULL, NULL, NULL);
951 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
952 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
953 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
954 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
955 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
956 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 4, NULL, NULL, NULL);
957 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
958 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
959 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
960 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
961 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
962 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
963 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 4, NULL, NULL, NULL);
964 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
965 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
966 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
967 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
968 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
969 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
970 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
971 INSERT INTO `auth_subfield_structure` VALUES ('', '400', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
972 INSERT INTO `auth_subfield_structure` VALUES ('', '400', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
973 INSERT INTO `auth_subfield_structure` VALUES ('', '400', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
974 INSERT INTO `auth_subfield_structure` VALUES ('', '400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
975 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''410b'',''410c'',''410d'',''410t'',''410o'',''410m'',''410r'',''410s'',''410k'',''410n'',''410p'',''410g'',''410l'',''410f'',''410h'',''410x'',''410z'',''410y'',''410v''');
976 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
977 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
978 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 4, NULL, NULL, NULL);
979 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
980 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
981 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
982 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
983 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
984 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
985 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
986 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
987 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
988 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
989 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
990 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
991 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
992 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
993 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
994 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
995 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
996 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
997 INSERT INTO `auth_subfield_structure` VALUES ('', '410', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
998 INSERT INTO `auth_subfield_structure` VALUES ('', '410', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
999 INSERT INTO `auth_subfield_structure` VALUES ('', '410', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1000 INSERT INTO `auth_subfield_structure` VALUES ('', '410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1001 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''411e'',''411c'',''411d'',''411t'',''411s'',''411k'',''411n'',''411p'',''411g'',''411l'',''411f'',''411h'',''411x'',''411z'',''411y'',''411v''');
1002 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'b', 'Number {OBSOLETE]', 'Number {OBSOLETE]', 0, 0, 4, NULL, NULL, NULL);
1003 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
1004 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 4, NULL, NULL, NULL);
1005 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
1006 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
1007 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
1008 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
1009 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
1010 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
1011 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
1012 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
1013 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
1014 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 4, NULL, NULL, NULL);
1015 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
1016 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
1017 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
1018 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
1019 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
1020 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
1021 INSERT INTO `auth_subfield_structure` VALUES ('', '411', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
1022 INSERT INTO `auth_subfield_structure` VALUES ('', '411', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
1023 INSERT INTO `auth_subfield_structure` VALUES ('', '411', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1024 INSERT INTO `auth_subfield_structure` VALUES ('', '411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1025 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'a', 'Uniform title', 'Uniform title', 0, 0, 4, NULL, NULL, '''430o'',''430m'',''430r'',''430s'',''430d'',''430k'',''430n'',''430p'',''430g'',''430l'',''430f'',''430h'',''430t'',''430x'',''430z'',''430y'',''430v''');
1026 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 4, NULL, NULL, NULL);
1027 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
1028 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
1029 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
1030 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
1031 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
1032 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
1033 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
1034 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
1035 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
1036 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
1037 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
1038 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
1039 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
1040 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
1041 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
1042 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
1043 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
1044 INSERT INTO `auth_subfield_structure` VALUES ('', '430', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
1045 INSERT INTO `auth_subfield_structure` VALUES ('', '430', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
1046 INSERT INTO `auth_subfield_structure` VALUES ('', '430', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1047 INSERT INTO `auth_subfield_structure` VALUES ('', '430', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1048 INSERT INTO `auth_subfield_structure` VALUES ('', '448', 'a', 'Chronological term', 'Chronological term', 0, 0, 4, NULL, NULL, '''448y'',''448x'',''448z'',''448v''');
1049 INSERT INTO `auth_subfield_structure` VALUES ('', '448', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 4, NULL, NULL, NULL);
1050 INSERT INTO `auth_subfield_structure` VALUES ('', '448', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
1051 INSERT INTO `auth_subfield_structure` VALUES ('', '448', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
1052 INSERT INTO `auth_subfield_structure` VALUES ('', '448', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
1053 INSERT INTO `auth_subfield_structure` VALUES ('', '448', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
1054 INSERT INTO `auth_subfield_structure` VALUES ('', '448', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
1055 INSERT INTO `auth_subfield_structure` VALUES ('', '448', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
1056 INSERT INTO `auth_subfield_structure` VALUES ('', '448', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1057 INSERT INTO `auth_subfield_structure` VALUES ('', '448', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1058 INSERT INTO `auth_subfield_structure` VALUES ('', '450', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 4, NULL, NULL, '''450x'',''450z'',''450y'',''450v''');
1059 INSERT INTO `auth_subfield_structure` VALUES ('', '450', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 4, NULL, NULL, NULL);
1060 INSERT INTO `auth_subfield_structure` VALUES ('', '450', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
1061 INSERT INTO `auth_subfield_structure` VALUES ('', '450', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
1062 INSERT INTO `auth_subfield_structure` VALUES ('', '450', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
1063 INSERT INTO `auth_subfield_structure` VALUES ('', '450', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
1064 INSERT INTO `auth_subfield_structure` VALUES ('', '450', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
1065 INSERT INTO `auth_subfield_structure` VALUES ('', '450', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
1066 INSERT INTO `auth_subfield_structure` VALUES ('', '450', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
1067 INSERT INTO `auth_subfield_structure` VALUES ('', '450', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1068 INSERT INTO `auth_subfield_structure` VALUES ('', '450', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1069 INSERT INTO `auth_subfield_structure` VALUES ('', '451', 'a', 'Geographic name', 'Geographic name', 0, 0, 4, NULL, NULL, '''451z'',''451x'',''451y'',''451v''');
1070 INSERT INTO `auth_subfield_structure` VALUES ('', '451', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
1071 INSERT INTO `auth_subfield_structure` VALUES ('', '451', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
1072 INSERT INTO `auth_subfield_structure` VALUES ('', '451', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
1073 INSERT INTO `auth_subfield_structure` VALUES ('', '451', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
1074 INSERT INTO `auth_subfield_structure` VALUES ('', '451', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
1075 INSERT INTO `auth_subfield_structure` VALUES ('', '451', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
1076 INSERT INTO `auth_subfield_structure` VALUES ('', '451', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
1077 INSERT INTO `auth_subfield_structure` VALUES ('', '451', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1078 INSERT INTO `auth_subfield_structure` VALUES ('', '451', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1079 INSERT INTO `auth_subfield_structure` VALUES ('', '453', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 4, NULL, NULL, NULL);
1080 INSERT INTO `auth_subfield_structure` VALUES ('', '453', 'c', 'Classification element--Ending number of span', 'Classification element--Ending number of span', 1, 0, 4, NULL, NULL, NULL);
1081 INSERT INTO `auth_subfield_structure` VALUES ('', '453', 'h', 'Caption hierarchy', 'Caption hierarchy', 1, 0, 4, NULL, NULL, NULL);
1082 INSERT INTO `auth_subfield_structure` VALUES ('', '453', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
1083 INSERT INTO `auth_subfield_structure` VALUES ('', '453', 'j', 'Caption', 'Caption', 0, 0, 4, NULL, NULL, NULL);
1084 INSERT INTO `auth_subfield_structure` VALUES ('', '453', 'k', 'Summary number span caption hierarchy', 'Summary number span caption hierarchy', 1, 0, 4, NULL, NULL, NULL);
1085 INSERT INTO `auth_subfield_structure` VALUES ('', '453', 't', 'Topic', 'Topic', 0, 0, 4, NULL, NULL, NULL);
1086 INSERT INTO `auth_subfield_structure` VALUES ('', '453', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
1087 INSERT INTO `auth_subfield_structure` VALUES ('', '453', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 4, NULL, NULL, NULL);
1088 INSERT INTO `auth_subfield_structure` VALUES ('', '453', 'z', 'Table identification', 'Table identification', 0, 0, 4, NULL, NULL, NULL);
1089 INSERT INTO `auth_subfield_structure` VALUES ('', '453', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1090 INSERT INTO `auth_subfield_structure` VALUES ('', '453', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1091 INSERT INTO `auth_subfield_structure` VALUES ('', '455', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 4, NULL, NULL, '''455v'',''455x'',''455z'',''455y''');
1092 INSERT INTO `auth_subfield_structure` VALUES ('', '455', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
1093 INSERT INTO `auth_subfield_structure` VALUES ('', '455', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
1094 INSERT INTO `auth_subfield_structure` VALUES ('', '455', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
1095 INSERT INTO `auth_subfield_structure` VALUES ('', '455', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
1096 INSERT INTO `auth_subfield_structure` VALUES ('', '455', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
1097 INSERT INTO `auth_subfield_structure` VALUES ('', '455', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
1098 INSERT INTO `auth_subfield_structure` VALUES ('', '455', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
1099 INSERT INTO `auth_subfield_structure` VALUES ('', '455', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1100 INSERT INTO `auth_subfield_structure` VALUES ('', '455', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1101 INSERT INTO `auth_subfield_structure` VALUES ('', '480', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
1102 INSERT INTO `auth_subfield_structure` VALUES ('', '480', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
1103 INSERT INTO `auth_subfield_structure` VALUES ('', '480', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
1104 INSERT INTO `auth_subfield_structure` VALUES ('', '480', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
1105 INSERT INTO `auth_subfield_structure` VALUES ('', '480', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
1106 INSERT INTO `auth_subfield_structure` VALUES ('', '480', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
1107 INSERT INTO `auth_subfield_structure` VALUES ('', '480', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
1108 INSERT INTO `auth_subfield_structure` VALUES ('', '480', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1109 INSERT INTO `auth_subfield_structure` VALUES ('', '480', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1110 INSERT INTO `auth_subfield_structure` VALUES ('', '481', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
1111 INSERT INTO `auth_subfield_structure` VALUES ('', '481', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
1112 INSERT INTO `auth_subfield_structure` VALUES ('', '481', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
1113 INSERT INTO `auth_subfield_structure` VALUES ('', '481', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
1114 INSERT INTO `auth_subfield_structure` VALUES ('', '481', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
1115 INSERT INTO `auth_subfield_structure` VALUES ('', '481', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
1116 INSERT INTO `auth_subfield_structure` VALUES ('', '481', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
1117 INSERT INTO `auth_subfield_structure` VALUES ('', '481', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1118 INSERT INTO `auth_subfield_structure` VALUES ('', '481', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1119 INSERT INTO `auth_subfield_structure` VALUES ('', '482', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
1120 INSERT INTO `auth_subfield_structure` VALUES ('', '482', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
1121 INSERT INTO `auth_subfield_structure` VALUES ('', '482', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
1122 INSERT INTO `auth_subfield_structure` VALUES ('', '482', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
1123 INSERT INTO `auth_subfield_structure` VALUES ('', '482', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
1124 INSERT INTO `auth_subfield_structure` VALUES ('', '482', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
1125 INSERT INTO `auth_subfield_structure` VALUES ('', '482', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
1126 INSERT INTO `auth_subfield_structure` VALUES ('', '482', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1127 INSERT INTO `auth_subfield_structure` VALUES ('', '482', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1128 INSERT INTO `auth_subfield_structure` VALUES ('', '485', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
1129 INSERT INTO `auth_subfield_structure` VALUES ('', '485', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
1130 INSERT INTO `auth_subfield_structure` VALUES ('', '485', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
1131 INSERT INTO `auth_subfield_structure` VALUES ('', '485', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
1132 INSERT INTO `auth_subfield_structure` VALUES ('', '485', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
1133 INSERT INTO `auth_subfield_structure` VALUES ('', '485', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
1134 INSERT INTO `auth_subfield_structure` VALUES ('', '485', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
1135 INSERT INTO `auth_subfield_structure` VALUES ('', '485', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
1136 INSERT INTO `auth_subfield_structure` VALUES ('', '485', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
1137 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'a', 'Personal name', 'Personal name', 0, 0, 5, NULL, NULL, '''500b'',''500c'',''500q'',''500d'',''500t'',''500o'',''500m'',''500r'',''500s'',''500k'',''500n'',''500p'',''500g'',''500l'',''500f'',''500h'',''500x'',''500z'',''500y'',''500v''');
1138 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'b', 'Numeration', 'Numeration', 0, 0, 5, NULL, NULL, NULL);
1139 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 5, NULL, NULL, NULL);
1140 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 5, NULL, NULL, NULL);
1141 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
1142 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
1143 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
1144 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
1145 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1146 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 5, NULL, NULL, NULL);
1147 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
1148 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
1149 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
1150 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
1151 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
1152 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
1153 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 5, NULL, NULL, NULL);
1154 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
1155 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
1156 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
1157 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1158 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1159 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1160 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1161 INSERT INTO `auth_subfield_structure` VALUES ('', '500', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1162 INSERT INTO `auth_subfield_structure` VALUES ('', '500', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1163 INSERT INTO `auth_subfield_structure` VALUES ('', '500', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1164 INSERT INTO `auth_subfield_structure` VALUES ('', '500', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1165 INSERT INTO `auth_subfield_structure` VALUES ('', '500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1166 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''510b'',''510c'',''510d'',''510t'',''510o'',''510m'',''510r'',''510s'',''510k'',''510n'',''510p'',''510g'',''510l'',''510f'',''510h'',''510x'',''510z'',''510y'',''510v''');
1167 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
1168 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
1169 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 5, NULL, NULL, NULL);
1170 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
1171 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
1172 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
1173 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
1174 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1175 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
1176 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
1177 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
1178 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
1179 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
1180 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
1181 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
1182 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
1183 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
1184 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1185 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1186 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1187 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1188 INSERT INTO `auth_subfield_structure` VALUES ('', '510', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1189 INSERT INTO `auth_subfield_structure` VALUES ('', '510', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1190 INSERT INTO `auth_subfield_structure` VALUES ('', '510', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1191 INSERT INTO `auth_subfield_structure` VALUES ('', '510', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1192 INSERT INTO `auth_subfield_structure` VALUES ('', '510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1193 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''511e'',''511c'',''511d'',''511t'',''511s'',''511k'',''511n'',''511p'',''511g'',''511l'',''511f'',''511h'',''511x'',''511z'',''511y'',''511v''');
1194 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
1195 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 5, NULL, NULL, NULL);
1196 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
1197 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
1198 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
1199 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
1200 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1201 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
1202 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
1203 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
1204 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
1205 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 5, NULL, NULL, NULL);
1206 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
1207 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
1208 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1209 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1210 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1211 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1212 INSERT INTO `auth_subfield_structure` VALUES ('', '511', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1213 INSERT INTO `auth_subfield_structure` VALUES ('', '511', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1214 INSERT INTO `auth_subfield_structure` VALUES ('', '511', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1215 INSERT INTO `auth_subfield_structure` VALUES ('', '511', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1216 INSERT INTO `auth_subfield_structure` VALUES ('', '511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1217 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'a', 'Uniform title', 'Uniform title', 0, 0, 5, NULL, NULL, '''530o'',''530m'',''530r'',''530s'',''530d'',''530k'',''530n'',''530p'',''530g'',''530l'',''530f'',''530h'',''530t'',''530x'',''530z'',''530y'',''530v''');
1218 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 5, NULL, NULL, NULL);
1219 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
1220 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
1221 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
1222 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1223 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
1224 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
1225 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
1226 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
1227 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
1228 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
1229 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
1230 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
1231 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
1232 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1233 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1234 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1235 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1236 INSERT INTO `auth_subfield_structure` VALUES ('', '530', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1237 INSERT INTO `auth_subfield_structure` VALUES ('', '530', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1238 INSERT INTO `auth_subfield_structure` VALUES ('', '530', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1239 INSERT INTO `auth_subfield_structure` VALUES ('', '530', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1240 INSERT INTO `auth_subfield_structure` VALUES ('', '530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1241 INSERT INTO `auth_subfield_structure` VALUES ('', '548', 'a', 'Chronological term', 'Chronological term', 0, 0, 5, NULL, NULL, '''548y'',''548x'',''548z'',''548v''');
1242 INSERT INTO `auth_subfield_structure` VALUES ('', '548', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 5, NULL, NULL, NULL);
1243 INSERT INTO `auth_subfield_structure` VALUES ('', '548', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1244 INSERT INTO `auth_subfield_structure` VALUES ('', '548', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1245 INSERT INTO `auth_subfield_structure` VALUES ('', '548', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1246 INSERT INTO `auth_subfield_structure` VALUES ('', '548', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1247 INSERT INTO `auth_subfield_structure` VALUES ('', '548', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1248 INSERT INTO `auth_subfield_structure` VALUES ('', '548', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1249 INSERT INTO `auth_subfield_structure` VALUES ('', '548', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1250 INSERT INTO `auth_subfield_structure` VALUES ('', '548', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1251 INSERT INTO `auth_subfield_structure` VALUES ('', '548', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1252 INSERT INTO `auth_subfield_structure` VALUES ('', '550', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 5, NULL, NULL, '''550x'',''550z'',''550y'',''550v''');
1253 INSERT INTO `auth_subfield_structure` VALUES ('', '550', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 5, NULL, NULL, NULL);
1254 INSERT INTO `auth_subfield_structure` VALUES ('', '550', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1255 INSERT INTO `auth_subfield_structure` VALUES ('', '550', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1256 INSERT INTO `auth_subfield_structure` VALUES ('', '550', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1257 INSERT INTO `auth_subfield_structure` VALUES ('', '550', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1258 INSERT INTO `auth_subfield_structure` VALUES ('', '550', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1259 INSERT INTO `auth_subfield_structure` VALUES ('', '550', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1260 INSERT INTO `auth_subfield_structure` VALUES ('', '550', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1261 INSERT INTO `auth_subfield_structure` VALUES ('', '550', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1262 INSERT INTO `auth_subfield_structure` VALUES ('', '550', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1263 INSERT INTO `auth_subfield_structure` VALUES ('', '550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1264 INSERT INTO `auth_subfield_structure` VALUES ('', '551', 'a', 'Geographic name', 'Geographic name', 0, 0, 5, NULL, NULL, '''551z'',''551x'',''551y'',''551v''');
1265 INSERT INTO `auth_subfield_structure` VALUES ('', '551', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1266 INSERT INTO `auth_subfield_structure` VALUES ('', '551', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1267 INSERT INTO `auth_subfield_structure` VALUES ('', '551', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1268 INSERT INTO `auth_subfield_structure` VALUES ('', '551', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1269 INSERT INTO `auth_subfield_structure` VALUES ('', '551', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1270 INSERT INTO `auth_subfield_structure` VALUES ('', '551', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1271 INSERT INTO `auth_subfield_structure` VALUES ('', '551', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1272 INSERT INTO `auth_subfield_structure` VALUES ('', '551', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1273 INSERT INTO `auth_subfield_structure` VALUES ('', '551', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1274 INSERT INTO `auth_subfield_structure` VALUES ('', '551', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1275 INSERT INTO `auth_subfield_structure` VALUES ('', '553', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 5, NULL, NULL, NULL);
1276 INSERT INTO `auth_subfield_structure` VALUES ('', '553', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 5, NULL, NULL, NULL);
1277 INSERT INTO `auth_subfield_structure` VALUES ('', '553', 'h', 'Caption hierarchy', 'Caption hierarchy', 1, 0, 5, NULL, NULL, NULL);
1278 INSERT INTO `auth_subfield_structure` VALUES ('', '553', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1279 INSERT INTO `auth_subfield_structure` VALUES ('', '553', 'j', 'Caption', 'Caption', 0, 0, 5, NULL, NULL, NULL);
1280 INSERT INTO `auth_subfield_structure` VALUES ('', '553', 'k', 'Summary number span caption hierarchy', 'Summary number span caption hierarchy', 1, 0, 5, NULL, NULL, NULL);
1281 INSERT INTO `auth_subfield_structure` VALUES ('', '553', 't', 'Topic', 'Topic', 0, 0, 5, NULL, NULL, NULL);
1282 INSERT INTO `auth_subfield_structure` VALUES ('', '553', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1283 INSERT INTO `auth_subfield_structure` VALUES ('', '553', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 5, NULL, NULL, NULL);
1284 INSERT INTO `auth_subfield_structure` VALUES ('', '553', 'z', 'Table identification', 'Table identification', 0, 0, 5, NULL, NULL, NULL);
1285 INSERT INTO `auth_subfield_structure` VALUES ('', '553', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1286 INSERT INTO `auth_subfield_structure` VALUES ('', '553', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1287 INSERT INTO `auth_subfield_structure` VALUES ('', '555', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 5, NULL, NULL, '''555v'',''555x'',''555z'',''555y''');
1288 INSERT INTO `auth_subfield_structure` VALUES ('', '555', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1289 INSERT INTO `auth_subfield_structure` VALUES ('', '555', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1290 INSERT INTO `auth_subfield_structure` VALUES ('', '555', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1291 INSERT INTO `auth_subfield_structure` VALUES ('', '555', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1292 INSERT INTO `auth_subfield_structure` VALUES ('', '555', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1293 INSERT INTO `auth_subfield_structure` VALUES ('', '555', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1294 INSERT INTO `auth_subfield_structure` VALUES ('', '555', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1295 INSERT INTO `auth_subfield_structure` VALUES ('', '555', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1296 INSERT INTO `auth_subfield_structure` VALUES ('', '555', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1297 INSERT INTO `auth_subfield_structure` VALUES ('', '555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1298 INSERT INTO `auth_subfield_structure` VALUES ('', '580', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1299 INSERT INTO `auth_subfield_structure` VALUES ('', '580', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1300 INSERT INTO `auth_subfield_structure` VALUES ('', '580', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1301 INSERT INTO `auth_subfield_structure` VALUES ('', '580', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1302 INSERT INTO `auth_subfield_structure` VALUES ('', '580', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1303 INSERT INTO `auth_subfield_structure` VALUES ('', '580', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1304 INSERT INTO `auth_subfield_structure` VALUES ('', '580', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1305 INSERT INTO `auth_subfield_structure` VALUES ('', '580', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1306 INSERT INTO `auth_subfield_structure` VALUES ('', '580', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1307 INSERT INTO `auth_subfield_structure` VALUES ('', '580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1308 INSERT INTO `auth_subfield_structure` VALUES ('', '581', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1309 INSERT INTO `auth_subfield_structure` VALUES ('', '581', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1310 INSERT INTO `auth_subfield_structure` VALUES ('', '581', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1311 INSERT INTO `auth_subfield_structure` VALUES ('', '581', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1312 INSERT INTO `auth_subfield_structure` VALUES ('', '581', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1313 INSERT INTO `auth_subfield_structure` VALUES ('', '581', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1314 INSERT INTO `auth_subfield_structure` VALUES ('', '581', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1315 INSERT INTO `auth_subfield_structure` VALUES ('', '581', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1316 INSERT INTO `auth_subfield_structure` VALUES ('', '581', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1317 INSERT INTO `auth_subfield_structure` VALUES ('', '581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1318 INSERT INTO `auth_subfield_structure` VALUES ('', '582', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1319 INSERT INTO `auth_subfield_structure` VALUES ('', '582', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1320 INSERT INTO `auth_subfield_structure` VALUES ('', '582', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1321 INSERT INTO `auth_subfield_structure` VALUES ('', '582', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1322 INSERT INTO `auth_subfield_structure` VALUES ('', '582', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1323 INSERT INTO `auth_subfield_structure` VALUES ('', '582', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1324 INSERT INTO `auth_subfield_structure` VALUES ('', '582', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1325 INSERT INTO `auth_subfield_structure` VALUES ('', '582', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1326 INSERT INTO `auth_subfield_structure` VALUES ('', '582', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1327 INSERT INTO `auth_subfield_structure` VALUES ('', '582', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1328 INSERT INTO `auth_subfield_structure` VALUES ('', '585', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
1329 INSERT INTO `auth_subfield_structure` VALUES ('', '585', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
1330 INSERT INTO `auth_subfield_structure` VALUES ('', '585', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
1331 INSERT INTO `auth_subfield_structure` VALUES ('', '585', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
1332 INSERT INTO `auth_subfield_structure` VALUES ('', '585', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
1333 INSERT INTO `auth_subfield_structure` VALUES ('', '585', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
1334 INSERT INTO `auth_subfield_structure` VALUES ('', '585', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
1335 INSERT INTO `auth_subfield_structure` VALUES ('', '585', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
1336 INSERT INTO `auth_subfield_structure` VALUES ('', '585', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
1337 INSERT INTO `auth_subfield_structure` VALUES ('', '585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
1338 INSERT INTO `auth_subfield_structure` VALUES ('', '640', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 6, NULL, NULL, NULL);
1339 INSERT INTO `auth_subfield_structure` VALUES ('', '640', 'z', 'Source of information', 'Source of information', 0, 0, 6, NULL, NULL, NULL);
1340 INSERT INTO `auth_subfield_structure` VALUES ('', '640', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1341 INSERT INTO `auth_subfield_structure` VALUES ('', '640', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1342 INSERT INTO `auth_subfield_structure` VALUES ('', '641', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, 6, NULL, NULL, NULL);
1343 INSERT INTO `auth_subfield_structure` VALUES ('', '641', 'z', 'Source of information', 'Source of information', 0, 0, 6, NULL, NULL, NULL);
1344 INSERT INTO `auth_subfield_structure` VALUES ('', '641', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1345 INSERT INTO `auth_subfield_structure` VALUES ('', '641', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1346 INSERT INTO `auth_subfield_structure` VALUES ('', '642', 'a', 'Series numbering example', 'Series numbering example', 0, 0, 6, NULL, NULL, NULL);
1347 INSERT INTO `auth_subfield_structure` VALUES ('', '642', 'd', 'Volumes/dates to which series numbering example applies', 'Volumes/dates to which series numbering example applies', 0, 0, 6, NULL, NULL, NULL);
1348 INSERT INTO `auth_subfield_structure` VALUES ('', '642', '5', 'Institution/copy to which field applies', 'Institution/copy to which field applies', 1, 0, 6, NULL, NULL, NULL);
1349 INSERT INTO `auth_subfield_structure` VALUES ('', '642', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1350 INSERT INTO `auth_subfield_structure` VALUES ('', '642', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1351 INSERT INTO `auth_subfield_structure` VALUES ('', '643', 'a', 'Place', 'Place', 1, 0, 6, NULL, NULL, NULL);
1352 INSERT INTO `auth_subfield_structure` VALUES ('', '643', 'b', 'Publisher/issuing body', 'Publisher/issuing body', 1, 0, 6, NULL, NULL, NULL);
1353 INSERT INTO `auth_subfield_structure` VALUES ('', '643', 'd', 'Volumes/dates to which place and publisher/issuing body apply', 'Volumes/dates to which place and publisher/issuing body apply', 0, 0, 6, NULL, NULL, NULL);
1354 INSERT INTO `auth_subfield_structure` VALUES ('', '643', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1355 INSERT INTO `auth_subfield_structure` VALUES ('', '643', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1356 INSERT INTO `auth_subfield_structure` VALUES ('', '644', 'a', 'Series analysis practice', 'Series analysis practice', 0, 0, 6, NULL, NULL, NULL);
1357 INSERT INTO `auth_subfield_structure` VALUES ('', '644', 'b', 'Exceptions to analysis practice', 'Exceptions to analysis practice', 0, 0, 6, NULL, NULL, NULL);
1358 INSERT INTO `auth_subfield_structure` VALUES ('', '644', 'd', 'Volumes/dates to which analysis practice applies', 'Volumes/dates to which analysis practice applies', 0, 0, 6, NULL, NULL, NULL);
1359 INSERT INTO `auth_subfield_structure` VALUES ('', '644', '5', 'Institution/copy to which field applies', 'Institution/copy to which field applies', 1, 0, 6, NULL, NULL, NULL);
1360 INSERT INTO `auth_subfield_structure` VALUES ('', '644', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1361 INSERT INTO `auth_subfield_structure` VALUES ('', '644', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1362 INSERT INTO `auth_subfield_structure` VALUES ('', '645', 'a', 'Series tracing practice', 'Series tracing practice', 0, 0, 6, NULL, NULL, NULL);
1363 INSERT INTO `auth_subfield_structure` VALUES ('', '645', 'd', 'Volumes/dates to which tracing practice applies', 'Volumes/dates to which tracing practice applies', 0, 0, 6, NULL, NULL, NULL);
1364 INSERT INTO `auth_subfield_structure` VALUES ('', '645', '5', 'Institution/copy to which field applies', 'Institution/copy to which field applies', 1, 0, 6, NULL, NULL, NULL);
1365 INSERT INTO `auth_subfield_structure` VALUES ('', '645', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1366 INSERT INTO `auth_subfield_structure` VALUES ('', '645', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1367 INSERT INTO `auth_subfield_structure` VALUES ('', '646', 'a', 'Series classification practice', 'Series classification practice', 0, 0, 6, NULL, NULL, NULL);
1368 INSERT INTO `auth_subfield_structure` VALUES ('', '646', 'd', 'Volumes/dates to which classification practice applies', 'Volumes/dates to which classification practice applies', 0, 0, 6, NULL, NULL, NULL);
1369 INSERT INTO `auth_subfield_structure` VALUES ('', '646', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
1370 INSERT INTO `auth_subfield_structure` VALUES ('', '646', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1371 INSERT INTO `auth_subfield_structure` VALUES ('', '646', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1372 INSERT INTO `auth_subfield_structure` VALUES ('', '663', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
1373 INSERT INTO `auth_subfield_structure` VALUES ('', '663', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
1374 INSERT INTO `auth_subfield_structure` VALUES ('', '663', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
1375 INSERT INTO `auth_subfield_structure` VALUES ('', '663', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1376 INSERT INTO `auth_subfield_structure` VALUES ('', '663', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1377 INSERT INTO `auth_subfield_structure` VALUES ('', '664', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
1378 INSERT INTO `auth_subfield_structure` VALUES ('', '664', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
1379 INSERT INTO `auth_subfield_structure` VALUES ('', '664', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
1380 INSERT INTO `auth_subfield_structure` VALUES ('', '664', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1381 INSERT INTO `auth_subfield_structure` VALUES ('', '664', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1382 INSERT INTO `auth_subfield_structure` VALUES ('', '665', 'a', 'History reference', 'History reference', 1, 0, 6, NULL, NULL, NULL);
1383 INSERT INTO `auth_subfield_structure` VALUES ('', '665', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1384 INSERT INTO `auth_subfield_structure` VALUES ('', '665', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1385 INSERT INTO `auth_subfield_structure` VALUES ('', '666', 'a', 'General explanatory reference', 'General explanatory reference', 1, 0, 6, NULL, NULL, NULL);
1386 INSERT INTO `auth_subfield_structure` VALUES ('', '666', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1387 INSERT INTO `auth_subfield_structure` VALUES ('', '666', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1388 INSERT INTO `auth_subfield_structure` VALUES ('', '667', 'a', 'Nonpublic general note', 'Nonpublic general note', 0, 0, 6, NULL, NULL, NULL);
1389 INSERT INTO `auth_subfield_structure` VALUES ('', '667', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
1390 INSERT INTO `auth_subfield_structure` VALUES ('', '667', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1391 INSERT INTO `auth_subfield_structure` VALUES ('', '667', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1392 INSERT INTO `auth_subfield_structure` VALUES ('', '668', 'a', 'Characters in nonroman alphabet', 'Characters in nonroman alphabet', 0, 0, 6, NULL, NULL, NULL);
1393 INSERT INTO `auth_subfield_structure` VALUES ('', '670', 'a', 'Source citation', 'Source citation', 0, 0, 6, NULL, NULL, NULL);
1394 INSERT INTO `auth_subfield_structure` VALUES ('', '670', 'b', 'Information found', 'Information found', 0, 0, 6, NULL, NULL, NULL);
1395 INSERT INTO `auth_subfield_structure` VALUES ('', '670', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
1396 INSERT INTO `auth_subfield_structure` VALUES ('', '670', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1397 INSERT INTO `auth_subfield_structure` VALUES ('', '670', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1398 INSERT INTO `auth_subfield_structure` VALUES ('', '671', 'a', 'Citation', 'Citation', 1, 0, 6, NULL, NULL, NULL);
1399 INSERT INTO `auth_subfield_structure` VALUES ('', '671', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1400 INSERT INTO `auth_subfield_structure` VALUES ('', '675', 'a', 'Source citation', 'Source citation', 1, 0, 6, NULL, NULL, NULL);
1401 INSERT INTO `auth_subfield_structure` VALUES ('', '675', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1402 INSERT INTO `auth_subfield_structure` VALUES ('', '675', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1403 INSERT INTO `auth_subfield_structure` VALUES ('', '676', 'a', 'Rule number(s) and additional information', 'Rule number(s) and additional information', 1, 0, 6, NULL, NULL, NULL);
1404 INSERT INTO `auth_subfield_structure` VALUES ('', '676', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1405 INSERT INTO `auth_subfield_structure` VALUES ('', '678', 'a', 'Biographical or historical data', 'Biographical or historical data', 1, 0, 6, NULL, NULL, NULL);
1406 INSERT INTO `auth_subfield_structure` VALUES ('', '678', 'b', 'Expansion', 'Expansion', 0, 0, 6, NULL, NULL, NULL);
1407 INSERT INTO `auth_subfield_structure` VALUES ('', '678', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
1408 INSERT INTO `auth_subfield_structure` VALUES ('', '678', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1409 INSERT INTO `auth_subfield_structure` VALUES ('', '678', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1410 INSERT INTO `auth_subfield_structure` VALUES ('', '680', 'a', 'Heading or subdivision term', 'Heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
1411 INSERT INTO `auth_subfield_structure` VALUES ('', '680', 'c', 'Classification number--Ending number of span [CLASSIFICATION FORMAT]', 'Classification number--Ending number of span [CLASSIFICATION FORMAT]', 1, 0, 6, NULL, NULL, NULL);
1412 INSERT INTO `auth_subfield_structure` VALUES ('', '680', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
1413 INSERT INTO `auth_subfield_structure` VALUES ('', '680', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
1414 INSERT INTO `auth_subfield_structure` VALUES ('', '680', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
1415 INSERT INTO `auth_subfield_structure` VALUES ('', '680', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1416 INSERT INTO `auth_subfield_structure` VALUES ('', '680', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1417 INSERT INTO `auth_subfield_structure` VALUES ('', '681', 'a', 'Subject heading or subdivision term', 'Subject heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
1418 INSERT INTO `auth_subfield_structure` VALUES ('', '681', 'c', 'Classification number--Ending number of span [CLASSIFICATION FORMAT]', 'Classification number--Ending number of span [CLASSIFICATION FORMAT]', 1, 0, 6, NULL, NULL, NULL);
1419 INSERT INTO `auth_subfield_structure` VALUES ('', '681', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
1420 INSERT INTO `auth_subfield_structure` VALUES ('', '681', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
1421 INSERT INTO `auth_subfield_structure` VALUES ('', '681', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1422 INSERT INTO `auth_subfield_structure` VALUES ('', '681', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1423 INSERT INTO `auth_subfield_structure` VALUES ('', '682', 'a', 'Replacement heading', 'Replacement heading', 1, 0, 6, NULL, NULL, NULL);
1424 INSERT INTO `auth_subfield_structure` VALUES ('', '682', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
1425 INSERT INTO `auth_subfield_structure` VALUES ('', '682', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1426 INSERT INTO `auth_subfield_structure` VALUES ('', '682', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1427 INSERT INTO `auth_subfield_structure` VALUES ('', '683', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 6, NULL, NULL, NULL);
1428 INSERT INTO `auth_subfield_structure` VALUES ('', '683', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 6, NULL, NULL, NULL);
1429 INSERT INTO `auth_subfield_structure` VALUES ('', '683', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
1430 INSERT INTO `auth_subfield_structure` VALUES ('', '683', 'p', 'Corresponding classification field', 'Corresponding classification field', 1, 0, 6, NULL, NULL, NULL);
1431 INSERT INTO `auth_subfield_structure` VALUES ('', '683', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 6, NULL, NULL, NULL);
1432 INSERT INTO `auth_subfield_structure` VALUES ('', '683', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
1433 INSERT INTO `auth_subfield_structure` VALUES ('', '683', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
1434 INSERT INTO `auth_subfield_structure` VALUES ('', '683', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1435 INSERT INTO `auth_subfield_structure` VALUES ('', '683', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 6, NULL, NULL, NULL);
1436 INSERT INTO `auth_subfield_structure` VALUES ('', '684', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 6, NULL, NULL, NULL);
1437 INSERT INTO `auth_subfield_structure` VALUES ('', '684', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 6, NULL, NULL, NULL);
1438 INSERT INTO `auth_subfield_structure` VALUES ('', '684', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
1439 INSERT INTO `auth_subfield_structure` VALUES ('', '684', 'j', 'Caption', 'Caption', 0, 0, 6, NULL, NULL, NULL);
1440 INSERT INTO `auth_subfield_structure` VALUES ('', '684', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
1441 INSERT INTO `auth_subfield_structure` VALUES ('', '684', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
1442 INSERT INTO `auth_subfield_structure` VALUES ('', '684', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1443 INSERT INTO `auth_subfield_structure` VALUES ('', '684', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 6, NULL, NULL, NULL);
1444 INSERT INTO `auth_subfield_structure` VALUES ('', '685', 'a', 'Source consulted and information found', 'Source consulted and information found', 1, 0, 6, NULL, NULL, NULL);
1445 INSERT INTO `auth_subfield_structure` VALUES ('', '685', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1446 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', 'a', 'New number--Single number or beginning number of span', 'New number--Single number or beginning number of span', 1, 0, 0, NULL, NULL, NULL);
1447 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', 'b', 'Previous number--Single number or beginning number of span', 'Previous number--Single number or beginning number of span', 1, 0, 0, NULL, NULL, NULL);
1448 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', 'c', 'Classification number-ending number of span', 'Classification number-ending number of span', 1, 0, 0, NULL, NULL, NULL);
1449 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', 'd', 'Date of implementation of authoritative agency', 'Date of implementation of authoritative agency', 0, 0, 0, NULL, NULL, NULL);
1450 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', 'e', 'Local implementation date', 'Local implementation date', 0, 0, 0, NULL, NULL, NULL);
1451 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', 'f', 'Title and publication date', 'Title and publication date', 0, 0, 0, NULL, NULL, NULL);
1452 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 0, NULL, NULL, NULL);
1453 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', 't', 'Topic', 'Topic', 1, 0, 0, NULL, NULL, NULL);
1454 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', 'z', 'Table identification', 'Table identification', 1, 0, 0, NULL, NULL, NULL);
1455 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', '2', 'Edition number', 'Edition number', 1, 0, 0, NULL, NULL, NULL);
1456 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
1457 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
1458 INSERT INTO `auth_subfield_structure` VALUES ('', '68a', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 0, NULL, NULL, NULL);
1459 INSERT INTO `auth_subfield_structure` VALUES ('', '686', 'a', 'Source consulted and information found', 'Source consulted and information found', 1, 0, 6, NULL, NULL, NULL);
1460 INSERT INTO `auth_subfield_structure` VALUES ('', '686', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1461 INSERT INTO `auth_subfield_structure` VALUES ('', '68b', 'a', 'Number in edition described in field 084--Single number or beginning number of span', 'Number in edition described in field 084--Single number or beginning number of span', 1, 0, 0, NULL, NULL, NULL);
1462 INSERT INTO `auth_subfield_structure` VALUES ('', '68b', 'b', 'Number in primary source edition--Single number or beginning number of span', 'Number in primary source edition--Single number or beginning number of span', 1, 0, 0, NULL, NULL, NULL);
1463 INSERT INTO `auth_subfield_structure` VALUES ('', '68b', 'c', 'Ending number of span', 'Ending number of span', 1, 0, 0, NULL, NULL, NULL);
1464 INSERT INTO `auth_subfield_structure` VALUES ('', '68b', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 0, NULL, NULL, NULL);
1465 INSERT INTO `auth_subfield_structure` VALUES ('', '68b', 'o', 'Number where instructions are found--Single number or beginning number of span', 'Number where instructions are found--Single number or beginning number of span', 1, 0, 0, NULL, NULL, NULL);
1466 INSERT INTO `auth_subfield_structure` VALUES ('', '68b', 't', 'Topic', 'Topic', 1, 0, 0, NULL, NULL, NULL);
1467 INSERT INTO `auth_subfield_structure` VALUES ('', '68b', 'z', 'Table identification', 'Table identification', 1, 0, 0, NULL, NULL, NULL);
1468 INSERT INTO `auth_subfield_structure` VALUES ('', '68b', '2', 'Edition number', 'Edition number', 1, 0, 0, NULL, NULL, NULL);
1469 INSERT INTO `auth_subfield_structure` VALUES ('', '68b', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
1470 INSERT INTO `auth_subfield_structure` VALUES ('', '68b', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
1471 INSERT INTO `auth_subfield_structure` VALUES ('', '68b', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 0, NULL, NULL, NULL);
1472 INSERT INTO `auth_subfield_structure` VALUES ('', '687', 'a', 'Source consulted and information found', 'Source consulted and information found', 1, 0, 6, NULL, NULL, NULL);
1473 INSERT INTO `auth_subfield_structure` VALUES ('', '687', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1474 INSERT INTO `auth_subfield_structure` VALUES ('', '688', 'a', 'Application history note', 'Application history note', 0, 0, 6, NULL, NULL, NULL);
1475 INSERT INTO `auth_subfield_structure` VALUES ('', '688', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
1476 INSERT INTO `auth_subfield_structure` VALUES ('', '688', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
1477 INSERT INTO `auth_subfield_structure` VALUES ('', '688', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
1478 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'a', 'Personal name', 'Personal name', 0, 0, 7, NULL, NULL, NULL);
1479 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'b', 'Numeration', 'Numeration', 0, 0, 7, NULL, NULL, NULL);
1480 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 7, NULL, NULL, NULL);
1481 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 7, NULL, NULL, NULL);
1482 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'e', 'Relator term', 'Relator term', 1, 0, 7, NULL, NULL, NULL);
1483 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'f', 'Date of a work', 'Date of a work', 0, 0, 7, NULL, NULL, NULL);
1484 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 7, NULL, NULL, NULL);
1485 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'h', 'Medium', 'Medium', 0, 0, 7, NULL, NULL, NULL);
1486 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1487 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'k', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 7, NULL, NULL, NULL);
1488 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'l', 'Language of a work', 'Language of a work', 0, 0, 7, NULL, NULL, NULL);
1489 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 7, NULL, NULL, NULL);
1490 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 7, NULL, NULL, NULL);
1491 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 7, NULL, NULL, NULL);
1492 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 7, NULL, NULL, NULL);
1493 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 7, NULL, NULL, NULL);
1494 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'r', 'Key for music', 'Key for music', 0, 0, 7, NULL, NULL, NULL);
1495 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 's', 'Version', 'Version', 0, 0, 7, NULL, NULL, NULL);
1496 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 't', 'Title of a work', 'Title of a work', 0, 0, 7, NULL, NULL, NULL);
1497 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1498 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1499 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1500 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1501 INSERT INTO `auth_subfield_structure` VALUES ('', '700', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1502 INSERT INTO `auth_subfield_structure` VALUES ('', '700', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1503 INSERT INTO `auth_subfield_structure` VALUES ('', '700', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1504 INSERT INTO `auth_subfield_structure` VALUES ('', '700', '3', 'Materials specified [CLASSIFICATION FORMAT]', 'Materials specified [CLASSIFICATION FORMAT]', 0, 0, 7, NULL, NULL, NULL);
1505 INSERT INTO `auth_subfield_structure` VALUES ('', '700', '4', 'Relator code', 'Relator code', 1, 0, 7, NULL, NULL, NULL);
1506 INSERT INTO `auth_subfield_structure` VALUES ('', '700', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
1507 INSERT INTO `auth_subfield_structure` VALUES ('', '700', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1508 INSERT INTO `auth_subfield_structure` VALUES ('', '700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1509 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 7, NULL, NULL, NULL);
1510 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 7, NULL, NULL, NULL);
1511 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 7, NULL, NULL, NULL);
1512 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 7, NULL, NULL, NULL);
1513 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'e', 'Relator term', 'Relator term', 1, 0, 7, NULL, NULL, NULL);
1514 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'f', 'Date of a work', 'Date of a work', 0, 0, 7, NULL, NULL, NULL);
1515 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 7, NULL, NULL, NULL);
1516 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'h', 'Medium', 'Medium', 0, 0, 7, NULL, NULL, NULL);
1517 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1518 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'k', 'Form subheading', 'Form subheading', 1, 0, 7, NULL, NULL, NULL);
1519 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'l', 'Language of a work', 'Language of a work', 0, 0, 7, NULL, NULL, NULL);
1520 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 7, NULL, NULL, NULL);
1521 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 7, NULL, NULL, NULL);
1522 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 7, NULL, NULL, NULL);
1523 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 7, NULL, NULL, NULL);
1524 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'r', 'Key for music', 'Key for music', 0, 0, 7, NULL, NULL, NULL);
1525 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 's', 'Version', 'Version', 0, 0, 7, NULL, NULL, NULL);
1526 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 't', 'Title of a work', 'Title of a work', 0, 0, 7, NULL, NULL, NULL);
1527 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1528 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1529 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1530 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1531 INSERT INTO `auth_subfield_structure` VALUES ('', '710', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1532 INSERT INTO `auth_subfield_structure` VALUES ('', '710', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1533 INSERT INTO `auth_subfield_structure` VALUES ('', '710', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1534 INSERT INTO `auth_subfield_structure` VALUES ('', '710', '3', 'Materials specified [CLASSIFICATION FORMAT]', 'Materials specified [CLASSIFICATION FORMAT]', 0, 0, 7, NULL, NULL, NULL);
1535 INSERT INTO `auth_subfield_structure` VALUES ('', '710', '4', 'Relator code', 'Relator code', 1, 0, 7, NULL, NULL, NULL);
1536 INSERT INTO `auth_subfield_structure` VALUES ('', '710', '5', 'Institution to which field applies [CLASSIFICATION FORMAT]', 'Institution to which field applies [CLASSIFICATION FORMAT]', 1, 0, 7, NULL, NULL, NULL);
1537 INSERT INTO `auth_subfield_structure` VALUES ('', '710', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1538 INSERT INTO `auth_subfield_structure` VALUES ('', '710', '8', 'Field link and field number', 'Field link and field number', 1, 0, 7, NULL, NULL, NULL);
1539 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 7, NULL, NULL, NULL);
1540 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 7, NULL, NULL, NULL);
1541 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'd', 'Date of meeting or treating signing', 'Date of meeting or treating signing', 1, 0, 7, NULL, NULL, NULL);
1542 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 7, NULL, NULL, NULL);
1543 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'f', 'Date of a work', 'Date of a work', 0, 0, 7, NULL, NULL, NULL);
1544 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 7, NULL, NULL, NULL);
1545 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'h', 'Medium', 'Medium', 0, 0, 7, NULL, NULL, NULL);
1546 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1547 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'k', 'Form subheading', 'Form subheading', 1, 0, 7, NULL, NULL, NULL);
1548 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'l', 'Language of a work', 'Language of a work', 0, 0, 7, NULL, NULL, NULL);
1549 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 7, NULL, NULL, NULL);
1550 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 0, 0, 7, NULL, NULL, NULL);
1551 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 7, NULL, NULL, NULL);
1552 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 's', 'Version', 'Version', 0, 0, 7, NULL, NULL, NULL);
1553 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 't', 'Title of a work', 'Title of a work', 0, 0, 7, NULL, NULL, NULL);
1554 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1555 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1556 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1557 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1558 INSERT INTO `auth_subfield_structure` VALUES ('', '711', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1559 INSERT INTO `auth_subfield_structure` VALUES ('', '711', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1560 INSERT INTO `auth_subfield_structure` VALUES ('', '711', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1561 INSERT INTO `auth_subfield_structure` VALUES ('', '711', '3', 'Materials specified', 'Materials specified', 0, 0, 7, NULL, NULL, NULL);
1562 INSERT INTO `auth_subfield_structure` VALUES ('', '711', '4', 'Relator code', 'Relator code', 1, 0, 7, NULL, NULL, NULL);
1563 INSERT INTO `auth_subfield_structure` VALUES ('', '711', '5', 'Institution to which field applies [CLASSIFICATION FORMAT]', 'Institution to which field applies [CLASSIFICATION FORMAT]', 1, 0, 7, NULL, NULL, NULL);
1564 INSERT INTO `auth_subfield_structure` VALUES ('', '711', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1565 INSERT INTO `auth_subfield_structure` VALUES ('', '711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1566 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'a', 'Uniform title', 'Uniform title', 0, 0, 7, NULL, NULL, NULL);
1567 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 7, NULL, NULL, NULL);
1568 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'f', 'Date of a work', 'Date of a work', 0, 0, 7, NULL, NULL, NULL);
1569 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 7, NULL, NULL, NULL);
1570 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'h', 'Medium', 'Medium', 0, 0, 7, NULL, NULL, NULL);
1571 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1572 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'k', 'Form subheading', 'Form subheading', 1, 0, 7, NULL, NULL, NULL);
1573 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'l', 'Language of a work', 'Language of a work', 0, 0, 7, NULL, NULL, NULL);
1574 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 7, NULL, NULL, NULL);
1575 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 7, NULL, NULL, NULL);
1576 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'o', 'Arranged statement for music', 'Arranged statement for music', 1, 0, 7, NULL, NULL, NULL);
1577 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 7, NULL, NULL, NULL);
1578 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'r', 'Key for music', 'Key for music', 0, 0, 7, NULL, NULL, NULL);
1579 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 's', 'Version', 'Version', 0, 0, 7, NULL, NULL, NULL);
1580 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 't', 'Title of a work', 'Title of a work', 0, 0, 7, NULL, NULL, NULL);
1581 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1582 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1583 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1584 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1585 INSERT INTO `auth_subfield_structure` VALUES ('', '730', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1586 INSERT INTO `auth_subfield_structure` VALUES ('', '730', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1587 INSERT INTO `auth_subfield_structure` VALUES ('', '730', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1588 INSERT INTO `auth_subfield_structure` VALUES ('', '730', '3', 'Materials specified [CLASSIFICATION FORMAT]', 'Materials specified [CLASSIFICATION FORMAT]', 0, 0, 7, NULL, NULL, NULL);
1589 INSERT INTO `auth_subfield_structure` VALUES ('', '730', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
1590 INSERT INTO `auth_subfield_structure` VALUES ('', '730', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1591 INSERT INTO `auth_subfield_structure` VALUES ('', '730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1592 INSERT INTO `auth_subfield_structure` VALUES ('', '748', 'a', 'Chronological term', 'Chronological term', 0, 0, 7, NULL, NULL, NULL);
1593 INSERT INTO `auth_subfield_structure` VALUES ('', '748', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1594 INSERT INTO `auth_subfield_structure` VALUES ('', '748', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1595 INSERT INTO `auth_subfield_structure` VALUES ('', '748', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1596 INSERT INTO `auth_subfield_structure` VALUES ('', '748', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1597 INSERT INTO `auth_subfield_structure` VALUES ('', '748', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1598 INSERT INTO `auth_subfield_structure` VALUES ('', '748', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1599 INSERT INTO `auth_subfield_structure` VALUES ('', '748', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1600 INSERT INTO `auth_subfield_structure` VALUES ('', '748', '3', 'Materials specified [CLASSIFICATION FORMAT]', 'Materials specified [CLASSIFICATION FORMAT]', 0, 0, 7, NULL, NULL, NULL);
1601 INSERT INTO `auth_subfield_structure` VALUES ('', '748', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
1602 INSERT INTO `auth_subfield_structure` VALUES ('', '748', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1603 INSERT INTO `auth_subfield_structure` VALUES ('', '748', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1604 INSERT INTO `auth_subfield_structure` VALUES ('', '750', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 7, NULL, NULL, NULL);
1605 INSERT INTO `auth_subfield_structure` VALUES ('', '750', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, 7, NULL, NULL, NULL);
1606 INSERT INTO `auth_subfield_structure` VALUES ('', '750', 'c', 'Location of event', 'Location of event', 0, 0, 7, NULL, NULL, NULL);
1607 INSERT INTO `auth_subfield_structure` VALUES ('', '750', 'd', 'Active date', 'Active date', 0, 0, 7, NULL, NULL, NULL);
1608 INSERT INTO `auth_subfield_structure` VALUES ('', '750', 'i', 'Explanatory text [CLASSIFICATION FORMAT]', 'Explanatory text [CLASSIFICATION FORMAT]', 1, 0, 7, NULL, NULL, NULL);
1609 INSERT INTO `auth_subfield_structure` VALUES ('', '750', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1610 INSERT INTO `auth_subfield_structure` VALUES ('', '750', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1611 INSERT INTO `auth_subfield_structure` VALUES ('', '750', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1612 INSERT INTO `auth_subfield_structure` VALUES ('', '750', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1613 INSERT INTO `auth_subfield_structure` VALUES ('', '750', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1614 INSERT INTO `auth_subfield_structure` VALUES ('', '750', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1615 INSERT INTO `auth_subfield_structure` VALUES ('', '750', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1616 INSERT INTO `auth_subfield_structure` VALUES ('', '750', '3', 'Materials specified [CLASSIFICATION FORMAT]', 'Materials specified [CLASSIFICATION FORMAT]', 0, 0, 7, NULL, NULL, NULL);
1617 INSERT INTO `auth_subfield_structure` VALUES ('', '750', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
1618 INSERT INTO `auth_subfield_structure` VALUES ('', '750', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1619 INSERT INTO `auth_subfield_structure` VALUES ('', '750', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1620 INSERT INTO `auth_subfield_structure` VALUES ('', '751', 'a', 'Geographic name', 'Geographic name', 0, 0, 7, NULL, NULL, NULL);
1621 INSERT INTO `auth_subfield_structure` VALUES ('', '751', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1622 INSERT INTO `auth_subfield_structure` VALUES ('', '751', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1623 INSERT INTO `auth_subfield_structure` VALUES ('', '751', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1624 INSERT INTO `auth_subfield_structure` VALUES ('', '751', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1625 INSERT INTO `auth_subfield_structure` VALUES ('', '751', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1626 INSERT INTO `auth_subfield_structure` VALUES ('', '751', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1627 INSERT INTO `auth_subfield_structure` VALUES ('', '751', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1628 INSERT INTO `auth_subfield_structure` VALUES ('', '751', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1629 INSERT INTO `auth_subfield_structure` VALUES ('', '751', '3', 'Materials specified [CLASSIFICATION FORMAT]', 'Materials specified [CLASSIFICATION FORMAT]', 0, 0, 7, NULL, NULL, NULL);
1630 INSERT INTO `auth_subfield_structure` VALUES ('', '751', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
1631 INSERT INTO `auth_subfield_structure` VALUES ('', '751', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1632 INSERT INTO `auth_subfield_structure` VALUES ('', '751', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1633 INSERT INTO `auth_subfield_structure` VALUES ('', '753', 'a', 'Index term', 'Index term', 1, 0, 7, NULL, NULL, NULL);
1634 INSERT INTO `auth_subfield_structure` VALUES ('', '753', 'b', 'Index term--Succeeding level', 'Index term--Succeeding level', 1, 0, 7, NULL, NULL, NULL);
1635 INSERT INTO `auth_subfield_structure` VALUES ('', '753', 'd', 'Index term referred from', 'Index term referred from', 1, 0, 7, NULL, NULL, NULL);
1636 INSERT INTO `auth_subfield_structure` VALUES ('', '753', 'e', 'Example class number', 'Example class number', 1, 0, 7, NULL, NULL, NULL);
1637 INSERT INTO `auth_subfield_structure` VALUES ('', '753', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1638 INSERT INTO `auth_subfield_structure` VALUES ('', '753', 's', 'See also reference term', 'See also reference term', 0, 0, 7, NULL, NULL, NULL);
1639 INSERT INTO `auth_subfield_structure` VALUES ('', '753', 't', 'See also reference term--Succeeding level', 'See also reference term--Succeeding level', 1, 0, 7, NULL, NULL, NULL);
1640 INSERT INTO `auth_subfield_structure` VALUES ('', '753', 'u', 'Use reference term', 'Use reference term', 0, 0, 7, NULL, NULL, NULL);
1641 INSERT INTO `auth_subfield_structure` VALUES ('', '753', 'v', 'Use reference term--Succeeding level', 'Use reference term--Succeeding level', 1, 0, 7, NULL, NULL, NULL);
1642 INSERT INTO `auth_subfield_structure` VALUES ('', '753', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1643 INSERT INTO `auth_subfield_structure` VALUES ('', '753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1644 INSERT INTO `auth_subfield_structure` VALUES ('', '754', 'a', 'Focus term', 'Focus term', 1, 0, 7, NULL, NULL, NULL);
1645 INSERT INTO `auth_subfield_structure` VALUES ('', '754', 'b', 'Non-focus term', 'Non-focus term', 1, 0, 7, NULL, NULL, NULL);
1646 INSERT INTO `auth_subfield_structure` VALUES ('', '754', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, 7, NULL, NULL, NULL);
1647 INSERT INTO `auth_subfield_structure` VALUES ('', '754', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1648 INSERT INTO `auth_subfield_structure` VALUES ('', '754', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1649 INSERT INTO `auth_subfield_structure` VALUES ('', '754', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1650 INSERT INTO `auth_subfield_structure` VALUES ('', '754', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1651 INSERT INTO `auth_subfield_structure` VALUES ('', '754', '3', 'Material specified', 'Material specified', 0, 0, 7, NULL, NULL, NULL);
1652 INSERT INTO `auth_subfield_structure` VALUES ('', '754', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1653 INSERT INTO `auth_subfield_structure` VALUES ('', '754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1654 INSERT INTO `auth_subfield_structure` VALUES ('', '755', 'a', 'Genre/form term as entry element', 'Genre/form term as entry element', 0, 0, 7, NULL, NULL, NULL);
1655 INSERT INTO `auth_subfield_structure` VALUES ('', '755', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1656 INSERT INTO `auth_subfield_structure` VALUES ('', '755', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1657 INSERT INTO `auth_subfield_structure` VALUES ('', '755', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1658 INSERT INTO `auth_subfield_structure` VALUES ('', '755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1659 INSERT INTO `auth_subfield_structure` VALUES ('', '755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1660 INSERT INTO `auth_subfield_structure` VALUES ('', '755', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1661 INSERT INTO `auth_subfield_structure` VALUES ('', '755', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1662 INSERT INTO `auth_subfield_structure` VALUES ('', '755', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
1663 INSERT INTO `auth_subfield_structure` VALUES ('', '755', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1664 INSERT INTO `auth_subfield_structure` VALUES ('', '755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1665 INSERT INTO `auth_subfield_structure` VALUES ('', '761', 'a', 'Number where instructions are found--Single number or beginnning number of span', 'Number where instructions are found--Single number or beginnning number of span', 1, 0, 7, NULL, NULL, NULL);
1666 INSERT INTO `auth_subfield_structure` VALUES ('', '761', 'b', 'Base number', 'Base number', 0, 0, 7, NULL, NULL, NULL);
1667 INSERT INTO `auth_subfield_structure` VALUES ('', '761', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 7, NULL, NULL, NULL);
1668 INSERT INTO `auth_subfield_structure` VALUES ('', '761', 'd', 'Divided like number', 'Divided like number', 1, 0, 7, NULL, NULL, NULL);
1669 INSERT INTO `auth_subfield_structure` VALUES ('', '761', 'e', 'Example class number', 'Example class number', 1, 0, 7, NULL, NULL, NULL);
1670 INSERT INTO `auth_subfield_structure` VALUES ('', '761', 'f', 'Facet designator', 'Facet designator', 1, 0, 7, NULL, NULL, NULL);
1671 INSERT INTO `auth_subfield_structure` VALUES ('', '761', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1672 INSERT INTO `auth_subfield_structure` VALUES ('', '761', 'n', 'Negative example class number', 'Negative example class number', 1, 0, 7, NULL, NULL, NULL);
1673 INSERT INTO `auth_subfield_structure` VALUES ('', '761', 'r', 'Root number', 'Root number', 1, 0, 7, NULL, NULL, NULL);
1674 INSERT INTO `auth_subfield_structure` VALUES ('', '761', 'x', 'Other classification number', 'Other classification number', 1, 0, 7, NULL, NULL, NULL);
1675 INSERT INTO `auth_subfield_structure` VALUES ('', '761', 'z', 'Table identification', 'Table identification', 1, 0, 7, NULL, NULL, NULL);
1676 INSERT INTO `auth_subfield_structure` VALUES ('', '761', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1677 INSERT INTO `auth_subfield_structure` VALUES ('', '761', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 7, NULL, NULL, NULL);
1678 INSERT INTO `auth_subfield_structure` VALUES ('', '762', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1679 INSERT INTO `auth_subfield_structure` VALUES ('', '762', 'z', 'Table number', 'Table number', 0, 0, 7, NULL, NULL, NULL);
1680 INSERT INTO `auth_subfield_structure` VALUES ('', '762', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1681 INSERT INTO `auth_subfield_structure` VALUES ('', '762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1682 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 0, 0, 7, NULL, NULL, NULL);
1683 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'b', 'Base number', 'Base number', 0, 0, 7, NULL, NULL, NULL);
1684 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 7, NULL, NULL, NULL);
1685 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'd', 'Divided like number', 'Divided like number', 1, 0, 7, NULL, NULL, NULL);
1686 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'e', 'Example class number', 'Example class number', 1, 0, 7, NULL, NULL, NULL);
1687 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'h', 'Caption hierarchy', 'Caption hierarchy', 1, 0, 7, NULL, NULL, NULL);
1688 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1689 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'j', 'Caption', 'Caption', 0, 0, 7, NULL, NULL, NULL);
1690 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'k', 'Summary number span caption hierarchy', 'Summary number span caption hierarchy', 1, 0, 7, NULL, NULL, NULL);
1691 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'm', 'Manual note', 'Manual note', 0, 0, 7, NULL, NULL, NULL);
1692 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'n', 'Number where instructions are found', 'Number where instructions are found', 1, 0, 7, NULL, NULL, NULL);
1693 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'p', 'Corresponding classification field', 'Corresponding classification field', 1, 0, 7, NULL, NULL, NULL);
1694 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'r', 'Root number', 'Root number', 1, 0, 7, NULL, NULL, NULL);
1695 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 's', 'See reference', 'See reference', 1, 0, 7, NULL, NULL, NULL);
1696 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'x', 'Other classification number', 'Other classification number', 1, 0, 7, NULL, NULL, NULL);
1697 INSERT INTO `auth_subfield_structure` VALUES ('', '763', 'z', 'Table identification', 'Table identification', 1, 0, 7, NULL, NULL, NULL);
1698 INSERT INTO `auth_subfield_structure` VALUES ('', '763', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1699 INSERT INTO `auth_subfield_structure` VALUES ('', '763', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 7, NULL, NULL, NULL);
1700 INSERT INTO `auth_subfield_structure` VALUES ('', '764', 'a', 'Rule number', 'Rule number', 0, 0, 7, NULL, NULL, NULL);
1701 INSERT INTO `auth_subfield_structure` VALUES ('', '764', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1702 INSERT INTO `auth_subfield_structure` VALUES ('', '764', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1703 INSERT INTO `auth_subfield_structure` VALUES ('', '764', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 7, NULL, NULL, NULL);
1704 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 'a', 'Number where instructions are found--Single number or beginning number of span', 'Number where instructions are found--Single number or beginning number of span', 1, 0, 7, NULL, NULL, NULL);
1705 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 'b', 'Base number', 'Base number', 1, 0, 7, NULL, NULL, NULL);
1706 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 'c', 'Number where instructions are found--Ending number of span', 'Number where instructions are found--Ending number of span', 1, 0, 7, NULL, NULL, NULL);
1707 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 'f', 'Facet designator', 'Facet designator', 1, 0, 7, NULL, NULL, NULL);
1708 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 'r', 'Root number', 'Root number', 1, 0, 7, NULL, NULL, NULL);
1709 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 's', 'Digits added from classification number in schedule or external table', 'Digits added from classification number in schedule or external table', 1, 0, 7, NULL, NULL, NULL);
1710 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 't', 'Digits added from internal subarrangement or add table', 'Digits added from internal subarrangement or add table', 1, 0, 7, NULL, NULL, NULL);
1711 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 'u', 'Number being analyzed', 'Number being analyzed', 1, 0, 7, NULL, NULL, NULL);
1712 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 'v', 'Number in internal subarrangement or add table where instructions are found', 'Number in internal subarrangement or add table where instructions are found', 1, 0, 7, NULL, NULL, NULL);
1713 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 'w', 'Table identification--Internal subarrangement or add table', 'Table identification--Internal subarrangement or add table', 1, 0, 7, NULL, NULL, NULL);
1714 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 7, NULL, NULL, NULL);
1715 INSERT INTO `auth_subfield_structure` VALUES ('', '765', 'z', 'Table identification', 'Table identification', 1, 0, 7, NULL, NULL, NULL);
1716 INSERT INTO `auth_subfield_structure` VALUES ('', '765', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1717 INSERT INTO `auth_subfield_structure` VALUES ('', '765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1718 INSERT INTO `auth_subfield_structure` VALUES ('', '766', 'a', 'Secondary table of applicability', 'Secondary table of applicability', 0, 0, 7, NULL, NULL, NULL);
1719 INSERT INTO `auth_subfield_structure` VALUES ('', '766', 'y', 'Type of division', 'Type of division', 1, 0, 7, NULL, NULL, NULL);
1720 INSERT INTO `auth_subfield_structure` VALUES ('', '766', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1721 INSERT INTO `auth_subfield_structure` VALUES ('', '766', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1722 INSERT INTO `auth_subfield_structure` VALUES ('', '768', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 7, NULL, NULL, NULL);
1723 INSERT INTO `auth_subfield_structure` VALUES ('', '768', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 7, NULL, NULL, NULL);
1724 INSERT INTO `auth_subfield_structure` VALUES ('', '768', 'e', 'Example class number', 'Example class number', 1, 0, 7, NULL, NULL, NULL);
1725 INSERT INTO `auth_subfield_structure` VALUES ('', '768', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1726 INSERT INTO `auth_subfield_structure` VALUES ('', '768', 'j', 'Caption', 'Caption', 1, 0, 7, NULL, NULL, NULL);
1727 INSERT INTO `auth_subfield_structure` VALUES ('', '768', 'n', 'Negative example class number', 'Negative example class number', 1, 0, 7, NULL, NULL, NULL);
1728 INSERT INTO `auth_subfield_structure` VALUES ('', '768', 't', 'Topic used as example of citation and preference order instruction', 'Topic used as example of citation and preference order instruction', 1, 0, 7, NULL, NULL, NULL);
1729 INSERT INTO `auth_subfield_structure` VALUES ('', '768', 'x', 'Exception to table of preference', 'Exception to table of preference', 1, 0, 7, NULL, NULL, NULL);
1730 INSERT INTO `auth_subfield_structure` VALUES ('', '768', 'z', 'Table identification--Table number', 'Table identification--Table number', 1, 0, 7, NULL, NULL, NULL);
1731 INSERT INTO `auth_subfield_structure` VALUES ('', '768', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1732 INSERT INTO `auth_subfield_structure` VALUES ('', '768', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 7, NULL, NULL, NULL);
1733 INSERT INTO `auth_subfield_structure` VALUES ('', '780', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1734 INSERT INTO `auth_subfield_structure` VALUES ('', '780', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1735 INSERT INTO `auth_subfield_structure` VALUES ('', '780', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1736 INSERT INTO `auth_subfield_structure` VALUES ('', '780', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1737 INSERT INTO `auth_subfield_structure` VALUES ('', '780', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1738 INSERT INTO `auth_subfield_structure` VALUES ('', '780', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1739 INSERT INTO `auth_subfield_structure` VALUES ('', '780', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1740 INSERT INTO `auth_subfield_structure` VALUES ('', '780', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
1741 INSERT INTO `auth_subfield_structure` VALUES ('', '780', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1742 INSERT INTO `auth_subfield_structure` VALUES ('', '780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1743 INSERT INTO `auth_subfield_structure` VALUES ('', '781', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1744 INSERT INTO `auth_subfield_structure` VALUES ('', '781', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1745 INSERT INTO `auth_subfield_structure` VALUES ('', '781', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1746 INSERT INTO `auth_subfield_structure` VALUES ('', '781', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1747 INSERT INTO `auth_subfield_structure` VALUES ('', '781', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1748 INSERT INTO `auth_subfield_structure` VALUES ('', '781', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1749 INSERT INTO `auth_subfield_structure` VALUES ('', '781', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1750 INSERT INTO `auth_subfield_structure` VALUES ('', '781', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
1751 INSERT INTO `auth_subfield_structure` VALUES ('', '781', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1752 INSERT INTO `auth_subfield_structure` VALUES ('', '781', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1753 INSERT INTO `auth_subfield_structure` VALUES ('', '782', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1754 INSERT INTO `auth_subfield_structure` VALUES ('', '782', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1755 INSERT INTO `auth_subfield_structure` VALUES ('', '782', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1756 INSERT INTO `auth_subfield_structure` VALUES ('', '782', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1757 INSERT INTO `auth_subfield_structure` VALUES ('', '782', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1758 INSERT INTO `auth_subfield_structure` VALUES ('', '782', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1759 INSERT INTO `auth_subfield_structure` VALUES ('', '782', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1760 INSERT INTO `auth_subfield_structure` VALUES ('', '782', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
1761 INSERT INTO `auth_subfield_structure` VALUES ('', '782', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1762 INSERT INTO `auth_subfield_structure` VALUES ('', '782', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1763 INSERT INTO `auth_subfield_structure` VALUES ('', '785', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
1764 INSERT INTO `auth_subfield_structure` VALUES ('', '785', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
1765 INSERT INTO `auth_subfield_structure` VALUES ('', '785', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
1766 INSERT INTO `auth_subfield_structure` VALUES ('', '785', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
1767 INSERT INTO `auth_subfield_structure` VALUES ('', '785', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
1768 INSERT INTO `auth_subfield_structure` VALUES ('', '785', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1769 INSERT INTO `auth_subfield_structure` VALUES ('', '785', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1770 INSERT INTO `auth_subfield_structure` VALUES ('', '785', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
1771 INSERT INTO `auth_subfield_structure` VALUES ('', '785', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1772 INSERT INTO `auth_subfield_structure` VALUES ('', '785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1773 INSERT INTO `auth_subfield_structure` VALUES ('', '788', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 7, NULL, NULL, NULL);
1774 INSERT INTO `auth_subfield_structure` VALUES ('', '788', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
1775 INSERT INTO `auth_subfield_structure` VALUES ('', '788', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
1776 INSERT INTO `auth_subfield_structure` VALUES ('', '788', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
1777 INSERT INTO `auth_subfield_structure` VALUES ('', '788', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
1778 INSERT INTO `auth_subfield_structure` VALUES ('', '788', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
1779 INSERT INTO `auth_subfield_structure` VALUES ('', '788', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
1780 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'a', 'Host name', 'Host name', 1, 0, 8, NULL, NULL, NULL);
1781 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'b', 'Access number', 'Access number', 1, 0, 8, NULL, NULL, NULL);
1782 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'c', 'Compression information', 'Compression information', 1, 0, 8, NULL, NULL, NULL);
1783 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'd', 'Path', 'Path', 1, 0, 8, NULL, NULL, NULL);
1784 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'f', 'Electronic name', 'Electronic name', 1, 0, 8, NULL, NULL, NULL);
1785 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'h', 'Processor of request', 'Processor of request', 0, 0, 8, NULL, NULL, NULL);
1786 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'i', 'Instruction', 'Instruction', 1, 0, 8, NULL, NULL, NULL);
1787 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'j', 'Bits per second', 'Bits per second', 0, 0, 8, NULL, NULL, NULL);
1788 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'k', 'Password', 'Password', 0, 0, 8, NULL, NULL, NULL);
1789 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'l', 'Logon', 'Logon', 0, 0, 8, NULL, NULL, NULL);
1790 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, 8, NULL, NULL, NULL);
1791 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'n', 'Name of location of host', 'Name of location of host', 0, 0, 8, NULL, NULL, NULL);
1792 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'o', 'Operating system', 'Operating system', 0, 0, 8, NULL, NULL, NULL);
1793 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'p', 'Port', 'Port', 0, 0, 8, NULL, NULL, NULL);
1794 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, 8, NULL, NULL, NULL);
1795 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'r', 'Settings', 'Settings', 0, 0, 8, NULL, NULL, NULL);
1796 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 's', 'File size', 'File size', 1, 0, 8, NULL, NULL, NULL);
1797 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, 8, NULL, NULL, NULL);
1798 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 8, NULL, NULL, NULL);
1799 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, 8, NULL, NULL, NULL);
1800 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'w', 'Record control number', 'Record control number', 1, 0, 8, NULL, NULL, NULL);
1801 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, 8, NULL, NULL, NULL);
1802 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'y', 'Link text', 'Link text', 1, 0, 8, NULL, NULL, NULL);
1803 INSERT INTO `auth_subfield_structure` VALUES ('', '856', 'z', 'Public note', 'Public note', 1, 0, 8, NULL, NULL, NULL);
1804 INSERT INTO `auth_subfield_structure` VALUES ('', '856', '2', 'Access method', 'Access method', 0, 0, 8, NULL, NULL, NULL);
1805 INSERT INTO `auth_subfield_structure` VALUES ('', '856', '3', 'Materials specified', 'Materials specified', 0, 0, 8, NULL, NULL, NULL);
1806 INSERT INTO `auth_subfield_structure` VALUES ('', '856', '6', 'Linkage', 'Linkage', 0, 0, 8, NULL, NULL, NULL);
1807 INSERT INTO `auth_subfield_structure` VALUES ('', '856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 8, NULL, NULL, NULL);
1808 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'a', 'a', 'a', 1, 0, 8, NULL, NULL, NULL);
1809 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'b', 'b', 'b', 1, 0, 8, NULL, NULL, NULL);
1810 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'c', 'c', 'c', 1, 0, 8, NULL, NULL, NULL);
1811 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'd', 'd', 'd', 1, 0, 8, NULL, NULL, NULL);
1812 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'e', 'e', 'e', 1, 0, 8, NULL, NULL, NULL);
1813 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'f', 'f', 'f', 1, 0, 8, NULL, NULL, NULL);
1814 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'g', 'g', 'g', 1, 0, 8, NULL, NULL, NULL);
1815 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'h', 'h', 'h', 1, 0, 8, NULL, NULL, NULL);
1816 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'i', 'i', 'i', 1, 0, 8, NULL, NULL, NULL);
1817 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'j', 'j', 'j', 1, 0, 8, NULL, NULL, NULL);
1818 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'k', 'k', 'k', 1, 0, 8, NULL, NULL, NULL);
1819 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'l', 'l', 'l', 1, 0, 8, NULL, NULL, NULL);
1820 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'm', 'm', 'm', 1, 0, 8, NULL, NULL, NULL);
1821 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'n', 'n', 'n', 1, 0, 8, NULL, NULL, NULL);
1822 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'o', 'o', 'o', 1, 0, 8, NULL, NULL, NULL);
1823 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'p', 'p', 'p', 1, 0, 8, NULL, NULL, NULL);
1824 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'q', 'q', 'q', 1, 0, 8, NULL, NULL, NULL);
1825 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'r', 'r', 'r', 1, 0, 8, NULL, NULL, NULL);
1826 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 's', 's', 's', 1, 0, 8, NULL, NULL, NULL);
1827 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 't', 't', 't', 1, 0, 8, NULL, NULL, NULL);
1828 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'u', 'u', 'u', 1, 0, 8, NULL, NULL, NULL);
1829 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'v', 'v', 'v', 1, 0, 8, NULL, NULL, NULL);
1830 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'w', 'w', 'w', 1, 0, 8, NULL, NULL, NULL);
1831 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'x', 'x', 'x', 1, 0, 8, NULL, NULL, NULL);
1832 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'y', 'y', 'y', 1, 0, 8, NULL, NULL, NULL);
1833 INSERT INTO `auth_subfield_structure` VALUES ('', '880', 'z', 'z', 'z', 1, 0, 8, NULL, NULL, NULL);
1834 INSERT INTO `auth_subfield_structure` VALUES ('', '880', '0', '0', '0', 1, 0, 8, NULL, NULL, NULL);
1835 INSERT INTO `auth_subfield_structure` VALUES ('', '880', '1', '1', '1', 1, 0, 8, NULL, NULL, NULL);
1836 INSERT INTO `auth_subfield_structure` VALUES ('', '880', '2', '2', '2', 1, 0, 8, NULL, NULL, NULL);
1837 INSERT INTO `auth_subfield_structure` VALUES ('', '880', '3', '3', '3', 1, 0, 8, NULL, NULL, NULL);
1838 INSERT INTO `auth_subfield_structure` VALUES ('', '880', '4', '4', '4', 1, 0, 8, NULL, NULL, NULL);
1839 INSERT INTO `auth_subfield_structure` VALUES ('', '880', '5', '5', '5', 1, 0, 8, NULL, NULL, NULL);
1840 INSERT INTO `auth_subfield_structure` VALUES ('', '880', '6', '6', '6', 1, 0, 8, NULL, NULL, NULL);
1841 INSERT INTO `auth_subfield_structure` VALUES ('', '880', '7', '7', '7', 1, 0, 8, NULL, NULL, NULL);
1842 INSERT INTO `auth_subfield_structure` VALUES ('', '880', '8', '8', '8', 1, 0, 8, NULL, NULL, NULL);
1843 INSERT INTO `auth_subfield_structure` VALUES ('', '880', '9', '9', '9', 1, 0, 8, NULL, NULL, NULL);
1844
1845
1846 -- ******************************************************
1847
1848
1849
1850 -- *******************************************************************
1851 -- PERSONAL NAME AUTHORITY FIELDS/SUBFIELDS. 
1852 -- *******************************************************************
1853
1854 -- These ought to be adjusted for different less conflicting and more 
1855 -- rationally chosen fields and subfields but I had left that for last. 
1856
1857 -- ADJUST ME
1858 -- Use values from your dump of auth_tag_structure and auth_subfield_structure 
1859 -- to provide support for your Koha database.
1860
1861
1862 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '000', 'LEADER', 'LEADER', 0, 1, NULL);
1863 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 1, NULL);
1864 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 1, NULL);
1865 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 1, NULL);
1866 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '008', 'FIXED-LENGTH DATA ELEMENTS', 'FIXED-LENGTH DATA ELEMENTS', 0, 1, NULL);
1867 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, NULL);
1868 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '014', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 1, 0, NULL);
1869 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, NULL);
1870 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '020', 'INTERNATIONAL STANDARD BOOK NUMBER', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL);
1871 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL);
1872 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL);
1873 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, NULL);
1874 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL);
1875 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 1, NULL);
1876 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, NULL);
1877 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL);
1878 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '045', 'TIME PERIOD OF HEADING', 'TIME PERIOD OF HEADING', 0, 0, NULL);
1879 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL);
1880 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL);
1881 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '053', 'LC CLASSIFICATION NUMBER', 'LC CLASSIFICATION NUMBER', 1, 0, NULL);
1882 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '055', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 1, 0, NULL);
1883 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL);
1884 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '065', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL);
1885 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL);
1886 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL);
1887 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL);
1888 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '073', 'SUBDIVISION USAGE', 'SUBDIVISION USAGE', 0, 0, NULL);
1889 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '082', 'DEWEY DECIMAL CALL NUMBER', 'DEWEY DECIMAL CALL NUMBER', 1, 0, NULL);
1890 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '083', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL);
1891 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '086', 'GOVERNMENT DOCUMENT CALL NUMBER', 'GOVERNMENT DOCUMENT CALL NUMBER', 1, 0, NULL);
1892 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '087', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL);
1893 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '090', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, NULL);
1894 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '091', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 0, 0, NULL);
1895 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, NULL);
1896 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '093', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
1897 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, NULL);
1898 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '097', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
1899 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, NULL);
1900 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, NULL);
1901 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '100', 'HEADING--PERSONAL NAME', 'HEADING--PERSONAL NAME', 0, 0, NULL);
1902 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '260', 'COMPLEX SEE REFERENCE--SUBJECT', 'COMPLEX SEE REFERENCE--SUBJECT', 1, 0, NULL);
1903 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '360', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 1, 0, NULL);
1904 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '400', 'SEE FROM TRACING--PERSONAL NAME', 'SEE FROM TRACING--PERSONAL NAME', 1, 0, NULL);
1905 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '410', 'SEE FROM TRACING--CORPORATE NAME', 'SEE FROM TRACING--CORPORATE NAME', 1, 0, NULL);
1906 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '411', 'SEE FROM TRACING--MEETING NAME', 'SEE FROM TRACING--MEETING NAME', 1, 0, NULL);
1907 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '430', 'SEE FROM TRACING--UNIFORM TITLE', 'SEE FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
1908 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '448', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
1909 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '450', 'SEE FROM TRACING--TOPICAL TERM', 'SEE FROM TRACING--TOPICAL TERM', 1, 0, NULL);
1910 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '451', 'SEE FROM TRACING--GEOGRAPHIC NAME', 'SEE FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
1911 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '455', 'SEE FROM TRACING--GENRE/FORM TERM', 'SEE FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
1912 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '480', 'SEE FROM TRACING--GENERAL SUBDIVISION', 'SEE FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
1913 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '481', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
1914 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '482', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
1915 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '485', 'SEE FROM TRACING--FORM SUBDIVISION', 'SEE FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
1916 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '500', 'SEE ALSO FROM TRACING--PERSONAL NAME', 'SEE ALSO FROM TRACING--PERSONAL NAME', 1, 0, NULL);
1917 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '510', 'SEE ALSO FROM TRACING--CORPORATE NAME', 'SEE ALSO FROM TRACING--CORPORATE NAME', 1, 0, NULL);
1918 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '511', 'SEE ALSO FROM TRACING--MEETING NAME', 'SEE ALSO FROM TRACING--MEETING NAME', 1, 0, NULL);
1919 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '530', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
1920 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '548', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
1921 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '550', 'SEE ALSO FROM TRACING--TOPICAL TERM', 'SEE ALSO FROM TRACING--TOPICAL TERM', 1, 0, NULL);
1922 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '551', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
1923 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '555', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
1924 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '580', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
1925 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '581', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
1926 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '582', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
1927 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '585', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
1928 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '663', 'COMPLEX SEE ALSO REFERENCE--NAME', 'COMPLEX SEE ALSO REFERENCE--NAME', 0, 0, NULL);
1929 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '664', 'COMPLEX SEE REFERENCE--NAME', 'COMPLEX SEE REFERENCE--NAME', 0, 0, NULL);
1930 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '665', 'HISTORY REFERENCE', 'HISTORY REFERENCE', 0, 0, NULL);
1931 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '666', 'GENERAL EXPLANATORY REFERENCE--NAME', 'GENERAL EXPLANATORY REFERENCE--NAME', 0, 0, NULL);
1932 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '667', 'NONPUBLIC GENERAL NOTE', 'NONPUBLIC GENERAL NOTE', 1, 0, NULL);
1933 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '670', 'SOURCE DATA FOUND', 'SOURCE DATA FOUND', 1, 0, NULL);
1934 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '675', 'SOURCE DATA NOT FOUND', 'SOURCE DATA NOT FOUND', 0, 0, NULL);
1935 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '678', 'BIOGRAPHICAL OR HISTORICAL DATA', 'BIOGRAPHICAL OR HISTORICAL DATA', 1, 0, NULL);
1936 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '680', 'PUBLIC GENERAL NOTE', 'PUBLIC GENERAL NOTE', 1, 0, NULL);
1937 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '681', 'SUBJECT EXAMPLE TRACING NOTE', 'SUBJECT EXAMPLE TRACING NOTE', 1, 0, NULL);
1938 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '682', 'DELETED HEADING INFORMATION', 'DELETED HEADING INFORMATION', 0, 0, NULL);
1939 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '683', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
1940 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '688', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
1941 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '700', 'ESTABLISHED HEADING LINKING ENTRY--PERSONAL NAME', 'ESTABLISHED HEADING LINKING ENTRY--PERSONAL NAME', 1, 0, NULL);
1942 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '788', 'COMPLEX LINKING ENTRY DATA', 'COMPLEX LINKING ENTRY DATA', 0, 0, NULL);
1943 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL);
1944 INSERT INTO `auth_tag_structure` VALUES ('PERSO_NAME', '880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL);
1945
1946
1947 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '000', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
1948 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '001', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
1949 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '003', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
1950 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '005', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
1951 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '008', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
1952 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '010', 'a', 'LC control number', 'LC control number', 0, 0, 0, NULL, NULL, NULL);
1953 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, 0, NULL, NULL, NULL);
1954 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
1955 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '014', 'a', 'Control number of related bibliographic record', 'Control number of related bibliographic record', 0, 0, 0, NULL, NULL, NULL);
1956 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '014', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
1957 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '014', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
1958 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '016', 'a', 'Record control number', 'Record control number', 0, 0, 0, NULL, NULL, NULL);
1959 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '016', 'z', 'Canceled/invalid record control number', 'Canceled/invalid record control number', 1, 0, 0, NULL, NULL, NULL);
1960 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '016', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
1961 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
1962 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, 0, NULL, NULL, NULL);
1963 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
1964 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, 0, NULL, NULL, NULL);
1965 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, 0, NULL, NULL, NULL);
1966 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '024', '2', 'Source of number or code', 'Source of number or code', 0, 0, 0, NULL, NULL, NULL);
1967 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '024', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
1968 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
1969 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '035', 'a', 'System control number', 'System control number', 0, 0, 0, NULL, NULL, NULL);
1970 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, 0, NULL, NULL, NULL);
1971 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '035', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
1972 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
1973 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 1, 0, NULL, NULL, NULL);
1974 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, 0, NULL, NULL, NULL);
1975 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, 0, NULL, NULL, NULL);
1976 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, 0, NULL, NULL, NULL);
1977 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '040', 'e', 'Description conventions', 'Description conventions', 0, 0, 0, NULL, NULL, NULL);
1978 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '040', 'f', 'Subject heading or thesaurus conventions', 'Subject heading or thesaurus conventions', 0, 0, 0, NULL, NULL, NULL);
1979 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '040', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
1980 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
1981 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '042', 'a', 'Authentication code', 'Authentication code', 1, 0, 0, NULL, NULL, NULL);
1982 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, 0, NULL, NULL, NULL);
1983 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, 0, NULL, NULL, NULL);
1984 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '043', 'c', 'ISO code', 'ISO code', 1, 0, 0, NULL, NULL, NULL);
1985 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '043', '2', 'Source of local code', 'Source of local code', 1, 0, 0, NULL, NULL, NULL);
1986 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '043', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
1987 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
1988 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '045', 'a', 'Time period code', 'Time period code', 1, 0, 0, NULL, NULL, NULL);
1989 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 0, 0, 0, NULL, NULL, NULL);
1990 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, 0, NULL, NULL, NULL);
1991 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '045', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
1992 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
1993 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '050', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
1994 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '050', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
1995 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '050', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
1996 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '050', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
1997 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '050', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
1998 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
1999 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, 0, NULL, NULL, NULL);
2000 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, 0, NULL, NULL, NULL);
2001 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '052', 'd', 'Populated place name', 'Populated place name', 1, 0, 0, NULL, NULL, NULL);
2002 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '052', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
2003 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '052', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2004 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2005 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '053', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
2006 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '053', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 1, 0, 0, NULL, NULL, NULL);
2007 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '053', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
2008 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '053', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2009 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '053', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2010 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '053', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2011 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '055', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2012 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '055', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2013 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '055', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2014 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '055', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2015 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '055', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2016 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2017 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '060', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2018 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '060', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2019 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '060', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2020 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '060', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2021 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '060', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2022 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2023 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '065', 'a', 'Classification number element--single number or beginning of span', 'Classification number element--single number or beginning of span', 0, 0, 0, NULL, NULL, NULL);
2024 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '065', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
2025 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '065', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
2026 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '065', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
2027 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '065', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2028 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '065', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2029 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '065', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2030 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, 0, NULL, NULL, NULL);
2031 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, 0, NULL, NULL, NULL);
2032 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, 0, NULL, NULL, NULL);
2033 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '070', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2034 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '070', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2035 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '070', 'd', 'Volume/dates to which call number applies', 'Volume/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2036 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '070', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2037 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2038 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '072', 'a', 'Subject category code', 'Subject category code', 0, 0, 0, NULL, NULL, NULL);
2039 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, 0, NULL, NULL, NULL);
2040 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '072', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
2041 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '072', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2042 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2043 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '073', 'a', 'Subdivision usage', 'Subdivision usage', 1, 0, 0, NULL, NULL, NULL);
2044 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '073', 'z', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
2045 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '073', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2046 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '073', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2047 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '082', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2048 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '082', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2049 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '082', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2050 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '082', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
2051 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '082', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2052 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '082', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2053 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2054 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '083', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
2055 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '083', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
2056 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '083', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
2057 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '083', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
2058 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '083', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
2059 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '083', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2060 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '083', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2061 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '083', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2062 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '086', 'a', 'Call number', 'Call number', 0, 0, 0, NULL, NULL, NULL);
2063 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '086', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2064 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '086', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
2065 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '086', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
2066 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '086', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2067 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '086', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2068 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2069 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '087', 'a', 'Classification number element--Single number or beginning number of span', 'Classification number element--Single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
2070 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '087', 'b', 'Classification number element--Ending number of span', 'Classification number element--Ending number of span', 0, 0, 0, NULL, NULL, NULL);
2071 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '087', 'c', 'Explanatory information', 'Explanatory information', 0, 0, 0, NULL, NULL, NULL);
2072 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '087', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
2073 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '087', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2074 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '087', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2075 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'a', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, 0, NULL, NULL, NULL);
2076 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'b', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
2077 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2078 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, 0, NULL, NULL, NULL);
2079 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'f', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
2080 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, 0, NULL, NULL, NULL);
2081 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, 0, NULL, NULL, NULL);
2082 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
2083 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
2084 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, 0, NULL, NULL, NULL);
2085 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, 0, NULL, NULL, NULL);
2086 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
2087 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
2088 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
2089 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
2090 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2091 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2092 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '090', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2093 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '091', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
2094 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '091', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
2095 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '091', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
2096 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '091', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
2097 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '091', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
2098 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '091', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2099 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '091', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2100 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '091', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2101 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '092', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2102 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '092', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2103 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '092', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2104 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '092', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
2105 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
2106 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '092', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
2107 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '092', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2108 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '092', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2109 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '092', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2110 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '093', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
2111 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '093', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
2112 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '093', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
2113 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '093', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
2114 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '093', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
2115 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '093', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2116 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '093', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2117 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '093', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2118 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '096', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2119 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '096', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2120 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '096', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2121 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '096', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
2122 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
2123 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '096', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
2124 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '096', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2125 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '096', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2126 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '096', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2127 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '097', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
2128 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '097', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
2129 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '097', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
2130 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '097', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
2131 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '097', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
2132 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '097', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2133 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '097', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2134 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '097', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2135 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, 0, NULL, NULL, NULL);
2136 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '098', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2137 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '098', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2138 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '098', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
2139 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
2140 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '098', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
2141 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '098', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2142 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '098', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2143 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '098', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2144 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '099', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2145 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '099', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2146 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '099', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2147 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '099', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
2148 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
2149 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '099', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
2150 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '099', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2151 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '099', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2152 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '099', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2153 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'a', 'Personal name', 'Personal name', 0, 0, 1, NULL, NULL, '''100b'',''100c'',''100q'',''100d'',''100t'',''100o'',''100m'',''100r'',''100s'',''100k'',''100n'',''100p'',''100g'',''100l'',''100f'',''100h'',''100x'',''100z'',''100y'',''100v''');
2154 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'b', 'Numeration', 'Numeration', 0, 0, 1, NULL, NULL, NULL);
2155 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 1, NULL, NULL, NULL);
2156 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 1, NULL, NULL, NULL);
2157 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'e', 'Relator term', 'Relator term', 1, 0, 1, NULL, NULL, NULL);
2158 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'f', 'Date of a work', 'Date of a work', 0, 0, 1, NULL, NULL, NULL);
2159 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 1, NULL, NULL, NULL);
2160 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'h', 'Medium', 'Medium', 0, 0, 1, NULL, NULL, NULL);
2161 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 1, NULL, NULL, NULL);
2162 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'k', 'Form subheading', 'Form subheading', 1, 0, 1, NULL, NULL, NULL);
2163 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'l', 'Language of a work', 'Language of a work', 0, 0, 1, NULL, NULL, NULL);
2164 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 1, NULL, NULL, NULL);
2165 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
2166 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 1, NULL, NULL, NULL);
2167 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
2168 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 1, NULL, NULL, NULL);
2169 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'r', 'Key for music', 'Key for music', 0, 0, 1, NULL, NULL, NULL);
2170 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 's', 'Version', 'Version', 0, 0, 1, NULL, NULL, NULL);
2171 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 't', 'Title of a work', 'Title of a work', 0, 0, 1, NULL, NULL, NULL);
2172 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
2173 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
2174 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
2175 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
2176 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
2177 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
2178 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '260', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 2, NULL, NULL, NULL);
2179 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '260', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 2, NULL, NULL, NULL);
2180 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '260', '6', 'Linkage', 'Linkage', 0, 0, 2, NULL, NULL, NULL);
2181 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 2, NULL, NULL, NULL);
2182 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '360', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 3, NULL, NULL, NULL);
2183 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '360', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 3, NULL, NULL, NULL);
2184 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '360', '6', 'Linkage', 'Linkage', 0, 0, 3, NULL, NULL, NULL);
2185 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '360', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 3, NULL, NULL, NULL);
2186 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'a', 'Personal name', 'Personal name', 0, 0, 4, NULL, NULL, '''400b'',''400c'',''400q'',''400d'',''400t'',''400o'',''400m'',''400r'',''400s'',''400k'',''400n'',''400p'',''400g'',''400l'',''400f'',''400h'',''400x'',''400z'',''400y'',''400v''');
2187 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'b', 'Numeration', 'Numeration', 0, 0, 4, NULL, NULL, NULL);
2188 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 4, NULL, NULL, NULL);
2189 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 4, NULL, NULL, NULL);
2190 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
2191 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
2192 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
2193 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
2194 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
2195 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 4, NULL, NULL, NULL);
2196 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
2197 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
2198 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
2199 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
2200 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
2201 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
2202 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 4, NULL, NULL, NULL);
2203 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
2204 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
2205 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
2206 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2207 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2208 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2209 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2210 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2211 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2212 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2213 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2214 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''410b'',''410c'',''410d'',''410t'',''410o'',''410m'',''410r'',''410s'',''410k'',''410n'',''410p'',''410g'',''410l'',''410f'',''410h'',''410x'',''410z'',''410y'',''410v''');
2215 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
2216 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
2217 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 4, NULL, NULL, NULL);
2218 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
2219 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
2220 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
2221 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
2222 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
2223 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
2224 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
2225 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
2226 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
2227 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
2228 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
2229 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
2230 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
2231 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
2232 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2233 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2234 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2235 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2236 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2237 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2238 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2239 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2240 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''411e'',''411c'',''411d'',''411t'',''411s'',''411k'',''411n'',''411p'',''411g'',''411l'',''411f'',''411h'',''411x'',''411z'',''411y'',''411v''');
2241 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'b', 'Number {OBSOLETE]', 'Number {OBSOLETE]', 0, 0, 4, NULL, NULL, NULL);
2242 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
2243 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 4, NULL, NULL, NULL);
2244 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
2245 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
2246 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
2247 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
2248 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
2249 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
2250 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
2251 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
2252 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
2253 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 4, NULL, NULL, NULL);
2254 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
2255 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
2256 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2257 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2258 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2259 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2260 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2261 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2262 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2263 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2264 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'a', 'Uniform title', 'Uniform title', 0, 0, 4, NULL, NULL, '''430o'',''430m'',''430r'',''430s'',''430d'',''430k'',''430n'',''430p'',''430g'',''430l'',''430f'',''430h'',''430t'',''430x'',''430z'',''430y'',''430v''');
2265 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 4, NULL, NULL, NULL);
2266 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
2267 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
2268 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
2269 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
2270 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
2271 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
2272 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
2273 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
2274 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
2275 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
2276 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
2277 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
2278 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
2279 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2280 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2281 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2282 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2283 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2284 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2285 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2286 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '430', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2287 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '448', 'a', 'Chronological term', 'Chronological term', 0, 0, 4, NULL, NULL, '''448y'',''448x'',''448z'',''448v''');
2288 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '448', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 4, NULL, NULL, NULL);
2289 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '448', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2290 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '448', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2291 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '448', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2292 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '448', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2293 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '448', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2294 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '448', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2295 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '448', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2296 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '448', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2297 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '450', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 4, NULL, NULL, '''450x'',''450z'',''450y'',''450v''');
2298 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '450', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 4, NULL, NULL, NULL);
2299 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '450', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
2300 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '450', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2301 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '450', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2302 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '450', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2303 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '450', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2304 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '450', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2305 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '450', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2306 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '450', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2307 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '450', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2308 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '451', 'a', 'Geographic name', 'Geographic name', 0, 0, 4, NULL, NULL, '''451z'',''451x'',''451y'',''451v''');
2309 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '451', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
2310 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '451', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2311 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '451', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2312 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '451', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2313 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '451', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2314 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '451', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2315 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '451', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2316 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '451', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2317 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '451', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2318 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '455', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 4, NULL, NULL, '''455v'',''455x'',''455z'',''455y''');
2319 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '455', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
2320 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '455', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2321 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '455', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2322 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '455', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2323 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '455', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2324 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '455', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2325 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '455', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2326 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '455', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2327 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '455', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2328 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '480', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
2329 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '480', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2330 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '480', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2331 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '480', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2332 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '480', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2333 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '480', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2334 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '480', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2335 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '480', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2336 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '480', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2337 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '481', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
2338 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '481', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2339 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '481', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2340 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '481', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2341 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '481', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2342 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '481', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2343 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '481', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2344 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '481', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2345 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '481', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2346 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '482', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
2347 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '482', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2348 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '482', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2349 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '482', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2350 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '482', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2351 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '482', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2352 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '482', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2353 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '482', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2354 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '482', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2355 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '485', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
2356 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '485', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
2357 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '485', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
2358 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '485', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
2359 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '485', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
2360 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '485', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
2361 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '485', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
2362 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '485', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
2363 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '485', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
2364 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'a', 'Personal name', 'Personal name', 0, 0, 5, NULL, NULL, '''500b'',''500c'',''500q'',''500d'',''500t'',''500o'',''500m'',''500r'',''500s'',''500k'',''500n'',''500p'',''500g'',''500l'',''500f'',''500h'',''500x'',''500z'',''500y'',''500v''');
2365 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'b', 'Numeration', 'Numeration', 0, 0, 5, NULL, NULL, NULL);
2366 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 5, NULL, NULL, NULL);
2367 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 5, NULL, NULL, NULL);
2368 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
2369 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
2370 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
2371 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
2372 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
2373 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 5, NULL, NULL, NULL);
2374 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
2375 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
2376 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
2377 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
2378 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
2379 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
2380 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 5, NULL, NULL, NULL);
2381 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
2382 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
2383 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
2384 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2385 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2386 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2387 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2388 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2389 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2390 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2391 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2392 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2393 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''510b'',''510c'',''510d'',''510t'',''510o'',''510m'',''510r'',''510s'',''510k'',''510n'',''510p'',''510g'',''510l'',''510f'',''510h'',''510x'',''510z'',''510y'',''510v''');
2394 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
2395 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
2396 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 5, NULL, NULL, NULL);
2397 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
2398 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
2399 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
2400 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
2401 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
2402 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
2403 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
2404 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
2405 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
2406 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
2407 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
2408 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
2409 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
2410 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
2411 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2412 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2413 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2414 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2415 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2416 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2417 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2418 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2419 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2420 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''511e'',''511c'',''511d'',''511t'',''511s'',''511k'',''511n'',''511p'',''511g'',''511l'',''511f'',''511h'',''511x'',''511z'',''511y'',''511v''');
2421 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
2422 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 5, NULL, NULL, NULL);
2423 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
2424 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
2425 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
2426 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
2427 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
2428 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
2429 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
2430 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
2431 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
2432 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 5, NULL, NULL, NULL);
2433 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
2434 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
2435 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2436 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2437 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2438 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2439 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2440 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2441 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2442 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2443 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2444 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'a', 'Uniform title', 'Uniform title', 0, 0, 5, NULL, NULL, '''530o'',''530m'',''530r'',''530s'',''530d'',''530k'',''530n'',''530p'',''530g'',''530l'',''530f'',''530h'',''530t'',''530x'',''530z'',''530y'',''530v''');
2445 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 5, NULL, NULL, NULL);
2446 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
2447 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
2448 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
2449 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
2450 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
2451 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
2452 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
2453 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
2454 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
2455 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
2456 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
2457 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
2458 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
2459 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2460 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2461 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2462 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2463 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2464 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2465 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2466 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2467 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2468 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '548', 'a', 'Chronological term', 'Chronological term', 0, 0, 5, NULL, NULL, '''548y'',''548x'',''548z'',''548v''');
2469 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '548', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 5, NULL, NULL, NULL);
2470 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '548', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2471 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '548', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2472 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '548', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2473 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '548', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2474 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '548', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2475 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '548', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2476 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '548', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2477 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '548', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2478 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '548', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2479 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 5, NULL, NULL, '''550x'',''550z'',''550y'',''550v''');
2480 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 5, NULL, NULL, NULL);
2481 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
2482 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2483 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2484 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2485 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2486 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2487 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2488 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2489 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2490 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2491 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '551', 'a', 'Geographic name', 'Geographic name', 0, 0, 5, NULL, NULL, '''551z'',''551x'',''551y'',''551v''');
2492 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '551', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
2493 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '551', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2494 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '551', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2495 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '551', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2496 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '551', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2497 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '551', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2498 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '551', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2499 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '551', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2500 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '551', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2501 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '551', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2502 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '555', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 5, NULL, NULL, '''555v'',''555x'',''555z'',''555y''');
2503 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '555', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
2504 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '555', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2505 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '555', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2506 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '555', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2507 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '555', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2508 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '555', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2509 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '555', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2510 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '555', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2511 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '555', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2512 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2513 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '580', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
2514 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '580', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2515 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '580', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2516 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '580', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2517 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '580', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2518 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '580', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2519 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '580', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2520 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '580', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2521 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '580', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2522 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2523 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '581', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
2524 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '581', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2525 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '581', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2526 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '581', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2527 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '581', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2528 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '581', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2529 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '581', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2530 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '581', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2531 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '581', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2532 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2533 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '582', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
2534 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '582', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2535 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '582', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2536 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '582', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2537 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '582', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2538 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '582', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2539 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '582', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2540 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '582', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2541 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '582', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2542 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '582', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2543 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '585', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
2544 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '585', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
2545 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '585', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
2546 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '585', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
2547 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '585', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
2548 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '585', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
2549 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '585', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
2550 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '585', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
2551 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '585', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
2552 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
2553 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '663', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
2554 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '663', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
2555 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '663', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
2556 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '663', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2557 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '663', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2558 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '664', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
2559 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '664', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
2560 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '664', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
2561 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '664', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2562 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '664', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2563 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '665', 'a', 'History reference', 'History reference', 1, 0, 6, NULL, NULL, NULL);
2564 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '665', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2565 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '665', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2566 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '666', 'a', 'General explanatory reference', 'General explanatory reference', 1, 0, 6, NULL, NULL, NULL);
2567 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '666', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2568 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '666', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2569 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '667', 'a', 'Nonpublic general note', 'Nonpublic general note', 0, 0, 6, NULL, NULL, NULL);
2570 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '667', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
2571 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '667', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2572 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '667', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2573 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '670', 'a', 'Source citation', 'Source citation', 0, 0, 6, NULL, NULL, NULL);
2574 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '670', 'b', 'Information found', 'Information found', 0, 0, 6, NULL, NULL, NULL);
2575 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '670', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
2576 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '670', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2577 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '670', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2578 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '675', 'a', 'Source citation', 'Source citation', 1, 0, 6, NULL, NULL, NULL);
2579 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '675', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2580 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '675', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2581 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '678', 'a', 'Biographical or historical data', 'Biographical or historical data', 1, 0, 6, NULL, NULL, NULL);
2582 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '678', 'b', 'Expansion', 'Expansion', 0, 0, 6, NULL, NULL, NULL);
2583 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '678', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
2584 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '678', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2585 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '678', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2586 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '680', 'a', 'Heading or subdivision term', 'Heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
2587 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '680', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
2588 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '680', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
2589 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '680', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
2590 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '680', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2591 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '680', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2592 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '681', 'a', 'Subject heading or subdivision term', 'Subject heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
2593 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '681', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
2594 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '681', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
2595 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '681', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2596 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '681', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2597 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '682', 'a', 'Replacement heading', 'Replacement heading', 1, 0, 6, NULL, NULL, NULL);
2598 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '682', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
2599 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '682', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2600 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '682', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2601 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '683', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 6, NULL, NULL, NULL);
2602 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '683', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 6, NULL, NULL, NULL);
2603 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '683', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
2604 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '683', 'p', 'Corresponding classification field', 'Corresponding classification field', 1, 0, 6, NULL, NULL, NULL);
2605 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '683', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 6, NULL, NULL, NULL);
2606 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '683', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
2607 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '683', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
2608 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '683', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2609 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '683', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 6, NULL, NULL, NULL);
2610 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '688', 'a', 'Application history note', 'Application history note', 0, 0, 6, NULL, NULL, NULL);
2611 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '688', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
2612 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '688', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
2613 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '688', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
2614 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'a', 'Personal name', 'Personal name', 0, 0, 7, NULL, NULL, NULL);
2615 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'b', 'Numeration', 'Numeration', 0, 0, 7, NULL, NULL, NULL);
2616 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 7, NULL, NULL, NULL);
2617 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 7, NULL, NULL, NULL);
2618 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'e', 'Relator term', 'Relator term', 1, 0, 7, NULL, NULL, NULL);
2619 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'f', 'Date of a work', 'Date of a work', 0, 0, 7, NULL, NULL, NULL);
2620 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 7, NULL, NULL, NULL);
2621 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'h', 'Medium', 'Medium', 0, 0, 7, NULL, NULL, NULL);
2622 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
2623 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'k', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 7, NULL, NULL, NULL);
2624 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'l', 'Language of a work', 'Language of a work', 0, 0, 7, NULL, NULL, NULL);
2625 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 7, NULL, NULL, NULL);
2626 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 7, NULL, NULL, NULL);
2627 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 7, NULL, NULL, NULL);
2628 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 7, NULL, NULL, NULL);
2629 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 7, NULL, NULL, NULL);
2630 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'r', 'Key for music', 'Key for music', 0, 0, 7, NULL, NULL, NULL);
2631 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 's', 'Version', 'Version', 0, 0, 7, NULL, NULL, NULL);
2632 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 't', 'Title of a work', 'Title of a work', 0, 0, 7, NULL, NULL, NULL);
2633 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
2634 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
2635 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
2636 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
2637 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
2638 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
2639 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
2640 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', '4', 'Relator code', 'Relator code', 1, 0, 7, NULL, NULL, NULL);
2641 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
2642 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
2643 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
2644 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '780', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
2645 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '780', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
2646 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '780', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
2647 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '780', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
2648 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '780', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
2649 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '780', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
2650 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '780', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
2651 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '780', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
2652 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '780', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
2653 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
2654 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '788', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 7, NULL, NULL, NULL);
2655 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '788', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
2656 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '788', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
2657 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '788', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
2658 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '788', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
2659 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '788', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
2660 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '788', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
2661 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'a', 'Host name', 'Host name', 1, 0, 8, NULL, NULL, NULL);
2662 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'b', 'Access number', 'Access number', 1, 0, 8, NULL, NULL, NULL);
2663 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'c', 'Compression information', 'Compression information', 1, 0, 8, NULL, NULL, NULL);
2664 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'd', 'Path', 'Path', 1, 0, 8, NULL, NULL, NULL);
2665 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'f', 'Electronic name', 'Electronic name', 1, 0, 8, NULL, NULL, NULL);
2666 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'h', 'Processor of request', 'Processor of request', 0, 0, 8, NULL, NULL, NULL);
2667 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'i', 'Instruction', 'Instruction', 1, 0, 8, NULL, NULL, NULL);
2668 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'j', 'Bits per second', 'Bits per second', 0, 0, 8, NULL, NULL, NULL);
2669 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'k', 'Password', 'Password', 0, 0, 8, NULL, NULL, NULL);
2670 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'l', 'Logon', 'Logon', 0, 0, 8, NULL, NULL, NULL);
2671 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, 8, NULL, NULL, NULL);
2672 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'n', 'Name of location of host', 'Name of location of host', 0, 0, 8, NULL, NULL, NULL);
2673 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'o', 'Operating system', 'Operating system', 0, 0, 8, NULL, NULL, NULL);
2674 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'p', 'Port', 'Port', 0, 0, 8, NULL, NULL, NULL);
2675 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, 8, NULL, NULL, NULL);
2676 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'r', 'Settings', 'Settings', 0, 0, 8, NULL, NULL, NULL);
2677 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 's', 'File size', 'File size', 1, 0, 8, NULL, NULL, NULL);
2678 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, 8, NULL, NULL, NULL);
2679 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 8, NULL, NULL, NULL);
2680 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, 8, NULL, NULL, NULL);
2681 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'w', 'Record control number', 'Record control number', 1, 0, 8, NULL, NULL, NULL);
2682 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, 8, NULL, NULL, NULL);
2683 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'y', 'Link text', 'Link text', 1, 0, 8, NULL, NULL, NULL);
2684 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', 'z', 'Public note', 'Public note', 1, 0, 8, NULL, NULL, NULL);
2685 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', '2', 'Access method', 'Access method', 0, 0, 8, NULL, NULL, NULL);
2686 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', '3', 'Materials specified', 'Materials specified', 0, 0, 8, NULL, NULL, NULL);
2687 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', '6', 'Linkage', 'Linkage', 0, 0, 8, NULL, NULL, NULL);
2688 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 8, NULL, NULL, NULL);
2689 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'a', 'a', 'a', 1, 0, 8, NULL, NULL, NULL);
2690 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'b', 'b', 'b', 1, 0, 8, NULL, NULL, NULL);
2691 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'c', 'c', 'c', 1, 0, 8, NULL, NULL, NULL);
2692 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'd', 'd', 'd', 1, 0, 8, NULL, NULL, NULL);
2693 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'e', 'e', 'e', 1, 0, 8, NULL, NULL, NULL);
2694 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'f', 'f', 'f', 1, 0, 8, NULL, NULL, NULL);
2695 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'g', 'g', 'g', 1, 0, 8, NULL, NULL, NULL);
2696 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'h', 'h', 'h', 1, 0, 8, NULL, NULL, NULL);
2697 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'i', 'i', 'i', 1, 0, 8, NULL, NULL, NULL);
2698 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'j', 'j', 'j', 1, 0, 8, NULL, NULL, NULL);
2699 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'k', 'k', 'k', 1, 0, 8, NULL, NULL, NULL);
2700 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'l', 'l', 'l', 1, 0, 8, NULL, NULL, NULL);
2701 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'm', 'm', 'm', 1, 0, 8, NULL, NULL, NULL);
2702 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'n', 'n', 'n', 1, 0, 8, NULL, NULL, NULL);
2703 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'o', 'o', 'o', 1, 0, 8, NULL, NULL, NULL);
2704 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'p', 'p', 'p', 1, 0, 8, NULL, NULL, NULL);
2705 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'q', 'q', 'q', 1, 0, 8, NULL, NULL, NULL);
2706 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'r', 'r', 'r', 1, 0, 8, NULL, NULL, NULL);
2707 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 's', 's', 's', 1, 0, 8, NULL, NULL, NULL);
2708 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 't', 't', 't', 1, 0, 8, NULL, NULL, NULL);
2709 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'u', 'u', 'u', 1, 0, 8, NULL, NULL, NULL);
2710 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'v', 'v', 'v', 1, 0, 8, NULL, NULL, NULL);
2711 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'w', 'w', 'w', 1, 0, 8, NULL, NULL, NULL);
2712 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'x', 'x', 'x', 1, 0, 8, NULL, NULL, NULL);
2713 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'y', 'y', 'y', 1, 0, 8, NULL, NULL, NULL);
2714 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', 'z', 'z', 'z', 1, 0, 8, NULL, NULL, NULL);
2715 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', '0', '0', '0', 1, 0, 8, NULL, NULL, NULL);
2716 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', '1', '1', '1', 1, 0, 8, NULL, NULL, NULL);
2717 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', '2', '2', '2', 1, 0, 8, NULL, NULL, NULL);
2718 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', '3', '3', '3', 1, 0, 8, NULL, NULL, NULL);
2719 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', '4', '4', '4', 1, 0, 8, NULL, NULL, NULL);
2720 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', '5', '5', '5', 1, 0, 8, NULL, NULL, NULL);
2721 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', '6', '6', '6', 1, 0, 8, NULL, NULL, NULL);
2722 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', '7', '7', '7', 1, 0, 8, NULL, NULL, NULL);
2723 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', '8', '8', '8', 1, 0, 8, NULL, NULL, NULL);
2724 INSERT INTO `auth_subfield_structure` VALUES ('PERSO_NAME', '880', '9', '9', '9', 1, 0, 8, NULL, NULL, NULL);
2725
2726
2727 -- ******************************************************
2728
2729
2730
2731 -- *******************************************************************
2732 -- CORPORATE NAME AUTHORITY FIELDS/SUBFIELDS. 
2733 -- *******************************************************************
2734
2735 -- These ought to be adjusted for different less conflicting and more 
2736 -- rationally chosen fields and subfields but I had left that for last. 
2737
2738 -- ADJUST ME
2739 -- Use values from your dump of auth_tag_structure and auth_subfield_structure 
2740 -- to provide support for your Koha database.
2741
2742
2743 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '000', 'LEADER', 'LEADER', 0, 1, NULL);
2744 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 1, NULL);
2745 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 1, NULL);
2746 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 1, NULL);
2747 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '008', 'FIXED-LENGTH DATA ELEMENTS', 'FIXED-LENGTH DATA ELEMENTS', 0, 1, NULL);
2748 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, NULL);
2749 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '014', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 1, 0, NULL);
2750 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, NULL);
2751 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '020', 'INTERNATIONAL STANDARD BOOK NUMBER', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL);
2752 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL);
2753 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL);
2754 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, NULL);
2755 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL);
2756 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 1, NULL);
2757 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, NULL);
2758 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL);
2759 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '045', 'TIME PERIOD OF HEADING', 'TIME PERIOD OF HEADING', 0, 0, NULL);
2760 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL);
2761 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL);
2762 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '053', 'LC CLASSIFICATION NUMBER', 'LC CLASSIFICATION NUMBER', 1, 0, NULL);
2763 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '055', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 1, 0, NULL);
2764 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL);
2765 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '065', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL);
2766 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL);
2767 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL);
2768 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL);
2769 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '073', 'SUBDIVISION USAGE', 'SUBDIVISION USAGE', 0, 0, NULL);
2770 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '082', 'DEWEY DECIMAL CALL NUMBER', 'DEWEY DECIMAL CALL NUMBER', 1, 0, NULL);
2771 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '083', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL);
2772 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '086', 'GOVERNMENT DOCUMENT CALL NUMBER', 'GOVERNMENT DOCUMENT CALL NUMBER', 1, 0, NULL);
2773 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '087', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL);
2774 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '090', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, NULL);
2775 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '091', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 0, 0, NULL);
2776 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, NULL);
2777 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '093', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
2778 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, NULL);
2779 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '097', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
2780 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, NULL);
2781 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, NULL);
2782 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '110', 'HEADING--CORPORATE NAME', 'HEADING--CORPORATE NAME', 0, 0, NULL);
2783 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '260', 'COMPLEX SEE REFERENCE--SUBJECT', 'COMPLEX SEE REFERENCE--SUBJECT', 1, 0, NULL);
2784 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '360', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 1, 0, NULL);
2785 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '400', 'SEE FROM TRACING--PERSONAL NAME', 'SEE FROM TRACING--PERSONAL NAME', 1, 0, NULL);
2786 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '410', 'SEE FROM TRACING--CORPORATE NAME', 'SEE FROM TRACING--CORPORATE NAME', 1, 0, NULL);
2787 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '411', 'SEE FROM TRACING--MEETING NAME', 'SEE FROM TRACING--MEETING NAME', 1, 0, NULL);
2788 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '430', 'SEE FROM TRACING--UNIFORM TITLE', 'SEE FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
2789 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '448', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
2790 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '450', 'SEE FROM TRACING--TOPICAL TERM', 'SEE FROM TRACING--TOPICAL TERM', 1, 0, NULL);
2791 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '451', 'SEE FROM TRACING--GEOGRAPHIC NAME', 'SEE FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
2792 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '455', 'SEE FROM TRACING--GENRE/FORM TERM', 'SEE FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
2793 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '480', 'SEE FROM TRACING--GENERAL SUBDIVISION', 'SEE FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
2794 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '481', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
2795 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '482', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
2796 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '485', 'SEE FROM TRACING--FORM SUBDIVISION', 'SEE FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
2797 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '500', 'SEE ALSO FROM TRACING--PERSONAL NAME', 'SEE ALSO FROM TRACING--PERSONAL NAME', 1, 0, NULL);
2798 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '510', 'SEE ALSO FROM TRACING--CORPORATE NAME', 'SEE ALSO FROM TRACING--CORPORATE NAME', 1, 0, NULL);
2799 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '511', 'SEE ALSO FROM TRACING--MEETING NAME', 'SEE ALSO FROM TRACING--MEETING NAME', 1, 0, NULL);
2800 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '530', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
2801 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '548', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
2802 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '550', 'SEE ALSO FROM TRACING--TOPICAL TERM', 'SEE ALSO FROM TRACING--TOPICAL TERM', 1, 0, NULL);
2803 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '551', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
2804 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '555', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
2805 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '580', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
2806 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '581', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
2807 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '582', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
2808 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '585', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
2809 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '663', 'COMPLEX SEE ALSO REFERENCE--NAME', 'COMPLEX SEE ALSO REFERENCE--NAME', 0, 0, NULL);
2810 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '664', 'COMPLEX SEE REFERENCE--NAME', 'COMPLEX SEE REFERENCE--NAME', 0, 0, NULL);
2811 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '665', 'HISTORY REFERENCE', 'HISTORY REFERENCE', 0, 0, NULL);
2812 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '666', 'GENERAL EXPLANATORY REFERENCE--NAME', 'GENERAL EXPLANATORY REFERENCE--NAME', 0, 0, NULL);
2813 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '667', 'NONPUBLIC GENERAL NOTE', 'NONPUBLIC GENERAL NOTE', 1, 0, NULL);
2814 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '670', 'SOURCE DATA FOUND', 'SOURCE DATA FOUND', 1, 0, NULL);
2815 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '675', 'SOURCE DATA NOT FOUND', 'SOURCE DATA NOT FOUND', 0, 0, NULL);
2816 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '678', 'BIOGRAPHICAL OR HISTORICAL DATA', 'BIOGRAPHICAL OR HISTORICAL DATA', 1, 0, NULL);
2817 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '680', 'PUBLIC GENERAL NOTE', 'PUBLIC GENERAL NOTE', 1, 0, NULL);
2818 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '681', 'SUBJECT EXAMPLE TRACING NOTE', 'SUBJECT EXAMPLE TRACING NOTE', 1, 0, NULL);
2819 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '682', 'DELETED HEADING INFORMATION', 'DELETED HEADING INFORMATION', 0, 0, NULL);
2820 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '683', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
2821 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '688', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
2822 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '700', 'ESTABLISHED HEADING LINKING ENTRY--PERSONAL NAME', 'ESTABLISHED HEADING LINKING ENTRY--PERSONAL NAME', 1, 0, NULL);
2823 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '710', 'ESTABLISHED HEADING LINKING ENTRY--CORPORATE NAME', 'ESTABLISHED HEADING LINKING ENTRY--CORPORATE NAME', 1, 0, NULL);
2824 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '711', 'ESTABLISHED HEADING LINKING ENTRY--MEETING NAME', 'ESTABLISHED HEADING LINKING ENTRY--MEETING NAME', 1, 0, NULL);
2825 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '730', 'ESTABLISHED HEADING LINKING ENTRY--UNIFORM TITLE', 'ESTABLISHED HEADING LINKING ENTRY--UNIFORM TITLE', 1, 0, NULL);
2826 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '748', 'ESTABLISHED HEADING LINKING ENTRY--CHRONOLOGICAL TERM', 'ESTABLISHED HEADING LINKING ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL);
2827 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '750', 'ESTABLISHED HEADING LINKING ENTRY--TOPICAL TERM', 'ESTABLISHED HEADING LINKING ENTRY--TOPICAL TERM', 1, 0, NULL);
2828 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '751', 'ESTABLISHED HEADING LINKING ENTRY--GEOGRAPHIC NAME', 'ESTABLISHED HEADING LINKING ENTRY--GEOGRAPHIC NAME', 1, 0, NULL);
2829 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '755', 'ESTABLISHED HEADING LINKING ENTRY--GENRE/FORM TERM', 'ESTABLISHED HEADING LINKING ENTRY--GENRE/FORM TERM', 1, 0, NULL);
2830 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '780', 'SUBDIVISION LINKING ENTRY--GENERAL SUBDIVISION', 'SUBDIVISION LINKING ENTRY--GENERAL SUBDIVISION', 1, 0, NULL);
2831 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '781', 'SUBDIVISION LINKING ENTRY--GEOGRAPHIC SUBDIVISION', 'SUBDIVISION LINKING ENTRY--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
2832 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '782', 'SUBDIVISION LINKING ENTRY--CHRONOLOGICAL SUBDIVISION', 'SUBDIVISION LINKING ENTRY--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
2833 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '785', 'SUBDIVISION LINKING ENTRY--FORM SUBDIVISION', 'SUBDIVISION LINKING ENTRY--FORM SUBDIVISION', 1, 0, NULL);
2834 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '788', 'COMPLEX LINKING ENTRY DATA', 'COMPLEX LINKING ENTRY DATA', 0, 0, NULL);
2835 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL);
2836 INSERT INTO `auth_tag_structure` VALUES ('CORPO_NAME', '880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL);
2837
2838
2839 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '000', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
2840 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '001', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
2841 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '003', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
2842 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '005', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
2843 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '008', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
2844 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '010', 'a', 'LC control number', 'LC control number', 0, 0, 0, NULL, NULL, NULL);
2845 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, 0, NULL, NULL, NULL);
2846 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2847 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '014', 'a', 'Control number of related bibliographic record', 'Control number of related bibliographic record', 0, 0, 0, NULL, NULL, NULL);
2848 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '014', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2849 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '014', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2850 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '016', 'a', 'Record control number', 'Record control number', 0, 0, 0, NULL, NULL, NULL);
2851 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '016', 'z', 'Canceled/invalid record control number', 'Canceled/invalid record control number', 1, 0, 0, NULL, NULL, NULL);
2852 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '016', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
2853 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2854 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 0, NULL, NULL, NULL);
2855 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
2856 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '020', 'z', 'Canceled/invalid ISBN', 'Canceled/invalid ISBN', 1, 0, 0, NULL, NULL, NULL);
2857 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '020', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2858 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2859 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 0, NULL, NULL, NULL);
2860 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, 0, NULL, NULL, NULL);
2861 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, 0, NULL, NULL, NULL);
2862 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '022', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2863 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2864 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, 0, NULL, NULL, NULL);
2865 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
2866 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, 0, NULL, NULL, NULL);
2867 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, 0, NULL, NULL, NULL);
2868 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '024', '2', 'Source of number or code', 'Source of number or code', 0, 0, 0, NULL, NULL, NULL);
2869 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '024', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2870 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2871 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'a', 'Number of work', 'Number of work', 0, 0, 0, NULL, NULL, NULL);
2872 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'b', 'Number of movement', 'Number of movement', 0, 0, 0, NULL, NULL, NULL);
2873 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, 0, NULL, NULL, NULL);
2874 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, 0, NULL, NULL, NULL);
2875 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'e', 'Role', 'Role', 0, 0, 0, NULL, NULL, NULL);
2876 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'g', 'Clef', 'Clef', 0, 0, 0, NULL, NULL, NULL);
2877 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, 0, NULL, NULL, NULL);
2878 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'n', 'Key signature', 'Key signature', 0, 0, 0, NULL, NULL, NULL);
2879 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'o', 'Time signature', 'Time signature', 0, 0, 0, NULL, NULL, NULL);
2880 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'p', 'Musical notation', 'Musical notation', 0, 0, 0, NULL, NULL, NULL);
2881 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'q', 'General note', 'General note', 1, 0, 0, NULL, NULL, NULL);
2882 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'r', 'Key or mode', 'Key or mode', 0, 0, 0, NULL, NULL, NULL);
2883 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 's', 'Coded validity note', 'Coded validity note', 1, 0, 0, NULL, NULL, NULL);
2884 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 't', 'Text incipit', 'Text incipit', 1, 0, 0, NULL, NULL, NULL);
2885 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 0, NULL, NULL, NULL);
2886 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', '2', 'System code', 'System code', 0, 0, 0, NULL, NULL, NULL);
2887 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2888 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2889 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '035', 'a', 'System control number', 'System control number', 0, 0, 0, NULL, NULL, NULL);
2890 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, 0, NULL, NULL, NULL);
2891 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '035', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2892 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2893 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 1, 0, NULL, NULL, NULL);
2894 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, 0, NULL, NULL, NULL);
2895 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, 0, NULL, NULL, NULL);
2896 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, 0, NULL, NULL, NULL);
2897 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '040', 'e', 'Description conventions', 'Description conventions', 0, 0, 0, NULL, NULL, NULL);
2898 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '040', 'f', 'Subject heading or thesaurus conventions', 'Subject heading or thesaurus conventions', 0, 0, 0, NULL, NULL, NULL);
2899 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '040', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2900 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2901 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '042', 'a', 'Authentication code', 'Authentication code', 1, 0, 0, NULL, NULL, NULL);
2902 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, 0, NULL, NULL, NULL);
2903 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, 0, NULL, NULL, NULL);
2904 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '043', 'c', 'ISO code', 'ISO code', 1, 0, 0, NULL, NULL, NULL);
2905 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '043', '2', 'Source of local code', 'Source of local code', 1, 0, 0, NULL, NULL, NULL);
2906 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '043', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2907 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2908 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '045', 'a', 'Time period code', 'Time period code', 1, 0, 0, NULL, NULL, NULL);
2909 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 0, 0, 0, NULL, NULL, NULL);
2910 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, 0, NULL, NULL, NULL);
2911 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '045', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2912 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2913 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '050', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2914 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '050', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2915 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '050', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2916 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '050', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2917 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '050', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2918 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2919 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, 0, NULL, NULL, NULL);
2920 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, 0, NULL, NULL, NULL);
2921 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '052', 'd', 'Populated place name', 'Populated place name', 1, 0, 0, NULL, NULL, NULL);
2922 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '052', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
2923 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '052', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2924 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2925 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '053', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
2926 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '053', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 1, 0, 0, NULL, NULL, NULL);
2927 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '053', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
2928 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '053', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2929 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '053', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2930 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '053', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2931 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '055', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2932 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '055', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2933 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '055', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2934 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '055', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2935 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '055', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2936 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2937 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '060', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2938 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '060', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2939 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '060', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2940 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '060', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2941 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '060', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2942 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2943 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '065', 'a', 'Classification number element--single number or beginning of span', 'Classification number element--single number or beginning of span', 0, 0, 0, NULL, NULL, NULL);
2944 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '065', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
2945 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '065', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
2946 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '065', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
2947 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '065', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2948 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '065', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2949 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '065', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2950 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, 0, NULL, NULL, NULL);
2951 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, 0, NULL, NULL, NULL);
2952 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, 0, NULL, NULL, NULL);
2953 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '070', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2954 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '070', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2955 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '070', 'd', 'Volume/dates to which call number applies', 'Volume/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2956 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '070', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2957 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2958 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '072', 'a', 'Subject category code', 'Subject category code', 0, 0, 0, NULL, NULL, NULL);
2959 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, 0, NULL, NULL, NULL);
2960 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '072', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
2961 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '072', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2962 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2963 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '073', 'a', 'Subdivision usage', 'Subdivision usage', 1, 0, 0, NULL, NULL, NULL);
2964 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '073', 'z', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
2965 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '073', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2966 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '073', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2967 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '082', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
2968 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '082', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
2969 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '082', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2970 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '082', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
2971 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '082', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2972 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '082', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2973 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2974 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '083', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
2975 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '083', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
2976 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '083', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
2977 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '083', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
2978 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '083', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
2979 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '083', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2980 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '083', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2981 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '083', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2982 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '086', 'a', 'Call number', 'Call number', 0, 0, 0, NULL, NULL, NULL);
2983 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '086', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2984 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '086', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
2985 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '086', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
2986 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '086', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
2987 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '086', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2988 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2989 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '087', 'a', 'Classification number element--Single number or beginning number of span', 'Classification number element--Single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
2990 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '087', 'b', 'Classification number element--Ending number of span', 'Classification number element--Ending number of span', 0, 0, 0, NULL, NULL, NULL);
2991 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '087', 'c', 'Explanatory information', 'Explanatory information', 0, 0, 0, NULL, NULL, NULL);
2992 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '087', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
2993 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '087', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
2994 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '087', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
2995 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'a', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, 0, NULL, NULL, NULL);
2996 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'b', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
2997 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
2998 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, 0, NULL, NULL, NULL);
2999 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'f', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3000 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3001 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3002 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3003 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3004 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3005 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3006 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3007 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3008 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
3009 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
3010 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3011 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3012 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '090', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3013 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '091', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
3014 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '091', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
3015 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '091', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
3016 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '091', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
3017 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '091', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3018 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '091', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3019 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '091', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3020 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '091', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3021 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '092', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
3022 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '092', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3023 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '092', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3024 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '092', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
3025 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
3026 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '092', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3027 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '092', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3028 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '092', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3029 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '092', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3030 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '093', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
3031 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '093', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
3032 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '093', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
3033 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '093', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
3034 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '093', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3035 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '093', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3036 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '093', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3037 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '093', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3038 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '096', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
3039 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '096', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3040 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '096', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3041 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '096', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
3042 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
3043 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '096', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3044 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '096', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3045 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '096', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3046 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '096', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3047 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '097', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
3048 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '097', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
3049 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '097', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
3050 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '097', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
3051 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '097', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3052 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '097', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3053 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '097', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3054 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '097', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3055 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, 0, NULL, NULL, NULL);
3056 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '098', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3057 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '098', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3058 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '098', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
3059 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
3060 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '098', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3061 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '098', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3062 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '098', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3063 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '098', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3064 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '099', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
3065 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '099', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3066 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '099', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3067 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '099', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
3068 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
3069 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '099', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3070 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '099', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3071 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '099', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3072 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '099', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3073 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 1, NULL, NULL, '''110b'',''110c'',''110d'',''110t'',''110o'',''110m'',''110r'',''110s'',''110k'',''110n'',''110p'',''110g'',''110l'',''110f'',''110h'',''110x'',''110z'',''110y'',''110v''');
3074 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 1, NULL, NULL, NULL);
3075 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 1, NULL, NULL, NULL);
3076 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 1, NULL, NULL, NULL);
3077 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'e', 'Relator term', 'Relator term', 1, 0, 1, NULL, NULL, NULL);
3078 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'f', 'Date of a work', 'Date of a work', 0, 0, 1, NULL, NULL, NULL);
3079 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 1, NULL, NULL, NULL);
3080 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'h', 'Medium', 'Medium', 0, 0, 1, NULL, NULL, NULL);
3081 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'k', 'Form subheading', 'Form subheading', 1, 0, 1, NULL, NULL, NULL);
3082 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'l', 'Language of a work', 'Language of a work', 0, 0, 1, NULL, NULL, NULL);
3083 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 1, NULL, NULL, NULL);
3084 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 1, NULL, NULL, NULL);
3085 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 1, NULL, NULL, NULL);
3086 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
3087 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'r', 'Key for music', 'Key for music', 0, 0, 1, NULL, NULL, NULL);
3088 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 's', 'Version', 'Version', 0, 0, 1, NULL, NULL, NULL);
3089 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 't', 'Title of a work', 'Title of a work', 0, 0, 1, NULL, NULL, NULL);
3090 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
3091 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
3092 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
3093 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
3094 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
3095 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
3096 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '260', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 2, NULL, NULL, NULL);
3097 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '260', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 2, NULL, NULL, NULL);
3098 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '260', '6', 'Linkage', 'Linkage', 0, 0, 2, NULL, NULL, NULL);
3099 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 2, NULL, NULL, NULL);
3100 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '360', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 3, NULL, NULL, NULL);
3101 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '360', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 3, NULL, NULL, NULL);
3102 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '360', '6', 'Linkage', 'Linkage', 0, 0, 3, NULL, NULL, NULL);
3103 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '360', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 3, NULL, NULL, NULL);
3104 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'a', 'Personal name', 'Personal name', 0, 0, 4, NULL, NULL, '''400b'',''400c'',''400q'',''400d'',''400t'',''400o'',''400m'',''400r'',''400s'',''400k'',''400n'',''400p'',''400g'',''400l'',''400f'',''400h'',''400x'',''400z'',''400y'',''400v''');
3105 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'b', 'Numeration', 'Numeration', 0, 0, 4, NULL, NULL, NULL);
3106 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 4, NULL, NULL, NULL);
3107 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 4, NULL, NULL, NULL);
3108 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
3109 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
3110 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
3111 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
3112 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
3113 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 4, NULL, NULL, NULL);
3114 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
3115 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
3116 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
3117 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
3118 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
3119 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
3120 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 4, NULL, NULL, NULL);
3121 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
3122 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
3123 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
3124 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3125 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3126 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3127 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3128 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3129 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3130 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3131 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3132 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''410b'',''410c'',''410d'',''410t'',''410o'',''410m'',''410r'',''410s'',''410k'',''410n'',''410p'',''410g'',''410l'',''410f'',''410h'',''410x'',''410z'',''410y'',''410v''');
3133 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
3134 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
3135 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 4, NULL, NULL, NULL);
3136 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
3137 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
3138 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
3139 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
3140 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
3141 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
3142 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
3143 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
3144 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
3145 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
3146 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
3147 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
3148 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
3149 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
3150 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3151 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3152 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3153 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3154 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3155 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3156 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3157 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3158 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''411e'',''411c'',''411d'',''411t'',''411s'',''411k'',''411n'',''411p'',''411g'',''411l'',''411f'',''411h'',''411x'',''411z'',''411y'',''411v''');
3159 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'b', 'Number {OBSOLETE]', 'Number {OBSOLETE]', 0, 0, 4, NULL, NULL, NULL);
3160 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
3161 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 4, NULL, NULL, NULL);
3162 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
3163 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
3164 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
3165 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
3166 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
3167 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
3168 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
3169 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
3170 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
3171 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 4, NULL, NULL, NULL);
3172 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
3173 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
3174 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3175 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3176 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3177 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3178 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3179 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3180 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3181 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3182 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'a', 'Uniform title', 'Uniform title', 0, 0, 4, NULL, NULL, '''430o'',''430m'',''430r'',''430s'',''430d'',''430k'',''430n'',''430p'',''430g'',''430l'',''430f'',''430h'',''430t'',''430x'',''430z'',''430y'',''430v''');
3183 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 4, NULL, NULL, NULL);
3184 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
3185 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
3186 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
3187 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
3188 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
3189 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
3190 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
3191 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
3192 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
3193 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
3194 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
3195 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
3196 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
3197 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3198 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3199 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3200 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3201 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3202 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3203 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3204 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '430', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3205 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '448', 'a', 'Chronological term', 'Chronological term', 0, 0, 4, NULL, NULL, '''448y'',''448x'',''448z'',''448v''');
3206 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '448', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 4, NULL, NULL, NULL);
3207 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '448', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3208 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '448', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3209 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '448', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3210 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '448', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3211 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '448', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3212 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '448', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3213 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '448', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3214 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '448', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3215 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '450', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 4, NULL, NULL, '''450x'',''450z'',''450y'',''450v''');
3216 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '450', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 4, NULL, NULL, NULL);
3217 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '450', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
3218 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '450', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3219 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '450', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3220 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '450', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3221 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '450', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3222 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '450', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3223 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '450', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3224 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '450', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3225 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '450', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3226 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '451', 'a', 'Geographic name', 'Geographic name', 0, 0, 4, NULL, NULL, '''451z'',''451x'',''451y'',''451v''');
3227 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '451', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
3228 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '451', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3229 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '451', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3230 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '451', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3231 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '451', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3232 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '451', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3233 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '451', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3234 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '451', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3235 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '451', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3236 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '455', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 4, NULL, NULL, '''455v'',''455x'',''455z'',''455y''');
3237 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '455', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
3238 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '455', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3239 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '455', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3240 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '455', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3241 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '455', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3242 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '455', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3243 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '455', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3244 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '455', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3245 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '455', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3246 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '480', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
3247 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '480', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3248 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '480', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3249 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '480', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3250 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '480', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3251 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '480', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3252 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '480', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3253 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '480', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3254 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '480', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3255 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '481', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
3256 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '481', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3257 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '481', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3258 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '481', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3259 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '481', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3260 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '481', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3261 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '481', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3262 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '481', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3263 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '481', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3264 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '482', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
3265 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '482', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3266 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '482', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3267 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '482', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3268 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '482', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3269 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '482', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3270 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '482', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3271 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '482', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3272 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '482', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3273 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '485', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
3274 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '485', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
3275 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '485', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
3276 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '485', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
3277 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '485', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
3278 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '485', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
3279 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '485', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
3280 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '485', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
3281 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '485', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
3282 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'a', 'Personal name', 'Personal name', 0, 0, 5, NULL, NULL, '''500b'',''500c'',''500q'',''500d'',''500t'',''500o'',''500m'',''500r'',''500s'',''500k'',''500n'',''500p'',''500g'',''500l'',''500f'',''500h'',''500x'',''500z'',''500y'',''500v''');
3283 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'b', 'Numeration', 'Numeration', 0, 0, 5, NULL, NULL, NULL);
3284 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 5, NULL, NULL, NULL);
3285 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 5, NULL, NULL, NULL);
3286 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
3287 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
3288 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
3289 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
3290 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
3291 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 5, NULL, NULL, NULL);
3292 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
3293 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
3294 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
3295 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
3296 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
3297 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
3298 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 5, NULL, NULL, NULL);
3299 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
3300 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
3301 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
3302 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3303 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3304 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3305 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3306 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3307 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3308 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3309 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3310 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3311 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''510b'',''510c'',''510d'',''510t'',''510o'',''510m'',''510r'',''510s'',''510k'',''510n'',''510p'',''510g'',''510l'',''510f'',''510h'',''510x'',''510z'',''510y'',''510v''');
3312 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
3313 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
3314 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 5, NULL, NULL, NULL);
3315 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
3316 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
3317 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
3318 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
3319 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
3320 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
3321 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
3322 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
3323 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
3324 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
3325 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
3326 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
3327 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
3328 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
3329 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3330 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3331 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3332 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3333 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3334 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3335 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3336 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3337 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3338 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''511e'',''511c'',''511d'',''511t'',''511s'',''511k'',''511n'',''511p'',''511g'',''511l'',''511f'',''511h'',''511x'',''511z'',''511y'',''511v''');
3339 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
3340 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 5, NULL, NULL, NULL);
3341 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
3342 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
3343 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
3344 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
3345 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
3346 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
3347 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
3348 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
3349 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
3350 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 5, NULL, NULL, NULL);
3351 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
3352 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
3353 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3354 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3355 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3356 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3357 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3358 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3359 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3360 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3361 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3362 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'a', 'Uniform title', 'Uniform title', 0, 0, 5, NULL, NULL, '''530o'',''530m'',''530r'',''530s'',''530d'',''530k'',''530n'',''530p'',''530g'',''530l'',''530f'',''530h'',''530t'',''530x'',''530z'',''530y'',''530v''');
3363 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 5, NULL, NULL, NULL);
3364 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
3365 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
3366 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
3367 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
3368 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
3369 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
3370 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
3371 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
3372 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
3373 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
3374 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
3375 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
3376 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
3377 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3378 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3379 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3380 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3381 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3382 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3383 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3384 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3385 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3386 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '548', 'a', 'Chronological term', 'Chronological term', 0, 0, 5, NULL, NULL, '''548y'',''548x'',''548z'',''548v''');
3387 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '548', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 5, NULL, NULL, NULL);
3388 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '548', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3389 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '548', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3390 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '548', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3391 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '548', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3392 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '548', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3393 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '548', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3394 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '548', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3395 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '548', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3396 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '548', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3397 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 5, NULL, NULL, '''550x'',''550z'',''550y'',''550v''');
3398 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 5, NULL, NULL, NULL);
3399 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
3400 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3401 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3402 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3403 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3404 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3405 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3406 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3407 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3408 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3409 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '551', 'a', 'Geographic name', 'Geographic name', 0, 0, 5, NULL, NULL, '''551z'',''551x'',''551y'',''551v''');
3410 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '551', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
3411 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '551', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3412 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '551', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3413 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '551', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3414 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '551', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3415 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '551', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3416 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '551', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3417 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '551', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3418 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '551', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3419 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '551', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3420 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '555', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 5, NULL, NULL, '''555v'',''555x'',''555z'',''555y''');
3421 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '555', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
3422 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '555', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3423 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '555', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3424 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '555', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3425 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '555', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3426 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '555', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3427 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '555', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3428 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '555', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3429 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '555', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3430 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3431 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '580', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
3432 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '580', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3433 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '580', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3434 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '580', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3435 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '580', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3436 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '580', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3437 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '580', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3438 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '580', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3439 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '580', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3440 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3441 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '581', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
3442 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '581', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3443 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '581', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3444 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '581', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3445 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '581', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3446 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '581', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3447 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '581', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3448 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '581', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3449 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '581', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3450 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3451 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '582', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
3452 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '582', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3453 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '582', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3454 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '582', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3455 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '582', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3456 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '582', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3457 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '582', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3458 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '582', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3459 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '582', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3460 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '582', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3461 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '585', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
3462 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '585', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
3463 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '585', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
3464 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '585', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
3465 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '585', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
3466 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '585', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
3467 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '585', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
3468 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '585', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
3469 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '585', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
3470 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
3471 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '663', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
3472 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '663', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
3473 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '663', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
3474 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '663', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3475 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '663', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3476 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '664', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
3477 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '664', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
3478 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '664', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
3479 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '664', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3480 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '664', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3481 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '665', 'a', 'History reference', 'History reference', 1, 0, 6, NULL, NULL, NULL);
3482 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '665', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3483 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '665', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3484 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '666', 'a', 'General explanatory reference', 'General explanatory reference', 1, 0, 6, NULL, NULL, NULL);
3485 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '666', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3486 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '666', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3487 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '667', 'a', 'Nonpublic general note', 'Nonpublic general note', 0, 0, 6, NULL, NULL, NULL);
3488 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '667', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
3489 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '667', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3490 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '667', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3491 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '670', 'a', 'Source citation', 'Source citation', 0, 0, 6, NULL, NULL, NULL);
3492 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '670', 'b', 'Information found', 'Information found', 0, 0, 6, NULL, NULL, NULL);
3493 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '670', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
3494 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '670', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3495 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '670', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3496 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '675', 'a', 'Source citation', 'Source citation', 1, 0, 6, NULL, NULL, NULL);
3497 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '675', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3498 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '675', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3499 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '678', 'a', 'Biographical or historical data', 'Biographical or historical data', 1, 0, 6, NULL, NULL, NULL);
3500 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '678', 'b', 'Expansion', 'Expansion', 0, 0, 6, NULL, NULL, NULL);
3501 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '678', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
3502 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '678', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3503 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '678', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3504 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '680', 'a', 'Heading or subdivision term', 'Heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
3505 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '680', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
3506 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '680', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
3507 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '680', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
3508 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '680', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3509 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '680', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3510 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '681', 'a', 'Subject heading or subdivision term', 'Subject heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
3511 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '681', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
3512 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '681', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
3513 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '681', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3514 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '681', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3515 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '682', 'a', 'Replacement heading', 'Replacement heading', 1, 0, 6, NULL, NULL, NULL);
3516 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '682', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
3517 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '682', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3518 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '682', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3519 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '683', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 6, NULL, NULL, NULL);
3520 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '683', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 6, NULL, NULL, NULL);
3521 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '683', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
3522 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '683', 'p', 'Corresponding classification field', 'Corresponding classification field', 1, 0, 6, NULL, NULL, NULL);
3523 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '683', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 6, NULL, NULL, NULL);
3524 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '683', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
3525 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '683', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
3526 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '683', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3527 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '683', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 6, NULL, NULL, NULL);
3528 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '688', 'a', 'Application history note', 'Application history note', 0, 0, 6, NULL, NULL, NULL);
3529 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '688', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
3530 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '688', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
3531 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '688', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
3532 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 7, NULL, NULL, NULL);
3533 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 7, NULL, NULL, NULL);
3534 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 7, NULL, NULL, NULL);
3535 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 7, NULL, NULL, NULL);
3536 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'e', 'Relator term', 'Relator term', 1, 0, 7, NULL, NULL, NULL);
3537 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'f', 'Date of a work', 'Date of a work', 0, 0, 7, NULL, NULL, NULL);
3538 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 7, NULL, NULL, NULL);
3539 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'h', 'Medium', 'Medium', 0, 0, 7, NULL, NULL, NULL);
3540 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
3541 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'k', 'Form subheading', 'Form subheading', 1, 0, 7, NULL, NULL, NULL);
3542 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'l', 'Language of a work', 'Language of a work', 0, 0, 7, NULL, NULL, NULL);
3543 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 7, NULL, NULL, NULL);
3544 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 7, NULL, NULL, NULL);
3545 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 7, NULL, NULL, NULL);
3546 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 7, NULL, NULL, NULL);
3547 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'r', 'Key for music', 'Key for music', 0, 0, 7, NULL, NULL, NULL);
3548 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 's', 'Version', 'Version', 0, 0, 7, NULL, NULL, NULL);
3549 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 't', 'Title of a work', 'Title of a work', 0, 0, 7, NULL, NULL, NULL);
3550 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
3551 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
3552 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
3553 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
3554 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
3555 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
3556 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
3557 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', '4', 'Relator code', 'Relator code', 1, 0, 7, NULL, NULL, NULL);
3558 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
3559 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '710', '8', 'Field link and field number', 'Field link and field number', 1, 0, 7, NULL, NULL, NULL);
3560 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '788', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 7, NULL, NULL, NULL);
3561 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '788', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
3562 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '788', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
3563 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '788', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
3564 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '788', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
3565 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '788', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
3566 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '788', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
3567 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'a', 'Host name', 'Host name', 1, 0, 8, NULL, NULL, NULL);
3568 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'b', 'Access number', 'Access number', 1, 0, 8, NULL, NULL, NULL);
3569 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'c', 'Compression information', 'Compression information', 1, 0, 8, NULL, NULL, NULL);
3570 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'd', 'Path', 'Path', 1, 0, 8, NULL, NULL, NULL);
3571 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'f', 'Electronic name', 'Electronic name', 1, 0, 8, NULL, NULL, NULL);
3572 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'h', 'Processor of request', 'Processor of request', 0, 0, 8, NULL, NULL, NULL);
3573 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'i', 'Instruction', 'Instruction', 1, 0, 8, NULL, NULL, NULL);
3574 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'j', 'Bits per second', 'Bits per second', 0, 0, 8, NULL, NULL, NULL);
3575 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'k', 'Password', 'Password', 0, 0, 8, NULL, NULL, NULL);
3576 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'l', 'Logon', 'Logon', 0, 0, 8, NULL, NULL, NULL);
3577 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, 8, NULL, NULL, NULL);
3578 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'n', 'Name of location of host', 'Name of location of host', 0, 0, 8, NULL, NULL, NULL);
3579 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'o', 'Operating system', 'Operating system', 0, 0, 8, NULL, NULL, NULL);
3580 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'p', 'Port', 'Port', 0, 0, 8, NULL, NULL, NULL);
3581 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, 8, NULL, NULL, NULL);
3582 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'r', 'Settings', 'Settings', 0, 0, 8, NULL, NULL, NULL);
3583 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 's', 'File size', 'File size', 1, 0, 8, NULL, NULL, NULL);
3584 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, 8, NULL, NULL, NULL);
3585 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 8, NULL, NULL, NULL);
3586 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, 8, NULL, NULL, NULL);
3587 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'w', 'Record control number', 'Record control number', 1, 0, 8, NULL, NULL, NULL);
3588 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, 8, NULL, NULL, NULL);
3589 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'y', 'Link text', 'Link text', 1, 0, 8, NULL, NULL, NULL);
3590 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', 'z', 'Public note', 'Public note', 1, 0, 8, NULL, NULL, NULL);
3591 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', '2', 'Access method', 'Access method', 0, 0, 8, NULL, NULL, NULL);
3592 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', '3', 'Materials specified', 'Materials specified', 0, 0, 8, NULL, NULL, NULL);
3593 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', '6', 'Linkage', 'Linkage', 0, 0, 8, NULL, NULL, NULL);
3594 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 8, NULL, NULL, NULL);
3595 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'a', 'a', 'a', 1, 0, 8, NULL, NULL, NULL);
3596 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'b', 'b', 'b', 1, 0, 8, NULL, NULL, NULL);
3597 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'c', 'c', 'c', 1, 0, 8, NULL, NULL, NULL);
3598 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'd', 'd', 'd', 1, 0, 8, NULL, NULL, NULL);
3599 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'e', 'e', 'e', 1, 0, 8, NULL, NULL, NULL);
3600 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'f', 'f', 'f', 1, 0, 8, NULL, NULL, NULL);
3601 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'g', 'g', 'g', 1, 0, 8, NULL, NULL, NULL);
3602 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'h', 'h', 'h', 1, 0, 8, NULL, NULL, NULL);
3603 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'i', 'i', 'i', 1, 0, 8, NULL, NULL, NULL);
3604 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'j', 'j', 'j', 1, 0, 8, NULL, NULL, NULL);
3605 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'k', 'k', 'k', 1, 0, 8, NULL, NULL, NULL);
3606 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'l', 'l', 'l', 1, 0, 8, NULL, NULL, NULL);
3607 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'm', 'm', 'm', 1, 0, 8, NULL, NULL, NULL);
3608 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'n', 'n', 'n', 1, 0, 8, NULL, NULL, NULL);
3609 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'o', 'o', 'o', 1, 0, 8, NULL, NULL, NULL);
3610 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'p', 'p', 'p', 1, 0, 8, NULL, NULL, NULL);
3611 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'q', 'q', 'q', 1, 0, 8, NULL, NULL, NULL);
3612 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'r', 'r', 'r', 1, 0, 8, NULL, NULL, NULL);
3613 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 's', 's', 's', 1, 0, 8, NULL, NULL, NULL);
3614 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 't', 't', 't', 1, 0, 8, NULL, NULL, NULL);
3615 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'u', 'u', 'u', 1, 0, 8, NULL, NULL, NULL);
3616 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'v', 'v', 'v', 1, 0, 8, NULL, NULL, NULL);
3617 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'w', 'w', 'w', 1, 0, 8, NULL, NULL, NULL);
3618 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'x', 'x', 'x', 1, 0, 8, NULL, NULL, NULL);
3619 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'y', 'y', 'y', 1, 0, 8, NULL, NULL, NULL);
3620 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', 'z', 'z', 'z', 1, 0, 8, NULL, NULL, NULL);
3621 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', '0', '0', '0', 1, 0, 8, NULL, NULL, NULL);
3622 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', '1', '1', '1', 1, 0, 8, NULL, NULL, NULL);
3623 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', '2', '2', '2', 1, 0, 8, NULL, NULL, NULL);
3624 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', '3', '3', '3', 1, 0, 8, NULL, NULL, NULL);
3625 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', '4', '4', '4', 1, 0, 8, NULL, NULL, NULL);
3626 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', '5', '5', '5', 1, 0, 8, NULL, NULL, NULL);
3627 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', '6', '6', '6', 1, 0, 8, NULL, NULL, NULL);
3628 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', '7', '7', '7', 1, 0, 8, NULL, NULL, NULL);
3629 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', '8', '8', '8', 1, 0, 8, NULL, NULL, NULL);
3630 INSERT INTO `auth_subfield_structure` VALUES ('CORPO_NAME', '880', '9', '9', '9', 1, 0, 8, NULL, NULL, NULL);
3631
3632
3633 -- ******************************************************
3634
3635
3636
3637 -- *******************************************************************
3638 -- MEETING NAME AUTHORITY FIELDS/SUBFIELDS. 
3639 -- *******************************************************************
3640
3641 -- These ought to be adjusted for different less conflicting and more 
3642 -- rationally chosen fields and subfields but I had left that for last. 
3643
3644 -- ADJUST ME
3645 -- Use values from your dump of auth_tag_structure and auth_subfield_structure 
3646 -- to provide support for your Koha database.
3647
3648
3649 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '000', 'LEADER', 'LEADER', 0, 1, NULL);
3650 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 1, NULL);
3651 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 1, NULL);
3652 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 1, NULL);
3653 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '008', 'FIXED-LENGTH DATA ELEMENTS', 'FIXED-LENGTH DATA ELEMENTS', 0, 1, NULL);
3654 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, NULL);
3655 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '014', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 1, 0, NULL);
3656 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, NULL);
3657 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '020', 'INTERNATIONAL STANDARD BOOK NUMBER', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL);
3658 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL);
3659 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL);
3660 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, NULL);
3661 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL);
3662 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL);
3663 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 1, NULL);
3664 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, NULL);
3665 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL);
3666 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '045', 'TIME PERIOD OF HEADING', 'TIME PERIOD OF HEADING', 0, 0, NULL);
3667 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL);
3668 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL);
3669 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '053', 'LC CLASSIFICATION NUMBER', 'LC CLASSIFICATION NUMBER', 1, 0, NULL);
3670 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '055', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 1, 0, NULL);
3671 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL);
3672 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '065', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL);
3673 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL);
3674 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL);
3675 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL);
3676 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '073', 'SUBDIVISION USAGE', 'SUBDIVISION USAGE', 0, 0, NULL);
3677 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '082', 'DEWEY DECIMAL CALL NUMBER', 'DEWEY DECIMAL CALL NUMBER', 1, 0, NULL);
3678 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '083', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL);
3679 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '086', 'GOVERNMENT DOCUMENT CALL NUMBER', 'GOVERNMENT DOCUMENT CALL NUMBER', 1, 0, NULL);
3680 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '087', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL);
3681 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '090', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, NULL);
3682 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '091', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 0, 0, NULL);
3683 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, NULL);
3684 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '093', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
3685 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, NULL);
3686 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '097', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
3687 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, NULL);
3688 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, NULL);
3689 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '111', 'HEADING--MEETING NAME', 'HEADING--MEETING NAME', 0, 0, NULL);
3690 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '260', 'COMPLEX SEE REFERENCE--SUBJECT', 'COMPLEX SEE REFERENCE--SUBJECT', 1, 0, NULL);
3691 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '360', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 1, 0, NULL);
3692 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '400', 'SEE FROM TRACING--PERSONAL NAME', 'SEE FROM TRACING--PERSONAL NAME', 1, 0, NULL);
3693 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '410', 'SEE FROM TRACING--CORPORATE NAME', 'SEE FROM TRACING--CORPORATE NAME', 1, 0, NULL);
3694 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '411', 'SEE FROM TRACING--MEETING NAME', 'SEE FROM TRACING--MEETING NAME', 1, 0, NULL);
3695 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '430', 'SEE FROM TRACING--UNIFORM TITLE', 'SEE FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
3696 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '448', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
3697 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '450', 'SEE FROM TRACING--TOPICAL TERM', 'SEE FROM TRACING--TOPICAL TERM', 1, 0, NULL);
3698 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '451', 'SEE FROM TRACING--GEOGRAPHIC NAME', 'SEE FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
3699 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '455', 'SEE FROM TRACING--GENRE/FORM TERM', 'SEE FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
3700 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '480', 'SEE FROM TRACING--GENERAL SUBDIVISION', 'SEE FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
3701 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '481', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
3702 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '482', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
3703 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '485', 'SEE FROM TRACING--FORM SUBDIVISION', 'SEE FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
3704 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '500', 'SEE ALSO FROM TRACING--PERSONAL NAME', 'SEE ALSO FROM TRACING--PERSONAL NAME', 1, 0, NULL);
3705 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '510', 'SEE ALSO FROM TRACING--CORPORATE NAME', 'SEE ALSO FROM TRACING--CORPORATE NAME', 1, 0, NULL);
3706 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '511', 'SEE ALSO FROM TRACING--MEETING NAME', 'SEE ALSO FROM TRACING--MEETING NAME', 1, 0, NULL);
3707 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '530', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
3708 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '548', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
3709 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '550', 'SEE ALSO FROM TRACING--TOPICAL TERM', 'SEE ALSO FROM TRACING--TOPICAL TERM', 1, 0, NULL);
3710 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '551', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
3711 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '555', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
3712 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '580', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
3713 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '581', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
3714 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '582', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
3715 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '585', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
3716 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '663', 'COMPLEX SEE ALSO REFERENCE--NAME', 'COMPLEX SEE ALSO REFERENCE--NAME', 0, 0, NULL);
3717 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '664', 'COMPLEX SEE REFERENCE--NAME', 'COMPLEX SEE REFERENCE--NAME', 0, 0, NULL);
3718 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '665', 'HISTORY REFERENCE', 'HISTORY REFERENCE', 0, 0, NULL);
3719 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '666', 'GENERAL EXPLANATORY REFERENCE--NAME', 'GENERAL EXPLANATORY REFERENCE--NAME', 0, 0, NULL);
3720 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '667', 'NONPUBLIC GENERAL NOTE', 'NONPUBLIC GENERAL NOTE', 1, 0, NULL);
3721 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '670', 'SOURCE DATA FOUND', 'SOURCE DATA FOUND', 1, 0, NULL);
3722 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '675', 'SOURCE DATA NOT FOUND', 'SOURCE DATA NOT FOUND', 0, 0, NULL);
3723 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '678', 'BIOGRAPHICAL OR HISTORICAL DATA', 'BIOGRAPHICAL OR HISTORICAL DATA', 1, 0, NULL);
3724 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '680', 'PUBLIC GENERAL NOTE', 'PUBLIC GENERAL NOTE', 1, 0, NULL);
3725 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '681', 'SUBJECT EXAMPLE TRACING NOTE', 'SUBJECT EXAMPLE TRACING NOTE', 1, 0, NULL);
3726 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '682', 'DELETED HEADING INFORMATION', 'DELETED HEADING INFORMATION', 0, 0, NULL);
3727 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '683', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
3728 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '688', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
3729 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '711', 'ESTABLISHED HEADING LINKING ENTRY--MEETING NAME', 'ESTABLISHED HEADING LINKING ENTRY--MEETING NAME', 1, 0, NULL);
3730 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '788', 'COMPLEX LINKING ENTRY DATA', 'COMPLEX LINKING ENTRY DATA', 0, 0, NULL);
3731 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL);
3732 INSERT INTO `auth_tag_structure` VALUES ('MEETI_NAME', '880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL);
3733
3734
3735 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '000', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
3736 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '001', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
3737 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '003', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
3738 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '005', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
3739 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '008', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
3740 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '010', 'a', 'LC control number', 'LC control number', 0, 0, 0, NULL, NULL, NULL);
3741 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, 0, NULL, NULL, NULL);
3742 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3743 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '014', 'a', 'Control number of related bibliographic record', 'Control number of related bibliographic record', 0, 0, 0, NULL, NULL, NULL);
3744 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '014', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3745 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '014', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3746 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '016', 'a', 'Record control number', 'Record control number', 0, 0, 0, NULL, NULL, NULL);
3747 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '016', 'z', 'Canceled/invalid record control number', 'Canceled/invalid record control number', 1, 0, 0, NULL, NULL, NULL);
3748 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '016', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
3749 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3750 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 0, NULL, NULL, NULL);
3751 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
3752 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '020', 'z', 'Canceled/invalid ISBN', 'Canceled/invalid ISBN', 1, 0, 0, NULL, NULL, NULL);
3753 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '020', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3754 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3755 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 0, NULL, NULL, NULL);
3756 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, 0, NULL, NULL, NULL);
3757 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, 0, NULL, NULL, NULL);
3758 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '022', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3759 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3760 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, 0, NULL, NULL, NULL);
3761 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
3762 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, 0, NULL, NULL, NULL);
3763 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, 0, NULL, NULL, NULL);
3764 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '024', '2', 'Source of number or code', 'Source of number or code', 0, 0, 0, NULL, NULL, NULL);
3765 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '024', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3766 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3767 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'a', 'Number of work', 'Number of work', 0, 0, 0, NULL, NULL, NULL);
3768 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'b', 'Number of movement', 'Number of movement', 0, 0, 0, NULL, NULL, NULL);
3769 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, 0, NULL, NULL, NULL);
3770 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, 0, NULL, NULL, NULL);
3771 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'e', 'Role', 'Role', 0, 0, 0, NULL, NULL, NULL);
3772 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'g', 'Clef', 'Clef', 0, 0, 0, NULL, NULL, NULL);
3773 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, 0, NULL, NULL, NULL);
3774 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'n', 'Key signature', 'Key signature', 0, 0, 0, NULL, NULL, NULL);
3775 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'o', 'Time signature', 'Time signature', 0, 0, 0, NULL, NULL, NULL);
3776 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'p', 'Musical notation', 'Musical notation', 0, 0, 0, NULL, NULL, NULL);
3777 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'q', 'General note', 'General note', 1, 0, 0, NULL, NULL, NULL);
3778 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'r', 'Key or mode', 'Key or mode', 0, 0, 0, NULL, NULL, NULL);
3779 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 's', 'Coded validity note', 'Coded validity note', 1, 0, 0, NULL, NULL, NULL);
3780 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 't', 'Text incipit', 'Text incipit', 1, 0, 0, NULL, NULL, NULL);
3781 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 0, NULL, NULL, NULL);
3782 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', '2', 'System code', 'System code', 0, 0, 0, NULL, NULL, NULL);
3783 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3784 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3785 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, 0, NULL, NULL, NULL);
3786 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, 0, NULL, NULL, NULL);
3787 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, 0, NULL, NULL, NULL);
3788 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, 0, NULL, NULL, NULL);
3789 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, 0, NULL, NULL, NULL);
3790 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, 0, NULL, NULL, NULL);
3791 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, 0, NULL, NULL, NULL);
3792 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, 0, NULL, NULL, NULL);
3793 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'p', 'Equinox', 'Equinox', 0, 0, 0, NULL, NULL, NULL);
3794 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'r', 'Distance from earth', 'Distance from earth', 1, 0, 0, NULL, NULL, NULL);
3795 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, 0, NULL, NULL, NULL);
3796 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, 0, NULL, NULL, NULL);
3797 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'x', 'Beginning date', 'Beginning date', 0, 0, 0, NULL, NULL, NULL);
3798 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'y', 'Ending date', 'Ending date', 0, 0, 0, NULL, NULL, NULL);
3799 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', 'z', 'Name of extraterrestrial body', 'Name of extraterrestrial body', 0, 0, 0, NULL, NULL, NULL);
3800 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
3801 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3802 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3803 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '035', 'a', 'System control number', 'System control number', 0, 0, 0, NULL, NULL, NULL);
3804 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, 0, NULL, NULL, NULL);
3805 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '035', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3806 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3807 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 1, 0, NULL, NULL, NULL);
3808 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, 0, NULL, NULL, NULL);
3809 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, 0, NULL, NULL, NULL);
3810 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, 0, NULL, NULL, NULL);
3811 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '040', 'e', 'Description conventions', 'Description conventions', 0, 0, 0, NULL, NULL, NULL);
3812 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '040', 'f', 'Subject heading or thesaurus conventions', 'Subject heading or thesaurus conventions', 0, 0, 0, NULL, NULL, NULL);
3813 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '040', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3814 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3815 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '042', 'a', 'Authentication code', 'Authentication code', 1, 0, 0, NULL, NULL, NULL);
3816 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, 0, NULL, NULL, NULL);
3817 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, 0, NULL, NULL, NULL);
3818 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '043', 'c', 'ISO code', 'ISO code', 1, 0, 0, NULL, NULL, NULL);
3819 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '043', '2', 'Source of local code', 'Source of local code', 1, 0, 0, NULL, NULL, NULL);
3820 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '043', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3821 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3822 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '045', 'a', 'Time period code', 'Time period code', 1, 0, 0, NULL, NULL, NULL);
3823 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 0, 0, 0, NULL, NULL, NULL);
3824 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, 0, NULL, NULL, NULL);
3825 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '045', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3826 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3827 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '050', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
3828 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '050', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3829 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '050', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3830 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '050', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3831 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '050', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3832 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3833 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, 0, NULL, NULL, NULL);
3834 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, 0, NULL, NULL, NULL);
3835 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '052', 'd', 'Populated place name', 'Populated place name', 1, 0, 0, NULL, NULL, NULL);
3836 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '052', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
3837 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '052', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3838 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3839 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '053', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
3840 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '053', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 1, 0, 0, NULL, NULL, NULL);
3841 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '053', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
3842 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '053', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3843 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '053', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3844 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '053', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3845 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '055', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
3846 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '055', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3847 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '055', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3848 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '055', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3849 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '055', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3850 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3851 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '060', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
3852 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '060', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3853 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '060', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3854 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '060', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3855 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '060', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3856 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3857 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '065', 'a', 'Classification number element--single number or beginning of span', 'Classification number element--single number or beginning of span', 0, 0, 0, NULL, NULL, NULL);
3858 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '065', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
3859 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '065', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
3860 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '065', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
3861 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '065', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3862 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '065', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3863 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '065', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3864 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, 0, NULL, NULL, NULL);
3865 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, 0, NULL, NULL, NULL);
3866 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, 0, NULL, NULL, NULL);
3867 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '070', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
3868 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '070', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3869 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '070', 'd', 'Volume/dates to which call number applies', 'Volume/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3870 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '070', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3871 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3872 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '072', 'a', 'Subject category code', 'Subject category code', 0, 0, 0, NULL, NULL, NULL);
3873 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, 0, NULL, NULL, NULL);
3874 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '072', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
3875 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '072', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3876 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3877 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '073', 'a', 'Subdivision usage', 'Subdivision usage', 1, 0, 0, NULL, NULL, NULL);
3878 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '073', 'z', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
3879 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '073', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3880 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '073', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3881 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '082', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
3882 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '082', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3883 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '082', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3884 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '082', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3885 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '082', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3886 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '082', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3887 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3888 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '083', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
3889 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '083', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
3890 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '083', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
3891 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '083', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
3892 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '083', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3893 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '083', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3894 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '083', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3895 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '083', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3896 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '086', 'a', 'Call number', 'Call number', 0, 0, 0, NULL, NULL, NULL);
3897 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '086', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3898 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '086', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
3899 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '086', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
3900 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '086', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3901 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '086', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3902 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3903 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '087', 'a', 'Classification number element--Single number or beginning number of span', 'Classification number element--Single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
3904 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '087', 'b', 'Classification number element--Ending number of span', 'Classification number element--Ending number of span', 0, 0, 0, NULL, NULL, NULL);
3905 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '087', 'c', 'Explanatory information', 'Explanatory information', 0, 0, 0, NULL, NULL, NULL);
3906 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '087', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
3907 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '087', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3908 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '087', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3909 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'a', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, 0, NULL, NULL, NULL);
3910 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'b', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3911 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3912 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, 0, NULL, NULL, NULL);
3913 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'f', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3914 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3915 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3916 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3917 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3918 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3919 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3920 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3921 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
3922 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
3923 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
3924 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3925 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3926 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '090', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3927 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '091', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
3928 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '091', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
3929 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '091', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
3930 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '091', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
3931 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '091', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3932 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '091', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3933 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '091', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3934 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '091', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3935 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '092', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
3936 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '092', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3937 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '092', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3938 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '092', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
3939 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
3940 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '092', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3941 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '092', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3942 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '092', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3943 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '092', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3944 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '093', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
3945 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '093', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
3946 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '093', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
3947 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '093', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
3948 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '093', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3949 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '093', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3950 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '093', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3951 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '093', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3952 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '096', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
3953 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '096', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3954 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '096', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3955 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '096', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
3956 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
3957 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '096', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3958 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '096', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3959 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '096', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3960 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '096', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3961 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '097', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
3962 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '097', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
3963 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '097', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
3964 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '097', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
3965 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '097', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3966 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '097', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3967 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '097', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3968 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '097', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3969 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, 0, NULL, NULL, NULL);
3970 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '098', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3971 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '098', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3972 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '098', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
3973 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
3974 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '098', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3975 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '098', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3976 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '098', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3977 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '098', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3978 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '099', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
3979 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '099', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
3980 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '099', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
3981 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '099', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
3982 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
3983 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '099', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
3984 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '099', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
3985 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '099', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
3986 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '099', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
3987 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 1, NULL, NULL, '''111e'',''111c'',''111d'',''111t'',''111s'',''111k'',''111n'',''111p'',''111g'',''111l'',''111f'',''111h'',''111x'',''111z'',''111y'',''111v''');
3988 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, 1, NULL, NULL, NULL);
3989 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 1, NULL, NULL, NULL);
3990 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 1, NULL, NULL, NULL);
3991 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 1, NULL, NULL, NULL);
3992 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'f', 'Date of a work', 'Date of a work', 0, 0, 1, NULL, NULL, NULL);
3993 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 1, NULL, NULL, NULL);
3994 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'h', 'Medium', 'Medium', 0, 0, 1, NULL, NULL, NULL);
3995 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'j', 'Relator term', 'Relator term', 0, 0, 1, NULL, NULL, NULL);
3996 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'k', 'Form subheading', 'Form subheading', 1, 0, 1, NULL, NULL, NULL);
3997 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'l', 'Language of a work', 'Language of a work', 0, 0, 1, NULL, NULL, NULL);
3998 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 1, NULL, NULL, NULL);
3999 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
4000 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 1, NULL, NULL, NULL);
4001 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 's', 'Version', 'Version', 0, 0, 1, NULL, NULL, NULL);
4002 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 't', 'Title of a work', 'Title of a work', 0, 0, 1, NULL, NULL, NULL);
4003 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
4004 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
4005 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
4006 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
4007 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
4008 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
4009 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '260', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 2, NULL, NULL, NULL);
4010 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '260', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 2, NULL, NULL, NULL);
4011 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '260', '6', 'Linkage', 'Linkage', 0, 0, 2, NULL, NULL, NULL);
4012 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 2, NULL, NULL, NULL);
4013 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '360', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 3, NULL, NULL, NULL);
4014 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '360', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 3, NULL, NULL, NULL);
4015 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '360', '6', 'Linkage', 'Linkage', 0, 0, 3, NULL, NULL, NULL);
4016 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '360', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 3, NULL, NULL, NULL);
4017 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'a', 'Personal name', 'Personal name', 0, 0, 4, NULL, NULL, '''400b'',''400c'',''400q'',''400d'',''400t'',''400o'',''400m'',''400r'',''400s'',''400k'',''400n'',''400p'',''400g'',''400l'',''400f'',''400h'',''400x'',''400z'',''400y'',''400v''');
4018 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'b', 'Numeration', 'Numeration', 0, 0, 4, NULL, NULL, NULL);
4019 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 4, NULL, NULL, NULL);
4020 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 4, NULL, NULL, NULL);
4021 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
4022 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
4023 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
4024 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
4025 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4026 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 4, NULL, NULL, NULL);
4027 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
4028 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
4029 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
4030 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
4031 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
4032 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
4033 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 4, NULL, NULL, NULL);
4034 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
4035 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
4036 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
4037 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4038 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4039 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4040 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4041 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4042 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4043 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4044 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4045 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''410b'',''410c'',''410d'',''410t'',''410o'',''410m'',''410r'',''410s'',''410k'',''410n'',''410p'',''410g'',''410l'',''410f'',''410h'',''410x'',''410z'',''410y'',''410v''');
4046 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
4047 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
4048 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 4, NULL, NULL, NULL);
4049 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
4050 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
4051 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
4052 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
4053 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4054 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
4055 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
4056 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
4057 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
4058 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
4059 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
4060 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
4061 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
4062 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
4063 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4064 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4065 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4066 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4067 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4068 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4069 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4070 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4071 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''411e'',''411c'',''411d'',''411t'',''411s'',''411k'',''411n'',''411p'',''411g'',''411l'',''411f'',''411h'',''411x'',''411z'',''411y'',''411v''');
4072 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'b', 'Number {OBSOLETE]', 'Number {OBSOLETE]', 0, 0, 4, NULL, NULL, NULL);
4073 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
4074 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 4, NULL, NULL, NULL);
4075 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
4076 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
4077 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
4078 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
4079 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4080 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
4081 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
4082 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
4083 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
4084 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 4, NULL, NULL, NULL);
4085 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
4086 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
4087 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4088 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4089 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4090 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4091 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4092 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4093 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4094 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4095 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'a', 'Uniform title', 'Uniform title', 0, 0, 4, NULL, NULL, '''430o'',''430m'',''430r'',''430s'',''430d'',''430k'',''430n'',''430p'',''430g'',''430l'',''430f'',''430h'',''430t'',''430x'',''430z'',''430y'',''430v''');
4096 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 4, NULL, NULL, NULL);
4097 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
4098 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
4099 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
4100 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4101 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
4102 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
4103 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
4104 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
4105 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
4106 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
4107 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
4108 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
4109 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
4110 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4111 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4112 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4113 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4114 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4115 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4116 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4117 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '430', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4118 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '448', 'a', 'Chronological term', 'Chronological term', 0, 0, 4, NULL, NULL, '''448y'',''448x'',''448z'',''448v''');
4119 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '448', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 4, NULL, NULL, NULL);
4120 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '448', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4121 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '448', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4122 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '448', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4123 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '448', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4124 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '448', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4125 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '448', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4126 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '448', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4127 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '448', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4128 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '450', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 4, NULL, NULL, '''450x'',''450z'',''450y'',''450v''');
4129 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '450', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 4, NULL, NULL, NULL);
4130 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '450', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4131 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '450', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4132 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '450', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4133 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '450', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4134 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '450', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4135 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '450', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4136 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '450', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4137 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '450', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4138 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '450', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4139 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '451', 'a', 'Geographic name', 'Geographic name', 0, 0, 4, NULL, NULL, '''451z'',''451x'',''451y'',''451v''');
4140 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '451', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4141 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '451', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4142 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '451', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4143 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '451', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4144 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '451', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4145 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '451', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4146 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '451', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4147 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '451', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4148 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '451', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4149 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '455', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 4, NULL, NULL, '''455v'',''455x'',''455z'',''455y''');
4150 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '455', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4151 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '455', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4152 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '455', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4153 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '455', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4154 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '455', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4155 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '455', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4156 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '455', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4157 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '455', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4158 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '455', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4159 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '480', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4160 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '480', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4161 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '480', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4162 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '480', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4163 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '480', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4164 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '480', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4165 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '480', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4166 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '480', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4167 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '480', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4168 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '481', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4169 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '481', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4170 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '481', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4171 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '481', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4172 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '481', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4173 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '481', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4174 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '481', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4175 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '481', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4176 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '481', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4177 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '482', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4178 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '482', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4179 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '482', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4180 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '482', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4181 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '482', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4182 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '482', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4183 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '482', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4184 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '482', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4185 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '482', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4186 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '485', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4187 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '485', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4188 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '485', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4189 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '485', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4190 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '485', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4191 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '485', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4192 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '485', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4193 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '485', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4194 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '485', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4195 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'a', 'Personal name', 'Personal name', 0, 0, 5, NULL, NULL, '''500b'',''500c'',''500q'',''500d'',''500t'',''500o'',''500m'',''500r'',''500s'',''500k'',''500n'',''500p'',''500g'',''500l'',''500f'',''500h'',''500x'',''500z'',''500y'',''500v''');
4196 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'b', 'Numeration', 'Numeration', 0, 0, 5, NULL, NULL, NULL);
4197 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 5, NULL, NULL, NULL);
4198 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 5, NULL, NULL, NULL);
4199 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
4200 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
4201 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
4202 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
4203 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
4204 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 5, NULL, NULL, NULL);
4205 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
4206 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
4207 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
4208 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
4209 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
4210 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
4211 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 5, NULL, NULL, NULL);
4212 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
4213 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
4214 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
4215 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4216 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4217 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4218 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4219 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4220 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4221 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4222 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4223 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4224 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''510b'',''510c'',''510d'',''510t'',''510o'',''510m'',''510r'',''510s'',''510k'',''510n'',''510p'',''510g'',''510l'',''510f'',''510h'',''510x'',''510z'',''510y'',''510v''');
4225 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
4226 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
4227 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 5, NULL, NULL, NULL);
4228 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
4229 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
4230 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
4231 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
4232 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
4233 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
4234 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
4235 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
4236 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
4237 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
4238 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
4239 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
4240 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
4241 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
4242 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4243 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4244 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4245 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4246 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4247 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4248 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4249 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4250 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4251 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''511e'',''511c'',''511d'',''511t'',''511s'',''511k'',''511n'',''511p'',''511g'',''511l'',''511f'',''511h'',''511x'',''511z'',''511y'',''511v''');
4252 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
4253 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 5, NULL, NULL, NULL);
4254 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
4255 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
4256 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
4257 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
4258 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
4259 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
4260 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
4261 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
4262 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
4263 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 5, NULL, NULL, NULL);
4264 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
4265 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
4266 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4267 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4268 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4269 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4270 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4271 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4272 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4273 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4274 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4275 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'a', 'Uniform title', 'Uniform title', 0, 0, 5, NULL, NULL, '''530o'',''530m'',''530r'',''530s'',''530d'',''530k'',''530n'',''530p'',''530g'',''530l'',''530f'',''530h'',''530t'',''530x'',''530z'',''530y'',''530v''');
4276 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 5, NULL, NULL, NULL);
4277 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
4278 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
4279 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
4280 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
4281 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
4282 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
4283 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
4284 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
4285 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
4286 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
4287 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
4288 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
4289 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
4290 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4291 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4292 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4293 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4294 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4295 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4296 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4297 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4298 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4299 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '548', 'a', 'Chronological term', 'Chronological term', 0, 0, 5, NULL, NULL, '''548y'',''548x'',''548z'',''548v''');
4300 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '548', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 5, NULL, NULL, NULL);
4301 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '548', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4302 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '548', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4303 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '548', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4304 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '548', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4305 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '548', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4306 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '548', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4307 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '548', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4308 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '548', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4309 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '548', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4310 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 5, NULL, NULL, '''550x'',''550z'',''550y'',''550v''');
4311 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 5, NULL, NULL, NULL);
4312 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
4313 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4314 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4315 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4316 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4317 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4318 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4319 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4320 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4321 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4322 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '551', 'a', 'Geographic name', 'Geographic name', 0, 0, 5, NULL, NULL, '''551z'',''551x'',''551y'',''551v''');
4323 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '551', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
4324 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '551', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4325 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '551', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4326 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '551', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4327 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '551', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4328 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '551', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4329 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '551', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4330 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '551', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4331 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '551', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4332 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '551', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4333 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '555', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 5, NULL, NULL, '''555v'',''555x'',''555z'',''555y''');
4334 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '555', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
4335 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '555', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4336 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '555', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4337 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '555', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4338 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '555', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4339 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '555', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4340 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '555', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4341 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '555', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4342 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '555', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4343 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4344 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '580', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
4345 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '580', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4346 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '580', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4347 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '580', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4348 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '580', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4349 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '580', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4350 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '580', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4351 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '580', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4352 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '580', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4353 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4354 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '581', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
4355 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '581', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4356 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '581', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4357 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '581', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4358 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '581', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4359 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '581', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4360 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '581', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4361 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '581', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4362 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '581', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4363 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4364 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '582', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
4365 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '582', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4366 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '582', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4367 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '582', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4368 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '582', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4369 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '582', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4370 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '582', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4371 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '582', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4372 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '582', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4373 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '582', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4374 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '585', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
4375 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '585', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
4376 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '585', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
4377 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '585', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
4378 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '585', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
4379 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '585', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
4380 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '585', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
4381 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '585', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
4382 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '585', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
4383 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
4384 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '663', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
4385 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '663', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
4386 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '663', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
4387 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '663', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4388 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '663', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4389 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '664', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
4390 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '664', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
4391 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '664', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
4392 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '664', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4393 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '664', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4394 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '665', 'a', 'History reference', 'History reference', 1, 0, 6, NULL, NULL, NULL);
4395 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '665', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4396 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '665', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4397 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '666', 'a', 'General explanatory reference', 'General explanatory reference', 1, 0, 6, NULL, NULL, NULL);
4398 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '666', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4399 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '666', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4400 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '667', 'a', 'Nonpublic general note', 'Nonpublic general note', 0, 0, 6, NULL, NULL, NULL);
4401 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '667', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
4402 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '667', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4403 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '667', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4404 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '670', 'a', 'Source citation', 'Source citation', 0, 0, 6, NULL, NULL, NULL);
4405 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '670', 'b', 'Information found', 'Information found', 0, 0, 6, NULL, NULL, NULL);
4406 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '670', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
4407 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '670', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4408 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '670', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4409 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '675', 'a', 'Source citation', 'Source citation', 1, 0, 6, NULL, NULL, NULL);
4410 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '675', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4411 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '675', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4412 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '678', 'a', 'Biographical or historical data', 'Biographical or historical data', 1, 0, 6, NULL, NULL, NULL);
4413 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '678', 'b', 'Expansion', 'Expansion', 0, 0, 6, NULL, NULL, NULL);
4414 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '678', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
4415 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '678', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4416 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '678', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4417 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '680', 'a', 'Heading or subdivision term', 'Heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
4418 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '680', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
4419 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '680', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
4420 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '680', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
4421 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '680', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4422 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '680', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4423 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '681', 'a', 'Subject heading or subdivision term', 'Subject heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
4424 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '681', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
4425 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '681', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
4426 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '681', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4427 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '681', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4428 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '682', 'a', 'Replacement heading', 'Replacement heading', 1, 0, 6, NULL, NULL, NULL);
4429 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '682', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
4430 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '682', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4431 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '682', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4432 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '683', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 6, NULL, NULL, NULL);
4433 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '683', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 6, NULL, NULL, NULL);
4434 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '683', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
4435 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '683', 'p', 'Corresponding classification field', 'Corresponding classification field', 1, 0, 6, NULL, NULL, NULL);
4436 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '683', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 6, NULL, NULL, NULL);
4437 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '683', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
4438 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '683', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
4439 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '683', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4440 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '683', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 6, NULL, NULL, NULL);
4441 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '688', 'a', 'Application history note', 'Application history note', 0, 0, 6, NULL, NULL, NULL);
4442 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '688', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
4443 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '688', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
4444 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '688', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
4445 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 7, NULL, NULL, NULL);
4446 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 7, NULL, NULL, NULL);
4447 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'd', 'Date of meeting or treating signing', 'Date of meeting or treating signing', 1, 0, 7, NULL, NULL, NULL);
4448 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 7, NULL, NULL, NULL);
4449 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'f', 'Date of a work', 'Date of a work', 0, 0, 7, NULL, NULL, NULL);
4450 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 7, NULL, NULL, NULL);
4451 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'h', 'Medium', 'Medium', 0, 0, 7, NULL, NULL, NULL);
4452 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
4453 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'k', 'Form subheading', 'Form subheading', 1, 0, 7, NULL, NULL, NULL);
4454 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'l', 'Language of a work', 'Language of a work', 0, 0, 7, NULL, NULL, NULL);
4455 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 7, NULL, NULL, NULL);
4456 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 0, 0, 7, NULL, NULL, NULL);
4457 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 7, NULL, NULL, NULL);
4458 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 's', 'Version', 'Version', 0, 0, 7, NULL, NULL, NULL);
4459 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 't', 'Title of a work', 'Title of a work', 0, 0, 7, NULL, NULL, NULL);
4460 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
4461 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
4462 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
4463 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
4464 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
4465 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
4466 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
4467 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', '3', 'Materials specified', 'Materials specified', 0, 0, 7, NULL, NULL, NULL);
4468 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', '4', 'Relator code', 'Relator code', 1, 0, 7, NULL, NULL, NULL);
4469 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
4470 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
4471 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '788', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 7, NULL, NULL, NULL);
4472 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '788', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
4473 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '788', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
4474 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '788', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
4475 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '788', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
4476 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '788', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
4477 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '788', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
4478 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'a', 'Host name', 'Host name', 1, 0, 8, NULL, NULL, NULL);
4479 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'b', 'Access number', 'Access number', 1, 0, 8, NULL, NULL, NULL);
4480 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'c', 'Compression information', 'Compression information', 1, 0, 8, NULL, NULL, NULL);
4481 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'd', 'Path', 'Path', 1, 0, 8, NULL, NULL, NULL);
4482 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'f', 'Electronic name', 'Electronic name', 1, 0, 8, NULL, NULL, NULL);
4483 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'h', 'Processor of request', 'Processor of request', 0, 0, 8, NULL, NULL, NULL);
4484 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'i', 'Instruction', 'Instruction', 1, 0, 8, NULL, NULL, NULL);
4485 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'j', 'Bits per second', 'Bits per second', 0, 0, 8, NULL, NULL, NULL);
4486 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'k', 'Password', 'Password', 0, 0, 8, NULL, NULL, NULL);
4487 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'l', 'Logon', 'Logon', 0, 0, 8, NULL, NULL, NULL);
4488 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, 8, NULL, NULL, NULL);
4489 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'n', 'Name of location of host', 'Name of location of host', 0, 0, 8, NULL, NULL, NULL);
4490 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'o', 'Operating system', 'Operating system', 0, 0, 8, NULL, NULL, NULL);
4491 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'p', 'Port', 'Port', 0, 0, 8, NULL, NULL, NULL);
4492 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, 8, NULL, NULL, NULL);
4493 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'r', 'Settings', 'Settings', 0, 0, 8, NULL, NULL, NULL);
4494 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 's', 'File size', 'File size', 1, 0, 8, NULL, NULL, NULL);
4495 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, 8, NULL, NULL, NULL);
4496 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 8, NULL, NULL, NULL);
4497 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, 8, NULL, NULL, NULL);
4498 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'w', 'Record control number', 'Record control number', 1, 0, 8, NULL, NULL, NULL);
4499 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, 8, NULL, NULL, NULL);
4500 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'y', 'Link text', 'Link text', 1, 0, 8, NULL, NULL, NULL);
4501 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', 'z', 'Public note', 'Public note', 1, 0, 8, NULL, NULL, NULL);
4502 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', '2', 'Access method', 'Access method', 0, 0, 8, NULL, NULL, NULL);
4503 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', '3', 'Materials specified', 'Materials specified', 0, 0, 8, NULL, NULL, NULL);
4504 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', '6', 'Linkage', 'Linkage', 0, 0, 8, NULL, NULL, NULL);
4505 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 8, NULL, NULL, NULL);
4506 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'a', 'a', 'a', 1, 0, 8, NULL, NULL, NULL);
4507 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'b', 'b', 'b', 1, 0, 8, NULL, NULL, NULL);
4508 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'c', 'c', 'c', 1, 0, 8, NULL, NULL, NULL);
4509 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'd', 'd', 'd', 1, 0, 8, NULL, NULL, NULL);
4510 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'e', 'e', 'e', 1, 0, 8, NULL, NULL, NULL);
4511 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'f', 'f', 'f', 1, 0, 8, NULL, NULL, NULL);
4512 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'g', 'g', 'g', 1, 0, 8, NULL, NULL, NULL);
4513 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'h', 'h', 'h', 1, 0, 8, NULL, NULL, NULL);
4514 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'i', 'i', 'i', 1, 0, 8, NULL, NULL, NULL);
4515 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'j', 'j', 'j', 1, 0, 8, NULL, NULL, NULL);
4516 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'k', 'k', 'k', 1, 0, 8, NULL, NULL, NULL);
4517 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'l', 'l', 'l', 1, 0, 8, NULL, NULL, NULL);
4518 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'm', 'm', 'm', 1, 0, 8, NULL, NULL, NULL);
4519 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'n', 'n', 'n', 1, 0, 8, NULL, NULL, NULL);
4520 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'o', 'o', 'o', 1, 0, 8, NULL, NULL, NULL);
4521 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'p', 'p', 'p', 1, 0, 8, NULL, NULL, NULL);
4522 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'q', 'q', 'q', 1, 0, 8, NULL, NULL, NULL);
4523 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'r', 'r', 'r', 1, 0, 8, NULL, NULL, NULL);
4524 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 's', 's', 's', 1, 0, 8, NULL, NULL, NULL);
4525 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 't', 't', 't', 1, 0, 8, NULL, NULL, NULL);
4526 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'u', 'u', 'u', 1, 0, 8, NULL, NULL, NULL);
4527 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'v', 'v', 'v', 1, 0, 8, NULL, NULL, NULL);
4528 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'w', 'w', 'w', 1, 0, 8, NULL, NULL, NULL);
4529 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'x', 'x', 'x', 1, 0, 8, NULL, NULL, NULL);
4530 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'y', 'y', 'y', 1, 0, 8, NULL, NULL, NULL);
4531 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', 'z', 'z', 'z', 1, 0, 8, NULL, NULL, NULL);
4532 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', '0', '0', '0', 1, 0, 8, NULL, NULL, NULL);
4533 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', '1', '1', '1', 1, 0, 8, NULL, NULL, NULL);
4534 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', '2', '2', '2', 1, 0, 8, NULL, NULL, NULL);
4535 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', '3', '3', '3', 1, 0, 8, NULL, NULL, NULL);
4536 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', '4', '4', '4', 1, 0, 8, NULL, NULL, NULL);
4537 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', '5', '5', '5', 1, 0, 8, NULL, NULL, NULL);
4538 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', '6', '6', '6', 1, 0, 8, NULL, NULL, NULL);
4539 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', '7', '7', '7', 1, 0, 8, NULL, NULL, NULL);
4540 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', '8', '8', '8', 1, 0, 8, NULL, NULL, NULL);
4541 INSERT INTO `auth_subfield_structure` VALUES ('MEETI_NAME', '880', '9', '9', '9', 1, 0, 8, NULL, NULL, NULL);
4542
4543
4544 -- ******************************************************
4545
4546
4547
4548 -- *******************************************************************
4549 -- UNIFORM TITLE AUTHORITY FIELDS/SUBFIELDS. 
4550 -- *******************************************************************
4551
4552 -- These ought to be adjusted for different less conflicting and more 
4553 -- rationally chosen fields and subfields but I had left that for last. 
4554
4555 -- ADJUST ME
4556 -- Use values from your dump of auth_tag_structure and auth_subfield_structure 
4557 -- to provide support for your Koha database.
4558
4559
4560 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '000', 'LEADER', 'LEADER', 0, 1, NULL);
4561 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 1, NULL);
4562 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 1, NULL);
4563 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 1, NULL);
4564 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '008', 'FIXED-LENGTH DATA ELEMENTS', 'FIXED-LENGTH DATA ELEMENTS', 0, 1, NULL);
4565 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, NULL);
4566 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '014', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 1, 0, NULL);
4567 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, NULL);
4568 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '020', 'INTERNATIONAL STANDARD BOOK NUMBER', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL);
4569 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL);
4570 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL);
4571 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, NULL);
4572 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL);
4573 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL);
4574 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 1, NULL);
4575 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, NULL);
4576 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL);
4577 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '045', 'TIME PERIOD OF HEADING', 'TIME PERIOD OF HEADING', 0, 0, NULL);
4578 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL);
4579 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL);
4580 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '053', 'LC CLASSIFICATION NUMBER', 'LC CLASSIFICATION NUMBER', 1, 0, NULL);
4581 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '055', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 1, 0, NULL);
4582 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL);
4583 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '065', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL);
4584 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL);
4585 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL);
4586 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL);
4587 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '073', 'SUBDIVISION USAGE', 'SUBDIVISION USAGE', 0, 0, NULL);
4588 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '082', 'DEWEY DECIMAL CALL NUMBER', 'DEWEY DECIMAL CALL NUMBER', 1, 0, NULL);
4589 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '083', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL);
4590 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '086', 'GOVERNMENT DOCUMENT CALL NUMBER', 'GOVERNMENT DOCUMENT CALL NUMBER', 1, 0, NULL);
4591 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '087', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL);
4592 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '090', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, NULL);
4593 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '091', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 0, 0, NULL);
4594 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, NULL);
4595 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '093', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
4596 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, NULL);
4597 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '097', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
4598 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, NULL);
4599 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, NULL);
4600 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '130', 'HEADING--UNIFORM TITLE', 'HEADING--UNIFORM TITLE', 0, 0, NULL);
4601 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '260', 'COMPLEX SEE REFERENCE--SUBJECT', 'COMPLEX SEE REFERENCE--SUBJECT', 1, 0, NULL);
4602 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '360', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 1, 0, NULL);
4603 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '400', 'SEE FROM TRACING--PERSONAL NAME', 'SEE FROM TRACING--PERSONAL NAME', 1, 0, NULL);
4604 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '410', 'SEE FROM TRACING--CORPORATE NAME', 'SEE FROM TRACING--CORPORATE NAME', 1, 0, NULL);
4605 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '411', 'SEE FROM TRACING--MEETING NAME', 'SEE FROM TRACING--MEETING NAME', 1, 0, NULL);
4606 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '430', 'SEE FROM TRACING--UNIFORM TITLE', 'SEE FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
4607 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '448', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
4608 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '450', 'SEE FROM TRACING--TOPICAL TERM', 'SEE FROM TRACING--TOPICAL TERM', 1, 0, NULL);
4609 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '451', 'SEE FROM TRACING--GEOGRAPHIC NAME', 'SEE FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
4610 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '455', 'SEE FROM TRACING--GENRE/FORM TERM', 'SEE FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
4611 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '480', 'SEE FROM TRACING--GENERAL SUBDIVISION', 'SEE FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
4612 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '481', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
4613 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '482', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
4614 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '485', 'SEE FROM TRACING--FORM SUBDIVISION', 'SEE FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
4615 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '500', 'SEE ALSO FROM TRACING--PERSONAL NAME', 'SEE ALSO FROM TRACING--PERSONAL NAME', 1, 0, NULL);
4616 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '510', 'SEE ALSO FROM TRACING--CORPORATE NAME', 'SEE ALSO FROM TRACING--CORPORATE NAME', 1, 0, NULL);
4617 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '511', 'SEE ALSO FROM TRACING--MEETING NAME', 'SEE ALSO FROM TRACING--MEETING NAME', 1, 0, NULL);
4618 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '530', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
4619 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '548', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
4620 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '550', 'SEE ALSO FROM TRACING--TOPICAL TERM', 'SEE ALSO FROM TRACING--TOPICAL TERM', 1, 0, NULL);
4621 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '551', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
4622 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '555', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
4623 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '580', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
4624 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '581', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
4625 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '582', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
4626 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '585', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
4627 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '640', 'SERIES DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'SERIES DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL);
4628 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '641', 'SERIES NUMBERING PECULIARITIES', 'SERIES NUMBERING PECULIARITIES', 1, 0, NULL);
4629 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '642', 'SERIES NUMBERING EXAMPLE', 'SERIES NUMBERING EXAMPLE', 1, 0, NULL);
4630 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '643', 'SERIES PLACE AND PUBLISHER/ISSUING BODY', 'SERIES PLACE AND PUBLISHER/ISSUING BODY', 1, 0, NULL);
4631 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '644', 'SERIES ANALYSIS PRACTICE', 'SERIES ANALYSIS PRACTICE', 1, 0, NULL);
4632 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '645', 'SERIES TRACING PRACTICE', 'SERIES TRACING PRACTICE', 1, 0, NULL);
4633 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '646', 'SERIES CLASSIFICATION PRACTICE', 'SERIES CLASSIFICATION PRACTICE', 1, 0, NULL);
4634 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '663', 'COMPLEX SEE ALSO REFERENCE--NAME', 'COMPLEX SEE ALSO REFERENCE--NAME', 0, 0, NULL);
4635 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '664', 'COMPLEX SEE REFERENCE--NAME', 'COMPLEX SEE REFERENCE--NAME', 0, 0, NULL);
4636 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '665', 'HISTORY REFERENCE', 'HISTORY REFERENCE', 0, 0, NULL);
4637 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '666', 'GENERAL EXPLANATORY REFERENCE--NAME', 'GENERAL EXPLANATORY REFERENCE--NAME', 0, 0, NULL);
4638 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '667', 'NONPUBLIC GENERAL NOTE', 'NONPUBLIC GENERAL NOTE', 1, 0, NULL);
4639 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '670', 'SOURCE DATA FOUND', 'SOURCE DATA FOUND', 1, 0, NULL);
4640 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '675', 'SOURCE DATA NOT FOUND', 'SOURCE DATA NOT FOUND', 0, 0, NULL);
4641 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '678', 'BIOGRAPHICAL OR HISTORICAL DATA', 'BIOGRAPHICAL OR HISTORICAL DATA', 1, 0, NULL);
4642 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '680', 'PUBLIC GENERAL NOTE', 'PUBLIC GENERAL NOTE', 1, 0, NULL);
4643 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '681', 'SUBJECT EXAMPLE TRACING NOTE', 'SUBJECT EXAMPLE TRACING NOTE', 1, 0, NULL);
4644 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '682', 'DELETED HEADING INFORMATION', 'DELETED HEADING INFORMATION', 0, 0, NULL);
4645 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '683', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
4646 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '688', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
4647 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '730', 'ESTABLISHED HEADING LINKING ENTRY--UNIFORM TITLE', 'ESTABLISHED HEADING LINKING ENTRY--UNIFORM TITLE', 1, 0, NULL);
4648 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '788', 'COMPLEX LINKING ENTRY DATA', 'COMPLEX LINKING ENTRY DATA', 0, 0, NULL);
4649 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL);
4650 INSERT INTO `auth_tag_structure` VALUES ('UNIF_TITLE', '880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL);
4651
4652
4653 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '000', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
4654 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '001', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
4655 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '003', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
4656 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '005', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
4657 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '008', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
4658 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '010', 'a', 'LC control number', 'LC control number', 0, 0, 0, NULL, NULL, NULL);
4659 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, 0, NULL, NULL, NULL);
4660 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4661 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '014', 'a', 'Control number of related bibliographic record', 'Control number of related bibliographic record', 0, 0, 0, NULL, NULL, NULL);
4662 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '014', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4663 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '014', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4664 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '016', 'a', 'Record control number', 'Record control number', 0, 0, 0, NULL, NULL, NULL);
4665 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '016', 'z', 'Canceled/invalid record control number', 'Canceled/invalid record control number', 1, 0, 0, NULL, NULL, NULL);
4666 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '016', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
4667 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4668 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 0, NULL, NULL, NULL);
4669 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
4670 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '020', 'z', 'Canceled/invalid ISBN', 'Canceled/invalid ISBN', 1, 0, 0, NULL, NULL, NULL);
4671 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '020', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4672 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4673 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 0, NULL, NULL, NULL);
4674 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, 0, NULL, NULL, NULL);
4675 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, 0, NULL, NULL, NULL);
4676 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '022', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4677 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4678 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, 0, NULL, NULL, NULL);
4679 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
4680 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, 0, NULL, NULL, NULL);
4681 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, 0, NULL, NULL, NULL);
4682 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '024', '2', 'Source of number or code', 'Source of number or code', 0, 0, 0, NULL, NULL, NULL);
4683 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '024', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4684 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4685 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'a', 'Number of work', 'Number of work', 0, 0, 0, NULL, NULL, NULL);
4686 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'b', 'Number of movement', 'Number of movement', 0, 0, 0, NULL, NULL, NULL);
4687 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, 0, NULL, NULL, NULL);
4688 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, 0, NULL, NULL, NULL);
4689 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'e', 'Role', 'Role', 0, 0, 0, NULL, NULL, NULL);
4690 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'g', 'Clef', 'Clef', 0, 0, 0, NULL, NULL, NULL);
4691 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, 0, NULL, NULL, NULL);
4692 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'n', 'Key signature', 'Key signature', 0, 0, 0, NULL, NULL, NULL);
4693 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'o', 'Time signature', 'Time signature', 0, 0, 0, NULL, NULL, NULL);
4694 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'p', 'Musical notation', 'Musical notation', 0, 0, 0, NULL, NULL, NULL);
4695 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'q', 'General note', 'General note', 1, 0, 0, NULL, NULL, NULL);
4696 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'r', 'Key or mode', 'Key or mode', 0, 0, 0, NULL, NULL, NULL);
4697 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 's', 'Coded validity note', 'Coded validity note', 1, 0, 0, NULL, NULL, NULL);
4698 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 't', 'Text incipit', 'Text incipit', 1, 0, 0, NULL, NULL, NULL);
4699 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 0, NULL, NULL, NULL);
4700 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', '2', 'System code', 'System code', 0, 0, 0, NULL, NULL, NULL);
4701 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4702 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4703 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, 0, NULL, NULL, NULL);
4704 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, 0, NULL, NULL, NULL);
4705 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, 0, NULL, NULL, NULL);
4706 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, 0, NULL, NULL, NULL);
4707 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, 0, NULL, NULL, NULL);
4708 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, 0, NULL, NULL, NULL);
4709 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, 0, NULL, NULL, NULL);
4710 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, 0, NULL, NULL, NULL);
4711 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'p', 'Equinox', 'Equinox', 0, 0, 0, NULL, NULL, NULL);
4712 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'r', 'Distance from earth', 'Distance from earth', 1, 0, 0, NULL, NULL, NULL);
4713 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, 0, NULL, NULL, NULL);
4714 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, 0, NULL, NULL, NULL);
4715 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'x', 'Beginning date', 'Beginning date', 0, 0, 0, NULL, NULL, NULL);
4716 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'y', 'Ending date', 'Ending date', 0, 0, 0, NULL, NULL, NULL);
4717 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', 'z', 'Name of extraterrestrial body', 'Name of extraterrestrial body', 0, 0, 0, NULL, NULL, NULL);
4718 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
4719 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4720 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4721 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '035', 'a', 'System control number', 'System control number', 0, 0, 0, NULL, NULL, NULL);
4722 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, 0, NULL, NULL, NULL);
4723 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '035', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4724 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4725 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 1, 0, NULL, NULL, NULL);
4726 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, 0, NULL, NULL, NULL);
4727 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, 0, NULL, NULL, NULL);
4728 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, 0, NULL, NULL, NULL);
4729 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '040', 'e', 'Description conventions', 'Description conventions', 0, 0, 0, NULL, NULL, NULL);
4730 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '040', 'f', 'Subject heading or thesaurus conventions', 'Subject heading or thesaurus conventions', 0, 0, 0, NULL, NULL, NULL);
4731 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '040', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4732 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4733 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '042', 'a', 'Authentication code', 'Authentication code', 1, 0, 0, NULL, NULL, NULL);
4734 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, 0, NULL, NULL, NULL);
4735 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, 0, NULL, NULL, NULL);
4736 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '043', 'c', 'ISO code', 'ISO code', 1, 0, 0, NULL, NULL, NULL);
4737 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '043', '2', 'Source of local code', 'Source of local code', 1, 0, 0, NULL, NULL, NULL);
4738 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '043', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4739 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4740 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '045', 'a', 'Time period code', 'Time period code', 1, 0, 0, NULL, NULL, NULL);
4741 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 0, 0, 0, NULL, NULL, NULL);
4742 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, 0, NULL, NULL, NULL);
4743 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '045', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4744 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4745 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '050', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
4746 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '050', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
4747 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '050', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
4748 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '050', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4749 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '050', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4750 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4751 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, 0, NULL, NULL, NULL);
4752 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, 0, NULL, NULL, NULL);
4753 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '052', 'd', 'Populated place name', 'Populated place name', 1, 0, 0, NULL, NULL, NULL);
4754 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '052', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
4755 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '052', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4756 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4757 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '053', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
4758 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '053', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 1, 0, 0, NULL, NULL, NULL);
4759 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '053', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
4760 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '053', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4761 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '053', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4762 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '053', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4763 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '055', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
4764 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '055', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
4765 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '055', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
4766 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '055', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4767 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '055', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4768 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4769 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '060', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
4770 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '060', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
4771 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '060', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
4772 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '060', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4773 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '060', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4774 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4775 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '065', 'a', 'Classification number element--single number or beginning of span', 'Classification number element--single number or beginning of span', 0, 0, 0, NULL, NULL, NULL);
4776 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '065', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
4777 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '065', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
4778 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '065', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
4779 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '065', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4780 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '065', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4781 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '065', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4782 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, 0, NULL, NULL, NULL);
4783 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, 0, NULL, NULL, NULL);
4784 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, 0, NULL, NULL, NULL);
4785 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '070', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
4786 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '070', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
4787 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '070', 'd', 'Volume/dates to which call number applies', 'Volume/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
4788 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '070', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4789 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4790 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '072', 'a', 'Subject category code', 'Subject category code', 0, 0, 0, NULL, NULL, NULL);
4791 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, 0, NULL, NULL, NULL);
4792 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '072', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
4793 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '072', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4794 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4795 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '073', 'a', 'Subdivision usage', 'Subdivision usage', 1, 0, 0, NULL, NULL, NULL);
4796 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '073', 'z', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
4797 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '073', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4798 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '073', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4799 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '082', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
4800 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '082', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
4801 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '082', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
4802 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '082', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
4803 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '082', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4804 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '082', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4805 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4806 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '083', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
4807 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '083', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
4808 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '083', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
4809 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '083', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
4810 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '083', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
4811 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '083', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4812 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '083', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4813 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '083', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4814 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '086', 'a', 'Call number', 'Call number', 0, 0, 0, NULL, NULL, NULL);
4815 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '086', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
4816 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '086', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
4817 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '086', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
4818 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '086', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4819 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '086', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4820 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4821 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '087', 'a', 'Classification number element--Single number or beginning number of span', 'Classification number element--Single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
4822 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '087', 'b', 'Classification number element--Ending number of span', 'Classification number element--Ending number of span', 0, 0, 0, NULL, NULL, NULL);
4823 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '087', 'c', 'Explanatory information', 'Explanatory information', 0, 0, 0, NULL, NULL, NULL);
4824 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '087', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
4825 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '087', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4826 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '087', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4827 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'a', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, 0, NULL, NULL, NULL);
4828 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'b', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
4829 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
4830 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, 0, NULL, NULL, NULL);
4831 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'f', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
4832 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, 0, NULL, NULL, NULL);
4833 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, 0, NULL, NULL, NULL);
4834 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
4835 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
4836 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, 0, NULL, NULL, NULL);
4837 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, 0, NULL, NULL, NULL);
4838 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
4839 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
4840 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
4841 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
4842 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4843 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4844 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '090', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4845 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '091', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
4846 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '091', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
4847 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '091', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
4848 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '091', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
4849 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '091', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
4850 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '091', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4851 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '091', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4852 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '091', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4853 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '092', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
4854 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '092', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
4855 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '092', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
4856 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '092', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
4857 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
4858 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '092', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
4859 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '092', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4860 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '092', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4861 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '092', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4862 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '093', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
4863 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '093', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
4864 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '093', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
4865 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '093', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
4866 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '093', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
4867 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '093', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4868 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '093', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4869 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '093', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4870 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '096', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
4871 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '096', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
4872 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '096', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
4873 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '096', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
4874 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
4875 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '096', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
4876 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '096', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4877 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '096', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4878 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '096', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4879 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '097', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
4880 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '097', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
4881 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '097', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
4882 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '097', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
4883 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '097', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
4884 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '097', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4885 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '097', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4886 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '097', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4887 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, 0, NULL, NULL, NULL);
4888 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '098', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
4889 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '098', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
4890 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '098', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
4891 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
4892 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '098', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
4893 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '098', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4894 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '098', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4895 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '098', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4896 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '099', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
4897 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '099', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
4898 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '099', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
4899 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '099', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
4900 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
4901 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '099', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
4902 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '099', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
4903 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '099', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
4904 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '099', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
4905 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'a', 'Uniform title', 'Uniform title', 0, 0, 1, NULL, NULL, '''130o'',''130m'',''130r'',''130s'',''130d'',''130k'',''130n'',''130p'',''130g'',''130l'',''130f'',''130h'',''130t'',''130x'',''130z'',''130y'',''130v''');
4906 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 1, NULL, NULL, NULL);
4907 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'f', 'Date of a work', 'Date of a work', 0, 0, 1, NULL, NULL, NULL);
4908 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 1, NULL, NULL, NULL);
4909 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'h', 'Medium', 'Medium', 0, 0, 1, NULL, NULL, NULL);
4910 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'k', 'Form subheading', 'Form subheading', 1, 0, 1, NULL, NULL, NULL);
4911 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'l', 'Language of a work', 'Language of a work', 0, 0, 1, NULL, NULL, NULL);
4912 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 1, NULL, NULL, NULL);
4913 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
4914 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 1, NULL, NULL, NULL);
4915 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 1, NULL, NULL, NULL);
4916 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'r', 'Key for music', 'Key for music', 0, 0, 1, NULL, NULL, NULL);
4917 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 's', 'Version', 'Version', 0, 0, 1, NULL, NULL, NULL);
4918 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 't', 'Title of a work', 'Title of a work', 0, 0, 1, NULL, NULL, NULL);
4919 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
4920 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
4921 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
4922 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
4923 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
4924 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
4925 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '260', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 2, NULL, NULL, NULL);
4926 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '260', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 2, NULL, NULL, NULL);
4927 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '260', '6', 'Linkage', 'Linkage', 0, 0, 2, NULL, NULL, NULL);
4928 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 2, NULL, NULL, NULL);
4929 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '360', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 3, NULL, NULL, NULL);
4930 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '360', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 3, NULL, NULL, NULL);
4931 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '360', '6', 'Linkage', 'Linkage', 0, 0, 3, NULL, NULL, NULL);
4932 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '360', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 3, NULL, NULL, NULL);
4933 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'a', 'Personal name', 'Personal name', 0, 0, 4, NULL, NULL, '''400b'',''400c'',''400q'',''400d'',''400t'',''400o'',''400m'',''400r'',''400s'',''400k'',''400n'',''400p'',''400g'',''400l'',''400f'',''400h'',''400x'',''400z'',''400y'',''400v''');
4934 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'b', 'Numeration', 'Numeration', 0, 0, 4, NULL, NULL, NULL);
4935 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 4, NULL, NULL, NULL);
4936 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 4, NULL, NULL, NULL);
4937 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
4938 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
4939 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
4940 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
4941 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4942 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 4, NULL, NULL, NULL);
4943 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
4944 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
4945 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
4946 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
4947 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
4948 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
4949 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 4, NULL, NULL, NULL);
4950 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
4951 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
4952 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
4953 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4954 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4955 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4956 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4957 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4958 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4959 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4960 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4961 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''410b'',''410c'',''410d'',''410t'',''410o'',''410m'',''410r'',''410s'',''410k'',''410n'',''410p'',''410g'',''410l'',''410f'',''410h'',''410x'',''410z'',''410y'',''410v''');
4962 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
4963 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
4964 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 4, NULL, NULL, NULL);
4965 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
4966 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
4967 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
4968 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
4969 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4970 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
4971 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
4972 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
4973 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
4974 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
4975 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
4976 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
4977 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
4978 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
4979 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
4980 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
4981 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
4982 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
4983 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
4984 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
4985 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
4986 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
4987 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''411e'',''411c'',''411d'',''411t'',''411s'',''411k'',''411n'',''411p'',''411g'',''411l'',''411f'',''411h'',''411x'',''411z'',''411y'',''411v''');
4988 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'b', 'Number {OBSOLETE]', 'Number {OBSOLETE]', 0, 0, 4, NULL, NULL, NULL);
4989 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
4990 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 4, NULL, NULL, NULL);
4991 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
4992 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
4993 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
4994 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
4995 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
4996 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
4997 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
4998 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
4999 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
5000 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 4, NULL, NULL, NULL);
5001 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
5002 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
5003 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5004 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5005 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5006 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5007 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5008 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5009 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5010 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5011 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'a', 'Uniform title', 'Uniform title', 0, 0, 4, NULL, NULL, '''430o'',''430m'',''430r'',''430s'',''430d'',''430k'',''430n'',''430p'',''430g'',''430l'',''430f'',''430h'',''430t'',''430x'',''430z'',''430y'',''430v''');
5012 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 4, NULL, NULL, NULL);
5013 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
5014 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
5015 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
5016 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5017 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
5018 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
5019 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
5020 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
5021 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
5022 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
5023 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
5024 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
5025 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
5026 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5027 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5028 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5029 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5030 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5031 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5032 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5033 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '430', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5034 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '448', 'a', 'Chronological term', 'Chronological term', 0, 0, 4, NULL, NULL, '''448y'',''448x'',''448z'',''448v''');
5035 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '448', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 4, NULL, NULL, NULL);
5036 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '448', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5037 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '448', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5038 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '448', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5039 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '448', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5040 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '448', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5041 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '448', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5042 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '448', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5043 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '448', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5044 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '450', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 4, NULL, NULL, '''450x'',''450z'',''450y'',''450v''');
5045 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '450', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 4, NULL, NULL, NULL);
5046 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '450', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5047 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '450', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5048 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '450', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5049 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '450', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5050 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '450', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5051 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '450', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5052 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '450', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5053 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '450', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5054 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '450', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5055 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '451', 'a', 'Geographic name', 'Geographic name', 0, 0, 4, NULL, NULL, '''451z'',''451x'',''451y'',''451v''');
5056 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '451', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5057 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '451', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5058 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '451', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5059 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '451', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5060 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '451', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5061 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '451', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5062 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '451', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5063 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '451', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5064 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '451', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5065 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '455', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 4, NULL, NULL, '''455v'',''455x'',''455z'',''455y''');
5066 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '455', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5067 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '455', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5068 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '455', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5069 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '455', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5070 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '455', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5071 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '455', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5072 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '455', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5073 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '455', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5074 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '455', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5075 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '480', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5076 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '480', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5077 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '480', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5078 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '480', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5079 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '480', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5080 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '480', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5081 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '480', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5082 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '480', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5083 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '480', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5084 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '481', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5085 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '481', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5086 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '481', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5087 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '481', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5088 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '481', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5089 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '481', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5090 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '481', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5091 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '481', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5092 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '481', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5093 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '482', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5094 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '482', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5095 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '482', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5096 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '482', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5097 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '482', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5098 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '482', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5099 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '482', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5100 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '482', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5101 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '482', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5102 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '485', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5103 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '485', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5104 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '485', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5105 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '485', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5106 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '485', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5107 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '485', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5108 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '485', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5109 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '485', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5110 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '485', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5111 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'a', 'Personal name', 'Personal name', 0, 0, 5, NULL, NULL, '''500b'',''500c'',''500q'',''500d'',''500t'',''500o'',''500m'',''500r'',''500s'',''500k'',''500n'',''500p'',''500g'',''500l'',''500f'',''500h'',''500x'',''500z'',''500y'',''500v''');
5112 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'b', 'Numeration', 'Numeration', 0, 0, 5, NULL, NULL, NULL);
5113 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 5, NULL, NULL, NULL);
5114 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 5, NULL, NULL, NULL);
5115 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
5116 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
5117 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
5118 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
5119 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
5120 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 5, NULL, NULL, NULL);
5121 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
5122 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
5123 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
5124 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
5125 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
5126 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
5127 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 5, NULL, NULL, NULL);
5128 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
5129 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
5130 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
5131 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5132 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5133 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5134 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5135 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5136 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5137 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5138 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5139 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5140 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''510b'',''510c'',''510d'',''510t'',''510o'',''510m'',''510r'',''510s'',''510k'',''510n'',''510p'',''510g'',''510l'',''510f'',''510h'',''510x'',''510z'',''510y'',''510v''');
5141 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
5142 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
5143 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 5, NULL, NULL, NULL);
5144 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
5145 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
5146 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
5147 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
5148 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
5149 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
5150 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
5151 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
5152 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
5153 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
5154 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
5155 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
5156 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
5157 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
5158 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5159 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5160 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5161 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5162 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5163 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5164 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5165 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5166 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5167 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''511e'',''511c'',''511d'',''511t'',''511s'',''511k'',''511n'',''511p'',''511g'',''511l'',''511f'',''511h'',''511x'',''511z'',''511y'',''511v''');
5168 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
5169 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 5, NULL, NULL, NULL);
5170 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
5171 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
5172 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
5173 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
5174 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
5175 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
5176 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
5177 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
5178 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
5179 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 5, NULL, NULL, NULL);
5180 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
5181 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
5182 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5183 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5184 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5185 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5186 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5187 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5188 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5189 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5190 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5191 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'a', 'Uniform title', 'Uniform title', 0, 0, 5, NULL, NULL, '''530o'',''530m'',''530r'',''530s'',''530d'',''530k'',''530n'',''530p'',''530g'',''530l'',''530f'',''530h'',''530t'',''530x'',''530z'',''530y'',''530v''');
5192 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 5, NULL, NULL, NULL);
5193 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
5194 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
5195 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
5196 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
5197 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
5198 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
5199 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
5200 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
5201 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
5202 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
5203 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
5204 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
5205 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
5206 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5207 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5208 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5209 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5210 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5211 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5212 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5213 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5214 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5215 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '548', 'a', 'Chronological term', 'Chronological term', 0, 0, 5, NULL, NULL, '''548y'',''548x'',''548z'',''548v''');
5216 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '548', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 5, NULL, NULL, NULL);
5217 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '548', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5218 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '548', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5219 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '548', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5220 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '548', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5221 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '548', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5222 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '548', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5223 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '548', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5224 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '548', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5225 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '548', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5226 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 5, NULL, NULL, '''550x'',''550z'',''550y'',''550v''');
5227 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 5, NULL, NULL, NULL);
5228 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
5229 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5230 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5231 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5232 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5233 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5234 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5235 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5236 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5237 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5238 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '551', 'a', 'Geographic name', 'Geographic name', 0, 0, 5, NULL, NULL, '''551z'',''551x'',''551y'',''551v''');
5239 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '551', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
5240 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '551', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5241 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '551', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5242 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '551', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5243 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '551', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5244 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '551', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5245 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '551', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5246 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '551', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5247 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '551', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5248 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '551', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5249 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '555', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 5, NULL, NULL, '''555v'',''555x'',''555z'',''555y''');
5250 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '555', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
5251 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '555', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5252 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '555', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5253 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '555', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5254 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '555', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5255 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '555', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5256 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '555', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5257 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '555', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5258 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '555', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5259 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5260 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '580', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
5261 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '580', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5262 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '580', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5263 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '580', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5264 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '580', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5265 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '580', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5266 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '580', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5267 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '580', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5268 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '580', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5269 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5270 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '581', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
5271 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '581', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5272 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '581', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5273 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '581', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5274 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '581', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5275 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '581', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5276 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '581', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5277 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '581', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5278 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '581', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5279 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5280 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '582', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
5281 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '582', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5282 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '582', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5283 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '582', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5284 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '582', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5285 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '582', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5286 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '582', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5287 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '582', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5288 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '582', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5289 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '582', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5290 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '585', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
5291 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '585', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
5292 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '585', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
5293 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '585', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
5294 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '585', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
5295 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '585', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
5296 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '585', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
5297 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '585', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
5298 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '585', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
5299 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
5300 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '640', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 6, NULL, NULL, NULL);
5301 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '640', 'z', 'Source of information', 'Source of information', 0, 0, 6, NULL, NULL, NULL);
5302 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '640', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5303 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '640', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5304 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '641', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, 6, NULL, NULL, NULL);
5305 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '641', 'z', 'Source of information', 'Source of information', 0, 0, 6, NULL, NULL, NULL);
5306 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '641', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5307 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '641', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5308 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '642', 'a', 'Series numbering example', 'Series numbering example', 0, 0, 6, NULL, NULL, NULL);
5309 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '642', 'd', 'Volumes/dates to which series numbering example applies', 'Volumes/dates to which series numbering example applies', 0, 0, 6, NULL, NULL, NULL);
5310 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '642', '5', 'Institution/copy to which field applies', 'Institution/copy to which field applies', 1, 0, 6, NULL, NULL, NULL);
5311 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '642', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5312 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '642', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5313 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '643', 'a', 'Place', 'Place', 1, 0, 6, NULL, NULL, NULL);
5314 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '643', 'b', 'Publisher/issuing body', 'Publisher/issuing body', 1, 0, 6, NULL, NULL, NULL);
5315 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '643', 'd', 'Volumes/dates to which place and publisher/issuing body apply', 'Volumes/dates to which place and publisher/issuing body apply', 0, 0, 6, NULL, NULL, NULL);
5316 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '643', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5317 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '643', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5318 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '644', 'a', 'Series analysis practice', 'Series analysis practice', 0, 0, 6, NULL, NULL, NULL);
5319 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '644', 'b', 'Exceptions to analysis practice', 'Exceptions to analysis practice', 0, 0, 6, NULL, NULL, NULL);
5320 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '644', 'd', 'Volumes/dates to which analysis practice applies', 'Volumes/dates to which analysis practice applies', 0, 0, 6, NULL, NULL, NULL);
5321 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '644', '5', 'Institution/copy to which field applies', 'Institution/copy to which field applies', 1, 0, 6, NULL, NULL, NULL);
5322 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '644', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5323 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '644', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5324 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '645', 'a', 'Series tracing practice', 'Series tracing practice', 0, 0, 6, NULL, NULL, NULL);
5325 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '645', 'd', 'Volumes/dates to which tracing practice applies', 'Volumes/dates to which tracing practice applies', 0, 0, 6, NULL, NULL, NULL);
5326 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '645', '5', 'Institution/copy to which field applies', 'Institution/copy to which field applies', 1, 0, 6, NULL, NULL, NULL);
5327 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '645', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5328 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '645', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5329 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '646', 'a', 'Series classification practice', 'Series classification practice', 0, 0, 6, NULL, NULL, NULL);
5330 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '646', 'd', 'Volumes/dates to which classification practice applies', 'Volumes/dates to which classification practice applies', 0, 0, 6, NULL, NULL, NULL);
5331 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '646', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
5332 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '646', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5333 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '646', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5334 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '663', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
5335 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '663', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
5336 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '663', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
5337 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '663', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5338 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '663', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5339 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '664', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
5340 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '664', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
5341 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '664', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
5342 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '664', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5343 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '664', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5344 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '665', 'a', 'History reference', 'History reference', 1, 0, 6, NULL, NULL, NULL);
5345 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '665', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5346 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '665', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5347 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '666', 'a', 'General explanatory reference', 'General explanatory reference', 1, 0, 6, NULL, NULL, NULL);
5348 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '666', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5349 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '666', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5350 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '667', 'a', 'Nonpublic general note', 'Nonpublic general note', 0, 0, 6, NULL, NULL, NULL);
5351 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '667', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
5352 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '667', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5353 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '667', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5354 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '670', 'a', 'Source citation', 'Source citation', 0, 0, 6, NULL, NULL, NULL);
5355 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '670', 'b', 'Information found', 'Information found', 0, 0, 6, NULL, NULL, NULL);
5356 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '670', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
5357 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '670', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5358 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '670', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5359 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '675', 'a', 'Source citation', 'Source citation', 1, 0, 6, NULL, NULL, NULL);
5360 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '675', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5361 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '675', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5362 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '678', 'a', 'Biographical or historical data', 'Biographical or historical data', 1, 0, 6, NULL, NULL, NULL);
5363 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '678', 'b', 'Expansion', 'Expansion', 0, 0, 6, NULL, NULL, NULL);
5364 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '678', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
5365 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '678', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5366 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '678', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5367 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '680', 'a', 'Heading or subdivision term', 'Heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
5368 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '680', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
5369 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '680', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
5370 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '680', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
5371 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '680', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5372 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '680', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5373 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '681', 'a', 'Subject heading or subdivision term', 'Subject heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
5374 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '681', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
5375 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '681', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
5376 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '681', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5377 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '681', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5378 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '682', 'a', 'Replacement heading', 'Replacement heading', 1, 0, 6, NULL, NULL, NULL);
5379 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '682', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
5380 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '682', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5381 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '682', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5382 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '683', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 6, NULL, NULL, NULL);
5383 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '683', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 6, NULL, NULL, NULL);
5384 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '683', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
5385 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '683', 'p', 'Corresponding classification field', 'Corresponding classification field', 1, 0, 6, NULL, NULL, NULL);
5386 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '683', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 6, NULL, NULL, NULL);
5387 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '683', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
5388 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '683', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
5389 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '683', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5390 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '683', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 6, NULL, NULL, NULL);
5391 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '688', 'a', 'Application history note', 'Application history note', 0, 0, 6, NULL, NULL, NULL);
5392 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '688', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
5393 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '688', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
5394 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '688', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
5395 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'a', 'Uniform title', 'Uniform title', 0, 0, 7, NULL, NULL, NULL);
5396 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 7, NULL, NULL, NULL);
5397 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'f', 'Date of a work', 'Date of a work', 0, 0, 7, NULL, NULL, NULL);
5398 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 7, NULL, NULL, NULL);
5399 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'h', 'Medium', 'Medium', 0, 0, 7, NULL, NULL, NULL);
5400 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
5401 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'k', 'Form subheading', 'Form subheading', 1, 0, 7, NULL, NULL, NULL);
5402 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'l', 'Language of a work', 'Language of a work', 0, 0, 7, NULL, NULL, NULL);
5403 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 7, NULL, NULL, NULL);
5404 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 7, NULL, NULL, NULL);
5405 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'o', 'Arranged statement for music', 'Arranged statement for music', 1, 0, 7, NULL, NULL, NULL);
5406 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 7, NULL, NULL, NULL);
5407 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'r', 'Key for music', 'Key for music', 0, 0, 7, NULL, NULL, NULL);
5408 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 's', 'Version', 'Version', 0, 0, 7, NULL, NULL, NULL);
5409 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 't', 'Title of a work', 'Title of a work', 0, 0, 7, NULL, NULL, NULL);
5410 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
5411 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
5412 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
5413 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
5414 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
5415 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
5416 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
5417 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
5418 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
5419 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
5420 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '788', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 7, NULL, NULL, NULL);
5421 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '788', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
5422 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '788', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
5423 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '788', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
5424 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '788', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
5425 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '788', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
5426 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '788', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
5427 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'a', 'Host name', 'Host name', 1, 0, 8, NULL, NULL, NULL);
5428 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'b', 'Access number', 'Access number', 1, 0, 8, NULL, NULL, NULL);
5429 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'c', 'Compression information', 'Compression information', 1, 0, 8, NULL, NULL, NULL);
5430 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'd', 'Path', 'Path', 1, 0, 8, NULL, NULL, NULL);
5431 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'f', 'Electronic name', 'Electronic name', 1, 0, 8, NULL, NULL, NULL);
5432 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'h', 'Processor of request', 'Processor of request', 0, 0, 8, NULL, NULL, NULL);
5433 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'i', 'Instruction', 'Instruction', 1, 0, 8, NULL, NULL, NULL);
5434 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'j', 'Bits per second', 'Bits per second', 0, 0, 8, NULL, NULL, NULL);
5435 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'k', 'Password', 'Password', 0, 0, 8, NULL, NULL, NULL);
5436 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'l', 'Logon', 'Logon', 0, 0, 8, NULL, NULL, NULL);
5437 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, 8, NULL, NULL, NULL);
5438 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'n', 'Name of location of host', 'Name of location of host', 0, 0, 8, NULL, NULL, NULL);
5439 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'o', 'Operating system', 'Operating system', 0, 0, 8, NULL, NULL, NULL);
5440 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'p', 'Port', 'Port', 0, 0, 8, NULL, NULL, NULL);
5441 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, 8, NULL, NULL, NULL);
5442 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'r', 'Settings', 'Settings', 0, 0, 8, NULL, NULL, NULL);
5443 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 's', 'File size', 'File size', 1, 0, 8, NULL, NULL, NULL);
5444 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, 8, NULL, NULL, NULL);
5445 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 8, NULL, NULL, NULL);
5446 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, 8, NULL, NULL, NULL);
5447 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'w', 'Record control number', 'Record control number', 1, 0, 8, NULL, NULL, NULL);
5448 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, 8, NULL, NULL, NULL);
5449 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'y', 'Link text', 'Link text', 1, 0, 8, NULL, NULL, NULL);
5450 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', 'z', 'Public note', 'Public note', 1, 0, 8, NULL, NULL, NULL);
5451 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', '2', 'Access method', 'Access method', 0, 0, 8, NULL, NULL, NULL);
5452 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', '3', 'Materials specified', 'Materials specified', 0, 0, 8, NULL, NULL, NULL);
5453 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', '6', 'Linkage', 'Linkage', 0, 0, 8, NULL, NULL, NULL);
5454 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 8, NULL, NULL, NULL);
5455 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'a', 'a', 'a', 1, 0, 8, NULL, NULL, NULL);
5456 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'b', 'b', 'b', 1, 0, 8, NULL, NULL, NULL);
5457 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'c', 'c', 'c', 1, 0, 8, NULL, NULL, NULL);
5458 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'd', 'd', 'd', 1, 0, 8, NULL, NULL, NULL);
5459 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'e', 'e', 'e', 1, 0, 8, NULL, NULL, NULL);
5460 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'f', 'f', 'f', 1, 0, 8, NULL, NULL, NULL);
5461 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'g', 'g', 'g', 1, 0, 8, NULL, NULL, NULL);
5462 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'h', 'h', 'h', 1, 0, 8, NULL, NULL, NULL);
5463 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'i', 'i', 'i', 1, 0, 8, NULL, NULL, NULL);
5464 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'j', 'j', 'j', 1, 0, 8, NULL, NULL, NULL);
5465 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'k', 'k', 'k', 1, 0, 8, NULL, NULL, NULL);
5466 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'l', 'l', 'l', 1, 0, 8, NULL, NULL, NULL);
5467 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'm', 'm', 'm', 1, 0, 8, NULL, NULL, NULL);
5468 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'n', 'n', 'n', 1, 0, 8, NULL, NULL, NULL);
5469 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'o', 'o', 'o', 1, 0, 8, NULL, NULL, NULL);
5470 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'p', 'p', 'p', 1, 0, 8, NULL, NULL, NULL);
5471 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'q', 'q', 'q', 1, 0, 8, NULL, NULL, NULL);
5472 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'r', 'r', 'r', 1, 0, 8, NULL, NULL, NULL);
5473 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 's', 's', 's', 1, 0, 8, NULL, NULL, NULL);
5474 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 't', 't', 't', 1, 0, 8, NULL, NULL, NULL);
5475 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'u', 'u', 'u', 1, 0, 8, NULL, NULL, NULL);
5476 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'v', 'v', 'v', 1, 0, 8, NULL, NULL, NULL);
5477 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'w', 'w', 'w', 1, 0, 8, NULL, NULL, NULL);
5478 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'x', 'x', 'x', 1, 0, 8, NULL, NULL, NULL);
5479 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'y', 'y', 'y', 1, 0, 8, NULL, NULL, NULL);
5480 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', 'z', 'z', 'z', 1, 0, 8, NULL, NULL, NULL);
5481 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', '0', '0', '0', 1, 0, 8, NULL, NULL, NULL);
5482 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', '1', '1', '1', 1, 0, 8, NULL, NULL, NULL);
5483 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', '2', '2', '2', 1, 0, 8, NULL, NULL, NULL);
5484 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', '3', '3', '3', 1, 0, 8, NULL, NULL, NULL);
5485 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', '4', '4', '4', 1, 0, 8, NULL, NULL, NULL);
5486 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', '5', '5', '5', 1, 0, 8, NULL, NULL, NULL);
5487 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', '6', '6', '6', 1, 0, 8, NULL, NULL, NULL);
5488 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', '7', '7', '7', 1, 0, 8, NULL, NULL, NULL);
5489 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', '8', '8', '8', 1, 0, 8, NULL, NULL, NULL);
5490 INSERT INTO `auth_subfield_structure` VALUES ('UNIF_TITLE', '880', '9', '9', '9', 1, 0, 8, NULL, NULL, NULL);
5491
5492
5493 -- ******************************************************
5494
5495
5496
5497 -- *******************************************************************
5498 -- TOPICAL TERM AUTHORITY FIELDS/SUBFIELDS. 
5499 -- *******************************************************************
5500
5501 -- These ought to be adjusted for different less conflicting and more 
5502 -- rationally chosen fields and subfields but I had left that for last. 
5503
5504 -- ADJUST ME
5505 -- Use values from your dump of auth_tag_structure and auth_subfield_structure 
5506 -- to provide support for your Koha database.
5507
5508
5509 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '000', 'LEADER', 'LEADER', 0, 1, NULL);
5510 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 1, NULL);
5511 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 1, NULL);
5512 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 1, NULL);
5513 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '008', 'FIXED-LENGTH DATA ELEMENTS', 'FIXED-LENGTH DATA ELEMENTS', 0, 1, NULL);
5514 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, NULL);
5515 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '014', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 1, 0, NULL);
5516 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, NULL);
5517 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL);
5518 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL);
5519 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL);
5520 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 1, NULL);
5521 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, NULL);
5522 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL);
5523 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '045', 'TIME PERIOD OF HEADING', 'TIME PERIOD OF HEADING', 0, 0, NULL);
5524 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL);
5525 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL);
5526 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '053', 'LC CLASSIFICATION NUMBER', 'LC CLASSIFICATION NUMBER', 1, 0, NULL);
5527 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '055', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 1, 0, NULL);
5528 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL);
5529 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '065', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL);
5530 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL);
5531 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL);
5532 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL);
5533 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '073', 'SUBDIVISION USAGE', 'SUBDIVISION USAGE', 0, 0, NULL);
5534 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '082', 'DEWEY DECIMAL CALL NUMBER', 'DEWEY DECIMAL CALL NUMBER', 1, 0, NULL);
5535 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '083', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL);
5536 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '086', 'GOVERNMENT DOCUMENT CALL NUMBER', 'GOVERNMENT DOCUMENT CALL NUMBER', 1, 0, NULL);
5537 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '087', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL);
5538 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '090', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, NULL);
5539 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '091', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 0, 0, NULL);
5540 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, NULL);
5541 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '093', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
5542 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, NULL);
5543 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '097', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
5544 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, NULL);
5545 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, NULL);
5546 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '148', 'HEADING--CHRONOLOGICAL TERM', 'HEADING--CHRONOLOGICAL TERM', 0, 0, NULL);
5547 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '182', 'HEADING--CHRONOLOGICAL SUBDIVISION', 'HEADING--CHRONOLOGICAL SUBDIVISION', 0, 0, NULL);
5548 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '260', 'COMPLEX SEE REFERENCE--SUBJECT', 'COMPLEX SEE REFERENCE--SUBJECT', 1, 0, NULL);
5549 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '360', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 1, 0, NULL);
5550 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '400', 'SEE FROM TRACING--PERSONAL NAME', 'SEE FROM TRACING--PERSONAL NAME', 1, 0, NULL);
5551 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '410', 'SEE FROM TRACING--CORPORATE NAME', 'SEE FROM TRACING--CORPORATE NAME', 1, 0, NULL);
5552 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '411', 'SEE FROM TRACING--MEETING NAME', 'SEE FROM TRACING--MEETING NAME', 1, 0, NULL);
5553 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '430', 'SEE FROM TRACING--UNIFORM TITLE', 'SEE FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
5554 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '448', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
5555 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '450', 'SEE FROM TRACING--TOPICAL TERM', 'SEE FROM TRACING--TOPICAL TERM', 1, 0, NULL);
5556 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '451', 'SEE FROM TRACING--GEOGRAPHIC NAME', 'SEE FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
5557 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '455', 'SEE FROM TRACING--GENRE/FORM TERM', 'SEE FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
5558 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '480', 'SEE FROM TRACING--GENERAL SUBDIVISION', 'SEE FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
5559 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '481', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
5560 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '482', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
5561 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '485', 'SEE FROM TRACING--FORM SUBDIVISION', 'SEE FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
5562 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '500', 'SEE ALSO FROM TRACING--PERSONAL NAME', 'SEE ALSO FROM TRACING--PERSONAL NAME', 1, 0, NULL);
5563 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '510', 'SEE ALSO FROM TRACING--CORPORATE NAME', 'SEE ALSO FROM TRACING--CORPORATE NAME', 1, 0, NULL);
5564 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '511', 'SEE ALSO FROM TRACING--MEETING NAME', 'SEE ALSO FROM TRACING--MEETING NAME', 1, 0, NULL);
5565 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '530', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
5566 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '548', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
5567 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '550', 'SEE ALSO FROM TRACING--TOPICAL TERM', 'SEE ALSO FROM TRACING--TOPICAL TERM', 1, 0, NULL);
5568 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '551', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
5569 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '555', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
5570 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '580', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
5571 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '581', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
5572 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '582', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
5573 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '585', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
5574 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '663', 'COMPLEX SEE ALSO REFERENCE--NAME', 'COMPLEX SEE ALSO REFERENCE--NAME', 0, 0, NULL);
5575 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '664', 'COMPLEX SEE REFERENCE--NAME', 'COMPLEX SEE REFERENCE--NAME', 0, 0, NULL);
5576 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '665', 'HISTORY REFERENCE', 'HISTORY REFERENCE', 0, 0, NULL);
5577 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '666', 'GENERAL EXPLANATORY REFERENCE--NAME', 'GENERAL EXPLANATORY REFERENCE--NAME', 0, 0, NULL);
5578 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '667', 'NONPUBLIC GENERAL NOTE', 'NONPUBLIC GENERAL NOTE', 1, 0, NULL);
5579 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '670', 'SOURCE DATA FOUND', 'SOURCE DATA FOUND', 1, 0, NULL);
5580 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '675', 'SOURCE DATA NOT FOUND', 'SOURCE DATA NOT FOUND', 0, 0, NULL);
5581 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '678', 'BIOGRAPHICAL OR HISTORICAL DATA', 'BIOGRAPHICAL OR HISTORICAL DATA', 1, 0, NULL);
5582 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '680', 'PUBLIC GENERAL NOTE', 'PUBLIC GENERAL NOTE', 1, 0, NULL);
5583 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '681', 'SUBJECT EXAMPLE TRACING NOTE', 'SUBJECT EXAMPLE TRACING NOTE', 1, 0, NULL);
5584 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '682', 'DELETED HEADING INFORMATION', 'DELETED HEADING INFORMATION', 0, 0, NULL);
5585 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '683', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
5586 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '688', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
5587 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '748', 'ESTABLISHED HEADING LINKING ENTRY--CHRONOLOGICAL TERM', 'ESTABLISHED HEADING LINKING ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL);
5588 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '782', 'SUBDIVISION LINKING ENTRY--CHRONOLOGICAL SUBDIVISION', 'SUBDIVISION LINKING ENTRY--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
5589 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '788', 'COMPLEX LINKING ENTRY DATA', 'COMPLEX LINKING ENTRY DATA', 0, 0, NULL);
5590 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL);
5591 INSERT INTO `auth_tag_structure` VALUES ('CHRON_TERM', '880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL);
5592
5593
5594 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '000', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
5595 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '001', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
5596 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '003', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
5597 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '005', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
5598 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '008', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
5599 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '010', 'a', 'LC control number', 'LC control number', 0, 0, 0, NULL, NULL, NULL);
5600 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, 0, NULL, NULL, NULL);
5601 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5602 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '014', 'a', 'Control number of related bibliographic record', 'Control number of related bibliographic record', 0, 0, 0, NULL, NULL, NULL);
5603 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '014', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5604 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '014', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5605 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '016', 'a', 'Record control number', 'Record control number', 0, 0, 0, NULL, NULL, NULL);
5606 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '016', 'z', 'Canceled/invalid record control number', 'Canceled/invalid record control number', 1, 0, 0, NULL, NULL, NULL);
5607 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '016', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
5608 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5609 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, 0, NULL, NULL, NULL);
5610 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
5611 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, 0, NULL, NULL, NULL);
5612 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, 0, NULL, NULL, NULL);
5613 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '024', '2', 'Source of number or code', 'Source of number or code', 0, 0, 0, NULL, NULL, NULL);
5614 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '024', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5615 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5616 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, 0, NULL, NULL, NULL);
5617 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, 0, NULL, NULL, NULL);
5618 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, 0, NULL, NULL, NULL);
5619 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, 0, NULL, NULL, NULL);
5620 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, 0, NULL, NULL, NULL);
5621 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, 0, NULL, NULL, NULL);
5622 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, 0, NULL, NULL, NULL);
5623 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, 0, NULL, NULL, NULL);
5624 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'p', 'Equinox', 'Equinox', 0, 0, 0, NULL, NULL, NULL);
5625 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'r', 'Distance from earth', 'Distance from earth', 1, 0, 0, NULL, NULL, NULL);
5626 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, 0, NULL, NULL, NULL);
5627 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, 0, NULL, NULL, NULL);
5628 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'x', 'Beginning date', 'Beginning date', 0, 0, 0, NULL, NULL, NULL);
5629 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'y', 'Ending date', 'Ending date', 0, 0, 0, NULL, NULL, NULL);
5630 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', 'z', 'Name of extraterrestrial body', 'Name of extraterrestrial body', 0, 0, 0, NULL, NULL, NULL);
5631 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
5632 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5633 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5634 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '035', 'a', 'System control number', 'System control number', 0, 0, 0, NULL, NULL, NULL);
5635 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, 0, NULL, NULL, NULL);
5636 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '035', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5637 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5638 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 1, 0, NULL, NULL, NULL);
5639 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, 0, NULL, NULL, NULL);
5640 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, 0, NULL, NULL, NULL);
5641 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, 0, NULL, NULL, NULL);
5642 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '040', 'e', 'Description conventions', 'Description conventions', 0, 0, 0, NULL, NULL, NULL);
5643 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '040', 'f', 'Subject heading or thesaurus conventions', 'Subject heading or thesaurus conventions', 0, 0, 0, NULL, NULL, NULL);
5644 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '040', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5645 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5646 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '042', 'a', 'Authentication code', 'Authentication code', 1, 0, 0, NULL, NULL, NULL);
5647 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, 0, NULL, NULL, NULL);
5648 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, 0, NULL, NULL, NULL);
5649 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '043', 'c', 'ISO code', 'ISO code', 1, 0, 0, NULL, NULL, NULL);
5650 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '043', '2', 'Source of local code', 'Source of local code', 1, 0, 0, NULL, NULL, NULL);
5651 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '043', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5652 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5653 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '045', 'a', 'Time period code', 'Time period code', 1, 0, 0, NULL, NULL, NULL);
5654 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 0, 0, 0, NULL, NULL, NULL);
5655 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, 0, NULL, NULL, NULL);
5656 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '045', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5657 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5658 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '050', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
5659 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '050', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
5660 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '050', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
5661 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '050', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5662 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '050', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5663 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5664 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, 0, NULL, NULL, NULL);
5665 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, 0, NULL, NULL, NULL);
5666 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '052', 'd', 'Populated place name', 'Populated place name', 1, 0, 0, NULL, NULL, NULL);
5667 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '052', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
5668 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '052', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5669 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5670 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '053', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
5671 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '053', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 1, 0, 0, NULL, NULL, NULL);
5672 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '053', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
5673 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '053', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5674 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '053', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5675 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '053', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5676 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '055', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
5677 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '055', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
5678 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '055', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
5679 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '055', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5680 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '055', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5681 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5682 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '060', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
5683 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '060', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
5684 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '060', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
5685 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '060', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5686 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '060', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5687 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5688 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '065', 'a', 'Classification number element--single number or beginning of span', 'Classification number element--single number or beginning of span', 0, 0, 0, NULL, NULL, NULL);
5689 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '065', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
5690 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '065', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
5691 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '065', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
5692 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '065', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5693 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '065', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5694 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '065', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5695 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, 0, NULL, NULL, NULL);
5696 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, 0, NULL, NULL, NULL);
5697 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, 0, NULL, NULL, NULL);
5698 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '070', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
5699 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '070', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
5700 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '070', 'd', 'Volume/dates to which call number applies', 'Volume/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
5701 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '070', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5702 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5703 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '072', 'a', 'Subject category code', 'Subject category code', 0, 0, 0, NULL, NULL, NULL);
5704 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, 0, NULL, NULL, NULL);
5705 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '072', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
5706 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '072', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5707 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5708 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '073', 'a', 'Subdivision usage', 'Subdivision usage', 1, 0, 0, NULL, NULL, NULL);
5709 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '073', 'z', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
5710 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '073', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5711 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '073', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5712 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '082', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
5713 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '082', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
5714 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '082', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
5715 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '082', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
5716 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '082', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5717 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '082', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5718 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5719 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '083', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
5720 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '083', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
5721 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '083', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
5722 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '083', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
5723 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '083', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
5724 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '083', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5725 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '083', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5726 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '083', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5727 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '086', 'a', 'Call number', 'Call number', 0, 0, 0, NULL, NULL, NULL);
5728 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '086', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
5729 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '086', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
5730 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '086', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
5731 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '086', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5732 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '086', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5733 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5734 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '087', 'a', 'Classification number element--Single number or beginning number of span', 'Classification number element--Single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
5735 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '087', 'b', 'Classification number element--Ending number of span', 'Classification number element--Ending number of span', 0, 0, 0, NULL, NULL, NULL);
5736 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '087', 'c', 'Explanatory information', 'Explanatory information', 0, 0, 0, NULL, NULL, NULL);
5737 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '087', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
5738 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '087', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5739 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '087', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5740 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'a', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, 0, NULL, NULL, NULL);
5741 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'b', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
5742 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
5743 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, 0, NULL, NULL, NULL);
5744 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'f', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
5745 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, 0, NULL, NULL, NULL);
5746 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, 0, NULL, NULL, NULL);
5747 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
5748 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
5749 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, 0, NULL, NULL, NULL);
5750 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, 0, NULL, NULL, NULL);
5751 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
5752 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
5753 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
5754 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
5755 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5756 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5757 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '090', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5758 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '091', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
5759 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '091', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
5760 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '091', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
5761 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '091', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
5762 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '091', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
5763 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '091', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5764 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '091', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5765 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '091', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5766 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '092', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
5767 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '092', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
5768 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '092', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
5769 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '092', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
5770 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
5771 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '092', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
5772 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '092', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5773 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '092', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5774 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '092', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5775 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '093', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
5776 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '093', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
5777 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '093', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
5778 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '093', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
5779 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '093', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
5780 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '093', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5781 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '093', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5782 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '093', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5783 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '096', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
5784 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '096', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
5785 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '096', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
5786 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '096', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
5787 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
5788 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '096', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
5789 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '096', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5790 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '096', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5791 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '096', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5792 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '097', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
5793 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '097', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
5794 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '097', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
5795 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '097', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
5796 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '097', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
5797 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '097', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5798 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '097', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5799 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '097', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5800 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, 0, NULL, NULL, NULL);
5801 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '098', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
5802 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '098', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
5803 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '098', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
5804 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
5805 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '098', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
5806 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '098', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5807 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '098', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5808 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '098', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5809 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '099', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
5810 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '099', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
5811 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '099', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
5812 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '099', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
5813 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
5814 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '099', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
5815 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '099', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
5816 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '099', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
5817 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '099', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
5818 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '148', 'a', 'Chronological term', 'Chronological term', 0, 0, 1, NULL, NULL, '''148y'',''148x'',''148z'',''148v''');
5819 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '148', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
5820 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '148', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
5821 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '148', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
5822 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '148', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
5823 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '148', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
5824 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '148', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
5825 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '182', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
5826 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '182', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
5827 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '182', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
5828 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '182', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
5829 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '182', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
5830 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '182', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
5831 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '260', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 2, NULL, NULL, NULL);
5832 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '260', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 2, NULL, NULL, NULL);
5833 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '260', '6', 'Linkage', 'Linkage', 0, 0, 2, NULL, NULL, NULL);
5834 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 2, NULL, NULL, NULL);
5835 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '360', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 3, NULL, NULL, NULL);
5836 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '360', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 3, NULL, NULL, NULL);
5837 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '360', '6', 'Linkage', 'Linkage', 0, 0, 3, NULL, NULL, NULL);
5838 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '360', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 3, NULL, NULL, NULL);
5839 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'a', 'Personal name', 'Personal name', 0, 0, 4, NULL, NULL, '''400b'',''400c'',''400q'',''400d'',''400t'',''400o'',''400m'',''400r'',''400s'',''400k'',''400n'',''400p'',''400g'',''400l'',''400f'',''400h'',''400x'',''400z'',''400y'',''400v''');
5840 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'b', 'Numeration', 'Numeration', 0, 0, 4, NULL, NULL, NULL);
5841 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 4, NULL, NULL, NULL);
5842 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 4, NULL, NULL, NULL);
5843 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
5844 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
5845 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
5846 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
5847 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5848 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 4, NULL, NULL, NULL);
5849 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
5850 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
5851 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
5852 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
5853 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
5854 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
5855 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 4, NULL, NULL, NULL);
5856 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
5857 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
5858 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
5859 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5860 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5861 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5862 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5863 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5864 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5865 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5866 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5867 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''410b'',''410c'',''410d'',''410t'',''410o'',''410m'',''410r'',''410s'',''410k'',''410n'',''410p'',''410g'',''410l'',''410f'',''410h'',''410x'',''410z'',''410y'',''410v''');
5868 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
5869 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
5870 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 4, NULL, NULL, NULL);
5871 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
5872 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
5873 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
5874 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
5875 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5876 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
5877 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
5878 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
5879 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
5880 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
5881 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
5882 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
5883 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
5884 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
5885 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5886 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5887 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5888 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5889 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5890 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5891 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5892 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5893 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''411e'',''411c'',''411d'',''411t'',''411s'',''411k'',''411n'',''411p'',''411g'',''411l'',''411f'',''411h'',''411x'',''411z'',''411y'',''411v''');
5894 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'b', 'Number {OBSOLETE]', 'Number {OBSOLETE]', 0, 0, 4, NULL, NULL, NULL);
5895 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
5896 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 4, NULL, NULL, NULL);
5897 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
5898 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
5899 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
5900 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
5901 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5902 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
5903 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
5904 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
5905 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
5906 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 4, NULL, NULL, NULL);
5907 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
5908 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
5909 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5910 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5911 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5912 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5913 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5914 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5915 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5916 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5917 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'a', 'Uniform title', 'Uniform title', 0, 0, 4, NULL, NULL, '''430o'',''430m'',''430r'',''430s'',''430d'',''430k'',''430n'',''430p'',''430g'',''430l'',''430f'',''430h'',''430t'',''430x'',''430z'',''430y'',''430v''');
5918 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 4, NULL, NULL, NULL);
5919 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
5920 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
5921 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
5922 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5923 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
5924 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
5925 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
5926 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
5927 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
5928 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
5929 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
5930 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
5931 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
5932 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5933 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5934 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5935 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5936 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5937 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5938 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5939 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '430', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5940 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '448', 'a', 'Chronological term', 'Chronological term', 0, 0, 4, NULL, NULL, '''448y'',''448x'',''448z'',''448v''');
5941 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '448', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 4, NULL, NULL, NULL);
5942 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '448', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5943 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '448', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5944 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '448', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5945 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '448', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5946 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '448', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5947 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '448', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5948 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '448', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5949 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '448', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5950 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '450', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 4, NULL, NULL, '''450x'',''450z'',''450y'',''450v''');
5951 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '450', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 4, NULL, NULL, NULL);
5952 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '450', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5953 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '450', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5954 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '450', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5955 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '450', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5956 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '450', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5957 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '450', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5958 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '450', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5959 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '450', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5960 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '450', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5961 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '451', 'a', 'Geographic name', 'Geographic name', 0, 0, 4, NULL, NULL, '''451z'',''451x'',''451y'',''451v''');
5962 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '451', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5963 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '451', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5964 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '451', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5965 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '451', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5966 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '451', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5967 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '451', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5968 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '451', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5969 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '451', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5970 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '451', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5971 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '455', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 4, NULL, NULL, '''455v'',''455x'',''455z'',''455y''');
5972 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '455', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5973 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '455', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5974 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '455', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5975 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '455', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5976 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '455', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5977 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '455', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5978 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '455', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5979 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '455', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5980 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '455', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5981 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '480', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5982 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '480', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5983 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '480', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5984 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '480', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5985 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '480', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5986 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '480', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5987 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '480', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5988 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '480', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5989 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '480', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5990 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '481', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
5991 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '481', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
5992 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '481', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
5993 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '481', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
5994 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '481', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
5995 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '481', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
5996 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '481', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
5997 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '481', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
5998 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '481', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
5999 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '482', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6000 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '482', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6001 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '482', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6002 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '482', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6003 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '482', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6004 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '482', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6005 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '482', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6006 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '482', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6007 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '482', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6008 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '485', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6009 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '485', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6010 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '485', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6011 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '485', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6012 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '485', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6013 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '485', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6014 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '485', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6015 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '485', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6016 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '485', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6017 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'a', 'Personal name', 'Personal name', 0, 0, 5, NULL, NULL, '''500b'',''500c'',''500q'',''500d'',''500t'',''500o'',''500m'',''500r'',''500s'',''500k'',''500n'',''500p'',''500g'',''500l'',''500f'',''500h'',''500x'',''500z'',''500y'',''500v''');
6018 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'b', 'Numeration', 'Numeration', 0, 0, 5, NULL, NULL, NULL);
6019 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 5, NULL, NULL, NULL);
6020 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 5, NULL, NULL, NULL);
6021 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
6022 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
6023 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
6024 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
6025 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6026 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 5, NULL, NULL, NULL);
6027 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
6028 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
6029 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
6030 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6031 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
6032 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6033 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 5, NULL, NULL, NULL);
6034 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
6035 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
6036 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
6037 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6038 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6039 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6040 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6041 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6042 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6043 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6044 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6045 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6046 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''510b'',''510c'',''510d'',''510t'',''510o'',''510m'',''510r'',''510s'',''510k'',''510n'',''510p'',''510g'',''510l'',''510f'',''510h'',''510x'',''510z'',''510y'',''510v''');
6047 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
6048 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
6049 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 5, NULL, NULL, NULL);
6050 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
6051 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
6052 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
6053 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
6054 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6055 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
6056 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
6057 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
6058 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
6059 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
6060 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6061 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
6062 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
6063 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
6064 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6065 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6066 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6067 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6068 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6069 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6070 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6071 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6072 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6073 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''511e'',''511c'',''511d'',''511t'',''511s'',''511k'',''511n'',''511p'',''511g'',''511l'',''511f'',''511h'',''511x'',''511z'',''511y'',''511v''');
6074 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
6075 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 5, NULL, NULL, NULL);
6076 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
6077 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
6078 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
6079 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
6080 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6081 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
6082 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
6083 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
6084 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6085 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 5, NULL, NULL, NULL);
6086 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
6087 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
6088 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6089 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6090 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6091 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6092 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6093 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6094 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6095 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6096 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6097 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'a', 'Uniform title', 'Uniform title', 0, 0, 5, NULL, NULL, '''530o'',''530m'',''530r'',''530s'',''530d'',''530k'',''530n'',''530p'',''530g'',''530l'',''530f'',''530h'',''530t'',''530x'',''530z'',''530y'',''530v''');
6098 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 5, NULL, NULL, NULL);
6099 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
6100 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
6101 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
6102 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6103 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
6104 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
6105 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
6106 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6107 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
6108 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6109 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
6110 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
6111 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
6112 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6113 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6114 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6115 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6116 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6117 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6118 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6119 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6120 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6121 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '548', 'a', 'Chronological term', 'Chronological term', 0, 0, 5, NULL, NULL, '''548y'',''548x'',''548z'',''548v''');
6122 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '548', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 5, NULL, NULL, NULL);
6123 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '548', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6124 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '548', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6125 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '548', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6126 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '548', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6127 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '548', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6128 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '548', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6129 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '548', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6130 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '548', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6131 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '548', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6132 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 5, NULL, NULL, '''550x'',''550z'',''550y'',''550v''');
6133 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 5, NULL, NULL, NULL);
6134 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6135 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6136 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6137 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6138 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6139 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6140 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6141 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6142 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6143 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6144 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '551', 'a', 'Geographic name', 'Geographic name', 0, 0, 5, NULL, NULL, '''551z'',''551x'',''551y'',''551v''');
6145 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '551', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6146 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '551', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6147 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '551', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6148 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '551', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6149 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '551', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6150 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '551', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6151 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '551', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6152 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '551', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6153 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '551', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6154 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '551', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6155 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '555', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 5, NULL, NULL, '''555v'',''555x'',''555z'',''555y''');
6156 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '555', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6157 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '555', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6158 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '555', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6159 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '555', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6160 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '555', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6161 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '555', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6162 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '555', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6163 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '555', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6164 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '555', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6165 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6166 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '580', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6167 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '580', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6168 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '580', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6169 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '580', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6170 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '580', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6171 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '580', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6172 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '580', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6173 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '580', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6174 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '580', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6175 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6176 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '581', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6177 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '581', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6178 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '581', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6179 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '581', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6180 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '581', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6181 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '581', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6182 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '581', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6183 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '581', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6184 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '581', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6185 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6186 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '582', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6187 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '582', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6188 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '582', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6189 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '582', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6190 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '582', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6191 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '582', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6192 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '582', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6193 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '582', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6194 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '582', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6195 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '582', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6196 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '585', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6197 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '585', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6198 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '585', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6199 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '585', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6200 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '585', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6201 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '585', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6202 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '585', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6203 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '585', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6204 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '585', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6205 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6206 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '663', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
6207 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '663', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
6208 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '663', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
6209 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '663', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6210 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '663', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6211 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '664', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
6212 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '664', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
6213 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '664', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
6214 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '664', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6215 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '664', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6216 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '665', 'a', 'History reference', 'History reference', 1, 0, 6, NULL, NULL, NULL);
6217 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '665', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6218 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '665', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6219 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '666', 'a', 'General explanatory reference', 'General explanatory reference', 1, 0, 6, NULL, NULL, NULL);
6220 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '666', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6221 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '666', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6222 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '667', 'a', 'Nonpublic general note', 'Nonpublic general note', 0, 0, 6, NULL, NULL, NULL);
6223 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '667', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
6224 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '667', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6225 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '667', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6226 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '670', 'a', 'Source citation', 'Source citation', 0, 0, 6, NULL, NULL, NULL);
6227 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '670', 'b', 'Information found', 'Information found', 0, 0, 6, NULL, NULL, NULL);
6228 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '670', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
6229 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '670', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6230 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '670', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6231 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '675', 'a', 'Source citation', 'Source citation', 1, 0, 6, NULL, NULL, NULL);
6232 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '675', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6233 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '675', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6234 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '678', 'a', 'Biographical or historical data', 'Biographical or historical data', 1, 0, 6, NULL, NULL, NULL);
6235 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '678', 'b', 'Expansion', 'Expansion', 0, 0, 6, NULL, NULL, NULL);
6236 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '678', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
6237 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '678', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6238 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '678', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6239 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '680', 'a', 'Heading or subdivision term', 'Heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
6240 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '680', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
6241 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '680', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
6242 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '680', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
6243 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '680', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6244 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '680', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6245 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '681', 'a', 'Subject heading or subdivision term', 'Subject heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
6246 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '681', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
6247 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '681', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
6248 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '681', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6249 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '681', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6250 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '682', 'a', 'Replacement heading', 'Replacement heading', 1, 0, 6, NULL, NULL, NULL);
6251 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '682', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
6252 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '682', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6253 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '682', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6254 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '683', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 6, NULL, NULL, NULL);
6255 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '683', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 6, NULL, NULL, NULL);
6256 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '683', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
6257 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '683', 'p', 'Corresponding classification field', 'Corresponding classification field', 1, 0, 6, NULL, NULL, NULL);
6258 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '683', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 6, NULL, NULL, NULL);
6259 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '683', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
6260 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '683', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
6261 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '683', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6262 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '683', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 6, NULL, NULL, NULL);
6263 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '688', 'a', 'Application history note', 'Application history note', 0, 0, 6, NULL, NULL, NULL);
6264 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '688', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
6265 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '688', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
6266 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '688', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
6267 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '748', 'a', 'Chronological term', 'Chronological term', 0, 0, 7, NULL, NULL, NULL);
6268 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '748', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
6269 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '748', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
6270 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '748', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
6271 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '748', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
6272 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '748', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
6273 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '748', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
6274 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '748', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
6275 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '748', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
6276 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '748', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
6277 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '748', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
6278 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '782', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
6279 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '782', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
6280 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '782', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
6281 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '782', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
6282 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '782', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
6283 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '782', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
6284 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '782', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
6285 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '782', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
6286 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '782', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
6287 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '782', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
6288 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '788', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 7, NULL, NULL, NULL);
6289 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '788', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
6290 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '788', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
6291 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '788', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
6292 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '788', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
6293 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '788', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
6294 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '788', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
6295 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'a', 'Host name', 'Host name', 1, 0, 8, NULL, NULL, NULL);
6296 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'b', 'Access number', 'Access number', 1, 0, 8, NULL, NULL, NULL);
6297 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'c', 'Compression information', 'Compression information', 1, 0, 8, NULL, NULL, NULL);
6298 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'd', 'Path', 'Path', 1, 0, 8, NULL, NULL, NULL);
6299 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'f', 'Electronic name', 'Electronic name', 1, 0, 8, NULL, NULL, NULL);
6300 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'h', 'Processor of request', 'Processor of request', 0, 0, 8, NULL, NULL, NULL);
6301 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'i', 'Instruction', 'Instruction', 1, 0, 8, NULL, NULL, NULL);
6302 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'j', 'Bits per second', 'Bits per second', 0, 0, 8, NULL, NULL, NULL);
6303 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'k', 'Password', 'Password', 0, 0, 8, NULL, NULL, NULL);
6304 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'l', 'Logon', 'Logon', 0, 0, 8, NULL, NULL, NULL);
6305 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, 8, NULL, NULL, NULL);
6306 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'n', 'Name of location of host', 'Name of location of host', 0, 0, 8, NULL, NULL, NULL);
6307 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'o', 'Operating system', 'Operating system', 0, 0, 8, NULL, NULL, NULL);
6308 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'p', 'Port', 'Port', 0, 0, 8, NULL, NULL, NULL);
6309 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, 8, NULL, NULL, NULL);
6310 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'r', 'Settings', 'Settings', 0, 0, 8, NULL, NULL, NULL);
6311 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 's', 'File size', 'File size', 1, 0, 8, NULL, NULL, NULL);
6312 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, 8, NULL, NULL, NULL);
6313 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 8, NULL, NULL, NULL);
6314 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, 8, NULL, NULL, NULL);
6315 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'w', 'Record control number', 'Record control number', 1, 0, 8, NULL, NULL, NULL);
6316 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, 8, NULL, NULL, NULL);
6317 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'y', 'Link text', 'Link text', 1, 0, 8, NULL, NULL, NULL);
6318 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', 'z', 'Public note', 'Public note', 1, 0, 8, NULL, NULL, NULL);
6319 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', '2', 'Access method', 'Access method', 0, 0, 8, NULL, NULL, NULL);
6320 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', '3', 'Materials specified', 'Materials specified', 0, 0, 8, NULL, NULL, NULL);
6321 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', '6', 'Linkage', 'Linkage', 0, 0, 8, NULL, NULL, NULL);
6322 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 8, NULL, NULL, NULL);
6323 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'a', 'a', 'a', 1, 0, 8, NULL, NULL, NULL);
6324 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'b', 'b', 'b', 1, 0, 8, NULL, NULL, NULL);
6325 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'c', 'c', 'c', 1, 0, 8, NULL, NULL, NULL);
6326 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'd', 'd', 'd', 1, 0, 8, NULL, NULL, NULL);
6327 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'e', 'e', 'e', 1, 0, 8, NULL, NULL, NULL);
6328 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'f', 'f', 'f', 1, 0, 8, NULL, NULL, NULL);
6329 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'g', 'g', 'g', 1, 0, 8, NULL, NULL, NULL);
6330 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'h', 'h', 'h', 1, 0, 8, NULL, NULL, NULL);
6331 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'i', 'i', 'i', 1, 0, 8, NULL, NULL, NULL);
6332 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'j', 'j', 'j', 1, 0, 8, NULL, NULL, NULL);
6333 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'k', 'k', 'k', 1, 0, 8, NULL, NULL, NULL);
6334 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'l', 'l', 'l', 1, 0, 8, NULL, NULL, NULL);
6335 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'm', 'm', 'm', 1, 0, 8, NULL, NULL, NULL);
6336 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'n', 'n', 'n', 1, 0, 8, NULL, NULL, NULL);
6337 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'o', 'o', 'o', 1, 0, 8, NULL, NULL, NULL);
6338 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'p', 'p', 'p', 1, 0, 8, NULL, NULL, NULL);
6339 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'q', 'q', 'q', 1, 0, 8, NULL, NULL, NULL);
6340 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'r', 'r', 'r', 1, 0, 8, NULL, NULL, NULL);
6341 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 's', 's', 's', 1, 0, 8, NULL, NULL, NULL);
6342 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 't', 't', 't', 1, 0, 8, NULL, NULL, NULL);
6343 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'u', 'u', 'u', 1, 0, 8, NULL, NULL, NULL);
6344 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'v', 'v', 'v', 1, 0, 8, NULL, NULL, NULL);
6345 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'w', 'w', 'w', 1, 0, 8, NULL, NULL, NULL);
6346 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'x', 'x', 'x', 1, 0, 8, NULL, NULL, NULL);
6347 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'y', 'y', 'y', 1, 0, 8, NULL, NULL, NULL);
6348 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', 'z', 'z', 'z', 1, 0, 8, NULL, NULL, NULL);
6349 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', '0', '0', '0', 1, 0, 8, NULL, NULL, NULL);
6350 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', '1', '1', '1', 1, 0, 8, NULL, NULL, NULL);
6351 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', '2', '2', '2', 1, 0, 8, NULL, NULL, NULL);
6352 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', '3', '3', '3', 1, 0, 8, NULL, NULL, NULL);
6353 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', '4', '4', '4', 1, 0, 8, NULL, NULL, NULL);
6354 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', '5', '5', '5', 1, 0, 8, NULL, NULL, NULL);
6355 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', '6', '6', '6', 1, 0, 8, NULL, NULL, NULL);
6356 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', '7', '7', '7', 1, 0, 8, NULL, NULL, NULL);
6357 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', '8', '8', '8', 1, 0, 8, NULL, NULL, NULL);
6358 INSERT INTO `auth_subfield_structure` VALUES ('CHRON_TERM', '880', '9', '9', '9', 1, 0, 8, NULL, NULL, NULL);
6359
6360
6361 -- ******************************************************
6362
6363
6364
6365 -- *******************************************************************
6366 -- TOPICAL TERM AUTHORITY FIELDS/SUBFIELDS. 
6367 -- *******************************************************************
6368
6369 -- These ought to be adjusted for different less conflicting and more 
6370 -- rationally chosen fields and subfields but I had left that for last. 
6371
6372 -- ADJUST ME
6373 -- Use values from your dump of auth_tag_structure and auth_subfield_structure 
6374 -- to provide support for your Koha database.
6375
6376
6377 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '000', 'LEADER', 'LEADER', 0, 1, NULL);
6378 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 1, NULL);
6379 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 1, NULL);
6380 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 1, NULL);
6381 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '008', 'FIXED-LENGTH DATA ELEMENTS', 'FIXED-LENGTH DATA ELEMENTS', 0, 1, NULL);
6382 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, NULL);
6383 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '014', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 1, 0, NULL);
6384 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, NULL);
6385 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL);
6386 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL);
6387 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL);
6388 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 1, NULL);
6389 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, NULL);
6390 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL);
6391 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '045', 'TIME PERIOD OF HEADING', 'TIME PERIOD OF HEADING', 0, 0, NULL);
6392 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL);
6393 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL);
6394 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '053', 'LC CLASSIFICATION NUMBER', 'LC CLASSIFICATION NUMBER', 1, 0, NULL);
6395 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '055', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 1, 0, NULL);
6396 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL);
6397 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '065', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL);
6398 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL);
6399 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL);
6400 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL);
6401 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '073', 'SUBDIVISION USAGE', 'SUBDIVISION USAGE', 0, 0, NULL);
6402 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '082', 'DEWEY DECIMAL CALL NUMBER', 'DEWEY DECIMAL CALL NUMBER', 1, 0, NULL);
6403 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '083', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL);
6404 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '086', 'GOVERNMENT DOCUMENT CALL NUMBER', 'GOVERNMENT DOCUMENT CALL NUMBER', 1, 0, NULL);
6405 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '087', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL);
6406 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '090', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, NULL);
6407 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '091', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 0, 0, NULL);
6408 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, NULL);
6409 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '093', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
6410 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, NULL);
6411 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '097', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
6412 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, NULL);
6413 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, NULL);
6414 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '150', 'HEADING--TOPICAL TERM', 'HEADING--TOPICAL TERM', 0, 0, NULL);
6415 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '180', 'HEADING--GENERAL SUBDIVISION', 'HEADING--GENERAL SUBDIVISION', 0, 0, NULL);
6416 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '260', 'COMPLEX SEE REFERENCE--SUBJECT', 'COMPLEX SEE REFERENCE--SUBJECT', 1, 0, NULL);
6417 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '360', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 1, 0, NULL);
6418 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '400', 'SEE FROM TRACING--PERSONAL NAME', 'SEE FROM TRACING--PERSONAL NAME', 1, 0, NULL);
6419 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '410', 'SEE FROM TRACING--CORPORATE NAME', 'SEE FROM TRACING--CORPORATE NAME', 1, 0, NULL);
6420 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '411', 'SEE FROM TRACING--MEETING NAME', 'SEE FROM TRACING--MEETING NAME', 1, 0, NULL);
6421 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '430', 'SEE FROM TRACING--UNIFORM TITLE', 'SEE FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
6422 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '448', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
6423 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '450', 'SEE FROM TRACING--TOPICAL TERM', 'SEE FROM TRACING--TOPICAL TERM', 1, 0, NULL);
6424 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '451', 'SEE FROM TRACING--GEOGRAPHIC NAME', 'SEE FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
6425 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '455', 'SEE FROM TRACING--GENRE/FORM TERM', 'SEE FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
6426 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '480', 'SEE FROM TRACING--GENERAL SUBDIVISION', 'SEE FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
6427 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '481', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
6428 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '482', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
6429 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '485', 'SEE FROM TRACING--FORM SUBDIVISION', 'SEE FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
6430 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '500', 'SEE ALSO FROM TRACING--PERSONAL NAME', 'SEE ALSO FROM TRACING--PERSONAL NAME', 1, 0, NULL);
6431 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '510', 'SEE ALSO FROM TRACING--CORPORATE NAME', 'SEE ALSO FROM TRACING--CORPORATE NAME', 1, 0, NULL);
6432 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '511', 'SEE ALSO FROM TRACING--MEETING NAME', 'SEE ALSO FROM TRACING--MEETING NAME', 1, 0, NULL);
6433 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '530', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
6434 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '548', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
6435 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '550', 'SEE ALSO FROM TRACING--TOPICAL TERM', 'SEE ALSO FROM TRACING--TOPICAL TERM', 1, 0, NULL);
6436 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '551', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
6437 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '555', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
6438 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '580', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
6439 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '581', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
6440 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '582', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
6441 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '585', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
6442 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '663', 'COMPLEX SEE ALSO REFERENCE--NAME', 'COMPLEX SEE ALSO REFERENCE--NAME', 0, 0, NULL);
6443 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '664', 'COMPLEX SEE REFERENCE--NAME', 'COMPLEX SEE REFERENCE--NAME', 0, 0, NULL);
6444 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '665', 'HISTORY REFERENCE', 'HISTORY REFERENCE', 0, 0, NULL);
6445 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '666', 'GENERAL EXPLANATORY REFERENCE--NAME', 'GENERAL EXPLANATORY REFERENCE--NAME', 0, 0, NULL);
6446 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '667', 'NONPUBLIC GENERAL NOTE', 'NONPUBLIC GENERAL NOTE', 1, 0, NULL);
6447 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '670', 'SOURCE DATA FOUND', 'SOURCE DATA FOUND', 1, 0, NULL);
6448 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '675', 'SOURCE DATA NOT FOUND', 'SOURCE DATA NOT FOUND', 0, 0, NULL);
6449 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '678', 'BIOGRAPHICAL OR HISTORICAL DATA', 'BIOGRAPHICAL OR HISTORICAL DATA', 1, 0, NULL);
6450 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '680', 'PUBLIC GENERAL NOTE', 'PUBLIC GENERAL NOTE', 1, 0, NULL);
6451 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '681', 'SUBJECT EXAMPLE TRACING NOTE', 'SUBJECT EXAMPLE TRACING NOTE', 1, 0, NULL);
6452 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '682', 'DELETED HEADING INFORMATION', 'DELETED HEADING INFORMATION', 0, 0, NULL);
6453 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '683', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
6454 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '688', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
6455 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '750', 'ESTABLISHED HEADING LINKING ENTRY--TOPICAL TERM', 'ESTABLISHED HEADING LINKING ENTRY--TOPICAL TERM', 1, 0, NULL);
6456 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '780', 'SUBDIVISION LINKING ENTRY--GENERAL SUBDIVISION', 'SUBDIVISION LINKING ENTRY--GENERAL SUBDIVISION', 1, 0, NULL);
6457 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '788', 'COMPLEX LINKING ENTRY DATA', 'COMPLEX LINKING ENTRY DATA', 0, 0, NULL);
6458 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL);
6459 INSERT INTO `auth_tag_structure` VALUES ('TOPIC_TERM', '880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL);
6460
6461
6462 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '000', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
6463 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '001', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
6464 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '003', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
6465 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '005', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
6466 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '008', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
6467 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '010', 'a', 'LC control number', 'LC control number', 0, 0, 0, NULL, NULL, NULL);
6468 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, 0, NULL, NULL, NULL);
6469 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6470 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '014', 'a', 'Control number of related bibliographic record', 'Control number of related bibliographic record', 0, 0, 0, NULL, NULL, NULL);
6471 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '014', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6472 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '014', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6473 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '016', 'a', 'Record control number', 'Record control number', 0, 0, 0, NULL, NULL, NULL);
6474 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '016', 'z', 'Canceled/invalid record control number', 'Canceled/invalid record control number', 1, 0, 0, NULL, NULL, NULL);
6475 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '016', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
6476 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6477 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, 0, NULL, NULL, NULL);
6478 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
6479 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, 0, NULL, NULL, NULL);
6480 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, 0, NULL, NULL, NULL);
6481 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '024', '2', 'Source of number or code', 'Source of number or code', 0, 0, 0, NULL, NULL, NULL);
6482 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '024', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6483 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6484 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, 0, NULL, NULL, NULL);
6485 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, 0, NULL, NULL, NULL);
6486 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, 0, NULL, NULL, NULL);
6487 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, 0, NULL, NULL, NULL);
6488 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, 0, NULL, NULL, NULL);
6489 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, 0, NULL, NULL, NULL);
6490 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, 0, NULL, NULL, NULL);
6491 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, 0, NULL, NULL, NULL);
6492 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'p', 'Equinox', 'Equinox', 0, 0, 0, NULL, NULL, NULL);
6493 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'r', 'Distance from earth', 'Distance from earth', 1, 0, 0, NULL, NULL, NULL);
6494 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, 0, NULL, NULL, NULL);
6495 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, 0, NULL, NULL, NULL);
6496 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'x', 'Beginning date', 'Beginning date', 0, 0, 0, NULL, NULL, NULL);
6497 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'y', 'Ending date', 'Ending date', 0, 0, 0, NULL, NULL, NULL);
6498 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', 'z', 'Name of extraterrestrial body', 'Name of extraterrestrial body', 0, 0, 0, NULL, NULL, NULL);
6499 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
6500 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6501 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6502 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '035', 'a', 'System control number', 'System control number', 0, 0, 0, NULL, NULL, NULL);
6503 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, 0, NULL, NULL, NULL);
6504 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '035', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6505 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6506 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 1, 0, NULL, NULL, NULL);
6507 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, 0, NULL, NULL, NULL);
6508 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, 0, NULL, NULL, NULL);
6509 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, 0, NULL, NULL, NULL);
6510 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '040', 'e', 'Description conventions', 'Description conventions', 0, 0, 0, NULL, NULL, NULL);
6511 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '040', 'f', 'Subject heading or thesaurus conventions', 'Subject heading or thesaurus conventions', 0, 0, 0, NULL, NULL, NULL);
6512 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '040', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6513 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6514 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '042', 'a', 'Authentication code', 'Authentication code', 1, 0, 0, NULL, NULL, NULL);
6515 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, 0, NULL, NULL, NULL);
6516 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, 0, NULL, NULL, NULL);
6517 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '043', 'c', 'ISO code', 'ISO code', 1, 0, 0, NULL, NULL, NULL);
6518 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '043', '2', 'Source of local code', 'Source of local code', 1, 0, 0, NULL, NULL, NULL);
6519 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '043', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6520 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6521 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '045', 'a', 'Time period code', 'Time period code', 1, 0, 0, NULL, NULL, NULL);
6522 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 0, 0, 0, NULL, NULL, NULL);
6523 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, 0, NULL, NULL, NULL);
6524 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '045', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6525 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6526 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '050', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
6527 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '050', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
6528 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '050', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
6529 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '050', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6530 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '050', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6531 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6532 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, 0, NULL, NULL, NULL);
6533 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, 0, NULL, NULL, NULL);
6534 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '052', 'd', 'Populated place name', 'Populated place name', 1, 0, 0, NULL, NULL, NULL);
6535 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '052', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
6536 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '052', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6537 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6538 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '053', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
6539 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '053', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 1, 0, 0, NULL, NULL, NULL);
6540 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '053', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
6541 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '053', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6542 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '053', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6543 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '053', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6544 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '055', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
6545 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '055', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
6546 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '055', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
6547 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '055', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6548 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '055', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6549 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6550 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '060', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
6551 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '060', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
6552 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '060', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
6553 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '060', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6554 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '060', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6555 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6556 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '065', 'a', 'Classification number element--single number or beginning of span', 'Classification number element--single number or beginning of span', 0, 0, 0, NULL, NULL, NULL);
6557 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '065', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
6558 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '065', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
6559 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '065', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
6560 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '065', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6561 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '065', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6562 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '065', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6563 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, 0, NULL, NULL, NULL);
6564 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, 0, NULL, NULL, NULL);
6565 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, 0, NULL, NULL, NULL);
6566 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '070', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
6567 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '070', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
6568 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '070', 'd', 'Volume/dates to which call number applies', 'Volume/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
6569 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '070', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6570 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6571 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '072', 'a', 'Subject category code', 'Subject category code', 0, 0, 0, NULL, NULL, NULL);
6572 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, 0, NULL, NULL, NULL);
6573 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '072', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
6574 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '072', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6575 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6576 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '073', 'a', 'Subdivision usage', 'Subdivision usage', 1, 0, 0, NULL, NULL, NULL);
6577 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '073', 'z', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
6578 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '073', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6579 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '073', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6580 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '082', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
6581 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '082', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
6582 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '082', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
6583 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '082', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
6584 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '082', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6585 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '082', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6586 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6587 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '083', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
6588 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '083', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
6589 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '083', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
6590 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '083', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
6591 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '083', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
6592 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '083', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6593 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '083', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6594 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '083', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6595 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '086', 'a', 'Call number', 'Call number', 0, 0, 0, NULL, NULL, NULL);
6596 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '086', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
6597 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '086', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
6598 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '086', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
6599 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '086', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6600 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '086', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6601 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6602 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '087', 'a', 'Classification number element--Single number or beginning number of span', 'Classification number element--Single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
6603 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '087', 'b', 'Classification number element--Ending number of span', 'Classification number element--Ending number of span', 0, 0, 0, NULL, NULL, NULL);
6604 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '087', 'c', 'Explanatory information', 'Explanatory information', 0, 0, 0, NULL, NULL, NULL);
6605 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '087', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
6606 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '087', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6607 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '087', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6608 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'a', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, 0, NULL, NULL, NULL);
6609 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'b', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
6610 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
6611 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, 0, NULL, NULL, NULL);
6612 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'f', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
6613 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, 0, NULL, NULL, NULL);
6614 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, 0, NULL, NULL, NULL);
6615 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
6616 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
6617 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, 0, NULL, NULL, NULL);
6618 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, 0, NULL, NULL, NULL);
6619 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
6620 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
6621 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
6622 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
6623 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6624 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6625 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '090', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6626 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '091', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
6627 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '091', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
6628 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '091', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
6629 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '091', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
6630 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '091', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
6631 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '091', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6632 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '091', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6633 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '091', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6634 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '092', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
6635 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '092', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
6636 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '092', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
6637 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '092', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
6638 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
6639 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '092', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
6640 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '092', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6641 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '092', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6642 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '092', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6643 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '093', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
6644 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '093', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
6645 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '093', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
6646 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '093', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
6647 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '093', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
6648 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '093', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6649 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '093', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6650 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '093', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6651 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '096', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
6652 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '096', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
6653 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '096', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
6654 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '096', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
6655 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
6656 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '096', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
6657 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '096', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6658 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '096', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6659 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '096', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6660 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '097', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
6661 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '097', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
6662 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '097', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
6663 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '097', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
6664 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '097', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
6665 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '097', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6666 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '097', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6667 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '097', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6668 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, 0, NULL, NULL, NULL);
6669 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '098', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
6670 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '098', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
6671 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '098', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
6672 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
6673 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '098', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
6674 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '098', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6675 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '098', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6676 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '098', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6677 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '099', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
6678 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '099', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
6679 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '099', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
6680 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '099', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
6681 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
6682 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '099', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
6683 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '099', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
6684 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '099', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
6685 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '099', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
6686 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '150', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 1, NULL, NULL, '''150x'',''150z'',''150y'',''150v''');
6687 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '150', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, 1, NULL, NULL, NULL);
6688 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '150', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
6689 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '150', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
6690 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '150', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
6691 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '150', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
6692 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '150', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
6693 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '150', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
6694 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '180', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
6695 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '180', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
6696 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '180', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
6697 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '180', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
6698 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '180', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
6699 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '180', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
6700 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '260', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 2, NULL, NULL, NULL);
6701 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '260', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 2, NULL, NULL, NULL);
6702 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '260', '6', 'Linkage', 'Linkage', 0, 0, 2, NULL, NULL, NULL);
6703 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 2, NULL, NULL, NULL);
6704 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '360', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 3, NULL, NULL, NULL);
6705 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '360', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 3, NULL, NULL, NULL);
6706 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '360', '6', 'Linkage', 'Linkage', 0, 0, 3, NULL, NULL, NULL);
6707 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '360', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 3, NULL, NULL, NULL);
6708 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'a', 'Personal name', 'Personal name', 0, 0, 4, NULL, NULL, '''400b'',''400c'',''400q'',''400d'',''400t'',''400o'',''400m'',''400r'',''400s'',''400k'',''400n'',''400p'',''400g'',''400l'',''400f'',''400h'',''400x'',''400z'',''400y'',''400v''');
6709 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'b', 'Numeration', 'Numeration', 0, 0, 4, NULL, NULL, NULL);
6710 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 4, NULL, NULL, NULL);
6711 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 4, NULL, NULL, NULL);
6712 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
6713 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
6714 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
6715 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
6716 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6717 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 4, NULL, NULL, NULL);
6718 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
6719 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
6720 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
6721 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
6722 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
6723 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
6724 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 4, NULL, NULL, NULL);
6725 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
6726 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
6727 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
6728 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6729 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6730 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6731 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6732 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6733 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6734 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6735 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6736 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''410b'',''410c'',''410d'',''410t'',''410o'',''410m'',''410r'',''410s'',''410k'',''410n'',''410p'',''410g'',''410l'',''410f'',''410h'',''410x'',''410z'',''410y'',''410v''');
6737 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
6738 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
6739 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 4, NULL, NULL, NULL);
6740 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
6741 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
6742 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
6743 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
6744 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6745 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
6746 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
6747 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
6748 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
6749 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
6750 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
6751 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
6752 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
6753 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
6754 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6755 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6756 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6757 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6758 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6759 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6760 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6761 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6762 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''411e'',''411c'',''411d'',''411t'',''411s'',''411k'',''411n'',''411p'',''411g'',''411l'',''411f'',''411h'',''411x'',''411z'',''411y'',''411v''');
6763 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'b', 'Number {OBSOLETE]', 'Number {OBSOLETE]', 0, 0, 4, NULL, NULL, NULL);
6764 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
6765 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 4, NULL, NULL, NULL);
6766 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
6767 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
6768 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
6769 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
6770 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6771 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
6772 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
6773 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
6774 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
6775 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 4, NULL, NULL, NULL);
6776 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
6777 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
6778 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6779 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6780 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6781 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6782 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6783 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6784 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6785 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6786 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'a', 'Uniform title', 'Uniform title', 0, 0, 4, NULL, NULL, '''430o'',''430m'',''430r'',''430s'',''430d'',''430k'',''430n'',''430p'',''430g'',''430l'',''430f'',''430h'',''430t'',''430x'',''430z'',''430y'',''430v''');
6787 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 4, NULL, NULL, NULL);
6788 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
6789 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
6790 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
6791 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6792 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
6793 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
6794 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
6795 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
6796 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
6797 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
6798 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
6799 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
6800 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
6801 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6802 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6803 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6804 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6805 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6806 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6807 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6808 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '430', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6809 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '448', 'a', 'Chronological term', 'Chronological term', 0, 0, 4, NULL, NULL, '''448y'',''448x'',''448z'',''448v''');
6810 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '448', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 4, NULL, NULL, NULL);
6811 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '448', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6812 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '448', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6813 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '448', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6814 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '448', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6815 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '448', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6816 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '448', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6817 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '448', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6818 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '448', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6819 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '450', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 4, NULL, NULL, '''450x'',''450z'',''450y'',''450v''');
6820 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '450', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 4, NULL, NULL, NULL);
6821 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '450', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6822 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '450', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6823 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '450', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6824 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '450', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6825 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '450', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6826 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '450', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6827 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '450', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6828 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '450', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6829 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '450', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6830 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '451', 'a', 'Geographic name', 'Geographic name', 0, 0, 4, NULL, NULL, '''451z'',''451x'',''451y'',''451v''');
6831 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '451', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6832 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '451', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6833 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '451', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6834 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '451', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6835 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '451', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6836 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '451', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6837 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '451', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6838 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '451', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6839 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '451', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6840 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '455', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 4, NULL, NULL, '''455v'',''455x'',''455z'',''455y''');
6841 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '455', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6842 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '455', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6843 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '455', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6844 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '455', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6845 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '455', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6846 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '455', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6847 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '455', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6848 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '455', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6849 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '455', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6850 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '480', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6851 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '480', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6852 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '480', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6853 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '480', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6854 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '480', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6855 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '480', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6856 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '480', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6857 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '480', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6858 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '480', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6859 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '481', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6860 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '481', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6861 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '481', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6862 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '481', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6863 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '481', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6864 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '481', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6865 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '481', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6866 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '481', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6867 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '481', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6868 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '482', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6869 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '482', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6870 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '482', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6871 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '482', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6872 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '482', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6873 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '482', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6874 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '482', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6875 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '482', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6876 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '482', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6877 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '485', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
6878 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '485', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
6879 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '485', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
6880 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '485', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
6881 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '485', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
6882 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '485', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
6883 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '485', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
6884 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '485', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
6885 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '485', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
6886 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'a', 'Personal name', 'Personal name', 0, 0, 5, NULL, NULL, '''500b'',''500c'',''500q'',''500d'',''500t'',''500o'',''500m'',''500r'',''500s'',''500k'',''500n'',''500p'',''500g'',''500l'',''500f'',''500h'',''500x'',''500z'',''500y'',''500v''');
6887 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'b', 'Numeration', 'Numeration', 0, 0, 5, NULL, NULL, NULL);
6888 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 5, NULL, NULL, NULL);
6889 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 5, NULL, NULL, NULL);
6890 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
6891 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
6892 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
6893 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
6894 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6895 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 5, NULL, NULL, NULL);
6896 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
6897 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
6898 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
6899 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6900 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
6901 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6902 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 5, NULL, NULL, NULL);
6903 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
6904 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
6905 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
6906 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6907 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6908 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6909 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6910 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6911 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6912 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6913 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6914 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6915 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''510b'',''510c'',''510d'',''510t'',''510o'',''510m'',''510r'',''510s'',''510k'',''510n'',''510p'',''510g'',''510l'',''510f'',''510h'',''510x'',''510z'',''510y'',''510v''');
6916 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
6917 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
6918 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 5, NULL, NULL, NULL);
6919 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
6920 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
6921 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
6922 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
6923 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6924 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
6925 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
6926 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
6927 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
6928 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
6929 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6930 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
6931 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
6932 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
6933 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6934 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6935 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6936 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6937 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6938 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6939 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6940 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6941 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6942 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''511e'',''511c'',''511d'',''511t'',''511s'',''511k'',''511n'',''511p'',''511g'',''511l'',''511f'',''511h'',''511x'',''511z'',''511y'',''511v''');
6943 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
6944 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 5, NULL, NULL, NULL);
6945 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
6946 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
6947 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
6948 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
6949 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6950 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
6951 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
6952 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
6953 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6954 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 5, NULL, NULL, NULL);
6955 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
6956 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
6957 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6958 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6959 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6960 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6961 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6962 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6963 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6964 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6965 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6966 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'a', 'Uniform title', 'Uniform title', 0, 0, 5, NULL, NULL, '''530o'',''530m'',''530r'',''530s'',''530d'',''530k'',''530n'',''530p'',''530g'',''530l'',''530f'',''530h'',''530t'',''530x'',''530z'',''530y'',''530v''');
6967 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 5, NULL, NULL, NULL);
6968 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
6969 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
6970 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
6971 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
6972 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
6973 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
6974 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
6975 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6976 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
6977 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
6978 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
6979 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
6980 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
6981 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6982 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6983 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6984 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6985 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6986 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6987 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6988 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
6989 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
6990 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '548', 'a', 'Chronological term', 'Chronological term', 0, 0, 5, NULL, NULL, '''548y'',''548x'',''548z'',''548v''');
6991 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '548', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 5, NULL, NULL, NULL);
6992 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '548', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
6993 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '548', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
6994 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '548', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
6995 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '548', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
6996 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '548', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
6997 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '548', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
6998 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '548', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
6999 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '548', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7000 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '548', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7001 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 5, NULL, NULL, '''550x'',''550z'',''550y'',''550v''');
7002 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 5, NULL, NULL, NULL);
7003 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7004 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7005 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7006 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7007 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7008 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7009 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7010 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7011 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7012 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7013 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '551', 'a', 'Geographic name', 'Geographic name', 0, 0, 5, NULL, NULL, '''551z'',''551x'',''551y'',''551v''');
7014 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '551', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7015 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '551', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7016 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '551', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7017 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '551', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7018 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '551', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7019 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '551', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7020 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '551', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7021 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '551', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7022 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '551', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7023 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '551', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7024 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '555', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 5, NULL, NULL, '''555v'',''555x'',''555z'',''555y''');
7025 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '555', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7026 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '555', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7027 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '555', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7028 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '555', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7029 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '555', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7030 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '555', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7031 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '555', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7032 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '555', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7033 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '555', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7034 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7035 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '580', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7036 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '580', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7037 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '580', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7038 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '580', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7039 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '580', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7040 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '580', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7041 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '580', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7042 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '580', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7043 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '580', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7044 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7045 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '581', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7046 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '581', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7047 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '581', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7048 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '581', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7049 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '581', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7050 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '581', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7051 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '581', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7052 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '581', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7053 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '581', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7054 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7055 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '582', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7056 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '582', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7057 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '582', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7058 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '582', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7059 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '582', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7060 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '582', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7061 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '582', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7062 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '582', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7063 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '582', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7064 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '582', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7065 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '585', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7066 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '585', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7067 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '585', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7068 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '585', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7069 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '585', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7070 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '585', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7071 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '585', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7072 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '585', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7073 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '585', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7074 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7075 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '663', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7076 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '663', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
7077 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '663', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
7078 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '663', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7079 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '663', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7080 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '664', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7081 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '664', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
7082 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '664', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
7083 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '664', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7084 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '664', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7085 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '665', 'a', 'History reference', 'History reference', 1, 0, 6, NULL, NULL, NULL);
7086 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '665', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7087 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '665', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7088 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '666', 'a', 'General explanatory reference', 'General explanatory reference', 1, 0, 6, NULL, NULL, NULL);
7089 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '666', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7090 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '666', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7091 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '667', 'a', 'Nonpublic general note', 'Nonpublic general note', 0, 0, 6, NULL, NULL, NULL);
7092 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '667', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
7093 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '667', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7094 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '667', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7095 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '670', 'a', 'Source citation', 'Source citation', 0, 0, 6, NULL, NULL, NULL);
7096 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '670', 'b', 'Information found', 'Information found', 0, 0, 6, NULL, NULL, NULL);
7097 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '670', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
7098 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '670', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7099 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '670', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7100 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '675', 'a', 'Source citation', 'Source citation', 1, 0, 6, NULL, NULL, NULL);
7101 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '675', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7102 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '675', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7103 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '678', 'a', 'Biographical or historical data', 'Biographical or historical data', 1, 0, 6, NULL, NULL, NULL);
7104 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '678', 'b', 'Expansion', 'Expansion', 0, 0, 6, NULL, NULL, NULL);
7105 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '678', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
7106 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '678', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7107 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '678', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7108 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '680', 'a', 'Heading or subdivision term', 'Heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
7109 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '680', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7110 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '680', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
7111 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '680', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
7112 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '680', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7113 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '680', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7114 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '681', 'a', 'Subject heading or subdivision term', 'Subject heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
7115 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '681', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7116 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '681', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
7117 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '681', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7118 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '681', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7119 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '682', 'a', 'Replacement heading', 'Replacement heading', 1, 0, 6, NULL, NULL, NULL);
7120 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '682', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7121 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '682', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7122 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '682', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7123 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '683', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 6, NULL, NULL, NULL);
7124 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '683', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 6, NULL, NULL, NULL);
7125 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '683', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7126 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '683', 'p', 'Corresponding classification field', 'Corresponding classification field', 1, 0, 6, NULL, NULL, NULL);
7127 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '683', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 6, NULL, NULL, NULL);
7128 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '683', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
7129 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '683', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
7130 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '683', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7131 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '683', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 6, NULL, NULL, NULL);
7132 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '688', 'a', 'Application history note', 'Application history note', 0, 0, 6, NULL, NULL, NULL);
7133 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '688', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
7134 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '688', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7135 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '688', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7136 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 7, NULL, NULL, NULL);
7137 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, 7, NULL, NULL, NULL);
7138 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', 'c', 'Location of event', 'Location of event', 0, 0, 7, NULL, NULL, NULL);
7139 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', 'd', 'Active date', 'Active date', 0, 0, 7, NULL, NULL, NULL);
7140 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
7141 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
7142 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
7143 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
7144 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
7145 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
7146 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
7147 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
7148 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
7149 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '750', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
7150 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '780', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
7151 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '780', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
7152 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '780', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
7153 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '780', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
7154 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '780', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
7155 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '780', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
7156 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '780', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
7157 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '780', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
7158 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '780', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
7159 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
7160 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '788', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 7, NULL, NULL, NULL);
7161 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '788', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
7162 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '788', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
7163 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '788', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
7164 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '788', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
7165 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '788', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
7166 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '788', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
7167 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'a', 'Host name', 'Host name', 1, 0, 8, NULL, NULL, NULL);
7168 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'b', 'Access number', 'Access number', 1, 0, 8, NULL, NULL, NULL);
7169 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'c', 'Compression information', 'Compression information', 1, 0, 8, NULL, NULL, NULL);
7170 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'd', 'Path', 'Path', 1, 0, 8, NULL, NULL, NULL);
7171 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'f', 'Electronic name', 'Electronic name', 1, 0, 8, NULL, NULL, NULL);
7172 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'h', 'Processor of request', 'Processor of request', 0, 0, 8, NULL, NULL, NULL);
7173 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'i', 'Instruction', 'Instruction', 1, 0, 8, NULL, NULL, NULL);
7174 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'j', 'Bits per second', 'Bits per second', 0, 0, 8, NULL, NULL, NULL);
7175 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'k', 'Password', 'Password', 0, 0, 8, NULL, NULL, NULL);
7176 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'l', 'Logon', 'Logon', 0, 0, 8, NULL, NULL, NULL);
7177 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, 8, NULL, NULL, NULL);
7178 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'n', 'Name of location of host', 'Name of location of host', 0, 0, 8, NULL, NULL, NULL);
7179 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'o', 'Operating system', 'Operating system', 0, 0, 8, NULL, NULL, NULL);
7180 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'p', 'Port', 'Port', 0, 0, 8, NULL, NULL, NULL);
7181 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, 8, NULL, NULL, NULL);
7182 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'r', 'Settings', 'Settings', 0, 0, 8, NULL, NULL, NULL);
7183 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 's', 'File size', 'File size', 1, 0, 8, NULL, NULL, NULL);
7184 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, 8, NULL, NULL, NULL);
7185 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 8, NULL, NULL, NULL);
7186 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, 8, NULL, NULL, NULL);
7187 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'w', 'Record control number', 'Record control number', 1, 0, 8, NULL, NULL, NULL);
7188 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, 8, NULL, NULL, NULL);
7189 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'y', 'Link text', 'Link text', 1, 0, 8, NULL, NULL, NULL);
7190 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', 'z', 'Public note', 'Public note', 1, 0, 8, NULL, NULL, NULL);
7191 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', '2', 'Access method', 'Access method', 0, 0, 8, NULL, NULL, NULL);
7192 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', '3', 'Materials specified', 'Materials specified', 0, 0, 8, NULL, NULL, NULL);
7193 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', '6', 'Linkage', 'Linkage', 0, 0, 8, NULL, NULL, NULL);
7194 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 8, NULL, NULL, NULL);
7195 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'a', 'a', 'a', 1, 0, 8, NULL, NULL, NULL);
7196 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'b', 'b', 'b', 1, 0, 8, NULL, NULL, NULL);
7197 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'c', 'c', 'c', 1, 0, 8, NULL, NULL, NULL);
7198 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'd', 'd', 'd', 1, 0, 8, NULL, NULL, NULL);
7199 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'e', 'e', 'e', 1, 0, 8, NULL, NULL, NULL);
7200 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'f', 'f', 'f', 1, 0, 8, NULL, NULL, NULL);
7201 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'g', 'g', 'g', 1, 0, 8, NULL, NULL, NULL);
7202 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'h', 'h', 'h', 1, 0, 8, NULL, NULL, NULL);
7203 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'i', 'i', 'i', 1, 0, 8, NULL, NULL, NULL);
7204 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'j', 'j', 'j', 1, 0, 8, NULL, NULL, NULL);
7205 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'k', 'k', 'k', 1, 0, 8, NULL, NULL, NULL);
7206 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'l', 'l', 'l', 1, 0, 8, NULL, NULL, NULL);
7207 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'm', 'm', 'm', 1, 0, 8, NULL, NULL, NULL);
7208 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'n', 'n', 'n', 1, 0, 8, NULL, NULL, NULL);
7209 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'o', 'o', 'o', 1, 0, 8, NULL, NULL, NULL);
7210 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'p', 'p', 'p', 1, 0, 8, NULL, NULL, NULL);
7211 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'q', 'q', 'q', 1, 0, 8, NULL, NULL, NULL);
7212 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'r', 'r', 'r', 1, 0, 8, NULL, NULL, NULL);
7213 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 's', 's', 's', 1, 0, 8, NULL, NULL, NULL);
7214 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 't', 't', 't', 1, 0, 8, NULL, NULL, NULL);
7215 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'u', 'u', 'u', 1, 0, 8, NULL, NULL, NULL);
7216 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'v', 'v', 'v', 1, 0, 8, NULL, NULL, NULL);
7217 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'w', 'w', 'w', 1, 0, 8, NULL, NULL, NULL);
7218 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'x', 'x', 'x', 1, 0, 8, NULL, NULL, NULL);
7219 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'y', 'y', 'y', 1, 0, 8, NULL, NULL, NULL);
7220 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', 'z', 'z', 'z', 1, 0, 8, NULL, NULL, NULL);
7221 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', '0', '0', '0', 1, 0, 8, NULL, NULL, NULL);
7222 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', '1', '1', '1', 1, 0, 8, NULL, NULL, NULL);
7223 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', '2', '2', '2', 1, 0, 8, NULL, NULL, NULL);
7224 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', '3', '3', '3', 1, 0, 8, NULL, NULL, NULL);
7225 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', '4', '4', '4', 1, 0, 8, NULL, NULL, NULL);
7226 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', '5', '5', '5', 1, 0, 8, NULL, NULL, NULL);
7227 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', '6', '6', '6', 1, 0, 8, NULL, NULL, NULL);
7228 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', '7', '7', '7', 1, 0, 8, NULL, NULL, NULL);
7229 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', '8', '8', '8', 1, 0, 8, NULL, NULL, NULL);
7230 INSERT INTO `auth_subfield_structure` VALUES ('TOPIC_TERM', '880', '9', '9', '9', 1, 0, 8, NULL, NULL, NULL);
7231
7232
7233 -- ******************************************************
7234
7235
7236
7237 -- *******************************************************************
7238 -- GEOGRAPHIC NAME AUTHORITY FIELDS/SUBFIELDS. 
7239 -- *******************************************************************
7240
7241 -- These ought to be adjusted for different less conflicting and more 
7242 -- rationally chosen fields and subfields but I had left that for last. 
7243
7244 -- ADJUST ME
7245 -- Use values from your dump of auth_tag_structure and auth_subfield_structure 
7246 -- to provide support for your Koha database.
7247
7248
7249 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '000', 'LEADER', 'LEADER', 0, 1, NULL);
7250 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 1, NULL);
7251 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 1, NULL);
7252 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 1, NULL);
7253 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '008', 'FIXED-LENGTH DATA ELEMENTS', 'FIXED-LENGTH DATA ELEMENTS', 0, 1, NULL);
7254 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, NULL);
7255 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '014', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 1, 0, NULL);
7256 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, NULL);
7257 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL);
7258 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL);
7259 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL);
7260 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 1, NULL);
7261 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, NULL);
7262 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL);
7263 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '045', 'TIME PERIOD OF HEADING', 'TIME PERIOD OF HEADING', 0, 0, NULL);
7264 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL);
7265 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL);
7266 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '053', 'LC CLASSIFICATION NUMBER', 'LC CLASSIFICATION NUMBER', 1, 0, NULL);
7267 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '055', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 1, 0, NULL);
7268 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL);
7269 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '065', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL);
7270 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL);
7271 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL);
7272 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL);
7273 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '073', 'SUBDIVISION USAGE', 'SUBDIVISION USAGE', 0, 0, NULL);
7274 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '082', 'DEWEY DECIMAL CALL NUMBER', 'DEWEY DECIMAL CALL NUMBER', 1, 0, NULL);
7275 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '083', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL);
7276 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '086', 'GOVERNMENT DOCUMENT CALL NUMBER', 'GOVERNMENT DOCUMENT CALL NUMBER', 1, 0, NULL);
7277 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '087', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL);
7278 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '090', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, NULL);
7279 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '091', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 0, 0, NULL);
7280 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, NULL);
7281 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '093', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
7282 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, NULL);
7283 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '097', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
7284 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, NULL);
7285 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, NULL);
7286 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '151', 'HEADING--GEOGRAPHIC NAME', 'HEADING--GEOGRAPHIC NAME', 0, 0, NULL);
7287 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '181', 'HEADING--GEOGRAPHIC SUBDIVISION', 'HEADING--GEOGRAPHIC SUBDIVISION', 0, 0, NULL);
7288 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '260', 'COMPLEX SEE REFERENCE--SUBJECT', 'COMPLEX SEE REFERENCE--SUBJECT', 1, 0, NULL);
7289 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '360', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 1, 0, NULL);
7290 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '400', 'SEE FROM TRACING--PERSONAL NAME', 'SEE FROM TRACING--PERSONAL NAME', 1, 0, NULL);
7291 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '410', 'SEE FROM TRACING--CORPORATE NAME', 'SEE FROM TRACING--CORPORATE NAME', 1, 0, NULL);
7292 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '411', 'SEE FROM TRACING--MEETING NAME', 'SEE FROM TRACING--MEETING NAME', 1, 0, NULL);
7293 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '430', 'SEE FROM TRACING--UNIFORM TITLE', 'SEE FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
7294 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '448', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
7295 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '450', 'SEE FROM TRACING--TOPICAL TERM', 'SEE FROM TRACING--TOPICAL TERM', 1, 0, NULL);
7296 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '451', 'SEE FROM TRACING--GEOGRAPHIC NAME', 'SEE FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
7297 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '455', 'SEE FROM TRACING--GENRE/FORM TERM', 'SEE FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
7298 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '480', 'SEE FROM TRACING--GENERAL SUBDIVISION', 'SEE FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
7299 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '481', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
7300 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '482', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
7301 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '485', 'SEE FROM TRACING--FORM SUBDIVISION', 'SEE FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
7302 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '500', 'SEE ALSO FROM TRACING--PERSONAL NAME', 'SEE ALSO FROM TRACING--PERSONAL NAME', 1, 0, NULL);
7303 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '510', 'SEE ALSO FROM TRACING--CORPORATE NAME', 'SEE ALSO FROM TRACING--CORPORATE NAME', 1, 0, NULL);
7304 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '511', 'SEE ALSO FROM TRACING--MEETING NAME', 'SEE ALSO FROM TRACING--MEETING NAME', 1, 0, NULL);
7305 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '530', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
7306 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '548', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
7307 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '550', 'SEE ALSO FROM TRACING--TOPICAL TERM', 'SEE ALSO FROM TRACING--TOPICAL TERM', 1, 0, NULL);
7308 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '551', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
7309 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '555', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
7310 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '580', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
7311 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '581', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
7312 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '582', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
7313 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '585', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
7314 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '663', 'COMPLEX SEE ALSO REFERENCE--NAME', 'COMPLEX SEE ALSO REFERENCE--NAME', 0, 0, NULL);
7315 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '664', 'COMPLEX SEE REFERENCE--NAME', 'COMPLEX SEE REFERENCE--NAME', 0, 0, NULL);
7316 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '665', 'HISTORY REFERENCE', 'HISTORY REFERENCE', 0, 0, NULL);
7317 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '666', 'GENERAL EXPLANATORY REFERENCE--NAME', 'GENERAL EXPLANATORY REFERENCE--NAME', 0, 0, NULL);
7318 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '667', 'NONPUBLIC GENERAL NOTE', 'NONPUBLIC GENERAL NOTE', 1, 0, NULL);
7319 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '670', 'SOURCE DATA FOUND', 'SOURCE DATA FOUND', 1, 0, NULL);
7320 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '675', 'SOURCE DATA NOT FOUND', 'SOURCE DATA NOT FOUND', 0, 0, NULL);
7321 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '678', 'BIOGRAPHICAL OR HISTORICAL DATA', 'BIOGRAPHICAL OR HISTORICAL DATA', 1, 0, NULL);
7322 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '680', 'PUBLIC GENERAL NOTE', 'PUBLIC GENERAL NOTE', 1, 0, NULL);
7323 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '681', 'SUBJECT EXAMPLE TRACING NOTE', 'SUBJECT EXAMPLE TRACING NOTE', 1, 0, NULL);
7324 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '682', 'DELETED HEADING INFORMATION', 'DELETED HEADING INFORMATION', 0, 0, NULL);
7325 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '683', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
7326 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '688', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
7327 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '751', 'ESTABLISHED HEADING LINKING ENTRY--GEOGRAPHIC NAME', 'ESTABLISHED HEADING LINKING ENTRY--GEOGRAPHIC NAME', 1, 0, NULL);
7328 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '781', 'SUBDIVISION LINKING ENTRY--GEOGRAPHIC SUBDIVISION', 'SUBDIVISION LINKING ENTRY--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
7329 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '788', 'COMPLEX LINKING ENTRY DATA', 'COMPLEX LINKING ENTRY DATA', 0, 0, NULL);
7330 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL);
7331 INSERT INTO `auth_tag_structure` VALUES ('GEOGR_NAME', '880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL);
7332
7333
7334 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '000', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
7335 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '001', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
7336 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '003', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
7337 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '005', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
7338 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '008', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
7339 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '010', 'a', 'LC control number', 'LC control number', 0, 0, 0, NULL, NULL, NULL);
7340 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, 0, NULL, NULL, NULL);
7341 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7342 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '014', 'a', 'Control number of related bibliographic record', 'Control number of related bibliographic record', 0, 0, 0, NULL, NULL, NULL);
7343 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '014', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7344 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '014', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7345 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '016', 'a', 'Record control number', 'Record control number', 0, 0, 0, NULL, NULL, NULL);
7346 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '016', 'z', 'Canceled/invalid record control number', 'Canceled/invalid record control number', 1, 0, 0, NULL, NULL, NULL);
7347 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '016', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
7348 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7349 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, 0, NULL, NULL, NULL);
7350 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
7351 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, 0, NULL, NULL, NULL);
7352 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, 0, NULL, NULL, NULL);
7353 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '024', '2', 'Source of number or code', 'Source of number or code', 0, 0, 0, NULL, NULL, NULL);
7354 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '024', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7355 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7356 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, 0, NULL, NULL, NULL);
7357 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, 0, NULL, NULL, NULL);
7358 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, 0, NULL, NULL, NULL);
7359 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, 0, NULL, NULL, NULL);
7360 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, 0, NULL, NULL, NULL);
7361 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, 0, NULL, NULL, NULL);
7362 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, 0, NULL, NULL, NULL);
7363 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, 0, NULL, NULL, NULL);
7364 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'p', 'Equinox', 'Equinox', 0, 0, 0, NULL, NULL, NULL);
7365 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'r', 'Distance from earth', 'Distance from earth', 1, 0, 0, NULL, NULL, NULL);
7366 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, 0, NULL, NULL, NULL);
7367 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, 0, NULL, NULL, NULL);
7368 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'x', 'Beginning date', 'Beginning date', 0, 0, 0, NULL, NULL, NULL);
7369 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'y', 'Ending date', 'Ending date', 0, 0, 0, NULL, NULL, NULL);
7370 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', 'z', 'Name of extraterrestrial body', 'Name of extraterrestrial body', 0, 0, 0, NULL, NULL, NULL);
7371 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
7372 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7373 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7374 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '035', 'a', 'System control number', 'System control number', 0, 0, 0, NULL, NULL, NULL);
7375 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, 0, NULL, NULL, NULL);
7376 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '035', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7377 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7378 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 1, 0, NULL, NULL, NULL);
7379 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, 0, NULL, NULL, NULL);
7380 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, 0, NULL, NULL, NULL);
7381 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, 0, NULL, NULL, NULL);
7382 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '040', 'e', 'Description conventions', 'Description conventions', 0, 0, 0, NULL, NULL, NULL);
7383 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '040', 'f', 'Subject heading or thesaurus conventions', 'Subject heading or thesaurus conventions', 0, 0, 0, NULL, NULL, NULL);
7384 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '040', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7385 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7386 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '042', 'a', 'Authentication code', 'Authentication code', 1, 0, 0, NULL, NULL, NULL);
7387 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, 0, NULL, NULL, NULL);
7388 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, 0, NULL, NULL, NULL);
7389 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '043', 'c', 'ISO code', 'ISO code', 1, 0, 0, NULL, NULL, NULL);
7390 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '043', '2', 'Source of local code', 'Source of local code', 1, 0, 0, NULL, NULL, NULL);
7391 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '043', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7392 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7393 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '045', 'a', 'Time period code', 'Time period code', 1, 0, 0, NULL, NULL, NULL);
7394 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 0, 0, 0, NULL, NULL, NULL);
7395 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, 0, NULL, NULL, NULL);
7396 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '045', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7397 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7398 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '050', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
7399 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '050', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
7400 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '050', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
7401 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '050', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7402 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '050', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7403 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7404 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, 0, NULL, NULL, NULL);
7405 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, 0, NULL, NULL, NULL);
7406 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '052', 'd', 'Populated place name', 'Populated place name', 1, 0, 0, NULL, NULL, NULL);
7407 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '052', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
7408 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '052', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7409 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7410 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '053', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
7411 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '053', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 1, 0, 0, NULL, NULL, NULL);
7412 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '053', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
7413 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '053', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7414 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '053', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7415 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '053', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7416 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '055', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
7417 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '055', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
7418 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '055', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
7419 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '055', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7420 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '055', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7421 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7422 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '060', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
7423 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '060', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
7424 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '060', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
7425 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '060', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7426 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '060', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7427 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7428 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '065', 'a', 'Classification number element--single number or beginning of span', 'Classification number element--single number or beginning of span', 0, 0, 0, NULL, NULL, NULL);
7429 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '065', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
7430 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '065', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
7431 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '065', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
7432 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '065', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7433 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '065', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7434 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '065', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7435 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, 0, NULL, NULL, NULL);
7436 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, 0, NULL, NULL, NULL);
7437 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, 0, NULL, NULL, NULL);
7438 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '070', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
7439 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '070', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
7440 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '070', 'd', 'Volume/dates to which call number applies', 'Volume/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
7441 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '070', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7442 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7443 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '072', 'a', 'Subject category code', 'Subject category code', 0, 0, 0, NULL, NULL, NULL);
7444 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, 0, NULL, NULL, NULL);
7445 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '072', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
7446 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '072', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7447 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7448 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '073', 'a', 'Subdivision usage', 'Subdivision usage', 1, 0, 0, NULL, NULL, NULL);
7449 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '073', 'z', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
7450 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '073', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7451 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '073', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7452 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '082', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
7453 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '082', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
7454 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '082', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
7455 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '082', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
7456 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '082', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7457 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '082', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7458 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7459 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '083', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
7460 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '083', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
7461 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '083', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
7462 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '083', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
7463 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '083', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
7464 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '083', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7465 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '083', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7466 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '083', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7467 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '086', 'a', 'Call number', 'Call number', 0, 0, 0, NULL, NULL, NULL);
7468 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '086', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
7469 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '086', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
7470 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '086', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
7471 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '086', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7472 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '086', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7473 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7474 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '087', 'a', 'Classification number element--Single number or beginning number of span', 'Classification number element--Single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
7475 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '087', 'b', 'Classification number element--Ending number of span', 'Classification number element--Ending number of span', 0, 0, 0, NULL, NULL, NULL);
7476 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '087', 'c', 'Explanatory information', 'Explanatory information', 0, 0, 0, NULL, NULL, NULL);
7477 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '087', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
7478 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '087', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7479 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '087', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7480 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'a', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, 0, NULL, NULL, NULL);
7481 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'b', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
7482 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
7483 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, 0, NULL, NULL, NULL);
7484 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'f', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
7485 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, 0, NULL, NULL, NULL);
7486 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, 0, NULL, NULL, NULL);
7487 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
7488 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
7489 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, 0, NULL, NULL, NULL);
7490 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, 0, NULL, NULL, NULL);
7491 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
7492 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
7493 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
7494 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
7495 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7496 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7497 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '090', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7498 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '091', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
7499 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '091', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
7500 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '091', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
7501 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '091', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
7502 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '091', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
7503 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '091', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7504 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '091', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7505 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '091', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7506 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '092', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
7507 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '092', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
7508 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '092', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
7509 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '092', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
7510 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
7511 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '092', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
7512 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '092', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7513 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '092', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7514 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '092', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7515 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '093', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
7516 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '093', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
7517 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '093', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
7518 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '093', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
7519 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '093', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
7520 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '093', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7521 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '093', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7522 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '093', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7523 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '096', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
7524 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '096', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
7525 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '096', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
7526 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '096', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
7527 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
7528 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '096', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
7529 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '096', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7530 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '096', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7531 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '096', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7532 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '097', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
7533 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '097', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
7534 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '097', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
7535 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '097', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
7536 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '097', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
7537 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '097', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7538 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '097', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7539 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '097', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7540 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, 0, NULL, NULL, NULL);
7541 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '098', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
7542 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '098', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
7543 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '098', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
7544 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
7545 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '098', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
7546 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '098', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7547 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '098', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7548 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '098', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7549 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '099', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
7550 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '099', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
7551 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '099', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
7552 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '099', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
7553 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
7554 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '099', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
7555 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '099', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
7556 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '099', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
7557 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '099', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
7558 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '151', 'a', 'Geographic name', 'Geographic name', 0, 0, 1, NULL, NULL, '''151z'',''151x'',''151y'',''151v''');
7559 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '151', 'b', 'Name following place as an entry element {OBSOLETE]', 'Name following place as an entry element {OBSOLETE]', 0, 0, 1, NULL, NULL, NULL);
7560 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '151', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
7561 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '151', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
7562 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '151', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
7563 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '151', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
7564 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '151', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
7565 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '151', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
7566 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '181', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
7567 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '181', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
7568 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '181', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
7569 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '181', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
7570 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '181', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
7571 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '181', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
7572 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '260', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 2, NULL, NULL, NULL);
7573 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '260', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 2, NULL, NULL, NULL);
7574 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '260', '6', 'Linkage', 'Linkage', 0, 0, 2, NULL, NULL, NULL);
7575 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 2, NULL, NULL, NULL);
7576 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '360', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 3, NULL, NULL, NULL);
7577 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '360', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 3, NULL, NULL, NULL);
7578 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '360', '6', 'Linkage', 'Linkage', 0, 0, 3, NULL, NULL, NULL);
7579 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '360', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 3, NULL, NULL, NULL);
7580 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'a', 'Personal name', 'Personal name', 0, 0, 4, NULL, NULL, '''400b'',''400c'',''400q'',''400d'',''400t'',''400o'',''400m'',''400r'',''400s'',''400k'',''400n'',''400p'',''400g'',''400l'',''400f'',''400h'',''400x'',''400z'',''400y'',''400v''');
7581 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'b', 'Numeration', 'Numeration', 0, 0, 4, NULL, NULL, NULL);
7582 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 4, NULL, NULL, NULL);
7583 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 4, NULL, NULL, NULL);
7584 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
7585 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
7586 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
7587 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
7588 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
7589 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 4, NULL, NULL, NULL);
7590 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
7591 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
7592 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
7593 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
7594 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
7595 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
7596 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 4, NULL, NULL, NULL);
7597 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
7598 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
7599 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
7600 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7601 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7602 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7603 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7604 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7605 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7606 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7607 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7608 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''410b'',''410c'',''410d'',''410t'',''410o'',''410m'',''410r'',''410s'',''410k'',''410n'',''410p'',''410g'',''410l'',''410f'',''410h'',''410x'',''410z'',''410y'',''410v''');
7609 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
7610 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
7611 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 4, NULL, NULL, NULL);
7612 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
7613 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
7614 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
7615 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
7616 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
7617 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
7618 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
7619 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
7620 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
7621 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
7622 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
7623 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
7624 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
7625 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
7626 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7627 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7628 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7629 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7630 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7631 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7632 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7633 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7634 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''411e'',''411c'',''411d'',''411t'',''411s'',''411k'',''411n'',''411p'',''411g'',''411l'',''411f'',''411h'',''411x'',''411z'',''411y'',''411v''');
7635 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'b', 'Number {OBSOLETE]', 'Number {OBSOLETE]', 0, 0, 4, NULL, NULL, NULL);
7636 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
7637 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 4, NULL, NULL, NULL);
7638 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
7639 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
7640 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
7641 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
7642 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
7643 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
7644 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
7645 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
7646 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
7647 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 4, NULL, NULL, NULL);
7648 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
7649 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
7650 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7651 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7652 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7653 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7654 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7655 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7656 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7657 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7658 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'a', 'Uniform title', 'Uniform title', 0, 0, 4, NULL, NULL, '''430o'',''430m'',''430r'',''430s'',''430d'',''430k'',''430n'',''430p'',''430g'',''430l'',''430f'',''430h'',''430t'',''430x'',''430z'',''430y'',''430v''');
7659 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 4, NULL, NULL, NULL);
7660 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
7661 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
7662 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
7663 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
7664 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
7665 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
7666 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
7667 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
7668 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
7669 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
7670 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
7671 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
7672 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
7673 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7674 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7675 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7676 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7677 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7678 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7679 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7680 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '430', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7681 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '448', 'a', 'Chronological term', 'Chronological term', 0, 0, 4, NULL, NULL, '''448y'',''448x'',''448z'',''448v''');
7682 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '448', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 4, NULL, NULL, NULL);
7683 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '448', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7684 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '448', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7685 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '448', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7686 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '448', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7687 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '448', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7688 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '448', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7689 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '448', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7690 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '448', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7691 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '450', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 4, NULL, NULL, '''450x'',''450z'',''450y'',''450v''');
7692 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '450', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 4, NULL, NULL, NULL);
7693 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '450', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
7694 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '450', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7695 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '450', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7696 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '450', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7697 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '450', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7698 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '450', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7699 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '450', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7700 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '450', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7701 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '450', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7702 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '451', 'a', 'Geographic name', 'Geographic name', 0, 0, 4, NULL, NULL, '''451z'',''451x'',''451y'',''451v''');
7703 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '451', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
7704 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '451', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7705 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '451', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7706 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '451', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7707 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '451', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7708 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '451', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7709 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '451', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7710 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '451', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7711 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '451', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7712 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '455', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 4, NULL, NULL, '''455v'',''455x'',''455z'',''455y''');
7713 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '455', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
7714 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '455', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7715 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '455', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7716 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '455', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7717 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '455', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7718 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '455', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7719 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '455', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7720 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '455', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7721 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '455', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7722 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '480', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
7723 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '480', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7724 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '480', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7725 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '480', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7726 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '480', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7727 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '480', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7728 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '480', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7729 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '480', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7730 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '480', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7731 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '481', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
7732 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '481', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7733 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '481', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7734 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '481', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7735 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '481', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7736 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '481', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7737 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '481', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7738 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '481', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7739 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '481', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7740 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '482', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
7741 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '482', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7742 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '482', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7743 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '482', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7744 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '482', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7745 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '482', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7746 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '482', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7747 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '482', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7748 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '482', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7749 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '485', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
7750 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '485', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
7751 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '485', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
7752 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '485', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
7753 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '485', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
7754 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '485', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
7755 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '485', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
7756 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '485', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
7757 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '485', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
7758 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'a', 'Personal name', 'Personal name', 0, 0, 5, NULL, NULL, '''500b'',''500c'',''500q'',''500d'',''500t'',''500o'',''500m'',''500r'',''500s'',''500k'',''500n'',''500p'',''500g'',''500l'',''500f'',''500h'',''500x'',''500z'',''500y'',''500v''');
7759 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'b', 'Numeration', 'Numeration', 0, 0, 5, NULL, NULL, NULL);
7760 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 5, NULL, NULL, NULL);
7761 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 5, NULL, NULL, NULL);
7762 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
7763 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
7764 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
7765 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
7766 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7767 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 5, NULL, NULL, NULL);
7768 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
7769 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
7770 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
7771 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
7772 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
7773 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
7774 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 5, NULL, NULL, NULL);
7775 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
7776 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
7777 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
7778 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7779 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7780 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7781 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7782 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7783 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7784 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7785 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7786 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7787 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''510b'',''510c'',''510d'',''510t'',''510o'',''510m'',''510r'',''510s'',''510k'',''510n'',''510p'',''510g'',''510l'',''510f'',''510h'',''510x'',''510z'',''510y'',''510v''');
7788 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
7789 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
7790 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 5, NULL, NULL, NULL);
7791 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
7792 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
7793 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
7794 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
7795 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7796 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
7797 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
7798 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
7799 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
7800 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
7801 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
7802 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
7803 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
7804 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
7805 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7806 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7807 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7808 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7809 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7810 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7811 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7812 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7813 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7814 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''511e'',''511c'',''511d'',''511t'',''511s'',''511k'',''511n'',''511p'',''511g'',''511l'',''511f'',''511h'',''511x'',''511z'',''511y'',''511v''');
7815 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
7816 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 5, NULL, NULL, NULL);
7817 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
7818 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
7819 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
7820 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
7821 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7822 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
7823 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
7824 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
7825 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
7826 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 5, NULL, NULL, NULL);
7827 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
7828 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
7829 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7830 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7831 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7832 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7833 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7834 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7835 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7836 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7837 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7838 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'a', 'Uniform title', 'Uniform title', 0, 0, 5, NULL, NULL, '''530o'',''530m'',''530r'',''530s'',''530d'',''530k'',''530n'',''530p'',''530g'',''530l'',''530f'',''530h'',''530t'',''530x'',''530z'',''530y'',''530v''');
7839 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 5, NULL, NULL, NULL);
7840 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
7841 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
7842 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
7843 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7844 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
7845 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
7846 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
7847 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
7848 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
7849 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
7850 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
7851 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
7852 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
7853 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7854 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7855 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7856 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7857 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7858 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7859 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7860 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7861 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7862 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '548', 'a', 'Chronological term', 'Chronological term', 0, 0, 5, NULL, NULL, '''548y'',''548x'',''548z'',''548v''');
7863 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '548', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 5, NULL, NULL, NULL);
7864 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '548', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7865 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '548', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7866 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '548', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7867 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '548', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7868 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '548', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7869 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '548', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7870 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '548', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7871 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '548', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7872 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '548', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7873 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 5, NULL, NULL, '''550x'',''550z'',''550y'',''550v''');
7874 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 5, NULL, NULL, NULL);
7875 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7876 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7877 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7878 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7879 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7880 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7881 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7882 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7883 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7884 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7885 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '551', 'a', 'Geographic name', 'Geographic name', 0, 0, 5, NULL, NULL, '''551z'',''551x'',''551y'',''551v''');
7886 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '551', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7887 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '551', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7888 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '551', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7889 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '551', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7890 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '551', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7891 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '551', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7892 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '551', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7893 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '551', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7894 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '551', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7895 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '551', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7896 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '555', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 5, NULL, NULL, '''555v'',''555x'',''555z'',''555y''');
7897 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '555', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7898 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '555', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7899 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '555', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7900 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '555', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7901 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '555', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7902 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '555', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7903 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '555', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7904 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '555', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7905 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '555', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7906 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7907 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '580', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7908 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '580', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7909 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '580', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7910 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '580', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7911 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '580', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7912 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '580', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7913 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '580', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7914 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '580', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7915 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '580', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7916 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7917 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '581', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7918 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '581', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7919 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '581', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7920 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '581', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7921 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '581', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7922 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '581', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7923 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '581', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7924 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '581', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7925 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '581', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7926 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7927 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '582', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7928 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '582', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7929 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '582', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7930 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '582', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7931 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '582', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7932 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '582', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7933 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '582', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7934 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '582', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7935 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '582', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7936 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '582', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7937 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '585', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
7938 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '585', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
7939 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '585', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
7940 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '585', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
7941 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '585', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
7942 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '585', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
7943 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '585', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
7944 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '585', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
7945 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '585', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
7946 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
7947 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '663', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7948 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '663', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
7949 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '663', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
7950 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '663', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7951 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '663', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7952 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '664', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7953 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '664', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
7954 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '664', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
7955 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '664', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7956 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '664', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7957 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '665', 'a', 'History reference', 'History reference', 1, 0, 6, NULL, NULL, NULL);
7958 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '665', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7959 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '665', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7960 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '666', 'a', 'General explanatory reference', 'General explanatory reference', 1, 0, 6, NULL, NULL, NULL);
7961 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '666', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7962 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '666', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7963 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '667', 'a', 'Nonpublic general note', 'Nonpublic general note', 0, 0, 6, NULL, NULL, NULL);
7964 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '667', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
7965 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '667', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7966 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '667', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7967 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '670', 'a', 'Source citation', 'Source citation', 0, 0, 6, NULL, NULL, NULL);
7968 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '670', 'b', 'Information found', 'Information found', 0, 0, 6, NULL, NULL, NULL);
7969 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '670', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
7970 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '670', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7971 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '670', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7972 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '675', 'a', 'Source citation', 'Source citation', 1, 0, 6, NULL, NULL, NULL);
7973 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '675', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7974 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '675', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7975 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '678', 'a', 'Biographical or historical data', 'Biographical or historical data', 1, 0, 6, NULL, NULL, NULL);
7976 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '678', 'b', 'Expansion', 'Expansion', 0, 0, 6, NULL, NULL, NULL);
7977 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '678', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
7978 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '678', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7979 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '678', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7980 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '680', 'a', 'Heading or subdivision term', 'Heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
7981 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '680', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7982 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '680', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
7983 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '680', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
7984 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '680', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7985 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '680', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7986 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '681', 'a', 'Subject heading or subdivision term', 'Subject heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
7987 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '681', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7988 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '681', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
7989 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '681', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7990 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '681', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7991 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '682', 'a', 'Replacement heading', 'Replacement heading', 1, 0, 6, NULL, NULL, NULL);
7992 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '682', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7993 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '682', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
7994 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '682', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
7995 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '683', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 6, NULL, NULL, NULL);
7996 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '683', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 6, NULL, NULL, NULL);
7997 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '683', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
7998 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '683', 'p', 'Corresponding classification field', 'Corresponding classification field', 1, 0, 6, NULL, NULL, NULL);
7999 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '683', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 6, NULL, NULL, NULL);
8000 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '683', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
8001 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '683', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
8002 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '683', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8003 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '683', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 6, NULL, NULL, NULL);
8004 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '688', 'a', 'Application history note', 'Application history note', 0, 0, 6, NULL, NULL, NULL);
8005 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '688', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
8006 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '688', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8007 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '688', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8008 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', 'a', 'Geographic name', 'Geographic name', 0, 0, 7, NULL, NULL, NULL);
8009 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
8010 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
8011 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
8012 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
8013 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
8014 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
8015 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
8016 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
8017 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
8018 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
8019 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '751', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
8020 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '781', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
8021 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '781', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
8022 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '781', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
8023 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '781', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
8024 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '781', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
8025 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '781', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
8026 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '781', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
8027 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '781', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
8028 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '781', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
8029 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '781', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
8030 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '788', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 7, NULL, NULL, NULL);
8031 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '788', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
8032 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '788', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
8033 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '788', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
8034 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '788', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
8035 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '788', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
8036 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '788', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
8037 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'a', 'Host name', 'Host name', 1, 0, 8, NULL, NULL, NULL);
8038 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'b', 'Access number', 'Access number', 1, 0, 8, NULL, NULL, NULL);
8039 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'c', 'Compression information', 'Compression information', 1, 0, 8, NULL, NULL, NULL);
8040 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'd', 'Path', 'Path', 1, 0, 8, NULL, NULL, NULL);
8041 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'f', 'Electronic name', 'Electronic name', 1, 0, 8, NULL, NULL, NULL);
8042 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'h', 'Processor of request', 'Processor of request', 0, 0, 8, NULL, NULL, NULL);
8043 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'i', 'Instruction', 'Instruction', 1, 0, 8, NULL, NULL, NULL);
8044 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'j', 'Bits per second', 'Bits per second', 0, 0, 8, NULL, NULL, NULL);
8045 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'k', 'Password', 'Password', 0, 0, 8, NULL, NULL, NULL);
8046 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'l', 'Logon', 'Logon', 0, 0, 8, NULL, NULL, NULL);
8047 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, 8, NULL, NULL, NULL);
8048 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'n', 'Name of location of host', 'Name of location of host', 0, 0, 8, NULL, NULL, NULL);
8049 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'o', 'Operating system', 'Operating system', 0, 0, 8, NULL, NULL, NULL);
8050 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'p', 'Port', 'Port', 0, 0, 8, NULL, NULL, NULL);
8051 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, 8, NULL, NULL, NULL);
8052 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'r', 'Settings', 'Settings', 0, 0, 8, NULL, NULL, NULL);
8053 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 's', 'File size', 'File size', 1, 0, 8, NULL, NULL, NULL);
8054 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, 8, NULL, NULL, NULL);
8055 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 8, NULL, NULL, NULL);
8056 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, 8, NULL, NULL, NULL);
8057 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'w', 'Record control number', 'Record control number', 1, 0, 8, NULL, NULL, NULL);
8058 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, 8, NULL, NULL, NULL);
8059 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'y', 'Link text', 'Link text', 1, 0, 8, NULL, NULL, NULL);
8060 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', 'z', 'Public note', 'Public note', 1, 0, 8, NULL, NULL, NULL);
8061 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', '2', 'Access method', 'Access method', 0, 0, 8, NULL, NULL, NULL);
8062 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', '3', 'Materials specified', 'Materials specified', 0, 0, 8, NULL, NULL, NULL);
8063 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', '6', 'Linkage', 'Linkage', 0, 0, 8, NULL, NULL, NULL);
8064 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 8, NULL, NULL, NULL);
8065 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'a', 'a', 'a', 1, 0, 8, NULL, NULL, NULL);
8066 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'b', 'b', 'b', 1, 0, 8, NULL, NULL, NULL);
8067 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'c', 'c', 'c', 1, 0, 8, NULL, NULL, NULL);
8068 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'd', 'd', 'd', 1, 0, 8, NULL, NULL, NULL);
8069 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'e', 'e', 'e', 1, 0, 8, NULL, NULL, NULL);
8070 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'f', 'f', 'f', 1, 0, 8, NULL, NULL, NULL);
8071 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'g', 'g', 'g', 1, 0, 8, NULL, NULL, NULL);
8072 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'h', 'h', 'h', 1, 0, 8, NULL, NULL, NULL);
8073 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'i', 'i', 'i', 1, 0, 8, NULL, NULL, NULL);
8074 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'j', 'j', 'j', 1, 0, 8, NULL, NULL, NULL);
8075 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'k', 'k', 'k', 1, 0, 8, NULL, NULL, NULL);
8076 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'l', 'l', 'l', 1, 0, 8, NULL, NULL, NULL);
8077 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'm', 'm', 'm', 1, 0, 8, NULL, NULL, NULL);
8078 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'n', 'n', 'n', 1, 0, 8, NULL, NULL, NULL);
8079 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'o', 'o', 'o', 1, 0, 8, NULL, NULL, NULL);
8080 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'p', 'p', 'p', 1, 0, 8, NULL, NULL, NULL);
8081 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'q', 'q', 'q', 1, 0, 8, NULL, NULL, NULL);
8082 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'r', 'r', 'r', 1, 0, 8, NULL, NULL, NULL);
8083 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 's', 's', 's', 1, 0, 8, NULL, NULL, NULL);
8084 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 't', 't', 't', 1, 0, 8, NULL, NULL, NULL);
8085 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'u', 'u', 'u', 1, 0, 8, NULL, NULL, NULL);
8086 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'v', 'v', 'v', 1, 0, 8, NULL, NULL, NULL);
8087 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'w', 'w', 'w', 1, 0, 8, NULL, NULL, NULL);
8088 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'x', 'x', 'x', 1, 0, 8, NULL, NULL, NULL);
8089 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'y', 'y', 'y', 1, 0, 8, NULL, NULL, NULL);
8090 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', 'z', 'z', 'z', 1, 0, 8, NULL, NULL, NULL);
8091 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', '0', '0', '0', 1, 0, 8, NULL, NULL, NULL);
8092 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', '1', '1', '1', 1, 0, 8, NULL, NULL, NULL);
8093 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', '2', '2', '2', 1, 0, 8, NULL, NULL, NULL);
8094 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', '3', '3', '3', 1, 0, 8, NULL, NULL, NULL);
8095 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', '4', '4', '4', 1, 0, 8, NULL, NULL, NULL);
8096 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', '5', '5', '5', 1, 0, 8, NULL, NULL, NULL);
8097 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', '6', '6', '6', 1, 0, 8, NULL, NULL, NULL);
8098 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', '7', '7', '7', 1, 0, 8, NULL, NULL, NULL);
8099 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', '8', '8', '8', 1, 0, 8, NULL, NULL, NULL);
8100 INSERT INTO `auth_subfield_structure` VALUES ('GEOGR_NAME', '880', '9', '9', '9', 1, 0, 8, NULL, NULL, NULL);
8101
8102
8103 -- ******************************************************
8104
8105
8106
8107 -- *******************************************************************
8108 -- GENRE/FORM TERM AUTHORITY FIELDS/SUBFIELDS. 
8109 -- *******************************************************************
8110
8111 -- These ought to be adjusted for different less conflicting and more 
8112 -- rationally chosen fields and subfields but I had left that for last. 
8113
8114 -- ADJUST ME
8115 -- Use values from your dump of auth_tag_structure and auth_subfield_structure 
8116 -- to provide support for your Koha database.
8117
8118
8119 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '000', 'LEADER', 'LEADER', 0, 1, NULL);
8120 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 1, NULL);
8121 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 1, NULL);
8122 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 1, NULL);
8123 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '008', 'FIXED-LENGTH DATA ELEMENTS', 'FIXED-LENGTH DATA ELEMENTS', 0, 1, NULL);
8124 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, NULL);
8125 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '014', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 'LINK TO BIBLIOGRAPHIC RECORD FOR SERIAL OR MULTIPART ITEM', 1, 0, NULL);
8126 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, NULL);
8127 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL);
8128 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL);
8129 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 1, NULL);
8130 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, NULL);
8131 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL);
8132 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '045', 'TIME PERIOD OF HEADING', 'TIME PERIOD OF HEADING', 0, 0, NULL);
8133 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL);
8134 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL);
8135 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '053', 'LC CLASSIFICATION NUMBER', 'LC CLASSIFICATION NUMBER', 1, 0, NULL);
8136 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '055', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 'NATIONAL LIBRARY AND ARCHIVE OF CANADA CALL NUMBER', 1, 0, NULL);
8137 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL);
8138 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '065', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL);
8139 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL);
8140 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL);
8141 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL);
8142 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '073', 'SUBDIVISION USAGE', 'SUBDIVISION USAGE', 0, 0, NULL);
8143 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '082', 'DEWEY DECIMAL CALL NUMBER', 'DEWEY DECIMAL CALL NUMBER', 1, 0, NULL);
8144 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '083', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL);
8145 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '086', 'GOVERNMENT DOCUMENT CALL NUMBER', 'GOVERNMENT DOCUMENT CALL NUMBER', 1, 0, NULL);
8146 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '087', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL);
8147 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '090', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCAL CALL NUMBER (SERIES) [OBSOLETE]; LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, NULL);
8148 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '091', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CLASSIFICATION NUMBER (OCLC); LOCAL CLASSIFICATION NUMBER (RLIN)', 0, 0, NULL);
8149 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, NULL);
8150 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '093', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
8151 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, NULL);
8152 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '097', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CLASSIFICATION NUMBER (OCLC)', 1, 0, NULL);
8153 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, NULL);
8154 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, NULL);
8155 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '155', 'HEADING--GENRE/FORM TERM', 'HEADING--GENRE/FORM TERM', 0, 0, NULL);
8156 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '185', 'HEADING--FORM SUBDIVISION', 'HEADING--FORM SUBDIVISION', 0, 0, NULL);
8157 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '260', 'COMPLEX SEE REFERENCE--SUBJECT', 'COMPLEX SEE REFERENCE--SUBJECT', 1, 0, NULL);
8158 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '360', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 'COMPLEX SEE ALSO REFERENCE--SUBJECT', 1, 0, NULL);
8159 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '400', 'SEE FROM TRACING--PERSONAL NAME', 'SEE FROM TRACING--PERSONAL NAME', 1, 0, NULL);
8160 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '410', 'SEE FROM TRACING--CORPORATE NAME', 'SEE FROM TRACING--CORPORATE NAME', 1, 0, NULL);
8161 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '411', 'SEE FROM TRACING--MEETING NAME', 'SEE FROM TRACING--MEETING NAME', 1, 0, NULL);
8162 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '430', 'SEE FROM TRACING--UNIFORM TITLE', 'SEE FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
8163 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '448', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 'SEE FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
8164 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '450', 'SEE FROM TRACING--TOPICAL TERM', 'SEE FROM TRACING--TOPICAL TERM', 1, 0, NULL);
8165 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '451', 'SEE FROM TRACING--GEOGRAPHIC NAME', 'SEE FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
8166 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '455', 'SEE FROM TRACING--GENRE/FORM TERM', 'SEE FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
8167 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '480', 'SEE FROM TRACING--GENERAL SUBDIVISION', 'SEE FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
8168 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '481', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
8169 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '482', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
8170 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '485', 'SEE FROM TRACING--FORM SUBDIVISION', 'SEE FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
8171 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '500', 'SEE ALSO FROM TRACING--PERSONAL NAME', 'SEE ALSO FROM TRACING--PERSONAL NAME', 1, 0, NULL);
8172 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '510', 'SEE ALSO FROM TRACING--CORPORATE NAME', 'SEE ALSO FROM TRACING--CORPORATE NAME', 1, 0, NULL);
8173 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '511', 'SEE ALSO FROM TRACING--MEETING NAME', 'SEE ALSO FROM TRACING--MEETING NAME', 1, 0, NULL);
8174 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '530', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 'SEE ALSO FROM TRACING--UNIFORM TITLE', 1, 0, NULL);
8175 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '548', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 'SEE ALSO FROM TRACING--CHRONOLOGICAL TERM', 1, 0, NULL);
8176 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '550', 'SEE ALSO FROM TRACING--TOPICAL TERM', 'SEE ALSO FROM TRACING--TOPICAL TERM', 1, 0, NULL);
8177 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '551', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 'SEE ALSO FROM TRACING--GEOGRAPHIC NAME', 1, 0, NULL);
8178 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '555', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 'SEE ALSO FROM TRACING--GENRE/FORM TERM', 1, 0, NULL);
8179 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '580', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 'SEE ALSO FROM TRACING--GENERAL SUBDIVISION', 1, 0, NULL);
8180 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '581', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 'SEE ALSO FROM TRACING--GEOGRAPHIC SUBDIVISION', 1, 0, NULL);
8181 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '582', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 'SEE ALSO FROM TRACING--CHRONOLOGICAL SUBDIVISION', 1, 0, NULL);
8182 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '585', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 'SEE ALSO FROM TRACING--FORM SUBDIVISION', 1, 0, NULL);
8183 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '663', 'COMPLEX SEE ALSO REFERENCE--NAME', 'COMPLEX SEE ALSO REFERENCE--NAME', 0, 0, NULL);
8184 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '664', 'COMPLEX SEE REFERENCE--NAME', 'COMPLEX SEE REFERENCE--NAME', 0, 0, NULL);
8185 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '665', 'HISTORY REFERENCE', 'HISTORY REFERENCE', 0, 0, NULL);
8186 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '666', 'GENERAL EXPLANATORY REFERENCE--NAME', 'GENERAL EXPLANATORY REFERENCE--NAME', 0, 0, NULL);
8187 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '667', 'NONPUBLIC GENERAL NOTE', 'NONPUBLIC GENERAL NOTE', 1, 0, NULL);
8188 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '670', 'SOURCE DATA FOUND', 'SOURCE DATA FOUND', 1, 0, NULL);
8189 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '675', 'SOURCE DATA NOT FOUND', 'SOURCE DATA NOT FOUND', 0, 0, NULL);
8190 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '678', 'BIOGRAPHICAL OR HISTORICAL DATA', 'BIOGRAPHICAL OR HISTORICAL DATA', 1, 0, NULL);
8191 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '680', 'PUBLIC GENERAL NOTE', 'PUBLIC GENERAL NOTE', 1, 0, NULL);
8192 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '681', 'SUBJECT EXAMPLE TRACING NOTE', 'SUBJECT EXAMPLE TRACING NOTE', 1, 0, NULL);
8193 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '682', 'DELETED HEADING INFORMATION', 'DELETED HEADING INFORMATION', 0, 0, NULL);
8194 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '683', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
8195 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '688', 'APPLICATION HISTORY NOTE', 'APPLICATION HISTORY NOTE', 1, 0, NULL);
8196 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '750', 'ESTABLISHED HEADING LINKING ENTRY--TOPICAL TERM', 'ESTABLISHED HEADING LINKING ENTRY--TOPICAL TERM', 1, 0, NULL);
8197 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '755', 'ESTABLISHED HEADING LINKING ENTRY--GENRE/FORM TERM', 'ESTABLISHED HEADING LINKING ENTRY--GENRE/FORM TERM', 1, 0, NULL);
8198 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '780', 'SUBDIVISION LINKING ENTRY--GENERAL SUBDIVISION', 'SUBDIVISION LINKING ENTRY--GENERAL SUBDIVISION', 1, 0, NULL);
8199 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '785', 'SUBDIVISION LINKING ENTRY--FORM SUBDIVISION', 'SUBDIVISION LINKING ENTRY--FORM SUBDIVISION', 1, 0, NULL);
8200 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '788', 'COMPLEX LINKING ENTRY DATA', 'COMPLEX LINKING ENTRY DATA', 0, 0, NULL);
8201 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL);
8202 INSERT INTO `auth_tag_structure` VALUES ('GENRE/FORM', '880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL);
8203
8204
8205 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '000', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
8206 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '001', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
8207 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '003', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
8208 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '005', '@', 'control field', 'control field', 0, 1, 0, NULL, NULL, NULL);
8209 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '008', '@', 'fixed length control field', 'fixed length control field', 0, 1, 0, NULL, NULL, NULL);
8210 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '010', 'a', 'LC control number', 'LC control number', 0, 0, 0, NULL, NULL, NULL);
8211 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, 0, NULL, NULL, NULL);
8212 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8213 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '014', 'a', 'Control number of related bibliographic record', 'Control number of related bibliographic record', 0, 0, 0, NULL, NULL, NULL);
8214 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '014', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8215 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '014', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8216 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '016', 'a', 'Record control number', 'Record control number', 0, 0, 0, NULL, NULL, NULL);
8217 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '016', 'z', 'Canceled/invalid record control number', 'Canceled/invalid record control number', 1, 0, 0, NULL, NULL, NULL);
8218 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '016', '2', 'Source', 'Source', 0, 0, 0, NULL, NULL, NULL);
8219 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8220 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, 0, NULL, NULL, NULL);
8221 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, 0, NULL, NULL, NULL);
8222 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, 0, NULL, NULL, NULL);
8223 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, 0, NULL, NULL, NULL);
8224 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '024', '2', 'Source of number or code', 'Source of number or code', 0, 0, 0, NULL, NULL, NULL);
8225 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '024', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8226 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8227 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '035', 'a', 'System control number', 'System control number', 0, 0, 0, NULL, NULL, NULL);
8228 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, 0, NULL, NULL, NULL);
8229 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '035', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8230 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8231 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 1, 0, NULL, NULL, NULL);
8232 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, 0, NULL, NULL, NULL);
8233 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, 0, NULL, NULL, NULL);
8234 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, 0, NULL, NULL, NULL);
8235 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '040', 'e', 'Description conventions', 'Description conventions', 0, 0, 0, NULL, NULL, NULL);
8236 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '040', 'f', 'Subject heading or thesaurus conventions', 'Subject heading or thesaurus conventions', 0, 0, 0, NULL, NULL, NULL);
8237 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '040', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8238 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8239 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '042', 'a', 'Authentication code', 'Authentication code', 1, 0, 0, NULL, NULL, NULL);
8240 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, 0, NULL, NULL, NULL);
8241 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, 0, NULL, NULL, NULL);
8242 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '043', 'c', 'ISO code', 'ISO code', 1, 0, 0, NULL, NULL, NULL);
8243 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '043', '2', 'Source of local code', 'Source of local code', 1, 0, 0, NULL, NULL, NULL);
8244 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '043', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8245 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8246 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '045', 'a', 'Time period code', 'Time period code', 1, 0, 0, NULL, NULL, NULL);
8247 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 0, 0, 0, NULL, NULL, NULL);
8248 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, 0, NULL, NULL, NULL);
8249 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '045', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8250 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8251 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '050', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
8252 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '050', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
8253 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '050', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
8254 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '050', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8255 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '050', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8256 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8257 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, 0, NULL, NULL, NULL);
8258 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, 0, NULL, NULL, NULL);
8259 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '052', 'd', 'Populated place name', 'Populated place name', 1, 0, 0, NULL, NULL, NULL);
8260 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '052', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
8261 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '052', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8262 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8263 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '053', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
8264 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '053', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 1, 0, 0, NULL, NULL, NULL);
8265 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '053', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
8266 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '053', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8267 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '053', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8268 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '053', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8269 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '055', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
8270 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '055', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
8271 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '055', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
8272 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '055', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8273 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '055', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8274 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8275 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '060', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
8276 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '060', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
8277 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '060', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
8278 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '060', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8279 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '060', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8280 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8281 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '065', 'a', 'Classification number element--single number or beginning of span', 'Classification number element--single number or beginning of span', 0, 0, 0, NULL, NULL, NULL);
8282 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '065', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
8283 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '065', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
8284 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '065', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
8285 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '065', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8286 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '065', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8287 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '065', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8288 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, 0, NULL, NULL, NULL);
8289 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, 0, NULL, NULL, NULL);
8290 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, 0, NULL, NULL, NULL);
8291 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '070', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
8292 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '070', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
8293 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '070', 'd', 'Volume/dates to which call number applies', 'Volume/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
8294 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '070', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8295 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8296 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '072', 'a', 'Subject category code', 'Subject category code', 0, 0, 0, NULL, NULL, NULL);
8297 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, 0, NULL, NULL, NULL);
8298 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '072', '2', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
8299 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '072', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8300 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8301 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '073', 'a', 'Subdivision usage', 'Subdivision usage', 1, 0, 0, NULL, NULL, NULL);
8302 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '073', 'z', 'Code source', 'Code source', 0, 0, 0, NULL, NULL, NULL);
8303 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '073', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8304 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '073', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8305 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '082', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
8306 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '082', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
8307 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '082', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
8308 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '082', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
8309 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '082', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8310 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '082', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8311 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8312 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '083', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
8313 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '083', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
8314 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '083', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
8315 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '083', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
8316 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '083', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
8317 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '083', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8318 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '083', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8319 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '083', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8320 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '086', 'a', 'Call number', 'Call number', 0, 0, 0, NULL, NULL, NULL);
8321 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '086', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
8322 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '086', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
8323 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '086', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
8324 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '086', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8325 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '086', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8326 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8327 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '087', 'a', 'Classification number element--Single number or beginning number of span', 'Classification number element--Single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
8328 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '087', 'b', 'Classification number element--Ending number of span', 'Classification number element--Ending number of span', 0, 0, 0, NULL, NULL, NULL);
8329 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '087', 'c', 'Explanatory information', 'Explanatory information', 0, 0, 0, NULL, NULL, NULL);
8330 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '087', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
8331 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '087', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8332 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '087', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8333 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'a', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Call number ; Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, 0, NULL, NULL, NULL);
8334 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'b', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Item number ; Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
8335 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
8336 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, 0, NULL, NULL, NULL);
8337 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'f', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 'Filing suffix (OCLC) ; Footnote, FNT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
8338 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, 0, NULL, NULL, NULL);
8339 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, 0, NULL, NULL, NULL);
8340 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
8341 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, 0, NULL, NULL, NULL);
8342 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, 0, NULL, NULL, NULL);
8343 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, 0, NULL, NULL, NULL);
8344 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
8345 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, 0, NULL, NULL, NULL);
8346 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', 'z', 'Cancelled/invalid call number', 'Cancelled/invalid call number', 1, 0, 0, NULL, NULL, NULL);
8347 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', '2', 'Number source', 'Number source', 0, 0, 0, NULL, NULL, NULL);
8348 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8349 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8350 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '090', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8351 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '091', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
8352 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '091', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
8353 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '091', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
8354 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '091', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
8355 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '091', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
8356 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '091', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8357 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '091', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8358 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '091', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8359 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '092', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
8360 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '092', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
8361 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '092', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
8362 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '092', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
8363 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
8364 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '092', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
8365 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '092', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8366 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '092', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8367 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '092', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8368 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '093', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
8369 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '093', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
8370 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '093', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
8371 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '093', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
8372 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '093', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
8373 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '093', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8374 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '093', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8375 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '093', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8376 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '096', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
8377 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '096', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
8378 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '096', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
8379 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '096', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
8380 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
8381 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '096', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
8382 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '096', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8383 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '096', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8384 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '096', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8385 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '097', 'a', 'Classification number element--single number or beginning number of span', 'Classification number element--single number or beginning number of span', 0, 0, 0, NULL, NULL, NULL);
8386 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '097', 'b', 'Classification number element--ending number of span', 'Classification number element--ending number of span', 0, 0, 0, NULL, NULL, NULL);
8387 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '097', 'c', 'Explanatory term', 'Explanatory term', 0, 0, 0, NULL, NULL, NULL);
8388 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '097', 'z', 'Table identification--table number', 'Table identification--table number', 0, 0, 0, NULL, NULL, NULL);
8389 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '097', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
8390 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '097', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8391 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '097', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8392 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '097', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8393 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, 0, NULL, NULL, NULL);
8394 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '098', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
8395 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '098', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
8396 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '098', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
8397 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
8398 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '098', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
8399 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '098', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8400 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '098', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8401 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '098', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8402 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '099', 'a', 'Classification number', 'Classification number', 0, 0, 0, NULL, NULL, NULL);
8403 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '099', 'b', 'Item number', 'Item number', 0, 0, 0, NULL, NULL, NULL);
8404 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '099', 'd', 'Volumes/dates to which call number applies', 'Volumes/dates to which call number applies', 0, 0, 0, NULL, NULL, NULL);
8405 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '099', 'e', 'Feature heading', 'Feature heading', 0, 0, 0, NULL, NULL, NULL);
8406 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, 0, NULL, NULL, NULL);
8407 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '099', '2', 'Edition number', 'Edition number', 0, 0, 0, NULL, NULL, NULL);
8408 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '099', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 0, NULL, NULL, NULL);
8409 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '099', '6', 'Linkage', 'Linkage', 0, 0, 0, NULL, NULL, NULL);
8410 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '099', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 0, NULL, NULL, NULL);
8411 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '155', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 1, NULL, NULL, '''155v'',''155x'',''155z'',''155y''');
8412 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '155', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
8413 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '155', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
8414 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '155', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
8415 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '155', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
8416 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '155', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
8417 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '155', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
8418 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '185', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 1, NULL, NULL, NULL);
8419 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '185', 'x', 'General subdivision', 'General subdivision', 1, 0, 1, NULL, NULL, NULL);
8420 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '185', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 1, NULL, NULL, NULL);
8421 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '185', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 1, NULL, NULL, NULL);
8422 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '185', '6', 'Linkage', 'Linkage', 0, 0, 1, NULL, NULL, NULL);
8423 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '185', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 1, NULL, NULL, NULL);
8424 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '260', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 2, NULL, NULL, NULL);
8425 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '260', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 2, NULL, NULL, NULL);
8426 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '260', '6', 'Linkage', 'Linkage', 0, 0, 2, NULL, NULL, NULL);
8427 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 2, NULL, NULL, NULL);
8428 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '360', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 3, NULL, NULL, NULL);
8429 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '360', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 3, NULL, NULL, NULL);
8430 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '360', '6', 'Linkage', 'Linkage', 0, 0, 3, NULL, NULL, NULL);
8431 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '360', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 3, NULL, NULL, NULL);
8432 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'a', 'Personal name', 'Personal name', 0, 0, 4, NULL, NULL, '''400b'',''400c'',''400q'',''400d'',''400t'',''400o'',''400m'',''400r'',''400s'',''400k'',''400n'',''400p'',''400g'',''400l'',''400f'',''400h'',''400x'',''400z'',''400y'',''400v''');
8433 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'b', 'Numeration', 'Numeration', 0, 0, 4, NULL, NULL, NULL);
8434 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 4, NULL, NULL, NULL);
8435 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 4, NULL, NULL, NULL);
8436 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
8437 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
8438 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
8439 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
8440 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
8441 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 4, NULL, NULL, NULL);
8442 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
8443 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
8444 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
8445 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
8446 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
8447 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
8448 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 4, NULL, NULL, NULL);
8449 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
8450 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
8451 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
8452 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8453 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8454 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8455 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8456 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8457 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8458 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8459 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8460 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''410b'',''410c'',''410d'',''410t'',''410o'',''410m'',''410r'',''410s'',''410k'',''410n'',''410p'',''410g'',''410l'',''410f'',''410h'',''410x'',''410z'',''410y'',''410v''');
8461 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
8462 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
8463 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 4, NULL, NULL, NULL);
8464 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'e', 'Relator term', 'Relator term', 1, 0, 4, NULL, NULL, NULL);
8465 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
8466 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
8467 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
8468 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
8469 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
8470 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
8471 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
8472 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
8473 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
8474 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
8475 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
8476 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
8477 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
8478 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8479 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8480 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8481 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8482 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8483 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8484 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8485 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8486 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 4, NULL, NULL, '''411e'',''411c'',''411d'',''411t'',''411s'',''411k'',''411n'',''411p'',''411g'',''411l'',''411f'',''411h'',''411x'',''411z'',''411y'',''411v''');
8487 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'b', 'Number {OBSOLETE]', 'Number {OBSOLETE]', 0, 0, 4, NULL, NULL, NULL);
8488 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 4, NULL, NULL, NULL);
8489 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 4, NULL, NULL, NULL);
8490 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 4, NULL, NULL, NULL);
8491 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
8492 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
8493 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
8494 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
8495 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
8496 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
8497 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 4, NULL, NULL, NULL);
8498 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
8499 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 4, NULL, NULL, NULL);
8500 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
8501 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
8502 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8503 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8504 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8505 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8506 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8507 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8508 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8509 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8510 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'a', 'Uniform title', 'Uniform title', 0, 0, 4, NULL, NULL, '''430o'',''430m'',''430r'',''430s'',''430d'',''430k'',''430n'',''430p'',''430g'',''430l'',''430f'',''430h'',''430t'',''430x'',''430z'',''430y'',''430v''');
8511 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 4, NULL, NULL, NULL);
8512 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'f', 'Date of a work', 'Date of a work', 0, 0, 4, NULL, NULL, NULL);
8513 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 4, NULL, NULL, NULL);
8514 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'h', 'Medium', 'Medium', 0, 0, 4, NULL, NULL, NULL);
8515 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
8516 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'k', 'Form subheading', 'Form subheading', 1, 0, 4, NULL, NULL, NULL);
8517 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'l', 'Language of a work', 'Language of a work', 0, 0, 4, NULL, NULL, NULL);
8518 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 4, NULL, NULL, NULL);
8519 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
8520 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 4, NULL, NULL, NULL);
8521 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 4, NULL, NULL, NULL);
8522 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'r', 'Key for music', 'Key for music', 0, 0, 4, NULL, NULL, NULL);
8523 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 's', 'Version', 'Version', 0, 0, 4, NULL, NULL, NULL);
8524 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 't', 'Title of a work', 'Title of a work', 0, 0, 4, NULL, NULL, NULL);
8525 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8526 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8527 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8528 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8529 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8530 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8531 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8532 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '430', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8533 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '448', 'a', 'Chronological term', 'Chronological term', 0, 0, 4, NULL, NULL, '''448y'',''448x'',''448z'',''448v''');
8534 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '448', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 4, NULL, NULL, NULL);
8535 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '448', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8536 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '448', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8537 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '448', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8538 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '448', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8539 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '448', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8540 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '448', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8541 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '448', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8542 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '448', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8543 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '450', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 4, NULL, NULL, '''450x'',''450z'',''450y'',''450v''');
8544 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '450', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 4, NULL, NULL, NULL);
8545 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '450', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
8546 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '450', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8547 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '450', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8548 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '450', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8549 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '450', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8550 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '450', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8551 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '450', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8552 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '450', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8553 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '450', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8554 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '451', 'a', 'Geographic name', 'Geographic name', 0, 0, 4, NULL, NULL, '''451z'',''451x'',''451y'',''451v''');
8555 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '451', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
8556 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '451', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8557 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '451', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8558 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '451', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8559 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '451', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8560 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '451', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8561 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '451', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8562 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '451', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8563 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '451', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8564 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '455', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 4, NULL, NULL, '''455v'',''455x'',''455z'',''455y''');
8565 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '455', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
8566 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '455', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8567 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '455', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8568 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '455', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8569 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '455', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8570 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '455', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8571 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '455', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8572 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '455', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8573 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '455', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8574 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '480', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
8575 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '480', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8576 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '480', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8577 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '480', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8578 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '480', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8579 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '480', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8580 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '480', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8581 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '480', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8582 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '480', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8583 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '481', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
8584 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '481', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8585 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '481', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8586 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '481', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8587 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '481', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8588 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '481', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8589 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '481', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8590 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '481', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8591 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '481', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8592 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '482', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
8593 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '482', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8594 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '482', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8595 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '482', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8596 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '482', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8597 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '482', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8598 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '482', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8599 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '482', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8600 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '482', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8601 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '485', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 4, NULL, NULL, NULL);
8602 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '485', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 4, NULL, NULL, NULL);
8603 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '485', 'w', 'Control subfield', 'Control subfield', 0, 0, 4, NULL, NULL, NULL);
8604 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '485', 'x', 'General subdivision', 'General subdivision', 1, 0, 4, NULL, NULL, NULL);
8605 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '485', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 4, NULL, NULL, NULL);
8606 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '485', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 4, NULL, NULL, NULL);
8607 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '485', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 4, NULL, NULL, NULL);
8608 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '485', '6', 'Linkage', 'Linkage', 0, 0, 4, NULL, NULL, NULL);
8609 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '485', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 4, NULL, NULL, NULL);
8610 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'a', 'Personal name', 'Personal name', 0, 0, 5, NULL, NULL, '''500b'',''500c'',''500q'',''500d'',''500t'',''500o'',''500m'',''500r'',''500s'',''500k'',''500n'',''500p'',''500g'',''500l'',''500f'',''500h'',''500x'',''500z'',''500y'',''500v''');
8611 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'b', 'Numeration', 'Numeration', 0, 0, 5, NULL, NULL, NULL);
8612 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, 5, NULL, NULL, NULL);
8613 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, 5, NULL, NULL, NULL);
8614 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
8615 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
8616 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
8617 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
8618 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
8619 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, 5, NULL, NULL, NULL);
8620 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
8621 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
8622 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
8623 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
8624 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
8625 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
8626 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, 5, NULL, NULL, NULL);
8627 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
8628 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
8629 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
8630 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8631 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8632 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8633 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8634 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8635 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8636 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8637 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8638 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8639 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''510b'',''510c'',''510d'',''510t'',''510o'',''510m'',''510r'',''510s'',''510k'',''510n'',''510p'',''510g'',''510l'',''510f'',''510h'',''510x'',''510z'',''510y'',''510v''');
8640 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
8641 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
8642 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, 5, NULL, NULL, NULL);
8643 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'e', 'Relator term', 'Relator term', 1, 0, 5, NULL, NULL, NULL);
8644 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
8645 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
8646 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
8647 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
8648 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
8649 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
8650 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
8651 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
8652 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
8653 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
8654 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
8655 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
8656 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
8657 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8658 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8659 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8660 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8661 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8662 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8663 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8664 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8665 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8666 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, 5, NULL, NULL, '''511e'',''511c'',''511d'',''511t'',''511s'',''511k'',''511n'',''511p'',''511g'',''511l'',''511f'',''511h'',''511x'',''511z'',''511y'',''511v''');
8667 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'c', 'Location of meeting', 'Location of meeting', 0, 0, 5, NULL, NULL, NULL);
8668 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'd', 'Date of meeting', 'Date of meeting', 0, 0, 5, NULL, NULL, NULL);
8669 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, 5, NULL, NULL, NULL);
8670 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
8671 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
8672 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
8673 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
8674 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
8675 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
8676 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, 5, NULL, NULL, NULL);
8677 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
8678 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, 5, NULL, NULL, NULL);
8679 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
8680 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
8681 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8682 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8683 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8684 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8685 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8686 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8687 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8688 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8689 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8690 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'a', 'Uniform title', 'Uniform title', 0, 0, 5, NULL, NULL, '''530o'',''530m'',''530r'',''530s'',''530d'',''530k'',''530n'',''530p'',''530g'',''530l'',''530f'',''530h'',''530t'',''530x'',''530z'',''530y'',''530v''');
8691 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, 5, NULL, NULL, NULL);
8692 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'f', 'Date of a work', 'Date of a work', 0, 0, 5, NULL, NULL, NULL);
8693 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, 5, NULL, NULL, NULL);
8694 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'h', 'Medium', 'Medium', 0, 0, 5, NULL, NULL, NULL);
8695 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
8696 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'k', 'Form subheading', 'Form subheading', 1, 0, 5, NULL, NULL, NULL);
8697 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'l', 'Language of a work', 'Language of a work', 0, 0, 5, NULL, NULL, NULL);
8698 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, 5, NULL, NULL, NULL);
8699 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
8700 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, 5, NULL, NULL, NULL);
8701 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, 5, NULL, NULL, NULL);
8702 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'r', 'Key for music', 'Key for music', 0, 0, 5, NULL, NULL, NULL);
8703 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 's', 'Version', 'Version', 0, 0, 5, NULL, NULL, NULL);
8704 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 't', 'Title of a work', 'Title of a work', 0, 0, 5, NULL, NULL, NULL);
8705 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8706 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8707 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8708 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8709 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8710 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8711 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8712 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8713 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8714 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '548', 'a', 'Chronological term', 'Chronological term', 0, 0, 5, NULL, NULL, '''548y'',''548x'',''548z'',''548v''');
8715 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '548', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 1, 0, 5, NULL, NULL, NULL);
8716 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '548', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8717 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '548', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8718 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '548', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8719 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '548', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8720 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '548', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8721 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '548', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8722 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '548', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8723 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '548', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8724 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '548', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8725 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', 'a', 'Topical term or geographic name entry element', 'Topical term or geographic name entry element', 0, 0, 5, NULL, NULL, '''550x'',''550z'',''550y'',''550v''');
8726 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', 'b', 'Topical term following geographic name entry element', 'Topical term following geographic name entry element', 0, 0, 5, NULL, NULL, NULL);
8727 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
8728 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8729 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8730 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8731 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8732 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8733 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8734 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8735 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8736 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8737 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '551', 'a', 'Geographic name', 'Geographic name', 0, 0, 5, NULL, NULL, '''551z'',''551x'',''551y'',''551v''');
8738 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '551', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
8739 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '551', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8740 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '551', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8741 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '551', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8742 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '551', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8743 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '551', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8744 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '551', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8745 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '551', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8746 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '551', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8747 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '551', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8748 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '555', 'a', 'Genre/form term', 'Genre/form term', 0, 0, 5, NULL, NULL, '''555v'',''555x'',''555z'',''555y''');
8749 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '555', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
8750 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '555', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8751 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '555', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8752 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '555', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8753 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '555', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8754 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '555', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8755 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '555', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8756 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '555', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8757 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '555', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8758 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8759 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '580', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
8760 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '580', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8761 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '580', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8762 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '580', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8763 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '580', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8764 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '580', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8765 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '580', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8766 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '580', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8767 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '580', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8768 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8769 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '581', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
8770 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '581', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8771 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '581', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8772 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '581', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8773 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '581', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8774 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '581', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8775 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '581', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8776 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '581', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8777 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '581', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8778 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8779 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '582', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
8780 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '582', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8781 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '582', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8782 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '582', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8783 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '582', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8784 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '582', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8785 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '582', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8786 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '582', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8787 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '582', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8788 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '582', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8789 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '585', 'i', 'Reference instruction phrase', 'Reference instruction phrase', 0, 0, 5, NULL, NULL, NULL);
8790 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '585', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 5, NULL, NULL, NULL);
8791 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '585', 'w', 'Control subfield', 'Control subfield', 0, 0, 5, NULL, NULL, NULL);
8792 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '585', 'x', 'General subdivision', 'General subdivision', 1, 0, 5, NULL, NULL, NULL);
8793 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '585', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 5, NULL, NULL, NULL);
8794 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '585', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 5, NULL, NULL, NULL);
8795 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '585', '0', 'Record control number', 'Record control number', 1, 0, 5, NULL, NULL, NULL);
8796 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '585', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 5, NULL, NULL, NULL);
8797 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '585', '6', 'Linkage', 'Linkage', 0, 0, 5, NULL, NULL, NULL);
8798 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 5, NULL, NULL, NULL);
8799 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '663', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
8800 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '663', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
8801 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '663', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
8802 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '663', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8803 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '663', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8804 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '664', 'a', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
8805 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '664', 'b', 'Heading referred to', 'Heading referred to', 1, 0, 6, NULL, NULL, NULL);
8806 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '664', 't', 'Title referred to', 'Title referred to', 1, 0, 6, NULL, NULL, NULL);
8807 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '664', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8808 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '664', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8809 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '665', 'a', 'History reference', 'History reference', 1, 0, 6, NULL, NULL, NULL);
8810 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '665', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8811 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '665', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8812 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '666', 'a', 'General explanatory reference', 'General explanatory reference', 1, 0, 6, NULL, NULL, NULL);
8813 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '666', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8814 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '666', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8815 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '667', 'a', 'Nonpublic general note', 'Nonpublic general note', 0, 0, 6, NULL, NULL, NULL);
8816 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '667', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
8817 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '667', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8818 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '667', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8819 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '670', 'a', 'Source citation', 'Source citation', 0, 0, 6, NULL, NULL, NULL);
8820 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '670', 'b', 'Information found', 'Information found', 0, 0, 6, NULL, NULL, NULL);
8821 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '670', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
8822 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '670', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8823 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '670', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8824 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '675', 'a', 'Source citation', 'Source citation', 1, 0, 6, NULL, NULL, NULL);
8825 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '675', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8826 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '675', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8827 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '678', 'a', 'Biographical or historical data', 'Biographical or historical data', 1, 0, 6, NULL, NULL, NULL);
8828 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '678', 'b', 'Expansion', 'Expansion', 0, 0, 6, NULL, NULL, NULL);
8829 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '678', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 6, NULL, NULL, NULL);
8830 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '678', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8831 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '678', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8832 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '680', 'a', 'Heading or subdivision term', 'Heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
8833 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '680', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
8834 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '680', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
8835 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '680', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
8836 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '680', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8837 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '680', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8838 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '681', 'a', 'Subject heading or subdivision term', 'Subject heading or subdivision term', 1, 0, 6, NULL, NULL, NULL);
8839 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '681', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
8840 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '681', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
8841 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '681', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8842 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '681', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8843 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '682', 'a', 'Replacement heading', 'Replacement heading', 1, 0, 6, NULL, NULL, NULL);
8844 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '682', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
8845 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '682', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8846 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '682', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8847 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '683', 'a', 'Classification number--Single number or beginning number of span', 'Classification number--Single number or beginning number of span', 1, 0, 6, NULL, NULL, NULL);
8848 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '683', 'c', 'Classification number--Ending number of span', 'Classification number--Ending number of span', 1, 0, 6, NULL, NULL, NULL);
8849 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '683', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 6, NULL, NULL, NULL);
8850 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '683', 'p', 'Corresponding classification field', 'Corresponding classification field', 1, 0, 6, NULL, NULL, NULL);
8851 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '683', 'y', 'Table identification--Schedule [OBSOLETE]', 'Table identification--Schedule [OBSOLETE]', 0, 0, 6, NULL, NULL, NULL);
8852 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '683', 'z', 'Table identification', 'Table identification', 1, 0, 6, NULL, NULL, NULL);
8853 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '683', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
8854 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '683', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8855 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '683', '8', 'Field link and sequence number', 'Field link and sequence number', 0, 0, 6, NULL, NULL, NULL);
8856 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '688', 'a', 'Application history note', 'Application history note', 0, 0, 6, NULL, NULL, NULL);
8857 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '688', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 6, NULL, NULL, NULL);
8858 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '688', '6', 'Linkage', 'Linkage', 0, 0, 6, NULL, NULL, NULL);
8859 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '688', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 6, NULL, NULL, NULL);
8860 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 7, NULL, NULL, NULL);
8861 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, 7, NULL, NULL, NULL);
8862 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', 'c', 'Location of event', 'Location of event', 0, 0, 7, NULL, NULL, NULL);
8863 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', 'd', 'Active date', 'Active date', 0, 0, 7, NULL, NULL, NULL);
8864 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
8865 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
8866 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
8867 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
8868 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
8869 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
8870 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
8871 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
8872 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
8873 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '750', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
8874 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '755', 'a', 'Genre/form term as entry element', 'Genre/form term as entry element', 0, 0, 7, NULL, NULL, NULL);
8875 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '755', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
8876 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '755', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
8877 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '755', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
8878 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
8879 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
8880 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '755', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
8881 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '755', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
8882 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '755', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
8883 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '755', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
8884 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
8885 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '780', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
8886 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '780', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
8887 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '780', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
8888 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '780', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
8889 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '780', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
8890 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '780', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
8891 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '780', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
8892 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '780', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
8893 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '780', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
8894 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
8895 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '785', 'v', 'Form subdivision', 'Form subdivision', 1, 0, 7, NULL, NULL, NULL);
8896 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '785', 'w', 'Control subfield', 'Control subfield', 0, 0, 7, NULL, NULL, NULL);
8897 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '785', 'x', 'General subdivision', 'General subdivision', 1, 0, 7, NULL, NULL, NULL);
8898 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '785', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, 7, NULL, NULL, NULL);
8899 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '785', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, 7, NULL, NULL, NULL);
8900 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '785', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
8901 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '785', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
8902 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '785', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
8903 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '785', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
8904 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
8905 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '788', 'a', 'Heading referred to', 'Heading referred to', 1, 0, 7, NULL, NULL, NULL);
8906 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '788', 'i', 'Explanatory text', 'Explanatory text', 1, 0, 7, NULL, NULL, NULL);
8907 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '788', '0', 'Record control number', 'Record control number', 1, 0, 7, NULL, NULL, NULL);
8908 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '788', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, 7, NULL, NULL, NULL);
8909 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '788', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, 7, NULL, NULL, NULL);
8910 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '788', '6', 'Linkage', 'Linkage', 0, 0, 7, NULL, NULL, NULL);
8911 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '788', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 7, NULL, NULL, NULL);
8912 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'a', 'Host name', 'Host name', 1, 0, 8, NULL, NULL, NULL);
8913 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'b', 'Access number', 'Access number', 1, 0, 8, NULL, NULL, NULL);
8914 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'c', 'Compression information', 'Compression information', 1, 0, 8, NULL, NULL, NULL);
8915 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'd', 'Path', 'Path', 1, 0, 8, NULL, NULL, NULL);
8916 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'f', 'Electronic name', 'Electronic name', 1, 0, 8, NULL, NULL, NULL);
8917 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'h', 'Processor of request', 'Processor of request', 0, 0, 8, NULL, NULL, NULL);
8918 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'i', 'Instruction', 'Instruction', 1, 0, 8, NULL, NULL, NULL);
8919 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'j', 'Bits per second', 'Bits per second', 0, 0, 8, NULL, NULL, NULL);
8920 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'k', 'Password', 'Password', 0, 0, 8, NULL, NULL, NULL);
8921 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'l', 'Logon', 'Logon', 0, 0, 8, NULL, NULL, NULL);
8922 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, 8, NULL, NULL, NULL);
8923 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'n', 'Name of location of host', 'Name of location of host', 0, 0, 8, NULL, NULL, NULL);
8924 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'o', 'Operating system', 'Operating system', 0, 0, 8, NULL, NULL, NULL);
8925 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'p', 'Port', 'Port', 0, 0, 8, NULL, NULL, NULL);
8926 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, 8, NULL, NULL, NULL);
8927 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'r', 'Settings', 'Settings', 0, 0, 8, NULL, NULL, NULL);
8928 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 's', 'File size', 'File size', 1, 0, 8, NULL, NULL, NULL);
8929 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, 8, NULL, NULL, NULL);
8930 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 8, NULL, NULL, NULL);
8931 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, 8, NULL, NULL, NULL);
8932 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'w', 'Record control number', 'Record control number', 1, 0, 8, NULL, NULL, NULL);
8933 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, 8, NULL, NULL, NULL);
8934 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'y', 'Link text', 'Link text', 1, 0, 8, NULL, NULL, NULL);
8935 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', 'z', 'Public note', 'Public note', 1, 0, 8, NULL, NULL, NULL);
8936 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', '2', 'Access method', 'Access method', 0, 0, 8, NULL, NULL, NULL);
8937 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', '3', 'Materials specified', 'Materials specified', 0, 0, 8, NULL, NULL, NULL);
8938 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', '6', 'Linkage', 'Linkage', 0, 0, 8, NULL, NULL, NULL);
8939 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, 8, NULL, NULL, NULL);
8940 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'a', 'a', 'a', 1, 0, 8, NULL, NULL, NULL);
8941 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'b', 'b', 'b', 1, 0, 8, NULL, NULL, NULL);
8942 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'c', 'c', 'c', 1, 0, 8, NULL, NULL, NULL);
8943 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'd', 'd', 'd', 1, 0, 8, NULL, NULL, NULL);
8944 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'e', 'e', 'e', 1, 0, 8, NULL, NULL, NULL);
8945 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'f', 'f', 'f', 1, 0, 8, NULL, NULL, NULL);
8946 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'g', 'g', 'g', 1, 0, 8, NULL, NULL, NULL);
8947 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'h', 'h', 'h', 1, 0, 8, NULL, NULL, NULL);
8948 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'i', 'i', 'i', 1, 0, 8, NULL, NULL, NULL);
8949 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'j', 'j', 'j', 1, 0, 8, NULL, NULL, NULL);
8950 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'k', 'k', 'k', 1, 0, 8, NULL, NULL, NULL);
8951 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'l', 'l', 'l', 1, 0, 8, NULL, NULL, NULL);
8952 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'm', 'm', 'm', 1, 0, 8, NULL, NULL, NULL);
8953 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'n', 'n', 'n', 1, 0, 8, NULL, NULL, NULL);
8954 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'o', 'o', 'o', 1, 0, 8, NULL, NULL, NULL);
8955 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'p', 'p', 'p', 1, 0, 8, NULL, NULL, NULL);
8956 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'q', 'q', 'q', 1, 0, 8, NULL, NULL, NULL);
8957 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'r', 'r', 'r', 1, 0, 8, NULL, NULL, NULL);
8958 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 's', 's', 's', 1, 0, 8, NULL, NULL, NULL);
8959 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 't', 't', 't', 1, 0, 8, NULL, NULL, NULL);
8960 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'u', 'u', 'u', 1, 0, 8, NULL, NULL, NULL);
8961 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'v', 'v', 'v', 1, 0, 8, NULL, NULL, NULL);
8962 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'w', 'w', 'w', 1, 0, 8, NULL, NULL, NULL);
8963 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'x', 'x', 'x', 1, 0, 8, NULL, NULL, NULL);
8964 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'y', 'y', 'y', 1, 0, 8, NULL, NULL, NULL);
8965 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', 'z', 'z', 'z', 1, 0, 8, NULL, NULL, NULL);
8966 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', '0', '0', '0', 1, 0, 8, NULL, NULL, NULL);
8967 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', '1', '1', '1', 1, 0, 8, NULL, NULL, NULL);
8968 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', '2', '2', '2', 1, 0, 8, NULL, NULL, NULL);
8969 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', '3', '3', '3', 1, 0, 8, NULL, NULL, NULL);
8970 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', '4', '4', '4', 1, 0, 8, NULL, NULL, NULL);
8971 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', '5', '5', '5', 1, 0, 8, NULL, NULL, NULL);
8972 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', '6', '6', '6', 1, 0, 8, NULL, NULL, NULL);
8973 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', '7', '7', '7', 1, 0, 8, NULL, NULL, NULL);
8974 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', '8', '8', '8', 1, 0, 8, NULL, NULL, NULL);
8975 INSERT INTO `auth_subfield_structure` VALUES ('GENRE/FORM', '880', '9', '9', '9', 1, 0, 8, NULL, NULL, NULL);
8976
8977