modsulator 1.0.3 → 1.0.4.pre.beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/modsulator.rb +1 -2
- data/lib/modsulator/modsulator_template.xlsx +0 -0
- data/lib/modsulator/modsulator_template.xml +206 -209
- data/lib/modsulator/validator.rb +4 -6
- data/spec/features/modsulator_sheet_unit_spec.rb +1 -4
- data/spec/features/normalizer_unit_spec.rb +1 -4
- data/spec/features/process_template_spec.rb +2 -5
- data/spec/features/validator_unit_spec.rb +1 -4
- data/spec/fixtures/edition_physLoc_intmediatype.xml +2 -2
- data/spec/fixtures/filled_template_20160711.xml +53 -58
- data/spec/fixtures/location_url.xlsx +0 -0
- data/spec/fixtures/location_url.xml +14 -0
- data/spec/integration_tests/integration_spec.rb +4 -7
- data/spec/lib/modsulator_spec.rb +1 -4
- data/spec/spec_helper.rb +14 -8
- metadata +13 -24
- data/lib/doc/Modsulator.html +0 -725
- data/lib/doc/_index.html +0 -101
- data/lib/doc/class_list.html +0 -58
- data/lib/doc/css/common.css +0 -1
- data/lib/doc/css/full_list.css +0 -57
- data/lib/doc/css/style.css +0 -339
- data/lib/doc/file_list.html +0 -57
- data/lib/doc/frames.html +0 -26
- data/lib/doc/index.html +0 -101
- data/lib/doc/js/app.js +0 -219
- data/lib/doc/js/full_list.js +0 -181
- data/lib/doc/js/jquery.js +0 -4
- data/lib/doc/method_list.html +0 -87
- data/lib/doc/top-level-namespace.html +0 -112
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76c42c6b4c9ec9aa69d2ee8dc681c5c6a237325d
|
4
|
+
data.tar.gz: de109bfc6e8c85cfe4c3783c5580fa4bd073e604
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81129052f75fbd5c1bedd4d0d3c4aa26fe3f9fce7b48c4f359bf96c0269f8c5bec003b8d21561101693f68846c1d1c040b37b57caedf83958d16f89594d0f68f
|
7
|
+
data.tar.gz: 1013dbc8a8966cbd000be49b24e052e5c75e617b63b5009468e79e0a4718b0c68795f307c4821935aa355e02be3969b0aec43b6b4b97e10cd3a8a80dcbf2d1f0
|
data/lib/modsulator.rb
CHANGED
@@ -2,11 +2,10 @@
|
|
2
2
|
# with metadata spreadsheets and MODS XML.
|
3
3
|
|
4
4
|
require 'active_support/core_ext/hash/indifferent_access' # Required for indifferent access to hashes
|
5
|
-
require 'active_support/core_ext/object/blank
|
5
|
+
require 'active_support/core_ext/object/blank' # Required for template calls to blank?()
|
6
6
|
require 'erb' # Rails templating engine
|
7
7
|
require 'nokogiri'
|
8
8
|
require 'roo'
|
9
|
-
require 'rubygems'
|
10
9
|
require 'modsulator/normalizer'
|
11
10
|
require 'modsulator/modsulator_sheet'
|
12
11
|
|
Binary file
|
@@ -1,76 +1,76 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<mods xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.loc.gov/mods/v3" version="3.5" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd">
|
3
|
-
<titleInfo authority="[[ti1:authority]]" authorityURI="[[ti1:authorityURI]]" valueURI="[[ti1:valueURI]]" nameTitleGroup="[[ti1:nameTitleGroup]]"
|
3
|
+
<titleInfo authority="[[ti1:authority]]" authorityURI="[[ti1:authorityURI]]" valueURI="[[ti1:valueURI]]" nameTitleGroup="[[ti1:nameTitleGroup]]">
|
4
4
|
<nonSort>[[ti1:nonSort]]</nonSort>
|
5
5
|
<title>[[ti1:title]]</title>
|
6
|
-
<subTitle>[[ti1:subTitle]]</subTitle>
|
7
|
-
<partNumber>[[ti1:partNumber]]</partNumber>
|
6
|
+
<subTitle>[[ti1:subTitle]]</subTitle>
|
7
|
+
<partNumber>[[ti1:partNumber]]</partNumber>
|
8
8
|
<partName>[[ti1:partName]]</partName>
|
9
9
|
</titleInfo>
|
10
|
-
<titleInfo type="[[ti2:type]]" displayLabel="[[ti2:displayLabel]]" authority="[[ti2:authority]]" authorityURI="[[ti2:authorityURI]]" valueURI="[[ti2:valueURI]]" nameTitleGroup="[[ti2:nameTitleGroup]]"
|
10
|
+
<titleInfo type="[[ti2:type]]" displayLabel="[[ti2:displayLabel]]" authority="[[ti2:authority]]" authorityURI="[[ti2:authorityURI]]" valueURI="[[ti2:valueURI]]" nameTitleGroup="[[ti2:nameTitleGroup]]">
|
11
11
|
<nonSort>[[ti2:nonSort]]</nonSort>
|
12
12
|
<title>[[ti2:title]]</title>
|
13
|
-
<subTitle>[[ti2:subTitle]]</subTitle>
|
14
|
-
<partNumber>[[ti2:partNumber]]</partNumber>
|
13
|
+
<subTitle>[[ti2:subTitle]]</subTitle>
|
14
|
+
<partNumber>[[ti2:partNumber]]</partNumber>
|
15
15
|
<partName>[[ti2:partName]]</partName>
|
16
16
|
</titleInfo>
|
17
|
-
<titleInfo type="[[ti3:type]]" displayLabel="[[ti3:displayLabel]]" authority="[[ti3:authority]]" authorityURI="[[ti3:authorityURI]]" valueURI="[[ti3:valueURI]]" nameTitleGroup="[[ti3:nameTitleGroup]]"
|
17
|
+
<titleInfo type="[[ti3:type]]" displayLabel="[[ti3:displayLabel]]" authority="[[ti3:authority]]" authorityURI="[[ti3:authorityURI]]" valueURI="[[ti3:valueURI]]" nameTitleGroup="[[ti3:nameTitleGroup]]">
|
18
18
|
<nonSort>[[ti3:nonSort]]</nonSort>
|
19
19
|
<title>[[ti3:title]]</title>
|
20
|
-
<subTitle>[[ti3:subTitle]]</subTitle>
|
21
|
-
<partNumber>[[ti3:partNumber]]</partNumber>
|
20
|
+
<subTitle>[[ti3:subTitle]]</subTitle>
|
21
|
+
<partNumber>[[ti3:partNumber]]</partNumber>
|
22
22
|
<partName>[[ti3:partName]]</partName>
|
23
23
|
</titleInfo>
|
24
|
-
<titleInfo type="[[ti4:type]]" displayLabel="[[ti4:displayLabel]]" authority="[[ti4:authority]]" authorityURI="[[ti4:authorityURI]]" valueURI="[[ti4:valueURI]]" nameTitleGroup="[[ti4:nameTitleGroup]]"
|
24
|
+
<titleInfo type="[[ti4:type]]" displayLabel="[[ti4:displayLabel]]" authority="[[ti4:authority]]" authorityURI="[[ti4:authorityURI]]" valueURI="[[ti4:valueURI]]" nameTitleGroup="[[ti4:nameTitleGroup]]">
|
25
25
|
<nonSort>[[ti4:nonSort]]</nonSort>
|
26
26
|
<title>[[ti4:title]]</title>
|
27
|
-
<subTitle>[[ti4:subTitle]]</subTitle>
|
28
|
-
<partNumber>[[ti4:partNumber]]</partNumber>
|
27
|
+
<subTitle>[[ti4:subTitle]]</subTitle>
|
28
|
+
<partNumber>[[ti4:partNumber]]</partNumber>
|
29
29
|
<partName>[[ti4:partName]]</partName>
|
30
30
|
</titleInfo>
|
31
|
-
<titleInfo type="[[ti5:type]]" displayLabel="[[ti5:displayLabel]]" authority="[[ti5:authority]]" authorityURI="[[ti5:authorityURI]]" valueURI="[[ti5:valueURI]]" nameTitleGroup="[[ti5:nameTitleGroup]]"
|
31
|
+
<titleInfo type="[[ti5:type]]" displayLabel="[[ti5:displayLabel]]" authority="[[ti5:authority]]" authorityURI="[[ti5:authorityURI]]" valueURI="[[ti5:valueURI]]" nameTitleGroup="[[ti5:nameTitleGroup]]">
|
32
32
|
<nonSort>[[ti5:nonSort]]</nonSort>
|
33
33
|
<title>[[ti5:title]]</title>
|
34
|
-
<subTitle>[[ti5:subTitle]]</subTitle>
|
35
|
-
<partNumber>[[ti5:partNumber]]</partNumber>
|
34
|
+
<subTitle>[[ti5:subTitle]]</subTitle>
|
35
|
+
<partNumber>[[ti5:partNumber]]</partNumber>
|
36
36
|
<partName>[[ti5:partName]]</partName>
|
37
37
|
</titleInfo>
|
38
|
-
<titleInfo type="[[ti6:type]]" displayLabel="[[ti6:displayLabel]]" authority="[[ti6:authority]]" authorityURI="[[ti6:authorityURI]]" valueURI="[[ti6:valueURI]]" nameTitleGroup="[[ti6:nameTitleGroup]]"
|
38
|
+
<titleInfo type="[[ti6:type]]" displayLabel="[[ti6:displayLabel]]" authority="[[ti6:authority]]" authorityURI="[[ti6:authorityURI]]" valueURI="[[ti6:valueURI]]" nameTitleGroup="[[ti6:nameTitleGroup]]">
|
39
39
|
<nonSort>[[ti6:nonSort]]</nonSort>
|
40
40
|
<title>[[ti6:title]]</title>
|
41
|
-
<subTitle>[[ti6:subTitle]]</subTitle>
|
42
|
-
<partNumber>[[ti6:partNumber]]</partNumber>
|
41
|
+
<subTitle>[[ti6:subTitle]]</subTitle>
|
42
|
+
<partNumber>[[ti6:partNumber]]</partNumber>
|
43
43
|
<partName>[[ti6:partName]]</partName>
|
44
44
|
</titleInfo>
|
45
|
-
<titleInfo type="[[ti7:type]]" displayLabel="[[ti7:displayLabel]]" authority="[[ti7:authority]]" authorityURI="[[ti7:authorityURI]]" valueURI="[[ti7:valueURI]]" nameTitleGroup="[[ti7:nameTitleGroup]]"
|
45
|
+
<titleInfo type="[[ti7:type]]" displayLabel="[[ti7:displayLabel]]" authority="[[ti7:authority]]" authorityURI="[[ti7:authorityURI]]" valueURI="[[ti7:valueURI]]" nameTitleGroup="[[ti7:nameTitleGroup]]">
|
46
46
|
<nonSort>[[ti7:nonSort]]</nonSort>
|
47
47
|
<title>[[ti7:title]]</title>
|
48
|
-
<subTitle>[[ti7:subTitle]]</subTitle>
|
49
|
-
<partNumber>[[ti7:partNumber]]</partNumber>
|
48
|
+
<subTitle>[[ti7:subTitle]]</subTitle>
|
49
|
+
<partNumber>[[ti7:partNumber]]</partNumber>
|
50
50
|
<partName>[[ti7:partName]]</partName>
|
51
51
|
</titleInfo>
|
52
|
-
<titleInfo type="[[ti8:type]]" displayLabel="[[ti8:displayLabel]]" authority="[[ti8:authority]]" authorityURI="[[ti8:authorityURI]]" valueURI="[[ti8:valueURI]]" nameTitleGroup="[[ti8:nameTitleGroup]]"
|
52
|
+
<titleInfo type="[[ti8:type]]" displayLabel="[[ti8:displayLabel]]" authority="[[ti8:authority]]" authorityURI="[[ti8:authorityURI]]" valueURI="[[ti8:valueURI]]" nameTitleGroup="[[ti8:nameTitleGroup]]">
|
53
53
|
<nonSort>[[ti8:nonSort]]</nonSort>
|
54
54
|
<title>[[ti8:title]]</title>
|
55
|
-
<subTitle>[[ti8:subTitle]]</subTitle>
|
56
|
-
<partNumber>[[ti8:partNumber]]</partNumber>
|
55
|
+
<subTitle>[[ti8:subTitle]]</subTitle>
|
56
|
+
<partNumber>[[ti8:partNumber]]</partNumber>
|
57
57
|
<partName>[[ti8:partName]]</partName>
|
58
58
|
</titleInfo>
|
59
|
-
<titleInfo type="[[ti9:type]]" displayLabel="[[ti9:displayLabel]]" authority="[[ti9:authority]]" authorityURI="[[ti9:authorityURI]]" valueURI="[[ti9:valueURI]]" nameTitleGroup="[[ti9:nameTitleGroup]]"
|
59
|
+
<titleInfo type="[[ti9:type]]" displayLabel="[[ti9:displayLabel]]" authority="[[ti9:authority]]" authorityURI="[[ti9:authorityURI]]" valueURI="[[ti9:valueURI]]" nameTitleGroup="[[ti9:nameTitleGroup]]">
|
60
60
|
<nonSort>[[ti9:nonSort]]</nonSort>
|
61
61
|
<title>[[ti9:title]]</title>
|
62
|
-
<subTitle>[[ti9:subTitle]]</subTitle>
|
63
|
-
<partNumber>[[ti9:partNumber]]</partNumber>
|
62
|
+
<subTitle>[[ti9:subTitle]]</subTitle>
|
63
|
+
<partNumber>[[ti9:partNumber]]</partNumber>
|
64
64
|
<partName>[[ti9:partName]]</partName>
|
65
65
|
</titleInfo>
|
66
|
-
<titleInfo type="[[ti10:type]]" displayLabel="[[ti10:displayLabel]]" authority="[[ti10:authority]]" authorityURI="[[ti10:authorityURI]]" valueURI="[[ti10:valueURI]]" nameTitleGroup="[[ti10:nameTitleGroup]]"
|
66
|
+
<titleInfo type="[[ti10:type]]" displayLabel="[[ti10:displayLabel]]" authority="[[ti10:authority]]" authorityURI="[[ti10:authorityURI]]" valueURI="[[ti10:valueURI]]" nameTitleGroup="[[ti10:nameTitleGroup]]">
|
67
67
|
<nonSort>[[ti10:nonSort]]</nonSort>
|
68
68
|
<title>[[ti10:title]]</title>
|
69
|
-
<subTitle>[[ti10:subTitle]]</subTitle>
|
70
|
-
<partNumber>[[ti10:partNumber]]</partNumber>
|
69
|
+
<subTitle>[[ti10:subTitle]]</subTitle>
|
70
|
+
<partNumber>[[ti10:partNumber]]</partNumber>
|
71
71
|
<partName>[[ti10:partName]]</partName>
|
72
72
|
</titleInfo>
|
73
|
-
<name type="[[na1:type]]" usage="[[na1:usage]]" authority="[[na1:authority]]" authorityURI="[[na1:authorityURI]]" valueURI="[[na1:valueURI]]" nameTitleGroup="[[na1:nameTitleGroup]]"
|
73
|
+
<name type="[[na1:type]]" usage="[[na1:usage]]" authority="[[na1:authority]]" authorityURI="[[na1:authorityURI]]" valueURI="[[na1:valueURI]]" nameTitleGroup="[[na1:nameTitleGroup]]">
|
74
74
|
<namePart>[[na1:namePart]]</namePart>
|
75
75
|
<role>
|
76
76
|
<roleTerm type="code" authority="[[ro1:authority]]" authorityURI="[[ro1:authorityURI]]" valueURI="[[ro1:valueURI]]">[[ro1:roleCode]]</roleTerm>
|
@@ -85,7 +85,7 @@
|
|
85
85
|
<roleTerm type="text" authority="[[ro1:authority3]]" authorityURI="[[ro1:authorityURI3]]" valueURI="[[ro1:valueURI3]]">[[ro1:roleText3]]</roleTerm>
|
86
86
|
</role>
|
87
87
|
</name>
|
88
|
-
<name type="[[na2:type]]" authority="[[na2:authority]]" authorityURI="[[na2:authorityURI]]" valueURI="[[na2:valueURI]]" nameTitleGroup="[[na2:nameTitleGroup]]"
|
88
|
+
<name type="[[na2:type]]" authority="[[na2:authority]]" authorityURI="[[na2:authorityURI]]" valueURI="[[na2:valueURI]]" nameTitleGroup="[[na2:nameTitleGroup]]">
|
89
89
|
<namePart>[[na2:namePart]]</namePart>
|
90
90
|
<role>
|
91
91
|
<roleTerm type="code" authority="[[ro2:authority]]" authorityURI="[[ro2:authorityURI]]" valueURI="[[ro2:valueURI]]">[[ro2:roleCode]]</roleTerm>
|
@@ -100,7 +100,7 @@
|
|
100
100
|
<roleTerm type="text" authority="[[ro2:authority3]]" authorityURI="[[ro2:authorityURI3]]" valueURI="[[ro2:valueURI3]]">[[ro2:roleText3]]</roleTerm>
|
101
101
|
</role>
|
102
102
|
</name>
|
103
|
-
<name type="[[na3:type]]" authority="[[na3:authority]]" authorityURI="[[na3:authorityURI]]" valueURI="[[na3:valueURI]]" nameTitleGroup="[[na3:nameTitleGroup]]"
|
103
|
+
<name type="[[na3:type]]" authority="[[na3:authority]]" authorityURI="[[na3:authorityURI]]" valueURI="[[na3:valueURI]]" nameTitleGroup="[[na3:nameTitleGroup]]">
|
104
104
|
<namePart>[[na3:namePart]]</namePart>
|
105
105
|
<role>
|
106
106
|
<roleTerm type="code" authority="[[ro3:authority]]" authorityURI="[[ro3:authorityURI]]" valueURI="[[ro3:valueURI]]">[[ro3:roleCode]]</roleTerm>
|
@@ -115,7 +115,7 @@
|
|
115
115
|
<roleTerm type="text" authority="[[ro3:authority3]]" authorityURI="[[ro3:authorityURI3]]" valueURI="[[ro3:valueURI3]]">[[ro3:roleText3]]</roleTerm>
|
116
116
|
</role>
|
117
117
|
</name>
|
118
|
-
<name type="[[na4:type]]" authority="[[na4:authority]]" authorityURI="[[na4:authorityURI]]" valueURI="[[na4:valueURI]]" nameTitleGroup="[[na4:nameTitleGroup]]"
|
118
|
+
<name type="[[na4:type]]" authority="[[na4:authority]]" authorityURI="[[na4:authorityURI]]" valueURI="[[na4:valueURI]]" nameTitleGroup="[[na4:nameTitleGroup]]">
|
119
119
|
<namePart>[[na4:namePart]]</namePart>
|
120
120
|
<role>
|
121
121
|
<roleTerm type="code" authority="[[ro4:authority]]" authorityURI="[[ro4:authorityURI]]" valueURI="[[ro4:valueURI]]">[[ro4:roleCode]]</roleTerm>
|
@@ -130,7 +130,7 @@
|
|
130
130
|
<roleTerm type="text" authority="[[ro4:authority3]]" authorityURI="[[ro4:authorityURI3]]" valueURI="[[ro4:valueURI3]]">[[ro4:roleText3]]</roleTerm>
|
131
131
|
</role>
|
132
132
|
</name>
|
133
|
-
<name type="[[na5:type]]" authority="[[na5:authority]]" authorityURI="[[na5:authorityURI]]" valueURI="[[na5:valueURI]]" nameTitleGroup="[[na5:nameTitleGroup]]"
|
133
|
+
<name type="[[na5:type]]" authority="[[na5:authority]]" authorityURI="[[na5:authorityURI]]" valueURI="[[na5:valueURI]]" nameTitleGroup="[[na5:nameTitleGroup]]">
|
134
134
|
<namePart>[[na5:namePart]]</namePart>
|
135
135
|
<role>
|
136
136
|
<roleTerm type="code" authority="[[ro5:authority]]" authorityURI="[[ro5:authorityURI]]" valueURI="[[ro5:valueURI]]">[[ro5:roleCode]]</roleTerm>
|
@@ -145,7 +145,7 @@
|
|
145
145
|
<roleTerm type="text" authority="[[ro5:authority3]]" authorityURI="[[ro5:authorityURI3]]" valueURI="[[ro5:valueURI3]]">[[ro5:roleText3]]</roleTerm>
|
146
146
|
</role>
|
147
147
|
</name>
|
148
|
-
<name type="[[na6:type]]" authority="[[na6:authority]]" authorityURI="[[na6:authorityURI]]" valueURI="[[na6:valueURI]]" nameTitleGroup="[[na6:nameTitleGroup]]"
|
148
|
+
<name type="[[na6:type]]" authority="[[na6:authority]]" authorityURI="[[na6:authorityURI]]" valueURI="[[na6:valueURI]]" nameTitleGroup="[[na6:nameTitleGroup]]">
|
149
149
|
<namePart>[[na6:namePart]]</namePart>
|
150
150
|
<role>
|
151
151
|
<roleTerm type="code" authority="[[ro6:authority]]" authorityURI="[[ro6:authorityURI]]" valueURI="[[ro6:valueURI]]">[[ro6:roleCode]]</roleTerm>
|
@@ -160,7 +160,7 @@
|
|
160
160
|
<roleTerm type="text" authority="[[ro6:authority3]]" authorityURI="[[ro6:authorityURI3]]" valueURI="[[ro6:valueURI3]]">[[ro6:roleText3]]</roleTerm>
|
161
161
|
</role>
|
162
162
|
</name>
|
163
|
-
<name type="[[na7:type]]" authority="[[na7:authority]]" authorityURI="[[na7:authorityURI]]" valueURI="[[na7:valueURI]]" nameTitleGroup="[[na7:nameTitleGroup]]"
|
163
|
+
<name type="[[na7:type]]" authority="[[na7:authority]]" authorityURI="[[na7:authorityURI]]" valueURI="[[na7:valueURI]]" nameTitleGroup="[[na7:nameTitleGroup]]">
|
164
164
|
<namePart>[[na7:namePart]]</namePart>
|
165
165
|
<role>
|
166
166
|
<roleTerm type="code" authority="[[ro7:authority]]" authorityURI="[[ro7:authorityURI]]" valueURI="[[ro7:valueURI]]">[[ro7:roleCode]]</roleTerm>
|
@@ -175,7 +175,7 @@
|
|
175
175
|
<roleTerm type="text" authority="[[ro7:authority3]]" authorityURI="[[ro7:authorityURI3]]" valueURI="[[ro7:valueURI3]]">[[ro7:roleText3]]</roleTerm>
|
176
176
|
</role>
|
177
177
|
</name>
|
178
|
-
<name type="[[na8:type]]" authority="[[na8:authority]]" authorityURI="[[na8:authorityURI]]" valueURI="[[na8:valueURI]]" nameTitleGroup="[[na8:nameTitleGroup]]"
|
178
|
+
<name type="[[na8:type]]" authority="[[na8:authority]]" authorityURI="[[na8:authorityURI]]" valueURI="[[na8:valueURI]]" nameTitleGroup="[[na8:nameTitleGroup]]">
|
179
179
|
<namePart>[[na8:namePart]]</namePart>
|
180
180
|
<role>
|
181
181
|
<roleTerm type="code" authority="[[ro8:authority]]" authorityURI="[[ro8:authorityURI]]" valueURI="[[ro8:valueURI]]">[[ro8:roleCode]]</roleTerm>
|
@@ -190,7 +190,7 @@
|
|
190
190
|
<roleTerm type="text" authority="[[ro8:authority3]]" authorityURI="[[ro8:authorityURI3]]" valueURI="[[ro8:valueURI3]]">[[ro8:roleText3]]</roleTerm>
|
191
191
|
</role>
|
192
192
|
</name>
|
193
|
-
<name type="[[na9:type]]" authority="[[na9:authority]]" authorityURI="[[na9:authorityURI]]" valueURI="[[na9:valueURI]]" nameTitleGroup="[[na9:nameTitleGroup]]"
|
193
|
+
<name type="[[na9:type]]" authority="[[na9:authority]]" authorityURI="[[na9:authorityURI]]" valueURI="[[na9:valueURI]]" nameTitleGroup="[[na9:nameTitleGroup]]">
|
194
194
|
<namePart>[[na9:namePart]]</namePart>
|
195
195
|
<role>
|
196
196
|
<roleTerm type="code" authority="[[ro9:authority]]" authorityURI="[[ro9:authorityURI]]" valueURI="[[ro9:valueURI]]">[[ro9:roleCode]]</roleTerm>
|
@@ -205,7 +205,7 @@
|
|
205
205
|
<roleTerm type="text" authority="[[ro9:authority3]]" authorityURI="[[ro9:authorityURI3]]" valueURI="[[ro9:valueURI3]]">[[ro9:roleText3]]</roleTerm>
|
206
206
|
</role>
|
207
207
|
</name>
|
208
|
-
<name type="[[na10:type]]" authority="[[na10:authority]]" authorityURI="[[na10:authorityURI]]" valueURI="[[na10:valueURI]]" nameTitleGroup="[[na10:nameTitleGroup]]"
|
208
|
+
<name type="[[na10:type]]" authority="[[na10:authority]]" authorityURI="[[na10:authorityURI]]" valueURI="[[na10:valueURI]]" nameTitleGroup="[[na10:nameTitleGroup]]">
|
209
209
|
<namePart>[[na10:namePart]]</namePart>
|
210
210
|
<role>
|
211
211
|
<roleTerm type="code" authority="[[ro10:authority]]" authorityURI="[[ro10:authorityURI]]" valueURI="[[ro10:valueURI]]">[[ro10:roleCode]]</roleTerm>
|
@@ -220,7 +220,7 @@
|
|
220
220
|
<roleTerm type="text" authority="[[ro10:authority3]]" authorityURI="[[ro10:authorityURI3]]" valueURI="[[ro10:valueURI3]]">[[ro10:roleText3]]</roleTerm>
|
221
221
|
</role>
|
222
222
|
</name>
|
223
|
-
<name type="[[na11:type]]" authority="[[na11:authority]]" authorityURI="[[na11:authorityURI]]" valueURI="[[na11:valueURI]]"
|
223
|
+
<name type="[[na11:type]]" authority="[[na11:authority]]" authorityURI="[[na11:authorityURI]]" valueURI="[[na11:valueURI]]">
|
224
224
|
<namePart>[[na11:namePart]]</namePart>
|
225
225
|
<role>
|
226
226
|
<roleTerm type="code" authority="[[ro11:authority]]" authorityURI="[[ro11:authorityURI]]" valueURI="[[ro11:valueURI]]">[[ro11:roleCode]]</roleTerm>
|
@@ -235,7 +235,7 @@
|
|
235
235
|
<roleTerm type="text" authority="[[ro11:authority3]]" authorityURI="[[ro11:authorityURI3]]" valueURI="[[ro11:valueURI3]]">[[ro11:roleText3]]</roleTerm>
|
236
236
|
</role>
|
237
237
|
</name>
|
238
|
-
<name type="[[na12:type]]" authority="[[na12:authority]]" authorityURI="[[na12:authorityURI]]" valueURI="[[na12:valueURI]]"
|
238
|
+
<name type="[[na12:type]]" authority="[[na12:authority]]" authorityURI="[[na12:authorityURI]]" valueURI="[[na12:valueURI]]">
|
239
239
|
<namePart>[[na12:namePart]]</namePart>
|
240
240
|
<role>
|
241
241
|
<roleTerm type="code" authority="[[ro12:authority]]" authorityURI="[[ro12:authorityURI]]" valueURI="[[ro12:valueURI]]">[[ro12:roleCode]]</roleTerm>
|
@@ -250,7 +250,7 @@
|
|
250
250
|
<roleTerm type="text" authority="[[ro12:authority3]]" authorityURI="[[ro12:authorityURI3]]" valueURI="[[ro12:valueURI3]]">[[ro12:roleText3]]</roleTerm>
|
251
251
|
</role>
|
252
252
|
</name>
|
253
|
-
<name type="[[na13:type]]" authority="[[na13:authority]]" authorityURI="[[na13:authorityURI]]" valueURI="[[na13:valueURI]]"
|
253
|
+
<name type="[[na13:type]]" authority="[[na13:authority]]" authorityURI="[[na13:authorityURI]]" valueURI="[[na13:valueURI]]">
|
254
254
|
<namePart>[[na13:namePart]]</namePart>
|
255
255
|
<role>
|
256
256
|
<roleTerm type="code" authority="[[ro13:authority]]" authorityURI="[[ro13:authorityURI]]" valueURI="[[ro13:valueURI]]">[[ro13:roleCode]]</roleTerm>
|
@@ -265,7 +265,7 @@
|
|
265
265
|
<roleTerm type="text" authority="[[ro13:authority3]]" authorityURI="[[ro13:authorityURI3]]" valueURI="[[ro13:valueURI3]]">[[ro13:roleText3]]</roleTerm>
|
266
266
|
</role>
|
267
267
|
</name>
|
268
|
-
<name type="[[na14:type]]" authority="[[na14:authority]]" authorityURI="[[na14:authorityURI]]" valueURI="[[na14:valueURI]]"
|
268
|
+
<name type="[[na14:type]]" authority="[[na14:authority]]" authorityURI="[[na14:authorityURI]]" valueURI="[[na14:valueURI]]">
|
269
269
|
<namePart>[[na14:namePart]]</namePart>
|
270
270
|
<role>
|
271
271
|
<roleTerm type="code" authority="[[ro14:authority]]" authorityURI="[[ro14:authorityURI]]" valueURI="[[ro14:valueURI]]">[[ro14:roleCode]]</roleTerm>
|
@@ -280,7 +280,7 @@
|
|
280
280
|
<roleTerm type="text" authority="[[ro14:authority3]]" authorityURI="[[ro14:authorityURI3]]" valueURI="[[ro14:valueURI3]]">[[ro14:roleText3]]</roleTerm>
|
281
281
|
</role>
|
282
282
|
</name>
|
283
|
-
<name type="[[na15:type]]" authority="[[na15:authority]]" authorityURI="[[na15:authorityURI]]" valueURI="[[na15:valueURI]]"
|
283
|
+
<name type="[[na15:type]]" authority="[[na15:authority]]" authorityURI="[[na15:authorityURI]]" valueURI="[[na15:valueURI]]">
|
284
284
|
<namePart>[[na15:namePart]]</namePart>
|
285
285
|
<role>
|
286
286
|
<roleTerm type="code" authority="[[ro15:authority]]" authorityURI="[[ro15:authorityURI]]" valueURI="[[ro15:valueURI]]">[[ro15:roleCode]]</roleTerm>
|
@@ -295,7 +295,7 @@
|
|
295
295
|
<roleTerm type="text" authority="[[ro15:authority3]]" authorityURI="[[ro15:authorityURI3]]" valueURI="[[ro15:valueURI3]]">[[ro15:roleText3]]</roleTerm>
|
296
296
|
</role>
|
297
297
|
</name>
|
298
|
-
<name type="[[na16:type]]" authority="[[na16:authority]]" authorityURI="[[na16:authorityURI]]" valueURI="[[na16:valueURI]]"
|
298
|
+
<name type="[[na16:type]]" authority="[[na16:authority]]" authorityURI="[[na16:authorityURI]]" valueURI="[[na16:valueURI]]">
|
299
299
|
<namePart>[[na16:namePart]]</namePart>
|
300
300
|
<role>
|
301
301
|
<roleTerm type="code" authority="[[ro16:authority]]" authorityURI="[[ro16:authorityURI]]" valueURI="[[ro16:valueURI]]">[[ro16:roleCode]]</roleTerm>
|
@@ -310,7 +310,7 @@
|
|
310
310
|
<roleTerm type="text" authority="[[ro16:authority3]]" authorityURI="[[ro16:authorityURI3]]" valueURI="[[ro16:valueURI3]]">[[ro16:roleText3]]</roleTerm>
|
311
311
|
</role>
|
312
312
|
</name>
|
313
|
-
<name type="[[na17:type]]" authority="[[na17:authority]]" authorityURI="[[na17:authorityURI]]" valueURI="[[na17:valueURI]]"
|
313
|
+
<name type="[[na17:type]]" authority="[[na17:authority]]" authorityURI="[[na17:authorityURI]]" valueURI="[[na17:valueURI]]">
|
314
314
|
<namePart>[[na17:namePart]]</namePart>
|
315
315
|
<role>
|
316
316
|
<roleTerm type="code" authority="[[ro17:authority]]" authorityURI="[[ro17:authorityURI]]" valueURI="[[ro17:valueURI]]">[[ro17:roleCode]]</roleTerm>
|
@@ -325,7 +325,7 @@
|
|
325
325
|
<roleTerm type="text" authority="[[ro17:authority3]]" authorityURI="[[ro17:authorityURI3]]" valueURI="[[ro17:valueURI3]]">[[ro17:roleText3]]</roleTerm>
|
326
326
|
</role>
|
327
327
|
</name>
|
328
|
-
<name type="[[na18:type]]" authority="[[na18:authority]]" authorityURI="[[na18:authorityURI]]" valueURI="[[na18:valueURI]]"
|
328
|
+
<name type="[[na18:type]]" authority="[[na18:authority]]" authorityURI="[[na18:authorityURI]]" valueURI="[[na18:valueURI]]">
|
329
329
|
<namePart>[[na18:namePart]]</namePart>
|
330
330
|
<role>
|
331
331
|
<roleTerm type="code" authority="[[ro18:authority]]" authorityURI="[[ro18:authorityURI]]" valueURI="[[ro18:valueURI]]">[[ro18:roleCode]]</roleTerm>
|
@@ -340,7 +340,7 @@
|
|
340
340
|
<roleTerm type="text" authority="[[ro18:authority3]]" authorityURI="[[ro18:authorityURI3]]" valueURI="[[ro18:valueURI3]]">[[ro18:roleText3]]</roleTerm>
|
341
341
|
</role>
|
342
342
|
</name>
|
343
|
-
<name type="[[na19:type]]" authority="[[na19:authority]]" authorityURI="[[na19:authorityURI]]" valueURI="[[na19:valueURI]]"
|
343
|
+
<name type="[[na19:type]]" authority="[[na19:authority]]" authorityURI="[[na19:authorityURI]]" valueURI="[[na19:valueURI]]">
|
344
344
|
<namePart>[[na19:namePart]]</namePart>
|
345
345
|
<role>
|
346
346
|
<roleTerm type="code" authority="[[ro19:authority]]" authorityURI="[[ro19:authorityURI]]" valueURI="[[ro19:valueURI]]">[[ro19:roleCode]]</roleTerm>
|
@@ -355,7 +355,7 @@
|
|
355
355
|
<roleTerm type="text" authority="[[ro19:authority3]]" authorityURI="[[ro19:authorityURI3]]" valueURI="[[ro19:valueURI3]]">[[ro19:roleText3]]</roleTerm>
|
356
356
|
</role>
|
357
357
|
</name>
|
358
|
-
<name type="[[na20:type]]" authority="[[na20:authority]]" authorityURI="[[na20:authorityURI]]" valueURI="[[na20:valueURI]]"
|
358
|
+
<name type="[[na20:type]]" authority="[[na20:authority]]" authorityURI="[[na20:authorityURI]]" valueURI="[[na20:valueURI]]">
|
359
359
|
<namePart>[[na20:namePart]]</namePart>
|
360
360
|
<role>
|
361
361
|
<roleTerm type="code" authority="[[ro20:authority]]" authorityURI="[[ro20:authorityURI]]" valueURI="[[ro20:valueURI]]">[[ro20:roleCode]]</roleTerm>
|
@@ -370,7 +370,7 @@
|
|
370
370
|
<roleTerm type="text" authority="[[ro20:authority3]]" authorityURI="[[ro20:authorityURI3]]" valueURI="[[ro20:valueURI3]]">[[ro20:roleText3]]</roleTerm>
|
371
371
|
</role>
|
372
372
|
</name>
|
373
|
-
<name type="[[na21:type]]" authority="[[na21:authority]]" authorityURI="[[na21:authorityURI]]" valueURI="[[na21:valueURI]]"
|
373
|
+
<name type="[[na21:type]]" authority="[[na21:authority]]" authorityURI="[[na21:authorityURI]]" valueURI="[[na21:valueURI]]">
|
374
374
|
<namePart>[[na21:namePart]]</namePart>
|
375
375
|
<role>
|
376
376
|
<roleTerm type="code" authority="[[ro21:authority]]" authorityURI="[[ro21:authorityURI]]" valueURI="[[ro21:valueURI]]">[[ro21:roleCode]]</roleTerm>
|
@@ -385,7 +385,7 @@
|
|
385
385
|
<roleTerm type="text" authority="[[ro21:authority3]]" authorityURI="[[ro21:authorityURI3]]" valueURI="[[ro21:valueURI3]]">[[ro21:roleText3]]</roleTerm>
|
386
386
|
</role>
|
387
387
|
</name>
|
388
|
-
<name type="[[na22:type]]" authority="[[na22:authority]]" authorityURI="[[na22:authorityURI]]" valueURI="[[na22:valueURI]]"
|
388
|
+
<name type="[[na22:type]]" authority="[[na22:authority]]" authorityURI="[[na22:authorityURI]]" valueURI="[[na22:valueURI]]">
|
389
389
|
<namePart>[[na22:namePart]]</namePart>
|
390
390
|
<role>
|
391
391
|
<roleTerm type="code" authority="[[ro22:authority]]" authorityURI="[[ro22:authorityURI]]" valueURI="[[ro22:valueURI]]">[[ro22:roleCode]]</roleTerm>
|
@@ -400,7 +400,7 @@
|
|
400
400
|
<roleTerm type="text" authority="[[ro22:authority3]]" authorityURI="[[ro22:authorityURI3]]" valueURI="[[ro22:valueURI3]]">[[ro22:roleText3]]</roleTerm>
|
401
401
|
</role>
|
402
402
|
</name>
|
403
|
-
<name type="[[na23:type]]" authority="[[na23:authority]]" authorityURI="[[na23:authorityURI]]" valueURI="[[na23:valueURI]]"
|
403
|
+
<name type="[[na23:type]]" authority="[[na23:authority]]" authorityURI="[[na23:authorityURI]]" valueURI="[[na23:valueURI]]">
|
404
404
|
<namePart>[[na23:namePart]]</namePart>
|
405
405
|
<role>
|
406
406
|
<roleTerm type="code" authority="[[ro23:authority]]" authorityURI="[[ro23:authorityURI]]" valueURI="[[ro23:valueURI]]">[[ro23:roleCode]]</roleTerm>
|
@@ -415,7 +415,7 @@
|
|
415
415
|
<roleTerm type="text" authority="[[ro23:authority3]]" authorityURI="[[ro23:authorityURI3]]" valueURI="[[ro23:valueURI3]]">[[ro23:roleText3]]</roleTerm>
|
416
416
|
</role>
|
417
417
|
</name>
|
418
|
-
<name type="[[na24:type]]" authority="[[na24:authority]]" authorityURI="[[na24:authorityURI]]" valueURI="[[na24:valueURI]]"
|
418
|
+
<name type="[[na24:type]]" authority="[[na24:authority]]" authorityURI="[[na24:authorityURI]]" valueURI="[[na24:valueURI]]">
|
419
419
|
<namePart>[[na24:namePart]]</namePart>
|
420
420
|
<role>
|
421
421
|
<roleTerm type="code" authority="[[ro24:authority]]" authorityURI="[[ro24:authorityURI]]" valueURI="[[ro24:valueURI]]">[[ro24:roleCode]]</roleTerm>
|
@@ -430,7 +430,7 @@
|
|
430
430
|
<roleTerm type="text" authority="[[ro24:authority3]]" authorityURI="[[ro24:authorityURI3]]" valueURI="[[ro24:valueURI3]]">[[ro24:roleText3]]</roleTerm>
|
431
431
|
</role>
|
432
432
|
</name>
|
433
|
-
<name type="[[na25:type]]" authority="[[na25:authority]]" authorityURI="[[na25:authorityURI]]" valueURI="[[na25:valueURI]]"
|
433
|
+
<name type="[[na25:type]]" authority="[[na25:authority]]" authorityURI="[[na25:authorityURI]]" valueURI="[[na25:valueURI]]">
|
434
434
|
<namePart>[[na25:namePart]]</namePart>
|
435
435
|
<role>
|
436
436
|
<roleTerm type="code" authority="[[ro25:authority]]" authorityURI="[[ro25:authorityURI]]" valueURI="[[ro25:valueURI]]">[[ro25:roleCode]]</roleTerm>
|
@@ -445,7 +445,7 @@
|
|
445
445
|
<roleTerm type="text" authority="[[ro25:authority3]]" authorityURI="[[ro25:authorityURI3]]" valueURI="[[ro25:valueURI3]]">[[ro25:roleText3]]</roleTerm>
|
446
446
|
</role>
|
447
447
|
</name>
|
448
|
-
<name type="[[na26:type]]" authority="[[na26:authority]]" authorityURI="[[na26:authorityURI]]" valueURI="[[na26:valueURI]]"
|
448
|
+
<name type="[[na26:type]]" authority="[[na26:authority]]" authorityURI="[[na26:authorityURI]]" valueURI="[[na26:valueURI]]">
|
449
449
|
<namePart>[[na26:namePart]]</namePart>
|
450
450
|
<role>
|
451
451
|
<roleTerm type="code" authority="[[ro26:authority]]" authorityURI="[[ro26:authorityURI]]" valueURI="[[ro26:valueURI]]">[[ro26:roleCode]]</roleTerm>
|
@@ -460,7 +460,7 @@
|
|
460
460
|
<roleTerm type="text" authority="[[ro26:authority3]]" authorityURI="[[ro26:authorityURI3]]" valueURI="[[ro26:valueURI3]]">[[ro26:roleText3]]</roleTerm>
|
461
461
|
</role>
|
462
462
|
</name>
|
463
|
-
<name type="[[na27:type]]" authority="[[na27:authority]]" authorityURI="[[na27:authorityURI]]" valueURI="[[na27:valueURI]]"
|
463
|
+
<name type="[[na27:type]]" authority="[[na27:authority]]" authorityURI="[[na27:authorityURI]]" valueURI="[[na27:valueURI]]">
|
464
464
|
<namePart>[[na27:namePart]]</namePart>
|
465
465
|
<role>
|
466
466
|
<roleTerm type="code" authority="[[ro27:authority]]" authorityURI="[[ro27:authorityURI]]" valueURI="[[ro27:valueURI]]">[[ro27:roleCode]]</roleTerm>
|
@@ -475,7 +475,7 @@
|
|
475
475
|
<roleTerm type="text" authority="[[ro27:authority3]]" authorityURI="[[ro27:authorityURI3]]" valueURI="[[ro27:valueURI3]]">[[ro27:roleText3]]</roleTerm>
|
476
476
|
</role>
|
477
477
|
</name>
|
478
|
-
<name type="[[na28:type]]" authority="[[na28:authority]]" authorityURI="[[na28:authorityURI]]" valueURI="[[na28:valueURI]]"
|
478
|
+
<name type="[[na28:type]]" authority="[[na28:authority]]" authorityURI="[[na28:authorityURI]]" valueURI="[[na28:valueURI]]">
|
479
479
|
<namePart>[[na28:namePart]]</namePart>
|
480
480
|
<role>
|
481
481
|
<roleTerm type="code" authority="[[ro28:authority]]" authorityURI="[[ro28:authorityURI]]" valueURI="[[ro28:valueURI]]">[[ro28:roleCode]]</roleTerm>
|
@@ -490,7 +490,7 @@
|
|
490
490
|
<roleTerm type="text" authority="[[ro28:authority3]]" authorityURI="[[ro28:authorityURI3]]" valueURI="[[ro28:valueURI3]]">[[ro28:roleText3]]</roleTerm>
|
491
491
|
</role>
|
492
492
|
</name>
|
493
|
-
<name type="[[na29:type]]" authority="[[na29:authority]]" authorityURI="[[na29:authorityURI]]" valueURI="[[na29:valueURI]]"
|
493
|
+
<name type="[[na29:type]]" authority="[[na29:authority]]" authorityURI="[[na29:authorityURI]]" valueURI="[[na29:valueURI]]">
|
494
494
|
<namePart>[[na29:namePart]]</namePart>
|
495
495
|
<role>
|
496
496
|
<roleTerm type="code" authority="[[ro29:authority]]" authorityURI="[[ro29:authorityURI]]" valueURI="[[ro29:valueURI]]">[[ro29:roleCode]]</roleTerm>
|
@@ -505,7 +505,7 @@
|
|
505
505
|
<roleTerm type="text" authority="[[ro29:authority3]]" authorityURI="[[ro29:authorityURI3]]" valueURI="[[ro29:valueURI3]]">[[ro29:roleText3]]</roleTerm>
|
506
506
|
</role>
|
507
507
|
</name>
|
508
|
-
<name type="[[na30:type]]" authority="[[na30:authority]]" authorityURI="[[na30:authorityURI]]" valueURI="[[na30:valueURI]]"
|
508
|
+
<name type="[[na30:type]]" authority="[[na30:authority]]" authorityURI="[[na30:authorityURI]]" valueURI="[[na30:valueURI]]">
|
509
509
|
<namePart>[[na30:namePart]]</namePart>
|
510
510
|
<role>
|
511
511
|
<roleTerm type="code" authority="[[ro30:authority]]" authorityURI="[[ro30:authorityURI]]" valueURI="[[ro30:valueURI]]">[[ro30:roleCode]]</roleTerm>
|
@@ -533,12 +533,12 @@
|
|
533
533
|
<genre type="[[ge8:type]]" authority="[[ge8:authority]]" authorityURI="[[ge8:authorityURI]]" valueURI="[[ge8:valueURI]]">[[ge8:genre]]</genre>
|
534
534
|
<genre type="[[ge9:type]]" authority="[[ge9:authority]]" authorityURI="[[ge9:authorityURI]]" valueURI="[[ge9:valueURI]]">[[ge9:genre]]</genre>
|
535
535
|
<genre type="[[ge10:type]]" authority="[[ge10:authority]]" authorityURI="[[ge10:authorityURI]]" valueURI="[[ge10:valueURI]]">[[ge10:genre]]</genre>
|
536
|
-
<originInfo displayLabel="[[or:displayLabel]]" eventType="[[or:eventType]]"
|
536
|
+
<originInfo displayLabel="[[or:displayLabel]]" eventType="[[or:eventType]]">
|
537
537
|
<place>
|
538
538
|
<placeTerm type="code" authority="[[pl:authority]]" authorityURI="[[pl:authorityURI]]" valueURI="[[pl:valueURI]]">[[pl:placeCode]]</placeTerm>
|
539
539
|
<placeTerm type="text" authority="[[pl:authority]]" authorityURI="[[pl:authorityURI]]" valueURI="[[pl:valueURI]]">[[pl:placeText]]</placeTerm>
|
540
540
|
</place>
|
541
|
-
<publisher
|
541
|
+
<publisher>[[or:publisher]]</publisher>
|
542
542
|
<dateCreated keyDate="[[dt:dateCreatedKeyDate]]" encoding="[[dt:dateCreatedEncoding]]" qualifier="[[dt:dateCreatedQualifier]]" point="[[dt:dateCreatedPoint]]">[[dt:dateCreated]]</dateCreated>
|
543
543
|
<dateCreated encoding="[[dt:dateCreatedEncoding]]" qualifier="[[dt:dateCreated2Qualifier]]" point="[[dt:dateCreated2Point]]">[[dt:dateCreated2]]</dateCreated>
|
544
544
|
<dateIssued keyDate="[[dt:dateIssuedKeyDate]]" encoding="[[dt:dateIssuedEncoding]]" qualifier="[[dt:dateIssuedQualifier]]" point="[[dt:dateIssuedPoint]]">[[dt:dateIssued]]</dateIssued>
|
@@ -547,17 +547,15 @@
|
|
547
547
|
<dateCaptured encoding="[[dt:dateCapturedEncoding]]" qualifier="[[dt:dateCaptured2Qualifier]]" point="[[dt:dateCaptured2Point]]">[[dt:dateCaptured2]]</dateCaptured>
|
548
548
|
<copyrightDate keyDate="[[dt:copyrightDateKeyDate]]" encoding="[[dt:copyrightDateEncoding]]" qualifier="[[dt:copyrightDateQualifier]]" point="[[dt:copyrightDatePoint]]">[[dt:copyrightDate]]</copyrightDate>
|
549
549
|
<copyrightDate encoding="[[dt:copyrightDateEncoding]]" qualifier="[[dt:copyrightDate2Qualifier]]" point="[[dt:copyrightDate2Point]]">[[dt:copyrightDate2]]</copyrightDate>
|
550
|
-
<dateOther keyDate="[[dt:dateOtherKeyDate]]" type="[[dt:dateOtherType]]" encoding="[[dt:dateOtherEncoding]]" qualifier="[[dt:dateOtherQualifier]]" point="[[dt:dateOtherPoint]]" script="[[dt:dateOtherScript]]" transliteration="[[dt:dateOtherTransliteration]]">[[dt:dateOther]]</dateOther>
|
551
|
-
<dateOther type="[[dt:dateOtherType]]" encoding="[[dt:dateOtherEncoding]]" qualifier="[[dt:dateOther2Qualifier]]" point="[[dt:dateOther2Point]]" script="[[dt:dateOtherScript]]" transliteration="[[dt:dateOtherTransliteration]]">[[dt:dateOther2]]</dateOther>
|
552
550
|
<edition>[[or:edition]]</edition>
|
553
551
|
<issuance>[[or:issuance]]</issuance>
|
554
552
|
</originInfo>
|
555
|
-
<originInfo displayLabel="[[or2:displayLabel]]" eventType="[[or2:eventType]]"
|
553
|
+
<originInfo displayLabel="[[or2:displayLabel]]" eventType="[[or2:eventType]]">
|
556
554
|
<place>
|
557
555
|
<placeTerm type="code" authority="[[or2:pl:authority]]" authorityURI="[[or2:pl:authorityURI]]" valueURI="[[or2:pl:valueURI]]">[[or2:pl:placeCode]]</placeTerm>
|
558
556
|
<placeTerm type="text" authority="[[or2:pl:authority]]" authorityURI="[[or2:pl:authorityURI]]" valueURI="[[or2:pl:valueURI]]">[[or2:pl:placeText]]</placeTerm>
|
559
557
|
</place>
|
560
|
-
<publisher
|
558
|
+
<publisher>[[or2:publisher]]</publisher>
|
561
559
|
<dateCreated keyDate="[[or2:dt:dateCreatedKeyDate]]" encoding="[[or2:dt:dateCreatedEncoding]]" qualifier="[[or2:dt:dateCreatedQualifier]]" point="[[or2:dt:dateCreatedPoint]]">[[or2:dt:dateCreated]]</dateCreated>
|
562
560
|
<dateCreated encoding="[[or2:dt:dateCreatedEncoding]]" qualifier="[[or2:dt:dateCreated2Qualifier]]" point="[[or2:dt:dateCreated2Point]]">[[or2:dt:dateCreated2]]</dateCreated>
|
563
561
|
<dateIssued keyDate="[[or2:dt:dateIssuedKeyDate]]" encoding="[[or2:dt:dateIssuedEncoding]]" qualifier="[[or2:dt:dateIssuedQualifier]]" point="[[or2:dt:dateIssuedPoint]]">[[or2:dt:dateIssued]]</dateIssued>
|
@@ -566,17 +564,14 @@
|
|
566
564
|
<dateCaptured encoding="[[or2:dt:dateCapturedEncoding]]" qualifier="[[or2:dt:dateCaptured2Qualifier]]" point="[[or2:dt:dateCaptured2Point]]">[[or2:dt:dateCaptured2]]</dateCaptured>
|
567
565
|
<copyrightDate keyDate="[[or2:dt:copyrightDateKeyDate]]" encoding="[[or2:dt:copyrightDateEncoding]]" qualifier="[[or2:dt:copyrightDateQualifier]]" point="[[or2:dt:copyrightDatePoint]]">[[or2:dt:copyrightDate]]</copyrightDate>
|
568
566
|
<copyrightDate encoding="[[or2:dt:copyrightDateEncoding]]" qualifier="[[or2:dt:copyrightDate2Qualifier]]" point="[[or2:dt:copyrightDate2Point]]">[[or2:dt:copyrightDate2]]</copyrightDate>
|
569
|
-
<dateOther keyDate="[[or2:dt:dateOtherKeyDate]]" type="[[or2:dt:dateOtherType]]" encoding="[[or2:dt:dateOtherEncoding]]" qualifier="[[or2:dt:dateOtherQualifier]]" point="[[or2:dt:dateOtherPoint]]" script="[[or2:dt:dateOtherScript]]" transliteration="[[or2:dt:dateOtherTransliteration]]">[[or2:dt:dateOther]]</dateOther>
|
570
|
-
<dateOther type="[[or2:dt:dateOtherType]]" encoding="[[or2:dt:dateOtherEncoding]]" qualifier="[[or2:dt:dateOther2Qualifier]]" point="[[or2:dt:dateOther2Point]]" script="[[or2:dt:dateOtherScript]]" transliteration="[[or2:dt:dateOtherTransliteration]]">[[or2:dt:dateOther2]]</dateOther>
|
571
|
-
<edition>[[or2:edition]]</edition>
|
572
567
|
<issuance>[[or2:issuance]]</issuance>
|
573
568
|
</originInfo>
|
574
|
-
<originInfo displayLabel="[[or3:displayLabel]]" eventType="[[or3:eventType]]"
|
569
|
+
<originInfo displayLabel="[[or3:displayLabel]]" eventType="[[or3:eventType]]">
|
575
570
|
<place>
|
576
571
|
<placeTerm type="code" authority="[[or3:pl:authority]]" authorityURI="[[or3:pl:authorityURI]]" valueURI="[[or3:pl:valueURI]]">[[or3:pl:placeCode]]</placeTerm>
|
577
572
|
<placeTerm type="text" authority="[[or3:pl:authority]]" authorityURI="[[or3:pl:authorityURI]]" valueURI="[[or3:pl:valueURI]]">[[or3:pl:placeText]]</placeTerm>
|
578
573
|
</place>
|
579
|
-
<publisher
|
574
|
+
<publisher>[[or3:publisher]]</publisher>
|
580
575
|
<dateCreated keyDate="[[or3:dt:dateCreatedKeyDate]]" encoding="[[or3:dt:dateCreatedEncoding]]" qualifier="[[or3:dt:dateCreatedQualifier]]" point="[[or3:dt:dateCreatedPoint]]">[[or3:dt:dateCreated]]</dateCreated>
|
581
576
|
<dateCreated encoding="[[or3:dt:dateCreatedEncoding]]" qualifier="[[or3:dt:dateCreated2Qualifier]]" point="[[or3:dt:dateCreated2Point]]">[[or3:dt:dateCreated2]]</dateCreated>
|
582
577
|
<dateIssued keyDate="[[or3:dt:dateIssuedKeyDate]]" encoding="[[or3:dt:dateIssuedEncoding]]" qualifier="[[or3:dt:dateIssuedQualifier]]" point="[[or3:dt:dateIssuedPoint]]">[[or3:dt:dateIssued]]</dateIssued>
|
@@ -585,9 +580,6 @@
|
|
585
580
|
<dateCaptured encoding="[[or3:dt:dateCapturedEncoding]]" qualifier="[[or3:dt:dateCaptured2Qualifier]]" point="[[or3:dt:dateCaptured2Point]]">[[or3:dt:dateCaptured2]]</dateCaptured>
|
586
581
|
<copyrightDate keyDate="[[or3:dt:copyrightDateKeyDate]]" encoding="[[or3:dt:copyrightDateEncoding]]" qualifier="[[or3:dt:copyrightDateQualifier]]" point="[[or3:dt:copyrightDatePoint]]">[[or3:dt:copyrightDate]]</copyrightDate>
|
587
582
|
<copyrightDate encoding="[[or3:dt:copyrightDateEncoding]]" qualifier="[[or3:dt:copyrightDate2Qualifier]]" point="[[or3:dt:copyrightDate2Point]]">[[or3:dt:copyrightDate2]]</copyrightDate>
|
588
|
-
<dateOther keyDate="[[or3:dt:dateOtherKeyDate]]" type="[[or3:dt:dateOtherType]]" encoding="[[or3:dt:dateOtherEncoding]]" qualifier="[[or3:dt:dateOtherQualifier]]" point="[[or3:dt:dateOtherPoint]]" script="[[or3:dt:dateOtherScript]]" transliteration="[[or3:dt:dateOtherTransliteration]]">[[or3:dt:dateOther]]</dateOther>
|
589
|
-
<dateOther type="[[or3:dt:dateOtherType]]" encoding="[[or3:dt:dateOtherEncoding]]" qualifier="[[or3:dt:dateOther2Qualifier]]" point="[[or3:dt:dateOther2Point]]" script="[[or3:dt:dateOtherScript]]" transliteration="[[or3:dt:dateOtherTransliteration]]">[[or3:dt:dateOther2]]</dateOther>
|
590
|
-
<edition>[[or3:edition]]</edition>
|
591
583
|
<issuance>[[or3:issuance]]</issuance>
|
592
584
|
</originInfo>
|
593
585
|
<language>
|
@@ -614,6 +606,10 @@
|
|
614
606
|
<languageTerm authority="[[la6:authority]]" authorityURI="[[la6:authorityURI]]" valueURI="[[la6:valueURI]]" type="code">[[la6:code]]</languageTerm>
|
615
607
|
<languageTerm authority="[[la6:authority]]" authorityURI="[[la6:authorityURI]]" valueURI="[[la6:valueURI]]" type="text">[[la6:text]]</languageTerm>
|
616
608
|
</language>
|
609
|
+
<language>
|
610
|
+
<languageTerm authority="[[la7:authority]]" authorityURI="[[la7:authorityURI]]" valueURI="[[la7:valueURI]]" type="code">[[la7:code]]</languageTerm>
|
611
|
+
<languageTerm authority="[[la7:authority]]" authorityURI="[[la7:authorityURI]]" valueURI="[[la7:valueURI]]" type="text">[[la7:text]]</languageTerm>
|
612
|
+
</language>
|
617
613
|
<language>
|
618
614
|
<languageTerm authority="[[la8:authority]]" authorityURI="[[la8:authorityURI]]" valueURI="[[la8:valueURI]]" type="code">[[la8:code]]</languageTerm>
|
619
615
|
<languageTerm authority="[[la8:authority]]" authorityURI="[[la8:authorityURI]]" valueURI="[[la8:valueURI]]" type="text">[[la8:text]]</languageTerm>
|
@@ -636,57 +632,57 @@
|
|
636
632
|
<internetMediaType>[[ph1:internetMediaType3]]</internetMediaType>
|
637
633
|
<internetMediaType>[[ph1:internetMediaType4]]</internetMediaType>
|
638
634
|
<internetMediaType>[[ph1:internetMediaType5]]</internetMediaType>
|
639
|
-
<note displayLabel="[[ph1:displayLabel1]]"
|
640
|
-
<note displayLabel="[[ph1:displayLabel2]]"
|
641
|
-
<note displayLabel="[[ph1:displayLabel3]]"
|
642
|
-
<note displayLabel="[[ph1:displayLabel4]]"
|
643
|
-
<note displayLabel="[[ph1:displayLabel5]]"
|
644
|
-
<note displayLabel="[[ph1:displayLabel6]]"
|
645
|
-
<note displayLabel="[[ph1:displayLabel7]]"
|
646
|
-
<note displayLabel="[[ph1:displayLabel8]]"
|
647
|
-
<note displayLabel="[[ph1:displayLabel9]]"
|
635
|
+
<note displayLabel="[[ph1:displayLabel1]]">[[ph1:note1]]</note>
|
636
|
+
<note displayLabel="[[ph1:displayLabel2]]">[[ph1:note2]]</note>
|
637
|
+
<note displayLabel="[[ph1:displayLabel3]]">[[ph1:note3]]</note>
|
638
|
+
<note displayLabel="[[ph1:displayLabel4]]">[[ph1:note4]]</note>
|
639
|
+
<note displayLabel="[[ph1:displayLabel5]]">[[ph1:note5]]</note>
|
640
|
+
<note displayLabel="[[ph1:displayLabel6]]">[[ph1:note6]]</note>
|
641
|
+
<note displayLabel="[[ph1:displayLabel7]]">[[ph1:note7]]</note>
|
642
|
+
<note displayLabel="[[ph1:displayLabel8]]">[[ph1:note8]]</note>
|
643
|
+
<note displayLabel="[[ph1:displayLabel9]]">[[ph1:note9]]</note>
|
648
644
|
</physicalDescription>
|
649
645
|
<physicalDescription>
|
650
646
|
<form authority="[[ph2:formAuthority]]" authorityURI="[[ph2:formAuthorityURI]]" valueURI="[[ph2:formValueURI]]">[[ph2:form]]</form>
|
651
647
|
<extent>[[ph2:extent]]</extent>
|
652
648
|
<reformattingQuality>[[ph2:reformattingQuality]]</reformattingQuality>
|
653
649
|
<digitalOrigin>[[ph2:digitalOrigin]]</digitalOrigin>
|
654
|
-
<note displayLabel="[[ph2:displayLabel1]]"
|
650
|
+
<note displayLabel="[[ph2:displayLabel1]]">[[ph2:note1]]</note>
|
655
651
|
</physicalDescription>
|
656
652
|
<physicalDescription>
|
657
653
|
<form authority="[[ph3:formAuthority]]" authorityURI="[[ph3:formAuthorityURI]]" valueURI="[[ph3:formValueURI]]">[[ph3:form]]</form>
|
658
654
|
<extent>[[ph3:extent]]</extent>
|
659
655
|
<reformattingQuality>[[ph3:reformattingQuality]]</reformattingQuality>
|
660
656
|
<digitalOrigin>[[ph3:digitalOrigin]]</digitalOrigin>
|
661
|
-
<note displayLabel="[[ph3:displayLabel1]]"
|
657
|
+
<note displayLabel="[[ph3:displayLabel1]]">[[ph3:note1]]</note>
|
662
658
|
</physicalDescription>
|
663
|
-
<abstract displayLabel="[[ab:displayLabel]]"
|
664
|
-
<tableOfContents displayLabel="[[tc:displayLabel]]"
|
665
|
-
<note type="[[no1:type]]" displayLabel="[[no1:displayLabel]]"
|
666
|
-
<note type="[[no2:type]]" displayLabel="[[no2:displayLabel]]"
|
667
|
-
<note type="[[no3:type]]" displayLabel="[[no3:displayLabel]]"
|
668
|
-
<note type="[[no4:type]]" displayLabel="[[no4:displayLabel]]"
|
669
|
-
<note type="[[no5:type]]" displayLabel="[[no5:displayLabel]]"
|
670
|
-
<note type="[[no6:type]]" displayLabel="[[no6:displayLabel]]"
|
671
|
-
<note type="[[no7:type]]" displayLabel="[[no7:displayLabel]]"
|
672
|
-
<note type="[[no8:type]]" displayLabel="[[no8:displayLabel]]"
|
673
|
-
<note type="[[no9:type]]" displayLabel="[[no9:displayLabel]]"
|
674
|
-
<note type="[[no10:type]]" displayLabel="[[no10:displayLabel]]"
|
675
|
-
<note type="[[no11:type]]" displayLabel="[[no11:displayLabel]]"
|
676
|
-
<note type="[[no12:type]]" displayLabel="[[no12:displayLabel]]"
|
677
|
-
<note type="[[no13:type]]" displayLabel="[[no13:displayLabel]]"
|
678
|
-
<note type="[[no14:type]]" displayLabel="[[no14:displayLabel]]"
|
679
|
-
<note type="[[no15:type]]" displayLabel="[[no15:displayLabel]]"
|
680
|
-
<note type="[[no16:type]]" displayLabel="[[no16:displayLabel]]"
|
681
|
-
<note type="[[no17:type]]" displayLabel="[[no17:displayLabel]]"
|
682
|
-
<note type="[[no18:type]]" displayLabel="[[no18:displayLabel]]"
|
683
|
-
<note type="[[no19:type]]" displayLabel="[[no19:displayLabel]]"
|
684
|
-
<note type="[[no20:type]]" displayLabel="[[no20:displayLabel]]"
|
685
|
-
<subject authority="[[sn1:authority]]" authorityURI="[[sn1:authorityURI]]" valueURI="[[sn1:valueURI]]"
|
686
|
-
<name type="[[sn1:p1:nameType]]" authority="[[sn1:p1:nm:authority]]" authorityURI="[[sn1:p1:nm:authorityURI]]" valueURI="[[sn1:p1:nm:valueURI]]"
|
659
|
+
<abstract displayLabel="[[ab:displayLabel]]">[[ab:abstract]]</abstract>
|
660
|
+
<tableOfContents displayLabel="[[tc:displayLabel]]">[[tc:tableOfContents]]</tableOfContents>
|
661
|
+
<note type="[[no1:type]]" displayLabel="[[no1:displayLabel]]">[[no1:note]]</note>
|
662
|
+
<note type="[[no2:type]]" displayLabel="[[no2:displayLabel]]">[[no2:note]]</note>
|
663
|
+
<note type="[[no3:type]]" displayLabel="[[no3:displayLabel]]">[[no3:note]]</note>
|
664
|
+
<note type="[[no4:type]]" displayLabel="[[no4:displayLabel]]">[[no4:note]]</note>
|
665
|
+
<note type="[[no5:type]]" displayLabel="[[no5:displayLabel]]">[[no5:note]]</note>
|
666
|
+
<note type="[[no6:type]]" displayLabel="[[no6:displayLabel]]">[[no6:note]]</note>
|
667
|
+
<note type="[[no7:type]]" displayLabel="[[no7:displayLabel]]">[[no7:note]]</note>
|
668
|
+
<note type="[[no8:type]]" displayLabel="[[no8:displayLabel]]">[[no8:note]]</note>
|
669
|
+
<note type="[[no9:type]]" displayLabel="[[no9:displayLabel]]">[[no9:note]]</note>
|
670
|
+
<note type="[[no10:type]]" displayLabel="[[no10:displayLabel]]">[[no10:note]]</note>
|
671
|
+
<note type="[[no11:type]]" displayLabel="[[no11:displayLabel]]">[[no11:note]]</note>
|
672
|
+
<note type="[[no12:type]]" displayLabel="[[no12:displayLabel]]">[[no12:note]]</note>
|
673
|
+
<note type="[[no13:type]]" displayLabel="[[no13:displayLabel]]">[[no13:note]]</note>
|
674
|
+
<note type="[[no14:type]]" displayLabel="[[no14:displayLabel]]">[[no14:note]]</note>
|
675
|
+
<note type="[[no15:type]]" displayLabel="[[no15:displayLabel]]">[[no15:note]]</note>
|
676
|
+
<note type="[[no16:type]]" displayLabel="[[no16:displayLabel]]">[[no16:note]]</note>
|
677
|
+
<note type="[[no17:type]]" displayLabel="[[no17:displayLabel]]">[[no17:note]]</note>
|
678
|
+
<note type="[[no18:type]]" displayLabel="[[no18:displayLabel]]">[[no18:note]]</note>
|
679
|
+
<note type="[[no19:type]]" displayLabel="[[no19:displayLabel]]">[[no19:note]]</note>
|
680
|
+
<note type="[[no20:type]]" displayLabel="[[no20:displayLabel]]">[[no20:note]]</note>
|
681
|
+
<subject authority="[[sn1:authority]]" authorityURI="[[sn1:authorityURI]]" valueURI="[[sn1:valueURI]]">
|
682
|
+
<name type="[[sn1:p1:nameType]]" authority="[[sn1:p1:nm:authority]]" authorityURI="[[sn1:p1:nm:authorityURI]]" valueURI="[[sn1:p1:nm:valueURI]]">
|
687
683
|
<namePart>[[sn1:p1:name]]</namePart>
|
688
684
|
</name>
|
689
|
-
<titleInfo type="[[sn1:p1:titleType]]" authority="[[sn1:p1:ti:authority]]" authorityURI="[[sn1:p1:ti:authorityURI]]" valueURI="[[sn1:p1:ti:valueURI]]"
|
685
|
+
<titleInfo type="[[sn1:p1:titleType]]" authority="[[sn1:p1:ti:authority]]" authorityURI="[[sn1:p1:ti:authorityURI]]" valueURI="[[sn1:p1:ti:valueURI]]">
|
690
686
|
<title>[[sn1:p1:title]]</title>
|
691
687
|
<subTitle>[[sn1:p1:subTitle]]</subTitle>
|
692
688
|
<partNumber>[[sn1:p1:partNumber]]</partNumber>
|
@@ -697,11 +693,11 @@
|
|
697
693
|
<[[sn1:p4:type]] authority="[[sn1:p4:authority]]" authorityURI="[[sn1:p4:authorityURI]]" valueURI="[[sn1:p4:valueURI]]">[[sn1:p4:value]]</[[sn1:p4:type]]>
|
698
694
|
<[[sn1:p5:type]] authority="[[sn1:p5:authority]]" authorityURI="[[sn1:p5:authorityURI]]" valueURI="[[sn1:p5:valueURI]]">[[sn1:p5:value]]</[[sn1:p5:type]]>
|
699
695
|
</subject>
|
700
|
-
<subject authority="[[sn2:authority]]" authorityURI="[[sn2:authorityURI]]" valueURI="[[sn2:valueURI]]"
|
701
|
-
<name type="[[sn2:p1:nameType]]" authority="[[sn2:p1:nm:authority]]" authorityURI="[[sn2:p1:nm:authorityURI]]" valueURI="[[sn2:p1:nm:valueURI]]"
|
696
|
+
<subject authority="[[sn2:authority]]" authorityURI="[[sn2:authorityURI]]" valueURI="[[sn2:valueURI]]">
|
697
|
+
<name type="[[sn2:p1:nameType]]" authority="[[sn2:p1:nm:authority]]" authorityURI="[[sn2:p1:nm:authorityURI]]" valueURI="[[sn2:p1:nm:valueURI]]">
|
702
698
|
<namePart>[[sn2:p1:name]]</namePart>
|
703
699
|
</name>
|
704
|
-
<titleInfo type="[[sn2:p1:titleType]]" authority="[[sn2:p1:ti:authority]]" authorityURI="[[sn2:p1:ti:authorityURI]]" valueURI="[[sn2:p1:ti:valueURI]]"
|
700
|
+
<titleInfo type="[[sn2:p1:titleType]]" authority="[[sn2:p1:ti:authority]]" authorityURI="[[sn2:p1:ti:authorityURI]]" valueURI="[[sn2:p1:ti:valueURI]]">
|
705
701
|
<title>[[sn2:p1:title]]</title>
|
706
702
|
<subTitle>[[sn2:p1:subTitle]]</subTitle>
|
707
703
|
<partNumber>[[sn2:p1:partNumber]]</partNumber>
|
@@ -712,11 +708,11 @@
|
|
712
708
|
<[[sn2:p4:type]] authority="[[sn2:p4:authority]]" authorityURI="[[sn2:p4:authorityURI]]" valueURI="[[sn2:p4:valueURI]]">[[sn2:p4:value]]</[[sn2:p4:type]]>
|
713
709
|
<[[sn2:p5:type]] authority="[[sn2:p5:authority]]" authorityURI="[[sn2:p5:authorityURI]]" valueURI="[[sn2:p5:valueURI]]">[[sn2:p5:value]]</[[sn2:p5:type]]>
|
714
710
|
</subject>
|
715
|
-
<subject authority="[[sn3:authority]]" authorityURI="[[sn3:authorityURI]]" valueURI="[[sn3:valueURI]]"
|
716
|
-
<name type="[[sn3:p1:nameType]]" authority="[[sn3:p1:nm:authority]]" authorityURI="[[sn3:p1:nm:authorityURI]]" valueURI="[[sn3:p1:nm:valueURI]]"
|
711
|
+
<subject authority="[[sn3:authority]]" authorityURI="[[sn3:authorityURI]]" valueURI="[[sn3:valueURI]]">
|
712
|
+
<name type="[[sn3:p1:nameType]]" authority="[[sn3:p1:nm:authority]]" authorityURI="[[sn3:p1:nm:authorityURI]]" valueURI="[[sn3:p1:nm:valueURI]]">
|
717
713
|
<namePart>[[sn3:p1:name]]</namePart>
|
718
714
|
</name>
|
719
|
-
<titleInfo type="[[sn3:p1:titleType]]" authority="[[sn3:p1:ti:authority]]" authorityURI="[[sn3:p1:ti:authorityURI]]" valueURI="[[sn3:p1:ti:valueURI]]"
|
715
|
+
<titleInfo type="[[sn3:p1:titleType]]" authority="[[sn3:p1:ti:authority]]" authorityURI="[[sn3:p1:ti:authorityURI]]" valueURI="[[sn3:p1:ti:valueURI]]">
|
720
716
|
<title>[[sn3:p1:title]]</title>
|
721
717
|
<subTitle>[[sn3:p1:subTitle]]</subTitle>
|
722
718
|
<partNumber>[[sn3:p1:partNumber]]</partNumber>
|
@@ -727,11 +723,11 @@
|
|
727
723
|
<[[sn3:p4:type]] authority="[[sn3:p4:authority]]" authorityURI="[[sn3:p4:authorityURI]]" valueURI="[[sn3:p4:valueURI]]">[[sn3:p4:value]]</[[sn3:p4:type]]>
|
728
724
|
<[[sn3:p5:type]] authority="[[sn3:p5:authority]]" authorityURI="[[sn3:p5:authorityURI]]" valueURI="[[sn3:p5:valueURI]]">[[sn3:p5:value]]</[[sn3:p5:type]]>
|
729
725
|
</subject>
|
730
|
-
<subject authority="[[sn4:authority]]" authorityURI="[[sn4:authorityURI]]" valueURI="[[sn4:valueURI]]"
|
731
|
-
<name type="[[sn4:p1:nameType]]" authority="[[sn4:p1:nm:authority]]" authorityURI="[[sn4:p1:nm:authorityURI]]" valueURI="[[sn4:p1:nm:valueURI]]"
|
726
|
+
<subject authority="[[sn4:authority]]" authorityURI="[[sn4:authorityURI]]" valueURI="[[sn4:valueURI]]">
|
727
|
+
<name type="[[sn4:p1:nameType]]" authority="[[sn4:p1:nm:authority]]" authorityURI="[[sn4:p1:nm:authorityURI]]" valueURI="[[sn4:p1:nm:valueURI]]">
|
732
728
|
<namePart>[[sn4:p1:name]]</namePart>
|
733
729
|
</name>
|
734
|
-
<titleInfo type="[[sn4:p1:titleType]]" authority="[[sn4:p1:ti:authority]]" authorityURI="[[sn4:p1:ti:authorityURI]]" valueURI="[[sn4:p1:ti:valueURI]]"
|
730
|
+
<titleInfo type="[[sn4:p1:titleType]]" authority="[[sn4:p1:ti:authority]]" authorityURI="[[sn4:p1:ti:authorityURI]]" valueURI="[[sn4:p1:ti:valueURI]]">
|
735
731
|
<title>[[sn4:p1:title]]</title>
|
736
732
|
<subTitle>[[sn4:p1:subTitle]]</subTitle>
|
737
733
|
<partNumber>[[sn4:p1:partNumber]]</partNumber>
|
@@ -742,11 +738,11 @@
|
|
742
738
|
<[[sn4:p4:type]] authority="[[sn4:p4:authority]]" authorityURI="[[sn4:p4:authorityURI]]" valueURI="[[sn4:p4:valueURI]]">[[sn4:p4:value]]</[[sn4:p4:type]]>
|
743
739
|
<[[sn4:p5:type]] authority="[[sn4:p5:authority]]" authorityURI="[[sn4:p5:authorityURI]]" valueURI="[[sn4:p5:valueURI]]">[[sn4:p5:value]]</[[sn4:p5:type]]>
|
744
740
|
</subject>
|
745
|
-
<subject authority="[[sn5:authority]]" authorityURI="[[sn5:authorityURI]]" valueURI="[[sn5:valueURI]]"
|
746
|
-
<name type="[[sn5:p1:nameType]]" authority="[[sn5:p1:nm:authority]]" authorityURI="[[sn5:p1:nm:authorityURI]]" valueURI="[[sn5:p1:nm:valueURI]]"
|
741
|
+
<subject authority="[[sn5:authority]]" authorityURI="[[sn5:authorityURI]]" valueURI="[[sn5:valueURI]]">
|
742
|
+
<name type="[[sn5:p1:nameType]]" authority="[[sn5:p1:nm:authority]]" authorityURI="[[sn5:p1:nm:authorityURI]]" valueURI="[[sn5:p1:nm:valueURI]]">
|
747
743
|
<namePart>[[sn5:p1:name]]</namePart>
|
748
744
|
</name>
|
749
|
-
<titleInfo type="[[sn5:p1:titleType]]" authority="[[sn5:p1:ti:authority]]" authorityURI="[[sn5:p1:ti:authorityURI]]" valueURI="[[sn5:p1:ti:valueURI]]"
|
745
|
+
<titleInfo type="[[sn5:p1:titleType]]" authority="[[sn5:p1:ti:authority]]" authorityURI="[[sn5:p1:ti:authorityURI]]" valueURI="[[sn5:p1:ti:valueURI]]">
|
750
746
|
<title>[[sn5:p1:title]]</title>
|
751
747
|
<subTitle>[[sn5:p1:subTitle]]</subTitle>
|
752
748
|
<partNumber>[[sn5:p1:partNumber]]</partNumber>
|
@@ -757,11 +753,11 @@
|
|
757
753
|
<[[sn5:p4:type]] authority="[[sn5:p4:authority]]" authorityURI="[[sn5:p4:authorityURI]]" valueURI="[[sn5:p4:valueURI]]">[[sn5:p4:value]]</[[sn5:p4:type]]>
|
758
754
|
<[[sn5:p5:type]] authority="[[sn5:p5:authority]]" authorityURI="[[sn5:p5:authorityURI]]" valueURI="[[sn5:p5:valueURI]]">[[sn5:p5:value]]</[[sn5:p5:type]]>
|
759
755
|
</subject>
|
760
|
-
<subject authority="[[sn6:authority]]" authorityURI="[[sn6:authorityURI]]" valueURI="[[sn6:valueURI]]"
|
761
|
-
<name type="[[sn6:p1:nameType]]" authority="[[sn6:p1:nm:authority]]" authorityURI="[[sn6:p1:nm:authorityURI]]" valueURI="[[sn6:p1:nm:valueURI]]"
|
756
|
+
<subject authority="[[sn6:authority]]" authorityURI="[[sn6:authorityURI]]" valueURI="[[sn6:valueURI]]">
|
757
|
+
<name type="[[sn6:p1:nameType]]" authority="[[sn6:p1:nm:authority]]" authorityURI="[[sn6:p1:nm:authorityURI]]" valueURI="[[sn6:p1:nm:valueURI]]">
|
762
758
|
<namePart>[[sn6:p1:name]]</namePart>
|
763
759
|
</name>
|
764
|
-
<titleInfo type="[[sn6:p1:titleType]]" authority="[[sn6:p1:ti:authority]]" authorityURI="[[sn6:p1:ti:authorityURI]]" valueURI="[[sn6:p1:ti:valueURI]]"
|
760
|
+
<titleInfo type="[[sn6:p1:titleType]]" authority="[[sn6:p1:ti:authority]]" authorityURI="[[sn6:p1:ti:authorityURI]]" valueURI="[[sn6:p1:ti:valueURI]]">
|
765
761
|
<title>[[sn6:p1:title]]</title>
|
766
762
|
<subTitle>[[sn6:p1:subTitle]]</subTitle>
|
767
763
|
<partNumber>[[sn6:p1:partNumber]]</partNumber>
|
@@ -772,11 +768,11 @@
|
|
772
768
|
<[[sn6:p4:type]] authority="[[sn6:p4:authority]]" authorityURI="[[sn6:p4:authorityURI]]" valueURI="[[sn6:p4:valueURI]]">[[sn6:p4:value]]</[[sn6:p4:type]]>
|
773
769
|
<[[sn6:p5:type]] authority="[[sn6:p5:authority]]" authorityURI="[[sn6:p5:authorityURI]]" valueURI="[[sn6:p5:valueURI]]">[[sn6:p5:value]]</[[sn6:p5:type]]>
|
774
770
|
</subject>
|
775
|
-
<subject authority="[[sn7:authority]]" authorityURI="[[sn7:authorityURI]]" valueURI="[[sn7:valueURI]]"
|
776
|
-
<name type="[[sn7:p1:nameType]]" authority="[[sn7:p1:nm:authority]]" authorityURI="[[sn7:p1:nm:authorityURI]]" valueURI="[[sn7:p1:nm:valueURI]]"
|
771
|
+
<subject authority="[[sn7:authority]]" authorityURI="[[sn7:authorityURI]]" valueURI="[[sn7:valueURI]]">
|
772
|
+
<name type="[[sn7:p1:nameType]]" authority="[[sn7:p1:nm:authority]]" authorityURI="[[sn7:p1:nm:authorityURI]]" valueURI="[[sn7:p1:nm:valueURI]]">
|
777
773
|
<namePart>[[sn7:p1:name]]</namePart>
|
778
774
|
</name>
|
779
|
-
<titleInfo type="[[sn7:p1:titleType]]" authority="[[sn7:p1:ti:authority]]" authorityURI="[[sn7:p1:ti:authorityURI]]" valueURI="[[sn7:p1:ti:valueURI]]"
|
775
|
+
<titleInfo type="[[sn7:p1:titleType]]" authority="[[sn7:p1:ti:authority]]" authorityURI="[[sn7:p1:ti:authorityURI]]" valueURI="[[sn7:p1:ti:valueURI]]">
|
780
776
|
<title>[[sn7:p1:title]]</title>
|
781
777
|
<subTitle>[[sn7:p1:subTitle]]</subTitle>
|
782
778
|
<partNumber>[[sn7:p1:partNumber]]</partNumber>
|
@@ -787,11 +783,11 @@
|
|
787
783
|
<[[sn7:p4:type]] authority="[[sn7:p4:authority]]" authorityURI="[[sn7:p4:authorityURI]]" valueURI="[[sn7:p4:valueURI]]">[[sn7:p4:value]]</[[sn7:p4:type]]>
|
788
784
|
<[[sn7:p5:type]] authority="[[sn7:p5:authority]]" authorityURI="[[sn7:p5:authorityURI]]" valueURI="[[sn7:p5:valueURI]]">[[sn7:p5:value]]</[[sn7:p5:type]]>
|
789
785
|
</subject>
|
790
|
-
<subject authority="[[sn8:authority]]" authorityURI="[[sn8:authorityURI]]" valueURI="[[sn8:valueURI]]"
|
791
|
-
<name type="[[sn8:p1:nameType]]" authority="[[sn8:p1:nm:authority]]" authorityURI="[[sn8:p1:nm:authorityURI]]" valueURI="[[sn8:p1:nm:valueURI]]"
|
786
|
+
<subject authority="[[sn8:authority]]" authorityURI="[[sn8:authorityURI]]" valueURI="[[sn8:valueURI]]">
|
787
|
+
<name type="[[sn8:p1:nameType]]" authority="[[sn8:p1:nm:authority]]" authorityURI="[[sn8:p1:nm:authorityURI]]" valueURI="[[sn8:p1:nm:valueURI]]">
|
792
788
|
<namePart>[[sn8:p1:name]]</namePart>
|
793
789
|
</name>
|
794
|
-
<titleInfo type="[[sn8:p1:titleType]]" authority="[[sn8:p1:ti:authority]]" authorityURI="[[sn8:p1:ti:authorityURI]]" valueURI="[[sn8:p1:ti:valueURI]]"
|
790
|
+
<titleInfo type="[[sn8:p1:titleType]]" authority="[[sn8:p1:ti:authority]]" authorityURI="[[sn8:p1:ti:authorityURI]]" valueURI="[[sn8:p1:ti:valueURI]]">
|
795
791
|
<title>[[sn8:p1:title]]</title>
|
796
792
|
<subTitle>[[sn8:p1:subTitle]]</subTitle>
|
797
793
|
<partNumber>[[sn8:p1:partNumber]]</partNumber>
|
@@ -802,11 +798,11 @@
|
|
802
798
|
<[[sn8:p4:type]] authority="[[sn8:p4:authority]]" authorityURI="[[sn8:p4:authorityURI]]" valueURI="[[sn8:p4:valueURI]]">[[sn8:p4:value]]</[[sn8:p4:type]]>
|
803
799
|
<[[sn8:p5:type]] authority="[[sn8:p5:authority]]" authorityURI="[[sn8:p5:authorityURI]]" valueURI="[[sn8:p5:valueURI]]">[[sn8:p5:value]]</[[sn8:p5:type]]>
|
804
800
|
</subject>
|
805
|
-
<subject authority="[[sn9:authority]]" authorityURI="[[sn9:authorityURI]]" valueURI="[[sn9:valueURI]]"
|
806
|
-
<name type="[[sn9:p1:nameType]]" authority="[[sn9:p1:nm:authority]]" authorityURI="[[sn9:p1:nm:authorityURI]]" valueURI="[[sn9:p1:nm:valueURI]]"
|
801
|
+
<subject authority="[[sn9:authority]]" authorityURI="[[sn9:authorityURI]]" valueURI="[[sn9:valueURI]]">
|
802
|
+
<name type="[[sn9:p1:nameType]]" authority="[[sn9:p1:nm:authority]]" authorityURI="[[sn9:p1:nm:authorityURI]]" valueURI="[[sn9:p1:nm:valueURI]]">
|
807
803
|
<namePart>[[sn9:p1:name]]</namePart>
|
808
804
|
</name>
|
809
|
-
<titleInfo type="[[sn9:p1:titleType]]" authority="[[sn9:p1:ti:authority]]" authorityURI="[[sn9:p1:ti:authorityURI]]" valueURI="[[sn9:p1:ti:valueURI]]"
|
805
|
+
<titleInfo type="[[sn9:p1:titleType]]" authority="[[sn9:p1:ti:authority]]" authorityURI="[[sn9:p1:ti:authorityURI]]" valueURI="[[sn9:p1:ti:valueURI]]">
|
810
806
|
<title>[[sn9:p1:title]]</title>
|
811
807
|
<subTitle>[[sn9:p1:subTitle]]</subTitle>
|
812
808
|
<partNumber>[[sn9:p1:partNumber]]</partNumber>
|
@@ -817,11 +813,11 @@
|
|
817
813
|
<[[sn9:p4:type]] authority="[[sn9:p4:authority]]" authorityURI="[[sn9:p4:authorityURI]]" valueURI="[[sn9:p4:valueURI]]">[[sn9:p4:value]]</[[sn9:p4:type]]>
|
818
814
|
<[[sn9:p5:type]] authority="[[sn9:p5:authority]]" authorityURI="[[sn9:p5:authorityURI]]" valueURI="[[sn9:p5:valueURI]]">[[sn9:p5:value]]</[[sn9:p5:type]]>
|
819
815
|
</subject>
|
820
|
-
<subject authority="[[sn10:authority]]" authorityURI="[[sn10:authorityURI]]" valueURI="[[sn10:valueURI]]"
|
821
|
-
<name type="[[sn10:p1:nameType]]" authority="[[sn10:p1:nm:authority]]" authorityURI="[[sn10:p1:nm:authorityURI]]" valueURI="[[sn10:p1:nm:valueURI]]"
|
816
|
+
<subject authority="[[sn10:authority]]" authorityURI="[[sn10:authorityURI]]" valueURI="[[sn10:valueURI]]">
|
817
|
+
<name type="[[sn10:p1:nameType]]" authority="[[sn10:p1:nm:authority]]" authorityURI="[[sn10:p1:nm:authorityURI]]" valueURI="[[sn10:p1:nm:valueURI]]">
|
822
818
|
<namePart>[[sn10:p1:name]]</namePart>
|
823
819
|
</name>
|
824
|
-
<titleInfo type="[[sn10:p1:titleType]]" authority="[[sn10:p1:ti:authority]]" authorityURI="[[sn10:p1:ti:authorityURI]]" valueURI="[[sn10:p1:ti:valueURI]]"
|
820
|
+
<titleInfo type="[[sn10:p1:titleType]]" authority="[[sn10:p1:ti:authority]]" authorityURI="[[sn10:p1:ti:authorityURI]]" valueURI="[[sn10:p1:ti:valueURI]]">
|
825
821
|
<title>[[sn10:p1:title]]</title>
|
826
822
|
<subTitle>[[sn10:p1:subTitle]]</subTitle>
|
827
823
|
<partNumber>[[sn10:p1:partNumber]]</partNumber>
|
@@ -832,11 +828,11 @@
|
|
832
828
|
<[[sn10:p4:type]] authority="[[sn10:p4:authority]]" authorityURI="[[sn10:p4:authorityURI]]" valueURI="[[sn10:p4:valueURI]]">[[sn10:p4:value]]</[[sn10:p4:type]]>
|
833
829
|
<[[sn10:p5:type]] authority="[[sn10:p5:authority]]" authorityURI="[[sn10:p5:authorityURI]]" valueURI="[[sn10:p5:valueURI]]">[[sn10:p5:value]]</[[sn10:p5:type]]>
|
834
830
|
</subject>
|
835
|
-
<subject authority="[[sn11:authority]]" authorityURI="[[sn11:authorityURI]]" valueURI="[[sn11:valueURI]]"
|
836
|
-
<name type="[[sn11:p1:nameType]]" authority="[[sn11:p1:nm:authority]]" authorityURI="[[sn11:p1:nm:authorityURI]]" valueURI="[[sn11:p1:nm:valueURI]]"
|
831
|
+
<subject authority="[[sn11:authority]]" authorityURI="[[sn11:authorityURI]]" valueURI="[[sn11:valueURI]]">
|
832
|
+
<name type="[[sn11:p1:nameType]]" authority="[[sn11:p1:nm:authority]]" authorityURI="[[sn11:p1:nm:authorityURI]]" valueURI="[[sn11:p1:nm:valueURI]]">
|
837
833
|
<namePart>[[sn11:p1:name]]</namePart>
|
838
834
|
</name>
|
839
|
-
<titleInfo type="[[sn11:p1:titleType]]" authority="[[sn11:p1:ti:authority]]" authorityURI="[[sn11:p1:ti:authorityURI]]" valueURI="[[sn11:p1:ti:valueURI]]"
|
835
|
+
<titleInfo type="[[sn11:p1:titleType]]" authority="[[sn11:p1:ti:authority]]" authorityURI="[[sn11:p1:ti:authorityURI]]" valueURI="[[sn11:p1:ti:valueURI]]">
|
840
836
|
<title>[[sn11:p1:title]]</title>
|
841
837
|
<subTitle>[[sn11:p1:subTitle]]</subTitle>
|
842
838
|
<partNumber>[[sn11:p1:partNumber]]</partNumber>
|
@@ -847,11 +843,11 @@
|
|
847
843
|
<[[sn11:p4:type]] authority="[[sn11:p4:authority]]" authorityURI="[[sn11:p4:authorityURI]]" valueURI="[[sn11:p4:valueURI]]">[[sn11:p4:value]]</[[sn11:p4:type]]>
|
848
844
|
<[[sn11:p5:type]] authority="[[sn11:p5:authority]]" authorityURI="[[sn11:p5:authorityURI]]" valueURI="[[sn11:p5:valueURI]]">[[sn11:p5:value]]</[[sn11:p5:type]]>
|
849
845
|
</subject>
|
850
|
-
<subject authority="[[sn12:authority]]" authorityURI="[[sn12:authorityURI]]" valueURI="[[sn12:valueURI]]"
|
851
|
-
<name type="[[sn12:p1:nameType]]" authority="[[sn12:p1:nm:authority]]" authorityURI="[[sn12:p1:nm:authorityURI]]" valueURI="[[sn12:p1:nm:valueURI]]"
|
846
|
+
<subject authority="[[sn12:authority]]" authorityURI="[[sn12:authorityURI]]" valueURI="[[sn12:valueURI]]">
|
847
|
+
<name type="[[sn12:p1:nameType]]" authority="[[sn12:p1:nm:authority]]" authorityURI="[[sn12:p1:nm:authorityURI]]" valueURI="[[sn12:p1:nm:valueURI]]">
|
852
848
|
<namePart>[[sn12:p1:name]]</namePart>
|
853
849
|
</name>
|
854
|
-
<titleInfo type="[[sn12:p1:titleType]]" authority="[[sn12:p1:ti:authority]]" authorityURI="[[sn12:p1:ti:authorityURI]]" valueURI="[[sn12:p1:ti:valueURI]]"
|
850
|
+
<titleInfo type="[[sn12:p1:titleType]]" authority="[[sn12:p1:ti:authority]]" authorityURI="[[sn12:p1:ti:authorityURI]]" valueURI="[[sn12:p1:ti:valueURI]]">
|
855
851
|
<title>[[sn12:p1:title]]</title>
|
856
852
|
<subTitle>[[sn12:p1:subTitle]]</subTitle>
|
857
853
|
<partNumber>[[sn12:p1:partNumber]]</partNumber>
|
@@ -862,11 +858,11 @@
|
|
862
858
|
<[[sn12:p4:type]] authority="[[sn12:p4:authority]]" authorityURI="[[sn12:p4:authorityURI]]" valueURI="[[sn12:p4:valueURI]]">[[sn12:p4:value]]</[[sn12:p4:type]]>
|
863
859
|
<[[sn12:p5:type]] authority="[[sn12:p5:authority]]" authorityURI="[[sn12:p5:authorityURI]]" valueURI="[[sn12:p5:valueURI]]">[[sn12:p5:value]]</[[sn12:p5:type]]>
|
864
860
|
</subject>
|
865
|
-
<subject authority="[[sn13:authority]]" authorityURI="[[sn13:authorityURI]]" valueURI="[[sn13:valueURI]]"
|
866
|
-
<name type="[[sn13:p1:nameType]]" authority="[[sn13:p1:nm:authority]]" authorityURI="[[sn13:p1:nm:authorityURI]]" valueURI="[[sn13:p1:nm:valueURI]]"
|
861
|
+
<subject authority="[[sn13:authority]]" authorityURI="[[sn13:authorityURI]]" valueURI="[[sn13:valueURI]]">
|
862
|
+
<name type="[[sn13:p1:nameType]]" authority="[[sn13:p1:nm:authority]]" authorityURI="[[sn13:p1:nm:authorityURI]]" valueURI="[[sn13:p1:nm:valueURI]]">
|
867
863
|
<namePart>[[sn13:p1:name]]</namePart>
|
868
864
|
</name>
|
869
|
-
<titleInfo type="[[sn13:p1:titleType]]" authority="[[sn13:p1:ti:authority]]" authorityURI="[[sn13:p1:ti:authorityURI]]" valueURI="[[sn13:p1:ti:valueURI]]"
|
865
|
+
<titleInfo type="[[sn13:p1:titleType]]" authority="[[sn13:p1:ti:authority]]" authorityURI="[[sn13:p1:ti:authorityURI]]" valueURI="[[sn13:p1:ti:valueURI]]">
|
870
866
|
<title>[[sn13:p1:title]]</title>
|
871
867
|
<subTitle>[[sn13:p1:subTitle]]</subTitle>
|
872
868
|
<partNumber>[[sn13:p1:partNumber]]</partNumber>
|
@@ -877,11 +873,11 @@
|
|
877
873
|
<[[sn13:p4:type]] authority="[[sn13:p4:authority]]" authorityURI="[[sn13:p4:authorityURI]]" valueURI="[[sn13:p4:valueURI]]">[[sn13:p4:value]]</[[sn13:p4:type]]>
|
878
874
|
<[[sn13:p5:type]] authority="[[sn13:p5:authority]]" authorityURI="[[sn13:p5:authorityURI]]" valueURI="[[sn13:p5:valueURI]]">[[sn13:p5:value]]</[[sn13:p5:type]]>
|
879
875
|
</subject>
|
880
|
-
<subject authority="[[sn14:authority]]" authorityURI="[[sn14:authorityURI]]" valueURI="[[sn14:valueURI]]"
|
881
|
-
<name type="[[sn14:p1:nameType]]" authority="[[sn14:p1:nm:authority]]" authorityURI="[[sn14:p1:nm:authorityURI]]" valueURI="[[sn14:p1:nm:valueURI]]"
|
876
|
+
<subject authority="[[sn14:authority]]" authorityURI="[[sn14:authorityURI]]" valueURI="[[sn14:valueURI]]">
|
877
|
+
<name type="[[sn14:p1:nameType]]" authority="[[sn14:p1:nm:authority]]" authorityURI="[[sn14:p1:nm:authorityURI]]" valueURI="[[sn14:p1:nm:valueURI]]">
|
882
878
|
<namePart>[[sn14:p1:name]]</namePart>
|
883
879
|
</name>
|
884
|
-
<titleInfo type="[[sn14:p1:titleType]]" authority="[[sn14:p1:ti:authority]]" authorityURI="[[sn14:p1:ti:authorityURI]]" valueURI="[[sn14:p1:ti:valueURI]]"
|
880
|
+
<titleInfo type="[[sn14:p1:titleType]]" authority="[[sn14:p1:ti:authority]]" authorityURI="[[sn14:p1:ti:authorityURI]]" valueURI="[[sn14:p1:ti:valueURI]]">
|
885
881
|
<title>[[sn14:p1:title]]</title>
|
886
882
|
<subTitle>[[sn14:p1:subTitle]]</subTitle>
|
887
883
|
<partNumber>[[sn14:p1:partNumber]]</partNumber>
|
@@ -892,11 +888,11 @@
|
|
892
888
|
<[[sn14:p4:type]] authority="[[sn14:p4:authority]]" authorityURI="[[sn14:p4:authorityURI]]" valueURI="[[sn14:p4:valueURI]]">[[sn14:p4:value]]</[[sn14:p4:type]]>
|
893
889
|
<[[sn14:p5:type]] authority="[[sn14:p5:authority]]" authorityURI="[[sn14:p5:authorityURI]]" valueURI="[[sn14:p5:valueURI]]">[[sn14:p5:value]]</[[sn14:p5:type]]>
|
894
890
|
</subject>
|
895
|
-
<subject authority="[[sn15:authority]]" authorityURI="[[sn15:authorityURI]]" valueURI="[[sn15:valueURI]]"
|
896
|
-
<name type="[[sn15:p1:nameType]]" authority="[[sn15:p1:nm:authority]]" authorityURI="[[sn15:p1:nm:authorityURI]]" valueURI="[[sn15:p1:nm:valueURI]]"
|
891
|
+
<subject authority="[[sn15:authority]]" authorityURI="[[sn15:authorityURI]]" valueURI="[[sn15:valueURI]]">
|
892
|
+
<name type="[[sn15:p1:nameType]]" authority="[[sn15:p1:nm:authority]]" authorityURI="[[sn15:p1:nm:authorityURI]]" valueURI="[[sn15:p1:nm:valueURI]]">
|
897
893
|
<namePart>[[sn15:p1:name]]</namePart>
|
898
894
|
</name>
|
899
|
-
<titleInfo type="[[sn15:p1:titleType]]" authority="[[sn15:p1:ti:authority]]" authorityURI="[[sn15:p1:ti:authorityURI]]" valueURI="[[sn15:p1:ti:valueURI]]"
|
895
|
+
<titleInfo type="[[sn15:p1:titleType]]" authority="[[sn15:p1:ti:authority]]" authorityURI="[[sn15:p1:ti:authorityURI]]" valueURI="[[sn15:p1:ti:valueURI]]">
|
900
896
|
<title>[[sn15:p1:title]]</title>
|
901
897
|
<subTitle>[[sn15:p1:subTitle]]</subTitle>
|
902
898
|
<partNumber>[[sn15:p1:partNumber]]</partNumber>
|
@@ -907,11 +903,11 @@
|
|
907
903
|
<[[sn15:p4:type]] authority="[[sn15:p4:authority]]" authorityURI="[[sn15:p4:authorityURI]]" valueURI="[[sn15:p4:valueURI]]">[[sn15:p4:value]]</[[sn15:p4:type]]>
|
908
904
|
<[[sn15:p5:type]] authority="[[sn15:p5:authority]]" authorityURI="[[sn15:p5:authorityURI]]" valueURI="[[sn15:p5:valueURI]]">[[sn15:p5:value]]</[[sn15:p5:type]]>
|
909
905
|
</subject>
|
910
|
-
<subject authority="[[sn16:authority]]" authorityURI="[[sn16:authorityURI]]" valueURI="[[sn16:valueURI]]"
|
911
|
-
<name type="[[sn16:p1:nameType]]" authority="[[sn16:p1:nm:authority]]" authorityURI="[[sn16:p1:nm:authorityURI]]" valueURI="[[sn16:p1:nm:valueURI]]"
|
906
|
+
<subject authority="[[sn16:authority]]" authorityURI="[[sn16:authorityURI]]" valueURI="[[sn16:valueURI]]">
|
907
|
+
<name type="[[sn16:p1:nameType]]" authority="[[sn16:p1:nm:authority]]" authorityURI="[[sn16:p1:nm:authorityURI]]" valueURI="[[sn16:p1:nm:valueURI]]">
|
912
908
|
<namePart>[[sn16:p1:name]]</namePart>
|
913
909
|
</name>
|
914
|
-
<titleInfo type="[[sn16:p1:titleType]]" authority="[[sn16:p1:ti:authority]]" authorityURI="[[sn16:p1:ti:authorityURI]]" valueURI="[[sn16:p1:ti:valueURI]]"
|
910
|
+
<titleInfo type="[[sn16:p1:titleType]]" authority="[[sn16:p1:ti:authority]]" authorityURI="[[sn16:p1:ti:authorityURI]]" valueURI="[[sn16:p1:ti:valueURI]]">
|
915
911
|
<title>[[sn16:p1:title]]</title>
|
916
912
|
<subTitle>[[sn16:p1:subTitle]]</subTitle>
|
917
913
|
<partNumber>[[sn16:p1:partNumber]]</partNumber>
|
@@ -922,11 +918,11 @@
|
|
922
918
|
<[[sn16:p4:type]] authority="[[sn16:p4:authority]]" authorityURI="[[sn16:p4:authorityURI]]" valueURI="[[sn16:p4:valueURI]]">[[sn16:p4:value]]</[[sn16:p4:type]]>
|
923
919
|
<[[sn16:p5:type]] authority="[[sn16:p5:authority]]" authorityURI="[[sn16:p5:authorityURI]]" valueURI="[[sn16:p5:valueURI]]">[[sn16:p5:value]]</[[sn16:p5:type]]>
|
924
920
|
</subject>
|
925
|
-
<subject authority="[[sn17:authority]]" authorityURI="[[sn17:authorityURI]]" valueURI="[[sn17:valueURI]]"
|
926
|
-
<name type="[[sn17:p1:nameType]]" authority="[[sn17:p1:nm:authority]]" authorityURI="[[sn17:p1:nm:authorityURI]]" valueURI="[[sn17:p1:nm:valueURI]]"
|
921
|
+
<subject authority="[[sn17:authority]]" authorityURI="[[sn17:authorityURI]]" valueURI="[[sn17:valueURI]]">
|
922
|
+
<name type="[[sn17:p1:nameType]]" authority="[[sn17:p1:nm:authority]]" authorityURI="[[sn17:p1:nm:authorityURI]]" valueURI="[[sn17:p1:nm:valueURI]]">
|
927
923
|
<namePart>[[sn17:p1:name]]</namePart>
|
928
924
|
</name>
|
929
|
-
<titleInfo type="[[sn17:p1:titleType]]" authority="[[sn17:p1:ti:authority]]" authorityURI="[[sn17:p1:ti:authorityURI]]" valueURI="[[sn17:p1:ti:valueURI]]"
|
925
|
+
<titleInfo type="[[sn17:p1:titleType]]" authority="[[sn17:p1:ti:authority]]" authorityURI="[[sn17:p1:ti:authorityURI]]" valueURI="[[sn17:p1:ti:valueURI]]">
|
930
926
|
<title>[[sn17:p1:title]]</title>
|
931
927
|
<subTitle>[[sn17:p1:subTitle]]</subTitle>
|
932
928
|
<partNumber>[[sn17:p1:partNumber]]</partNumber>
|
@@ -937,11 +933,11 @@
|
|
937
933
|
<[[sn17:p4:type]] authority="[[sn17:p4:authority]]" authorityURI="[[sn17:p4:authorityURI]]" valueURI="[[sn17:p4:valueURI]]">[[sn17:p4:value]]</[[sn17:p4:type]]>
|
938
934
|
<[[sn17:p5:type]] authority="[[sn17:p5:authority]]" authorityURI="[[sn17:p5:authorityURI]]" valueURI="[[sn17:p5:valueURI]]">[[sn17:p5:value]]</[[sn17:p5:type]]>
|
939
935
|
</subject>
|
940
|
-
<subject authority="[[sn18:authority]]" authorityURI="[[sn18:authorityURI]]" valueURI="[[sn18:valueURI]]"
|
941
|
-
<name type="[[sn18:p1:nameType]]" authority="[[sn18:p1:nm:authority]]" authorityURI="[[sn18:p1:nm:authorityURI]]" valueURI="[[sn18:p1:nm:valueURI]]"
|
936
|
+
<subject authority="[[sn18:authority]]" authorityURI="[[sn18:authorityURI]]" valueURI="[[sn18:valueURI]]">
|
937
|
+
<name type="[[sn18:p1:nameType]]" authority="[[sn18:p1:nm:authority]]" authorityURI="[[sn18:p1:nm:authorityURI]]" valueURI="[[sn18:p1:nm:valueURI]]">
|
942
938
|
<namePart>[[sn18:p1:name]]</namePart>
|
943
939
|
</name>
|
944
|
-
<titleInfo type="[[sn18:p1:titleType]]" authority="[[sn18:p1:ti:authority]]" authorityURI="[[sn18:p1:ti:authorityURI]]" valueURI="[[sn18:p1:ti:valueURI]]"
|
940
|
+
<titleInfo type="[[sn18:p1:titleType]]" authority="[[sn18:p1:ti:authority]]" authorityURI="[[sn18:p1:ti:authorityURI]]" valueURI="[[sn18:p1:ti:valueURI]]">
|
945
941
|
<title>[[sn18:p1:title]]</title>
|
946
942
|
<subTitle>[[sn18:p1:subTitle]]</subTitle>
|
947
943
|
<partNumber>[[sn18:p1:partNumber]]</partNumber>
|
@@ -952,11 +948,11 @@
|
|
952
948
|
<[[sn18:p4:type]] authority="[[sn18:p4:authority]]" authorityURI="[[sn18:p4:authorityURI]]" valueURI="[[sn18:p4:valueURI]]">[[sn18:p4:value]]</[[sn18:p4:type]]>
|
953
949
|
<[[sn18:p5:type]] authority="[[sn18:p5:authority]]" authorityURI="[[sn18:p5:authorityURI]]" valueURI="[[sn18:p5:valueURI]]">[[sn18:p5:value]]</[[sn18:p5:type]]>
|
954
950
|
</subject>
|
955
|
-
<subject authority="[[sn19:authority]]" authorityURI="[[sn19:authorityURI]]" valueURI="[[sn19:valueURI]]"
|
956
|
-
<name type="[[sn19:p1:nameType]]" authority="[[sn19:p1:nm:authority]]" authorityURI="[[sn19:p1:nm:authorityURI]]" valueURI="[[sn19:p1:nm:valueURI]]"
|
951
|
+
<subject authority="[[sn19:authority]]" authorityURI="[[sn19:authorityURI]]" valueURI="[[sn19:valueURI]]">
|
952
|
+
<name type="[[sn19:p1:nameType]]" authority="[[sn19:p1:nm:authority]]" authorityURI="[[sn19:p1:nm:authorityURI]]" valueURI="[[sn19:p1:nm:valueURI]]">
|
957
953
|
<namePart>[[sn19:p1:name]]</namePart>
|
958
954
|
</name>
|
959
|
-
<titleInfo type="[[sn19:p1:titleType]]" authority="[[sn19:p1:ti:authority]]" authorityURI="[[sn19:p1:ti:authorityURI]]" valueURI="[[sn19:p1:ti:valueURI]]"
|
955
|
+
<titleInfo type="[[sn19:p1:titleType]]" authority="[[sn19:p1:ti:authority]]" authorityURI="[[sn19:p1:ti:authorityURI]]" valueURI="[[sn19:p1:ti:valueURI]]">
|
960
956
|
<title>[[sn19:p1:title]]</title>
|
961
957
|
<subTitle>[[sn19:p1:subTitle]]</subTitle>
|
962
958
|
<partNumber>[[sn19:p1:partNumber]]</partNumber>
|
@@ -967,11 +963,11 @@
|
|
967
963
|
<[[sn19:p4:type]] authority="[[sn19:p4:authority]]" authorityURI="[[sn19:p4:authorityURI]]" valueURI="[[sn19:p4:valueURI]]">[[sn19:p4:value]]</[[sn19:p4:type]]>
|
968
964
|
<[[sn19:p5:type]] authority="[[sn19:p5:authority]]" authorityURI="[[sn19:p5:authorityURI]]" valueURI="[[sn19:p5:valueURI]]">[[sn19:p5:value]]</[[sn19:p5:type]]>
|
969
965
|
</subject>
|
970
|
-
<subject authority="[[sn20:authority]]" authorityURI="[[sn20:authorityURI]]" valueURI="[[sn20:valueURI]]"
|
971
|
-
<name type="[[sn20:p1:nameType]]" authority="[[sn20:p1:nm:authority]]" authorityURI="[[sn20:p1:nm:authorityURI]]" valueURI="[[sn20:p1:nm:valueURI]]"
|
966
|
+
<subject authority="[[sn20:authority]]" authorityURI="[[sn20:authorityURI]]" valueURI="[[sn20:valueURI]]">
|
967
|
+
<name type="[[sn20:p1:nameType]]" authority="[[sn20:p1:nm:authority]]" authorityURI="[[sn20:p1:nm:authorityURI]]" valueURI="[[sn20:p1:nm:valueURI]]">
|
972
968
|
<namePart>[[sn20:p1:name]]</namePart>
|
973
969
|
</name>
|
974
|
-
<titleInfo type="[[sn20:p1:titleType]]" authority="[[sn20:p1:ti:authority]]" authorityURI="[[sn20:p1:ti:authorityURI]]" valueURI="[[sn20:p1:ti:valueURI]]"
|
970
|
+
<titleInfo type="[[sn20:p1:titleType]]" authority="[[sn20:p1:ti:authority]]" authorityURI="[[sn20:p1:ti:authorityURI]]" valueURI="[[sn20:p1:ti:valueURI]]">
|
975
971
|
<title>[[sn20:p1:title]]</title>
|
976
972
|
<subTitle>[[sn20:p1:subTitle]]</subTitle>
|
977
973
|
<partNumber>[[sn20:p1:partNumber]]</partNumber>
|
@@ -982,11 +978,11 @@
|
|
982
978
|
<[[sn20:p4:type]] authority="[[sn20:p4:authority]]" authorityURI="[[sn20:p4:authorityURI]]" valueURI="[[sn20:p4:valueURI]]">[[sn20:p4:value]]</[[sn20:p4:type]]>
|
983
979
|
<[[sn20:p5:type]] authority="[[sn20:p5:authority]]" authorityURI="[[sn20:p5:authorityURI]]" valueURI="[[sn20:p5:valueURI]]">[[sn20:p5:value]]</[[sn20:p5:type]]>
|
984
980
|
</subject>
|
985
|
-
<subject authority="[[sn21:authority]]" authorityURI="[[sn21:authorityURI]]" valueURI="[[sn21:valueURI]]"
|
986
|
-
<name type="[[sn21:p1:nameType]]" authority="[[sn21:p1:nm:authority]]" authorityURI="[[sn21:p1:nm:authorityURI]]" valueURI="[[sn21:p1:nm:valueURI]]"
|
981
|
+
<subject authority="[[sn21:authority]]" authorityURI="[[sn21:authorityURI]]" valueURI="[[sn21:valueURI]]">
|
982
|
+
<name type="[[sn21:p1:nameType]]" authority="[[sn21:p1:nm:authority]]" authorityURI="[[sn21:p1:nm:authorityURI]]" valueURI="[[sn21:p1:nm:valueURI]]">
|
987
983
|
<namePart>[[sn21:p1:name]]</namePart>
|
988
984
|
</name>
|
989
|
-
<titleInfo type="[[sn21:p1:titleType]]" authority="[[sn21:p1:ti:authority]]" authorityURI="[[sn21:p1:ti:authorityURI]]" valueURI="[[sn21:p1:ti:valueURI]]"
|
985
|
+
<titleInfo type="[[sn21:p1:titleType]]" authority="[[sn21:p1:ti:authority]]" authorityURI="[[sn21:p1:ti:authorityURI]]" valueURI="[[sn21:p1:ti:valueURI]]">
|
990
986
|
<title>[[sn21:p1:title]]</title>
|
991
987
|
<subTitle>[[sn21:p1:subTitle]]</subTitle>
|
992
988
|
<partNumber>[[sn21:p1:partNumber]]</partNumber>
|
@@ -997,11 +993,11 @@
|
|
997
993
|
<[[sn21:p4:type]] authority="[[sn21:p4:authority]]" authorityURI="[[sn21:p4:authorityURI]]" valueURI="[[sn21:p4:valueURI]]">[[sn21:p4:value]]</[[sn21:p4:type]]>
|
998
994
|
<[[sn21:p5:type]] authority="[[sn21:p5:authority]]" authorityURI="[[sn21:p5:authorityURI]]" valueURI="[[sn21:p5:valueURI]]">[[sn21:p5:value]]</[[sn21:p5:type]]>
|
999
995
|
</subject>
|
1000
|
-
<subject authority="[[sn22:authority]]" authorityURI="[[sn22:authorityURI]]" valueURI="[[sn22:valueURI]]"
|
1001
|
-
<name type="[[sn22:p1:nameType]]" authority="[[sn22:p1:nm:authority]]" authorityURI="[[sn22:p1:nm:authorityURI]]" valueURI="[[sn22:p1:nm:valueURI]]"
|
996
|
+
<subject authority="[[sn22:authority]]" authorityURI="[[sn22:authorityURI]]" valueURI="[[sn22:valueURI]]">
|
997
|
+
<name type="[[sn22:p1:nameType]]" authority="[[sn22:p1:nm:authority]]" authorityURI="[[sn22:p1:nm:authorityURI]]" valueURI="[[sn22:p1:nm:valueURI]]">
|
1002
998
|
<namePart>[[sn22:p1:name]]</namePart>
|
1003
999
|
</name>
|
1004
|
-
<titleInfo type="[[sn22:p1:titleType]]" authority="[[sn22:p1:ti:authority]]" authorityURI="[[sn22:p1:ti:authorityURI]]" valueURI="[[sn22:p1:ti:valueURI]]"
|
1000
|
+
<titleInfo type="[[sn22:p1:titleType]]" authority="[[sn22:p1:ti:authority]]" authorityURI="[[sn22:p1:ti:authorityURI]]" valueURI="[[sn22:p1:ti:valueURI]]">
|
1005
1001
|
<title>[[sn22:p1:title]]</title>
|
1006
1002
|
<subTitle>[[sn22:p1:subTitle]]</subTitle>
|
1007
1003
|
<partNumber>[[sn22:p1:partNumber]]</partNumber>
|
@@ -1012,11 +1008,11 @@
|
|
1012
1008
|
<[[sn22:p4:type]] authority="[[sn22:p4:authority]]" authorityURI="[[sn22:p4:authorityURI]]" valueURI="[[sn22:p4:valueURI]]">[[sn22:p4:value]]</[[sn22:p4:type]]>
|
1013
1009
|
<[[sn22:p5:type]] authority="[[sn22:p5:authority]]" authorityURI="[[sn22:p5:authorityURI]]" valueURI="[[sn22:p5:valueURI]]">[[sn22:p5:value]]</[[sn22:p5:type]]>
|
1014
1010
|
</subject>
|
1015
|
-
<subject authority="[[sn23:authority]]" authorityURI="[[sn23:authorityURI]]" valueURI="[[sn23:valueURI]]"
|
1016
|
-
<name type="[[sn23:p1:nameType]]" authority="[[sn23:p1:nm:authority]]" authorityURI="[[sn23:p1:nm:authorityURI]]" valueURI="[[sn23:p1:nm:valueURI]]"
|
1011
|
+
<subject authority="[[sn23:authority]]" authorityURI="[[sn23:authorityURI]]" valueURI="[[sn23:valueURI]]">
|
1012
|
+
<name type="[[sn23:p1:nameType]]" authority="[[sn23:p1:nm:authority]]" authorityURI="[[sn23:p1:nm:authorityURI]]" valueURI="[[sn23:p1:nm:valueURI]]">
|
1017
1013
|
<namePart>[[sn23:p1:name]]</namePart>
|
1018
1014
|
</name>
|
1019
|
-
<titleInfo type="[[sn23:p1:titleType]]" authority="[[sn23:p1:ti:authority]]" authorityURI="[[sn23:p1:ti:authorityURI]]" valueURI="[[sn23:p1:ti:valueURI]]"
|
1015
|
+
<titleInfo type="[[sn23:p1:titleType]]" authority="[[sn23:p1:ti:authority]]" authorityURI="[[sn23:p1:ti:authorityURI]]" valueURI="[[sn23:p1:ti:valueURI]]">
|
1020
1016
|
<title>[[sn23:p1:title]]</title>
|
1021
1017
|
<subTitle>[[sn23:p1:subTitle]]</subTitle>
|
1022
1018
|
<partNumber>[[sn23:p1:partNumber]]</partNumber>
|
@@ -1027,11 +1023,11 @@
|
|
1027
1023
|
<[[sn23:p4:type]] authority="[[sn23:p4:authority]]" authorityURI="[[sn23:p4:authorityURI]]" valueURI="[[sn23:p4:valueURI]]">[[sn23:p4:value]]</[[sn23:p4:type]]>
|
1028
1024
|
<[[sn23:p5:type]] authority="[[sn23:p5:authority]]" authorityURI="[[sn23:p5:authorityURI]]" valueURI="[[sn23:p5:valueURI]]">[[sn23:p5:value]]</[[sn23:p5:type]]>
|
1029
1025
|
</subject>
|
1030
|
-
<subject authority="[[sn24:authority]]" authorityURI="[[sn24:authorityURI]]" valueURI="[[sn24:valueURI]]"
|
1031
|
-
<name type="[[sn24:p1:nameType]]" authority="[[sn24:p1:nm:authority]]" authorityURI="[[sn24:p1:nm:authorityURI]]" valueURI="[[sn24:p1:nm:valueURI]]"
|
1026
|
+
<subject authority="[[sn24:authority]]" authorityURI="[[sn24:authorityURI]]" valueURI="[[sn24:valueURI]]">
|
1027
|
+
<name type="[[sn24:p1:nameType]]" authority="[[sn24:p1:nm:authority]]" authorityURI="[[sn24:p1:nm:authorityURI]]" valueURI="[[sn24:p1:nm:valueURI]]">
|
1032
1028
|
<namePart>[[sn24:p1:name]]</namePart>
|
1033
1029
|
</name>
|
1034
|
-
<titleInfo type="[[sn24:p1:titleType]]" authority="[[sn24:p1:ti:authority]]" authorityURI="[[sn24:p1:ti:authorityURI]]" valueURI="[[sn24:p1:ti:valueURI]]"
|
1030
|
+
<titleInfo type="[[sn24:p1:titleType]]" authority="[[sn24:p1:ti:authority]]" authorityURI="[[sn24:p1:ti:authorityURI]]" valueURI="[[sn24:p1:ti:valueURI]]">
|
1035
1031
|
<title>[[sn24:p1:title]]</title>
|
1036
1032
|
<subTitle>[[sn24:p1:subTitle]]</subTitle>
|
1037
1033
|
<partNumber>[[sn24:p1:partNumber]]</partNumber>
|
@@ -1042,11 +1038,11 @@
|
|
1042
1038
|
<[[sn24:p4:type]] authority="[[sn24:p4:authority]]" authorityURI="[[sn24:p4:authorityURI]]" valueURI="[[sn24:p4:valueURI]]">[[sn24:p4:value]]</[[sn24:p4:type]]>
|
1043
1039
|
<[[sn24:p5:type]] authority="[[sn24:p5:authority]]" authorityURI="[[sn24:p5:authorityURI]]" valueURI="[[sn24:p5:valueURI]]">[[sn24:p5:value]]</[[sn24:p5:type]]>
|
1044
1040
|
</subject>
|
1045
|
-
<subject authority="[[sn25:authority]]" authorityURI="[[sn25:authorityURI]]" valueURI="[[sn25:valueURI]]"
|
1046
|
-
<name type="[[sn25:p1:nameType]]" authority="[[sn25:p1:nm:authority]]" authorityURI="[[sn25:p1:nm:authorityURI]]" valueURI="[[sn25:p1:nm:valueURI]]"
|
1041
|
+
<subject authority="[[sn25:authority]]" authorityURI="[[sn25:authorityURI]]" valueURI="[[sn25:valueURI]]">
|
1042
|
+
<name type="[[sn25:p1:nameType]]" authority="[[sn25:p1:nm:authority]]" authorityURI="[[sn25:p1:nm:authorityURI]]" valueURI="[[sn25:p1:nm:valueURI]]">
|
1047
1043
|
<namePart>[[sn25:p1:name]]</namePart>
|
1048
1044
|
</name>
|
1049
|
-
<titleInfo type="[[sn25:p1:titleType]]" authority="[[sn25:p1:ti:authority]]" authorityURI="[[sn25:p1:ti:authorityURI]]" valueURI="[[sn25:p1:ti:valueURI]]"
|
1045
|
+
<titleInfo type="[[sn25:p1:titleType]]" authority="[[sn25:p1:ti:authority]]" authorityURI="[[sn25:p1:ti:authorityURI]]" valueURI="[[sn25:p1:ti:valueURI]]">
|
1050
1046
|
<title>[[sn25:p1:title]]</title>
|
1051
1047
|
<subTitle>[[sn25:p1:subTitle]]</subTitle>
|
1052
1048
|
<partNumber>[[sn25:p1:partNumber]]</partNumber>
|
@@ -1057,11 +1053,11 @@
|
|
1057
1053
|
<[[sn25:p4:type]] authority="[[sn25:p4:authority]]" authorityURI="[[sn25:p4:authorityURI]]" valueURI="[[sn25:p4:valueURI]]">[[sn25:p4:value]]</[[sn25:p4:type]]>
|
1058
1054
|
<[[sn25:p5:type]] authority="[[sn25:p5:authority]]" authorityURI="[[sn25:p5:authorityURI]]" valueURI="[[sn25:p5:valueURI]]">[[sn25:p5:value]]</[[sn25:p5:type]]>
|
1059
1055
|
</subject>
|
1060
|
-
<subject authority="[[sn26:authority]]" authorityURI="[[sn26:authorityURI]]" valueURI="[[sn26:valueURI]]"
|
1061
|
-
<name type="[[sn26:p1:nameType]]" authority="[[sn26:p1:nm:authority]]" authorityURI="[[sn26:p1:nm:authorityURI]]" valueURI="[[sn26:p1:nm:valueURI]]"
|
1056
|
+
<subject authority="[[sn26:authority]]" authorityURI="[[sn26:authorityURI]]" valueURI="[[sn26:valueURI]]">
|
1057
|
+
<name type="[[sn26:p1:nameType]]" authority="[[sn26:p1:nm:authority]]" authorityURI="[[sn26:p1:nm:authorityURI]]" valueURI="[[sn26:p1:nm:valueURI]]">
|
1062
1058
|
<namePart>[[sn26:p1:name]]</namePart>
|
1063
1059
|
</name>
|
1064
|
-
<titleInfo type="[[sn26:p1:titleType]]" authority="[[sn26:p1:ti:authority]]" authorityURI="[[sn26:p1:ti:authorityURI]]" valueURI="[[sn26:p1:ti:valueURI]]"
|
1060
|
+
<titleInfo type="[[sn26:p1:titleType]]" authority="[[sn26:p1:ti:authority]]" authorityURI="[[sn26:p1:ti:authorityURI]]" valueURI="[[sn26:p1:ti:valueURI]]">
|
1065
1061
|
<title>[[sn26:p1:title]]</title>
|
1066
1062
|
<subTitle>[[sn26:p1:subTitle]]</subTitle>
|
1067
1063
|
<partNumber>[[sn26:p1:partNumber]]</partNumber>
|
@@ -1072,11 +1068,11 @@
|
|
1072
1068
|
<[[sn26:p4:type]] authority="[[sn26:p4:authority]]" authorityURI="[[sn26:p4:authorityURI]]" valueURI="[[sn26:p4:valueURI]]">[[sn26:p4:value]]</[[sn26:p4:type]]>
|
1073
1069
|
<[[sn26:p5:type]] authority="[[sn26:p5:authority]]" authorityURI="[[sn26:p5:authorityURI]]" valueURI="[[sn26:p5:valueURI]]">[[sn26:p5:value]]</[[sn26:p5:type]]>
|
1074
1070
|
</subject>
|
1075
|
-
<subject authority="[[sn27:authority]]" authorityURI="[[sn27:authorityURI]]" valueURI="[[sn27:valueURI]]"
|
1076
|
-
<name type="[[sn27:p1:nameType]]" authority="[[sn27:p1:nm:authority]]" authorityURI="[[sn27:p1:nm:authorityURI]]" valueURI="[[sn27:p1:nm:valueURI]]"
|
1071
|
+
<subject authority="[[sn27:authority]]" authorityURI="[[sn27:authorityURI]]" valueURI="[[sn27:valueURI]]">
|
1072
|
+
<name type="[[sn27:p1:nameType]]" authority="[[sn27:p1:nm:authority]]" authorityURI="[[sn27:p1:nm:authorityURI]]" valueURI="[[sn27:p1:nm:valueURI]]">
|
1077
1073
|
<namePart>[[sn27:p1:name]]</namePart>
|
1078
1074
|
</name>
|
1079
|
-
<titleInfo type="[[sn27:p1:titleType]]" authority="[[sn27:p1:ti:authority]]" authorityURI="[[sn27:p1:ti:authorityURI]]" valueURI="[[sn27:p1:ti:valueURI]]"
|
1075
|
+
<titleInfo type="[[sn27:p1:titleType]]" authority="[[sn27:p1:ti:authority]]" authorityURI="[[sn27:p1:ti:authorityURI]]" valueURI="[[sn27:p1:ti:valueURI]]">
|
1080
1076
|
<title>[[sn27:p1:title]]</title>
|
1081
1077
|
<subTitle>[[sn27:p1:subTitle]]</subTitle>
|
1082
1078
|
<partNumber>[[sn27:p1:partNumber]]</partNumber>
|
@@ -1087,11 +1083,11 @@
|
|
1087
1083
|
<[[sn27:p4:type]] authority="[[sn27:p4:authority]]" authorityURI="[[sn27:p4:authorityURI]]" valueURI="[[sn27:p4:valueURI]]">[[sn27:p4:value]]</[[sn27:p4:type]]>
|
1088
1084
|
<[[sn27:p5:type]] authority="[[sn27:p5:authority]]" authorityURI="[[sn27:p5:authorityURI]]" valueURI="[[sn27:p5:valueURI]]">[[sn27:p5:value]]</[[sn27:p5:type]]>
|
1089
1085
|
</subject>
|
1090
|
-
<subject authority="[[sn28:authority]]" authorityURI="[[sn28:authorityURI]]" valueURI="[[sn28:valueURI]]"
|
1091
|
-
<name type="[[sn28:p1:nameType]]" authority="[[sn28:p1:nm:authority]]" authorityURI="[[sn28:p1:nm:authorityURI]]" valueURI="[[sn28:p1:nm:valueURI]]"
|
1086
|
+
<subject authority="[[sn28:authority]]" authorityURI="[[sn28:authorityURI]]" valueURI="[[sn28:valueURI]]">
|
1087
|
+
<name type="[[sn28:p1:nameType]]" authority="[[sn28:p1:nm:authority]]" authorityURI="[[sn28:p1:nm:authorityURI]]" valueURI="[[sn28:p1:nm:valueURI]]">
|
1092
1088
|
<namePart>[[sn28:p1:name]]</namePart>
|
1093
1089
|
</name>
|
1094
|
-
<titleInfo type="[[sn28:p1:titleType]]" authority="[[sn28:p1:ti:authority]]" authorityURI="[[sn28:p1:ti:authorityURI]]" valueURI="[[sn28:p1:ti:valueURI]]"
|
1090
|
+
<titleInfo type="[[sn28:p1:titleType]]" authority="[[sn28:p1:ti:authority]]" authorityURI="[[sn28:p1:ti:authorityURI]]" valueURI="[[sn28:p1:ti:valueURI]]">
|
1095
1091
|
<title>[[sn28:p1:title]]</title>
|
1096
1092
|
<subTitle>[[sn28:p1:subTitle]]</subTitle>
|
1097
1093
|
<partNumber>[[sn28:p1:partNumber]]</partNumber>
|
@@ -1102,11 +1098,11 @@
|
|
1102
1098
|
<[[sn28:p4:type]] authority="[[sn28:p4:authority]]" authorityURI="[[sn28:p4:authorityURI]]" valueURI="[[sn28:p4:valueURI]]">[[sn28:p4:value]]</[[sn28:p4:type]]>
|
1103
1099
|
<[[sn28:p5:type]] authority="[[sn28:p5:authority]]" authorityURI="[[sn28:p5:authorityURI]]" valueURI="[[sn28:p5:valueURI]]">[[sn28:p5:value]]</[[sn28:p5:type]]>
|
1104
1100
|
</subject>
|
1105
|
-
<subject authority="[[sn29:authority]]" authorityURI="[[sn29:authorityURI]]" valueURI="[[sn29:valueURI]]"
|
1106
|
-
<name type="[[sn29:p1:nameType]]" authority="[[sn29:p1:nm:authority]]" authorityURI="[[sn29:p1:nm:authorityURI]]" valueURI="[[sn29:p1:nm:valueURI]]"
|
1101
|
+
<subject authority="[[sn29:authority]]" authorityURI="[[sn29:authorityURI]]" valueURI="[[sn29:valueURI]]">
|
1102
|
+
<name type="[[sn29:p1:nameType]]" authority="[[sn29:p1:nm:authority]]" authorityURI="[[sn29:p1:nm:authorityURI]]" valueURI="[[sn29:p1:nm:valueURI]]">
|
1107
1103
|
<namePart>[[sn29:p1:name]]</namePart>
|
1108
1104
|
</name>
|
1109
|
-
<titleInfo type="[[sn29:p1:titleType]]" authority="[[sn29:p1:ti:authority]]" authorityURI="[[sn29:p1:ti:authorityURI]]" valueURI="[[sn29:p1:ti:valueURI]]"
|
1105
|
+
<titleInfo type="[[sn29:p1:titleType]]" authority="[[sn29:p1:ti:authority]]" authorityURI="[[sn29:p1:ti:authorityURI]]" valueURI="[[sn29:p1:ti:valueURI]]">
|
1110
1106
|
<title>[[sn29:p1:title]]</title>
|
1111
1107
|
<subTitle>[[sn29:p1:subTitle]]</subTitle>
|
1112
1108
|
<partNumber>[[sn29:p1:partNumber]]</partNumber>
|
@@ -1117,11 +1113,11 @@
|
|
1117
1113
|
<[[sn29:p4:type]] authority="[[sn29:p4:authority]]" authorityURI="[[sn29:p4:authorityURI]]" valueURI="[[sn29:p4:valueURI]]">[[sn29:p4:value]]</[[sn29:p4:type]]>
|
1118
1114
|
<[[sn29:p5:type]] authority="[[sn29:p5:authority]]" authorityURI="[[sn29:p5:authorityURI]]" valueURI="[[sn29:p5:valueURI]]">[[sn29:p5:value]]</[[sn29:p5:type]]>
|
1119
1115
|
</subject>
|
1120
|
-
<subject authority="[[sn30:authority]]" authorityURI="[[sn30:authorityURI]]" valueURI="[[sn30:valueURI]]"
|
1121
|
-
<name type="[[sn30:p1:nameType]]" authority="[[sn30:p1:nm:authority]]" authorityURI="[[sn30:p1:nm:authorityURI]]" valueURI="[[sn30:p1:nm:valueURI]]"
|
1116
|
+
<subject authority="[[sn30:authority]]" authorityURI="[[sn30:authorityURI]]" valueURI="[[sn30:valueURI]]">
|
1117
|
+
<name type="[[sn30:p1:nameType]]" authority="[[sn30:p1:nm:authority]]" authorityURI="[[sn30:p1:nm:authorityURI]]" valueURI="[[sn30:p1:nm:valueURI]]">
|
1122
1118
|
<namePart>[[sn30:p1:name]]</namePart>
|
1123
1119
|
</name>
|
1124
|
-
<titleInfo type="[[sn30:p1:titleType]]" authority="[[sn30:p1:ti:authority]]" authorityURI="[[sn30:p1:ti:authorityURI]]" valueURI="[[sn30:p1:ti:valueURI]]"
|
1120
|
+
<titleInfo type="[[sn30:p1:titleType]]" authority="[[sn30:p1:ti:authority]]" authorityURI="[[sn30:p1:ti:authorityURI]]" valueURI="[[sn30:p1:ti:valueURI]]">
|
1125
1121
|
<title>[[sn30:p1:title]]</title>
|
1126
1122
|
<subTitle>[[sn30:p1:subTitle]]</subTitle>
|
1127
1123
|
<partNumber>[[sn30:p1:partNumber]]</partNumber>
|
@@ -1132,70 +1128,70 @@
|
|
1132
1128
|
<[[sn30:p4:type]] authority="[[sn30:p4:authority]]" authorityURI="[[sn30:p4:authorityURI]]" valueURI="[[sn30:p4:valueURI]]">[[sn30:p4:value]]</[[sn30:p4:type]]>
|
1133
1129
|
<[[sn30:p5:type]] authority="[[sn30:p5:authority]]" authorityURI="[[sn30:p5:authorityURI]]" valueURI="[[sn30:p5:valueURI]]">[[sn30:p5:value]]</[[sn30:p5:type]]>
|
1134
1130
|
</subject>
|
1135
|
-
<subject authority="[[su1:authority]]" authorityURI="[[su1:authorityURI]]" valueURI="[[su1:valueURI]]"
|
1131
|
+
<subject authority="[[su1:authority]]" authorityURI="[[su1:authorityURI]]" valueURI="[[su1:valueURI]]">
|
1136
1132
|
<[[su1:p1:type]] authority="[[su1:p1:authority]]" authorityURI="[[su1:p1:authorityURI]]" valueURI="[[su1:p1:valueURI]]">[[su1:p1:value]]</[[su1:p1:type]]>
|
1137
1133
|
<[[su1:p2:type]] authority="[[su1:p2:authority]]" authorityURI="[[su1:p2:authorityURI]]" valueURI="[[su1:p2:valueURI]]">[[su1:p2:value]]</[[su1:p2:type]]>
|
1138
1134
|
<[[su1:p3:type]] authority="[[su1:p3:authority]]" authorityURI="[[su1:p3:authorityURI]]" valueURI="[[su1:p3:valueURI]]">[[su1:p3:value]]</[[su1:p3:type]]>
|
1139
1135
|
<[[su1:p4:type]] authority="[[su1:p4:authority]]" authorityURI="[[su1:p4:authorityURI]]" valueURI="[[su1:p4:valueURI]]">[[su1:p4:value]]</[[su1:p4:type]]>
|
1140
1136
|
<[[su1:p5:type]] authority="[[su1:p5:authority]]" authorityURI="[[su1:p5:authorityURI]]" valueURI="[[su1:p5:valueURI]]">[[su1:p5:value]]</[[su1:p5:type]]>
|
1141
1137
|
</subject>
|
1142
|
-
<subject authority="[[su2:authority]]" authorityURI="[[su2:authorityURI]]" valueURI="[[su2:valueURI]]"
|
1138
|
+
<subject authority="[[su2:authority]]" authorityURI="[[su2:authorityURI]]" valueURI="[[su2:valueURI]]">
|
1143
1139
|
<[[su2:p1:type]] authority="[[su2:p1:authority]]" authorityURI="[[su2:p1:authorityURI]]" valueURI="[[su2:p1:valueURI]]">[[su2:p1:value]]</[[su2:p1:type]]>
|
1144
1140
|
<[[su2:p2:type]] authority="[[su2:p2:authority]]" authorityURI="[[su2:p2:authorityURI]]" valueURI="[[su2:p2:valueURI]]">[[su2:p2:value]]</[[su2:p2:type]]>
|
1145
1141
|
<[[su2:p3:type]] authority="[[su2:p3:authority]]" authorityURI="[[su2:p3:authorityURI]]" valueURI="[[su2:p3:valueURI]]">[[su2:p3:value]]</[[su2:p3:type]]>
|
1146
1142
|
<[[su2:p4:type]] authority="[[su2:p4:authority]]" authorityURI="[[su2:p4:authorityURI]]" valueURI="[[su2:p4:valueURI]]">[[su2:p4:value]]</[[su2:p4:type]]>
|
1147
1143
|
<[[su2:p5:type]] authority="[[su2:p5:authority]]" authorityURI="[[su2:p5:authorityURI]]" valueURI="[[su2:p5:valueURI]]">[[su2:p5:value]]</[[su2:p5:type]]>
|
1148
1144
|
</subject>
|
1149
|
-
<subject authority="[[su3:authority]]" authorityURI="[[su3:authorityURI]]" valueURI="[[su3:valueURI]]"
|
1145
|
+
<subject authority="[[su3:authority]]" authorityURI="[[su3:authorityURI]]" valueURI="[[su3:valueURI]]">
|
1150
1146
|
<[[su3:p1:type]] authority="[[su3:p1:authority]]" authorityURI="[[su3:p1:authorityURI]]" valueURI="[[su3:p1:valueURI]]">[[su3:p1:value]]</[[su3:p1:type]]>
|
1151
1147
|
<[[su3:p2:type]] authority="[[su3:p2:authority]]" authorityURI="[[su3:p2:authorityURI]]" valueURI="[[su3:p2:valueURI]]">[[su3:p2:value]]</[[su3:p2:type]]>
|
1152
1148
|
<[[su3:p3:type]] authority="[[su3:p3:authority]]" authorityURI="[[su3:p3:authorityURI]]" valueURI="[[su3:p3:valueURI]]">[[su3:p3:value]]</[[su3:p3:type]]>
|
1153
1149
|
<[[su3:p4:type]] authority="[[su3:p4:authority]]" authorityURI="[[su3:p4:authorityURI]]" valueURI="[[su3:p4:valueURI]]">[[su3:p4:value]]</[[su3:p4:type]]>
|
1154
1150
|
<[[su3:p5:type]] authority="[[su3:p5:authority]]" authorityURI="[[su3:p5:authorityURI]]" valueURI="[[su3:p5:valueURI]]">[[su3:p5:value]]</[[su3:p5:type]]>
|
1155
1151
|
</subject>
|
1156
|
-
<subject authority="[[su4:authority]]" authorityURI="[[su4:authorityURI]]" valueURI="[[su4:valueURI]]"
|
1152
|
+
<subject authority="[[su4:authority]]" authorityURI="[[su4:authorityURI]]" valueURI="[[su4:valueURI]]">
|
1157
1153
|
<[[su4:p1:type]] authority="[[su4:p1:authority]]" authorityURI="[[su4:p1:authorityURI]]" valueURI="[[su4:p1:valueURI]]">[[su4:p1:value]]</[[su4:p1:type]]>
|
1158
1154
|
<[[su4:p2:type]] authority="[[su4:p2:authority]]" authorityURI="[[su4:p2:authorityURI]]" valueURI="[[su4:p2:valueURI]]">[[su4:p2:value]]</[[su4:p2:type]]>
|
1159
1155
|
<[[su4:p3:type]] authority="[[su4:p3:authority]]" authorityURI="[[su4:p3:authorityURI]]" valueURI="[[su4:p3:valueURI]]">[[su4:p3:value]]</[[su4:p3:type]]>
|
1160
1156
|
<[[su4:p4:type]] authority="[[su4:p4:authority]]" authorityURI="[[su4:p4:authorityURI]]" valueURI="[[su4:p4:valueURI]]">[[su4:p4:value]]</[[su4:p4:type]]>
|
1161
1157
|
<[[su4:p5:type]] authority="[[su4:p5:authority]]" authorityURI="[[su4:p5:authorityURI]]" valueURI="[[su4:p5:valueURI]]">[[su4:p5:value]]</[[su4:p5:type]]>
|
1162
1158
|
</subject>
|
1163
|
-
<subject authority="[[su5:authority]]" authorityURI="[[su5:authorityURI]]" valueURI="[[su5:valueURI]]"
|
1159
|
+
<subject authority="[[su5:authority]]" authorityURI="[[su5:authorityURI]]" valueURI="[[su5:valueURI]]">
|
1164
1160
|
<[[su5:p1:type]] authority="[[su5:p1:authority]]" authorityURI="[[su5:p1:authorityURI]]" valueURI="[[su5:p1:valueURI]]">[[su5:p1:value]]</[[su5:p1:type]]>
|
1165
1161
|
<[[su5:p2:type]] authority="[[su5:p2:authority]]" authorityURI="[[su5:p2:authorityURI]]" valueURI="[[su5:p2:valueURI]]">[[su5:p2:value]]</[[su5:p2:type]]>
|
1166
1162
|
<[[su5:p3:type]] authority="[[su5:p3:authority]]" authorityURI="[[su5:p3:authorityURI]]" valueURI="[[su5:p3:valueURI]]">[[su5:p3:value]]</[[su5:p3:type]]>
|
1167
1163
|
<[[su5:p4:type]] authority="[[su5:p4:authority]]" authorityURI="[[su5:p4:authorityURI]]" valueURI="[[su5:p4:valueURI]]">[[su5:p4:value]]</[[su5:p4:type]]>
|
1168
1164
|
<[[su5:p5:type]] authority="[[su5:p5:authority]]" authorityURI="[[su5:p5:authorityURI]]" valueURI="[[su5:p5:valueURI]]">[[su5:p5:value]]</[[su5:p5:type]]>
|
1169
1165
|
</subject>
|
1170
|
-
<subject authority="[[su6:authority]]" authorityURI="[[su6:authorityURI]]" valueURI="[[su6:valueURI]]"
|
1166
|
+
<subject authority="[[su6:authority]]" authorityURI="[[su6:authorityURI]]" valueURI="[[su6:valueURI]]">
|
1171
1167
|
<[[su6:p1:type]] authority="[[su6:p1:authority]]" authorityURI="[[su6:p1:authorityURI]]" valueURI="[[su6:p1:valueURI]]">[[su6:p1:value]]</[[su6:p1:type]]>
|
1172
1168
|
<[[su6:p2:type]] authority="[[su6:p2:authority]]" authorityURI="[[su6:p2:authorityURI]]" valueURI="[[su6:p2:valueURI]]">[[su6:p2:value]]</[[su6:p2:type]]>
|
1173
1169
|
<[[su6:p3:type]] authority="[[su6:p3:authority]]" authorityURI="[[su6:p3:authorityURI]]" valueURI="[[su6:p3:valueURI]]">[[su6:p3:value]]</[[su6:p3:type]]>
|
1174
1170
|
<[[su6:p4:type]] authority="[[su6:p4:authority]]" authorityURI="[[su6:p4:authorityURI]]" valueURI="[[su6:p4:valueURI]]">[[su6:p4:value]]</[[su6:p4:type]]>
|
1175
1171
|
<[[su6:p5:type]] authority="[[su6:p5:authority]]" authorityURI="[[su6:p5:authorityURI]]" valueURI="[[su6:p5:valueURI]]">[[su6:p5:value]]</[[su6:p5:type]]>
|
1176
1172
|
</subject>
|
1177
|
-
<subject authority="[[su7:authority]]" authorityURI="[[su7:authorityURI]]" valueURI="[[su7:valueURI]]"
|
1173
|
+
<subject authority="[[su7:authority]]" authorityURI="[[su7:authorityURI]]" valueURI="[[su7:valueURI]]">
|
1178
1174
|
<[[su7:p1:type]] authority="[[su7:p1:authority]]" authorityURI="[[su7:p1:authorityURI]]" valueURI="[[su7:p1:valueURI]]">[[su7:p1:value]]</[[su7:p1:type]]>
|
1179
1175
|
<[[su7:p2:type]] authority="[[su7:p2:authority]]" authorityURI="[[su7:p2:authorityURI]]" valueURI="[[su7:p2:valueURI]]">[[su7:p2:value]]</[[su7:p2:type]]>
|
1180
1176
|
<[[su7:p3:type]] authority="[[su7:p3:authority]]" authorityURI="[[su7:p3:authorityURI]]" valueURI="[[su7:p3:valueURI]]">[[su7:p3:value]]</[[su7:p3:type]]>
|
1181
1177
|
<[[su7:p4:type]] authority="[[su7:p4:authority]]" authorityURI="[[su7:p4:authorityURI]]" valueURI="[[su7:p4:valueURI]]">[[su7:p4:value]]</[[su7:p4:type]]>
|
1182
1178
|
<[[su7:p5:type]] authority="[[su7:p5:authority]]" authorityURI="[[su7:p5:authorityURI]]" valueURI="[[su7:p5:valueURI]]">[[su7:p5:value]]</[[su7:p5:type]]>
|
1183
1179
|
</subject>
|
1184
|
-
<subject authority="[[su8:authority]]" authorityURI="[[su8:authorityURI]]" valueURI="[[su8:valueURI]]"
|
1180
|
+
<subject authority="[[su8:authority]]" authorityURI="[[su8:authorityURI]]" valueURI="[[su8:valueURI]]">
|
1185
1181
|
<[[su8:p1:type]] authority="[[su8:p1:authority]]" authorityURI="[[su8:p1:authorityURI]]" valueURI="[[su8:p1:valueURI]]">[[su8:p1:value]]</[[su8:p1:type]]>
|
1186
1182
|
<[[su8:p2:type]] authority="[[su8:p2:authority]]" authorityURI="[[su8:p2:authorityURI]]" valueURI="[[su8:p2:valueURI]]">[[su8:p2:value]]</[[su8:p2:type]]>
|
1187
1183
|
<[[su8:p3:type]] authority="[[su8:p3:authority]]" authorityURI="[[su8:p3:authorityURI]]" valueURI="[[su8:p3:valueURI]]">[[su8:p3:value]]</[[su8:p3:type]]>
|
1188
1184
|
<[[su8:p4:type]] authority="[[su8:p4:authority]]" authorityURI="[[su8:p4:authorityURI]]" valueURI="[[su8:p4:valueURI]]">[[su8:p4:value]]</[[su8:p4:type]]>
|
1189
1185
|
<[[su8:p5:type]] authority="[[su8:p5:authority]]" authorityURI="[[su8:p5:authorityURI]]" valueURI="[[su8:p5:valueURI]]">[[su8:p5:value]]</[[su8:p5:type]]>
|
1190
1186
|
</subject>
|
1191
|
-
<subject authority="[[su9:authority]]" authorityURI="[[su9:authorityURI]]" valueURI="[[su9:valueURI]]"
|
1187
|
+
<subject authority="[[su9:authority]]" authorityURI="[[su9:authorityURI]]" valueURI="[[su9:valueURI]]">
|
1192
1188
|
<[[su9:p1:type]] authority="[[su9:p1:authority]]" authorityURI="[[su9:p1:authorityURI]]" valueURI="[[su9:p1:valueURI]]">[[su9:p1:value]]</[[su9:p1:type]]>
|
1193
1189
|
<[[su9:p2:type]] authority="[[su9:p2:authority]]" authorityURI="[[su9:p2:authorityURI]]" valueURI="[[su9:p2:valueURI]]">[[su9:p2:value]]</[[su9:p2:type]]>
|
1194
1190
|
<[[su9:p3:type]] authority="[[su9:p3:authority]]" authorityURI="[[su9:p3:authorityURI]]" valueURI="[[su9:p3:valueURI]]">[[su9:p3:value]]</[[su9:p3:type]]>
|
1195
1191
|
<[[su9:p4:type]] authority="[[su9:p4:authority]]" authorityURI="[[su9:p4:authorityURI]]" valueURI="[[su9:p4:valueURI]]">[[su9:p4:value]]</[[su9:p4:type]]>
|
1196
1192
|
<[[su9:p5:type]] authority="[[su9:p5:authority]]" authorityURI="[[su9:p5:authorityURI]]" valueURI="[[su9:p5:valueURI]]">[[su9:p5:value]]</[[su9:p5:type]]>
|
1197
1193
|
</subject>
|
1198
|
-
<subject authority="[[su10:authority]]" authorityURI="[[su10:authorityURI]]" valueURI="[[su10:valueURI]]"
|
1194
|
+
<subject authority="[[su10:authority]]" authorityURI="[[su10:authorityURI]]" valueURI="[[su10:valueURI]]">
|
1199
1195
|
<[[su10:p1:type]] authority="[[su10:p1:authority]]" authorityURI="[[su10:p1:authorityURI]]" valueURI="[[su10:p1:valueURI]]">[[su10:p1:value]]</[[su10:p1:type]]>
|
1200
1196
|
<[[su10:p2:type]] authority="[[su10:p2:authority]]" authorityURI="[[su10:p2:authorityURI]]" valueURI="[[su10:p2:valueURI]]">[[su10:p2:value]]</[[su10:p2:type]]>
|
1201
1197
|
<[[su10:p3:type]] authority="[[su10:p3:authority]]" authorityURI="[[su10:p3:authorityURI]]" valueURI="[[su10:p3:valueURI]]">[[su10:p3:value]]</[[su10:p3:type]]>
|
@@ -1222,10 +1218,11 @@
|
|
1222
1218
|
<identifier type="[[id4:type]]" displayLabel="[[id4:displayLabel]]">[[id4:identifier]]</identifier>
|
1223
1219
|
<identifier type="[[id5:type]]" displayLabel="[[id5:displayLabel]]">[[id5:identifier]]</identifier>
|
1224
1220
|
<location>
|
1225
|
-
<physicalLocation type="repository" authority="[[lo:authority]]" valueURI="[[lo:valueURI]]"
|
1221
|
+
<physicalLocation type="repository" authority="[[lo:authority]]" valueURI="[[lo:valueURI]]">[[lo:repository]]</physicalLocation>
|
1226
1222
|
<physicalLocation type="discovery">[[lo:physicalLocation]]</physicalLocation>
|
1227
1223
|
<shelfLocator>[[lo:callNumber]]</shelfLocator>
|
1228
|
-
<url>[[lo:purl]]</url>
|
1224
|
+
<url usage="primary display">[[lo:purl]]</url>
|
1225
|
+
<url displayLabel="[[lo:url:displayLabel]]">[[lo:url]]</url>
|
1229
1226
|
</location>
|
1230
1227
|
<part>
|
1231
1228
|
<detail type="[[pt:type1]]">
|