-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path00000024.xml
2512 lines (2503 loc) · 138 KB
/
00000024.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<METS_Profile
xmlns="http://www.loc.gov/METS_Profile/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.loc.gov/METS_Profile/ http://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd">
<URI LOCTYPE="URL">http://www.loc.gov/mets/profiles/00000024.xml</URI>
<title>RLUK 19th Century Pamphlets METS Profile</title>
<abstract>
This profile specifies the use of METS to provide metadata for the project to digitise 19th Century Pamphlets
under Phase 2 of the JISC Digitisation Programme. Further information about the project can be found at:
http://www.southampton.ac.uk/library/bopcris/
http://www.jisc.ac.uk/whatwedo/programmes/programme_digitisation/pamphlets.aspx
The materials to be digitised comprise single pamphlets, sometimes bound into a volume, sometimes not.
The item level is defined to be a pamphlet. One METS document should be present for each digitised pamphlet.
If the pamphlets were bound into a volume, the front and back matter, including tables of contents, of the volume
have also been scanned. In such cases, one METS document should also be present for each volume, containing
the images of the volume and references to the METS documents for the pamphlets contained within the volume.
The digital files for each pamphlet should comprise: master images (TIFF) and OCR full-text in two formats
(plain text and word co-ordinated XML). The digital files for each bound volume should comprise master images only.
All digital files are packaged together with the METS and extension metadata into a single digital object (TAR)
for delivery and storage.
</abstract>
<date>2008-08-06T00:00:00</date>
<contact>
<name>Ed Fay</name>
<institution>University of Southampton</institution>
<address>BOPCRIS Digitisation Centre, Hartley Library, University of Southampton, SO17 1BJ, UK</address>
<phone>+44 (0) 23 8059 3575</phone>
<email>[email protected]</email>
</contact>
<related_profile>None</related_profile>
<extension_schema ID="MODS">
<name>Metadata Object Description Schema (MODS)</name>
<URI>http://www.loc.gov/standards/mods/v3/mods-3-2.xsd</URI>
<context>mets/dmdSec/mdWrap/xmlData</context>
<note>
Bibliographic metadata at the item level, supplied in MODS by COPAC (http://www.copac.ac.uk)
There will be one instance per pamphlet, and none per bound volume.
This metadata will be contained in a dmdSec linked to the top level div in the logical structMap.
MODS metadata will conform to version 3.2 of the schema.
</note>
</extension_schema>
<extension_schema ID="MIX">
<name>NISO Metadata for Images in XML (NISO MIX)</name>
<URI>http://www.loc.gov/standards/mix/mix20/mix20.xsd</URI>
<context>mets/amdSec/techMD/mdWrap/xmlData</context>
<note>
Technical metadata at the file level, extracted from standard file information and TIFF headers.
There will be one instance per master image file listed in the fileSec.
This metadata will be contained in an amdSec linked to the relevant file element.
MIX metadata will conform to version 2.0 of the schema.
</note>
</extension_schema>
<extension_schema ID="PREMIS">
<name>PREMIS Data Dictionary for Preservation Metadata</name>
<URI>http://www.loc.gov/standards/premis/v2/premis-v2-0.xsd</URI>
<context>mets/amdSec/digiProvMD|techMD/mdWrap/xmlData</context>
<note>
Technical metadata at the file level, extracted from standard file information.
There will be one instance per file of any kind listed in the fileSec.
This metadata will be contained in an amdSec linked to the relevant file element.
The PREMIS components will be contained within seperate METS elements, as suggested by
the "Guidelines for using PREMIS within METS" at http://www.loc.gov/standards/premis/premis-mets.html
techMD: premis:object for each file
digiProvMD: premis:event containing information about file derivations
digiProvMD: premis:agent containing information about software packages
PREMIS metadata will conform to version 2.0 of the schema.
</note>
</extension_schema>
<extension_schema ID="descriptors">
<name>BOPCRIS Descriptors Metadata</name>
<URI>http://www.southampton.ac.uk/library/bopcris/xsd/descriptors/bopcris-descriptors-0-2.xsd</URI>
<context>mets/dmdSec/mdWrap/xmlData</context>
<note>
Descriptive metadata at the page level, recorded by scanner operators at the point of scanning.
This schema indicates attributes of a page, for example that it contains text in a certain language,
imagery or tabular data. There are 12 such attributes enumerated within the schema.
There will be one instance per item page, indicating language as a minimum.
Language information uses the controlled vocabulary ISO 639.2.
This metadata will be contained in a dmdSec linked to the page level div in the logical structMap.
BOPCRIS Descriptors metadata will confrom to version 0.2 of the schema.
</note>
</extension_schema>
<extension_schema ID="provenance">
<name>BOPCRIS Provenance Metadata</name>
<URI>http://www.southampton.ac.uk/library/bopcris/xsd/provenance/bopcris-provenance-0-1.xsd</URI>
<context>mets/amdSec/digiProvMD/mdWrap/xmlData</context>
<note>
Administrative metadata at the object level, indicating the provenance of the item. This schema
contains information about the source library, collection and shelfmark of the original item.
There will be one instance per pamphlet, none per bound volume.
This metadata will be contained in an amdSec linked to the top level div in the logical structMap.
BOPCRIS Provenance metadata will conform to version 0.1 of the schema.
</note>
</extension_schema>
<extension_schema ID="rights">
<name>BOPCRIS Rights Metadata</name>
<URI>http://www.southampton.ac.uk/library/bopcris/xsd/rights/bopcris-rights-0-1.xsd</URI>
<context>mets/amdSec/rightsMD/mdWrap/xmlData</context>
<note>
Administrative metadata at the item level, indicating the copyright status of the item.
For a full explanation of the copyright status, see the project documentation.
There will be one instance per pamphlet, none per bound volume.
This metadata will be contained in an amdSec linked to the top level div in the logical structMap.
BOPCRIS Rights metadata will conform to version 0.1 of the schema.
</note>
</extension_schema>
<description_rules>
<p>Bibliographic records will conform to the descriptive specifications of COPAC at the time of export (2007).</p>
<p>For further information consult COPAC: http://www.copac.ac.uk/</p>
</description_rules>
<controlled_vocabularies>
<vocabulary ID="ISO_639_2">
<name>ISO 639.2 Codes for the representation of names of languages-- Part 2: alpha-3 code</name>
<maintenance_agency>Library of Congress</maintenance_agency>
<URI>http://www.loc.gov/standards/iso639-2/</URI>
<context>
<p>BOPCRIS Descriptors metadata uses ISO 639.2 language codes to indicate the presence of text
in a certain language on a page.</p>
</context>
</vocabulary>
</controlled_vocabularies>
<structural_requirements>
<metsRootElement>
<requirement ID="OBJID">
<p>OBJID must contain a project specific ID.</p>
<p>BOPCRIS generated a unique ID for each pamphlet based on: the local holding ID from the bibliographic record,
library identifier, volume identifier (if applicable, otherwise the default value 000 was used), and another number
to indicate whether the pamphlet is a duplicate item.</p>
<p>Bound volume identifiers are generated from library identifer and volume identifier only.</p>
<p>Library identifiers are identical to the institution codes used to identify libraries within the COPAC database.
Volume identifiers are derived from the information about the volume available within the bibliographic record,
in most instances, or from another source, such as a barcode, where necessary.</p>
<p>Pamphlet ID form:
holdingID_library-volume-duplicate
Examples:
1234567890_tst-000-1
27000123456_bri-1800-2
19B39982X_liv-531-1
</p>
<p>Bound volume ID form:
library-volume
Examples:
liv-531
ucl-A70
</p>
</requirement>
</metsRootElement>
<metsHdr>
<requirement ID="metsHdr">
<head>Applies to: pamphlet and bound volume METS documents.</head>
<p>metsHdr must be present, indicating creation and modification dates.
At the point of delivery these will be identical, as METS documents are generated as an export at the end
of the creation process for a digital object, and are not subject to ongoing revision.</p>
<p>Sub-element agent (role="CREATOR") will indicate the source of the object at BOPCRIS.</p>
</requirement>
</metsHdr>
<dmdSec>
<requirement ID="dmdSec_Biblio">
<head>Applies to: pamphlet METS documents only.</head>
<p>A dmdSec with attribute ID="dmdSec_Biblio" will be present containing the bibliographic record of the item.</p>
<p>The bibliographic record will be in XML (MIMETYPE="text/xml") and MODS format (MDTYPE="MODS").</p>
<p>The record will be contained within the METS document using mdWrap.</p>
</requirement>
<requirement ID="dmdSec_page">
<head>Applies to: pamphlet METS documents only.</head>
<p>dmdSecs, one per physical page, will be present, containing descriptive metadata at the page level.
attribute ID will be "dmdSec" + "_" + physical page identifier (see requirement ID="file_naming").
Examples:
dmdSec_00000001
dmdSec_00000007
dmdSec_00000017
</p>
<p>Metadata at this level will be in XML (MIMETYPE="text/xml") and BOPCRIS Descriptors Metadata format
(MDTYPE="OTHER")</p>
<p>This metadata will be contained within the METS document using mdWrap.</p>
</requirement>
</dmdSec>
<amdSec>
<requirement ID="amdSec_Object">
<head>Applies to: pamphlet METS documents only.</head>
<p>An amdSec with attribute ID="amdSec_Object" will be present containing administrative metadata at the item level.</p>
<p>This metadata will include:
rightsMD ID="rightsMD_Object" containing rights metadata for the item in XML
(MIMETYPE="text/xml")
and BOPCRIS Rights Metadata format (MDTYPE="OTHER").
digiProvMD ID="digiprovMD_Object" containing provenance metadata for the digital object in XML
(MIMETYPE="text/xml")
and BOPCRIS Provenance Metadata format (MDTYPE="OTHER").
</p>
<p>These metadata will be contained within the METS document using mdWrap.</p>
</requirement>
<requirement ID="amdSec_PREMIS-AGENTS">
<head>Applies to: pamphlet METS documents only.</head>
<p>An amdSec with attribute ID="amdSec_PREMIS-AGENTS" will be present.
In cases where post-processing actions have been performed on images, such as cropping and/or OCR,
this section will contain premis:agent elements indicating the agents that performed such actions.</p>
</requirement>
<requirement ID="amdSec_file">
<head>Applies to: pamphlet and bound volume METS documents.</head>
<p>amdSecs, one per file, will be present, containing technical information encoded in multiple extension schemata.</p>
<p>The attribute ID will be constructed from "amdSec" + "_" + file ID (see requirement ID="file").
Examples (pamphlet item):
amdSec_MASTER_00000001
amdSec_TXT_00000007
amdSec_IDX_00000017
Examples (bound volume):
amdSec_MASTER-volume-front-00000001
amdSec_MASTER-volume-back-00000001
</p>
<p>amdSecs for every file will contain PREMIS metadata:
All files will have a premis:object element.
In cases where files are the parent or child of another (due to OCR processing), this will be indicated in the premis:object.
The event of derivation will be recorded in a premis:event element, linked to a premis:agent.</p>
<p>The premis:object for each file will indicate the format, and should indicate a registry providing format information when available.</p>
<p>amdSecs for master image files will additionally contain MIX metadata.</p>
</requirement>
</amdSec>
<fileSec>
<requirement ID="fileSec">
<head>Applies to: pamphlet and bound volume METS documents.</head>
<p>There will be one file group per file type. fileGrp attribute ID will indicate the relevance.
Master Images MASTER
Plain text OCR TXT
Word co-ordinated XML OCR IDX
</p>
<p>Pamphlet items will contain all three file groups, bound volumes will contain only master images.</p>
</requirement>
<requirement ID="file">
<head>Applies to: pamphlet and bound volume METS documents.</head>
<p>There will be one file element per file, referencing the file location using FLocat .
FLocat elements will be LOCTYPE="URL" and use xlink:href to point to files.
File locations will be given relative to the path of the METS document.</p>
<p>As the digital object is packaged into a single TAR file for delivery, relative paths allow the TAR package to be unpacked
anywhere and, providing the directory structure is maintained on unpacking, all paths should remain accurate.</p>
<p>file ID will be constructed from fileGrp ID + "_" + physical page identifier (see requirement ID="file_naming").
Examples (pamphlet item):
MASTER_00000001
TXT_00000007
IDX_00000017
Examples (bound volume):
MASTER_volume-front-00000001
MASTER_volume-back-00000001
</p>
<p>file GROUPID will be identical to the physical page identifier (see requirement ID="file_naming").
Example (pamphlet item):
00000001
Example (bound volume):
volume-front-00000001
volume-back-00000001
</p>
<p>file AMDID will link to the amdSec containing the technical metadata for the file, as indicated in
requirement ID="amdSec_file".</p>
<p>file CHECKSUM and CHECKSUMTYPE will be present. Checksums will be calculated using MD5.</p>
<p>file MIMETYPE will be present.</p>
</requirement>
</fileSec>
<structMap>
<requirement ID="structMaps">
<head>Applies to: pamphlet and bound volume METS documents.</head>
<p>There will be a logical and physical structure map.</p>
<p>In the case of pamphlet items:
The logical and physical structure maps will be identical, except the logical structure map will also contain ID linkages
to relevant metadata sections.</p>
<p>In the case of bound volumes:
The physical structure map will contain only the image files comprising the covers.
The logical structure map will also contain pointers to the METS documents of pamphlets contained within that volume.</p>
</requirement>
<requirement ID="structMap_logical">
<head>Applies to: pamphlet and bound volume METS documents.</head>
<p>In all cases, the following attributes will be present:
ID="structMap_logical"
TYPE="logical"</p>
<p>In the case of pamphlet items:
Top level will contain one div: ID="logical_root"
This div will be linked to dmdSec_BIBLIO and amdSec_OBJECT.
This div will contain page level divs (see requirement ID="div_page").
</p>
<p>In the case of bound volumes:
The top level will contain one div: ID="logical_root"
This div will contain further divs: TYPE="section"
These divs will contain, either:
Page level divs (see requirement ID="div_page")
Or: mptr elements, pointing to the pamphlets contained within the volume.
</p>
</requirement>
<requirement ID="structMap_physical">
<head>Applies to: pamphlet and bound volume METS documents.</head>
<p>In all cases, the following attributes will be present:
ID="structMap_physical"
structMap TYPE="physical"</p>
<p>The top level will contain one div. This div will contain page level divs (see requirement ID="div_page").</p>
</requirement>
<requirement ID="div_page">
<head>Applies to: pamphlet and bound volume METS documents.</head>
<p>Page level divs represent a physical item page.</p>
<p>Page level divs contain a single fptr element for each file that constitutes a representation of that page, in all formats.
There will be one fptr present for the file of each type that represents that page.
A page level div will contain a mets:fptr for every equivalent file of each type that is a representation of that page.</p>
<p>div TYPE="page"</p>
<p>ORDER and ORDERLABEL will be present, equal to the physical order of the page.
In the case of pamphlet METS documents, this will be equal to the sequential page number.
In the case of bound volume METS documents, this will be equal to a sequential number beginning at 00000001.</p>
</requirement>
</structMap>
</structural_requirements>
<technical_requirements>
<content_files>
<requirement ID="file_naming">
<p>METS documents will be named by the OBJID + ".xml"</p>
<p>There will be one file per file group per physical page.</p>
<p>Files will be referenced from within METS documents using their path relative to the location of the METS document.</p>
<p>Filenames will be 8 characters in length, plus extension.</p>
<p>Files will be sequentially numbered, starting at 00000001.</p>
<p>In the case of pamphlet items:
Content files will be arranged by sub-directory according to file group.
Examples:
./master/00000001.tif
./txt/00000007.txt
./idx/00000017.idx
</p>
<p>In the case of bound volumes:
Content files will be arranged by sub-directory according to their relevance to the volume.
Examples:
./volume/front/00000001.tif
./volume/back/00000001.tif
</p>
<p>The physical page identifier is constructed from components of the relative path and filename (minus extension).
Example (pamphlet item):
00000001
00000007
00000017
Examples (bound volume):
volume-front-00000001
volume-back-00000001
The physical page identifier will be used in construction of METS element IDs for those elements
relating to files or their metadata. See requirement ID="file" for example.</p>
</requirement>
<requirement ID="master_image_files">
<p>Master image files will be in TIFF 6.0 format.</p>
<p>TIFF files will be compressed using LZW.</p>
</requirement>
<requirement ID="OCR_files">
<p>OCR output will be present in plain text and word co-ordinated XML format.</p>
<p>Word co-ordinated XML is in IDX format. This is a derivative of Abbyy FineReader SDK XML output,
generated by the OCR workflow software: Agora (SRZ Berlin).</p>
<p>IDX XML files contain:
A <milestone unit> indicating the dimensions (width and height, in pixels) of the source image.
Individual word locations <w> given in pixels relative to the dimensions of the source image.
Word locations contain co-ordinates of: left (l), top (t), width (w) and height (h).
Individual words are contained within sentences <s>. Sentences are contained within paragraphs <p>.
Sentences and paragraphs themselves do not contain co-ordinates.</p>
</requirement>
</content_files>
</technical_requirements>
<tool>
<agency>BOPCRIS</agency>
<note>
<p>
The digitization workflow at BOPCRIS is co-ordinated by a relational database. This database is also used
by scanner operators to capture metadata for mapping to BOPCRIS Descriptors format. METS documents
are generated as the product of a combination of:
An export from this database
Extraction of technical metadata from digital files (standard file information, and TIFF headers)
The bibliographic record for the item.
</p>
<p>These tools are currently for internal use only.</p>
</note>
</tool>
<Appendix NUMBER="0" ID="EXAMPLE_PAMPHLET" LABEL="Example Pamphlet METS Document">
<mets:mets OBJID="19B14906016_liv-531-1" xmlns:mets="http://www.loc.gov/METS/" xmlns:mix="http://www.loc.gov/mix/v20" xmlns:premis="info:lc/xmlns/premis-v2" xmlns:mods="http://www.loc.gov/mods/v3" xmlns:bopcris-p="http://www.southampton.ac.uk/library/bopcris/xsd/provenance/" xmlns:bopcris-r="http://www.southampton.ac.uk/library/bopcris/xsd/rights/" xmlns:bopcris-d="http://www.southampton.ac.uk/library/bopcris/xsd/descriptors/" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.loc.gov/METS/ http://www.loc.gov/standards/mets/version17/mets.v1-7.xsd http://www.loc.gov/mix/v20 http://www.loc.gov/standards/mix/mix20/mix20.xsd info:lc/xmlns/premis-v2 http://www.loc.gov/standards/premis/v2/premis-v2-0.xsd http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-2.xsd http://www.southampton.ac.uk/library/bopcris/xsd/provenance/ http://www.southampton.ac.uk/library/bopcris/xsd/provenance/bopcris-provenance-0-1.xsd http://www.southampton.ac.uk/library/bopcris/xsd/rights/ http://www.southampton.ac.uk/library/bopcris/xsd/rights/bopcris-rights-0-1.xsd http://www.southampton.ac.uk/library/bopcris/xsd/descriptors/ http://www.southampton.ac.uk/library/bopcris/xsd/descriptors/bopcris-descriptors-0-2.xsd">
<mets:metsHdr CREATEDATE="2008-07-31T10:15:43" LASTMODDATE="2008-07-31T10:15:43" RECORDSTATUS="in progress">
<mets:agent ROLE="CREATOR" TYPE="ORGANIZATION">
<mets:name>BOPCRIS, Hartley Library, University of Southampton</mets:name>
<mets:note>http://www.southampton.ac.uk/library/bopcris/</mets:note>
</mets:agent>
</mets:metsHdr>
<mets:dmdSec ID="dmdSec_BIBLIO">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="MODS">
<mets:xmlData>
<mods:mods>
<mods:recordInfo>
<mods:recordIdentifier source="copac">19B14906016</mods:recordIdentifier>
</mods:recordInfo>
<mods:typeOfResource>text</mods:typeOfResource>
<mods:originInfo>
<mods:dateIssued encoding="marc">1851</mods:dateIssued>
</mods:originInfo>
<mods:originInfo>
<mods:place>
<mods:placeTerm type="text">London :</mods:placeTerm>
</mods:place>
<mods:publisher>Simpkin, Marshall,</mods:publisher>
<mods:dateIssued>1851.</mods:dateIssued>
</mods:originInfo>
<mods:titleInfo>
<mods:title>An essay on Church reform</mods:title>
</mods:titleInfo>
<mods:note type="statement of responsibility">[by Alexander Alison].</mods:note>
<mods:name type="personal">
<mods:namePart>Alison, Alexander.</mods:namePart>
<mods:role>
<mods:roleTerm type="text">creator</mods:roleTerm>
</mods:role>
</mods:name>
<mods:subject authority="lcsh">
<mods:name type="corporate">
<mods:namePart>ROMAN CATHOLIC CHURCH.</mods:namePart>
</mods:name>
</mods:subject>
<mods:subject authority="lcsh">
<mods:name type="corporate">
<mods:namePart>Church renewal</mods:namePart>
</mods:name>
<mods:topic>Church of England.</mods:topic>
</mods:subject>
<mods:language>
<mods:languageTerm type="text">English</mods:languageTerm>
</mods:language>
<mods:physicalDescription>
<mods:extent>88 p. ; 22 cm.</mods:extent>
</mods:physicalDescription>
<mods:extension>
<h:localHolds xmlns:h="http://copac.ac.uk/schemas/holdings/v1">
<h:org type="CURL" displayName="Liverpool">Liv</h:org>
<h:objId>19B14906016</h:objId>
<h:holds>
<h:item>
<h:loc displayName="Sydney Jones Library Special Collections (check locally for hours of opening)">sca</h:loc>
<h:shelfmark>SPEC Knows. pamph 531(4)</h:shelfmark>
</h:item>
</h:holds>
<h:localNote>
<mods:note>Bound with other material, with title on spine: Pamphlets & c. Church questions.</mods:note>
</h:localNote>
</h:localHolds>
</mods:extension>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:dmdSec ID="dmdSec_00000001">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="OTHER">
<mets:xmlData>
<bopcris-d:attributeDescriptors>
<bopcris-d:annotation />
<bopcris-d:language encoding="ISO 639.2" engName="English">eng</bopcris-d:language>
</bopcris-d:attributeDescriptors>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:dmdSec ID="dmdSec_00000002">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="OTHER">
<mets:xmlData>
<bopcris-d:attributeDescriptors>
<bopcris-d:language encoding="ISO 639.2" engName="English">eng</bopcris-d:language>
</bopcris-d:attributeDescriptors>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:dmdSec ID="dmdSec_00000003">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="OTHER">
<mets:xmlData>
<bopcris-d:attributeDescriptors>
<bopcris-d:language encoding="ISO 639.2" engName="English">eng</bopcris-d:language>
</bopcris-d:attributeDescriptors>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:amdSec ID="amdSec_OBJECT">
<mets:rightsMD ID="rightsMD_OBJECT">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="OTHER">
<mets:xmlData>
<bopcris-r:rights>
<bopcris-r:statement>The copyright status was determined by the Partner Libraries for material scanned within the 19C Pamphlet Project and carries either:
Class 1 - Out of copyright
Class 2 - Copyright uncertain
Material is considered out of copyright (Class 1) if any of the following criteria are met:
a. At least 70 years have elapsed after publication if the author is not known or discoverable through reasonable enquiry
b. At least 70 years have elapsed after the death of the last author, if the year of their death is known
c. At least 150 years have elapsed after the date of publication if the author is known, but not the date of their death
d. At least 50 years have elapsed after the date of publication if the work is Crown or Parliamentary copyright
If none of the criteria (a-d) are met, material is considered to have a copyright uncertain (Class 2) status.
</bopcris-r:statement>
<bopcris-r:status>Class 1 - out of copyright</bopcris-r:status>
</bopcris-r:rights>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
<mets:digiprovMD ID="digiprovMD_OBJECT">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="OTHER">
<mets:xmlData>
<bopcris-p:provenance>
<bopcris-p:project>CURL</bopcris-p:project>
<bopcris-p:sourceLibrary>
<bopcris-p:sourceLibraryIdentifier authority="CURL" fullName="Liverpool">Liv</bopcris-p:sourceLibraryIdentifier>
<bopcris-p:sourceLibraryIdentifier authority="MARC" fullName="Liverpool">ukliu</bopcris-p:sourceLibraryIdentifier>
<bopcris-p:sourceLibraryLocation>Sydney Jones Library Special Collections (check locally for hours of opening)</bopcris-p:sourceLibraryLocation>
<bopcris-p:sourceLibraryShelfmark>SPEC Knows. pamph 531(4)</bopcris-p:sourceLibraryShelfmark>
<bopcris-p:sourceLibraryNotes type="general">Bound with other material, with title on spine: Pamphlets & c. Church questions.</bopcris-p:sourceLibraryNotes>
</bopcris-p:sourceLibrary>
</bopcris-p:provenance>
</mets:xmlData>
</mets:mdWrap>
</mets:digiprovMD>
</mets:amdSec>
<mets:amdSec ID="amdSec_PREMIS-AGENTS_"> <!-- THIS ID HAS BEEN ALTERED FOR INCLUSION IN THE METS PROFILE -->
<mets:digiprovMD ID="digiprovMD_PREMIS-AGENTS">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="PREMIS:AGENT">
<mets:xmlData>
<premis:agent>
<premis:agentIdentifier>
<premis:agentIdentifierType>BOPCRIS</premis:agentIdentifierType>
<premis:agentIdentifierValue>OCR_Engine</premis:agentIdentifierValue>
</premis:agentIdentifier>
<premis:agentName>Abbyy FineReader 8.0.1.138</premis:agentName>
<premis:agentType>software</premis:agentType>
</premis:agent>
<premis:agent>
<premis:agentIdentifier>
<premis:agentIdentifierType>BOPCRIS</premis:agentIdentifierType>
<premis:agentIdentifierValue>Image_Derivation</premis:agentIdentifierValue>
</premis:agentIdentifier>
<premis:agentName>ImageGear 15.2.1</premis:agentName>
<premis:agentType>software</premis:agentType>
</premis:agent>
<premis:agent>
<premis:agentIdentifier>
<premis:agentIdentifierType>BOPCRIS</premis:agentIdentifierType>
<premis:agentIdentifierValue>Image_Crop</premis:agentIdentifierValue>
</premis:agentIdentifier>
<premis:agentName>Image_Crop</premis:agentName>
<premis:agentType>PageImprover 2.2.3042.20587</premis:agentType>
</premis:agent>
</mets:xmlData>
</mets:mdWrap>
</mets:digiprovMD>
</mets:amdSec>
<mets:amdSec ID="amdSec_MASTER_00000001">
<mets:techMD ID="techMD_MASTER_00000001_NISOIMG">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="NISOIMG">
<mets:xmlData>
<mix:mix>
<mix:BasicDigitalObjectInformation>
<mix:ObjectIdentifier>
<mix:objectIdentifierType>BOPCRIS</mix:objectIdentifierType>
<mix:objectIdentifierValue>CURL/19B14906016_liv-531-1/00000001/MASTER</mix:objectIdentifierValue>
</mix:ObjectIdentifier>
<mix:fileSize>4144512</mix:fileSize>
<mix:FormatDesignation>
<mix:formatName>image/tiff</mix:formatName>
</mix:FormatDesignation>
<mix:byteOrder>little endian</mix:byteOrder>
<mix:Compression>
<mix:compressionScheme>LZW</mix:compressionScheme>
</mix:Compression>
<mix:Fixity>
<mix:messageDigestAlgorithm>MD5</mix:messageDigestAlgorithm>
<mix:messageDigest>b6d1ea2990a79748acad91432f343377</mix:messageDigest>
<mix:messageDigestOriginator>BOPCRIS</mix:messageDigestOriginator>
</mix:Fixity>
</mix:BasicDigitalObjectInformation>
<mix:BasicImageInformation>
<mix:BasicImageCharacteristics>
<mix:imageWidth>2031</mix:imageWidth>
<mix:imageHeight>3328</mix:imageHeight>
<mix:PhotometricInterpretation>
<mix:colorSpace>PaletteColor</mix:colorSpace>
</mix:PhotometricInterpretation>
</mix:BasicImageCharacteristics>
</mix:BasicImageInformation>
<mix:ImageCaptureMetadata>
<mix:GeneralCaptureInformation>
<mix:dateTimeCreated>2008-07-31T10:16:15</mix:dateTimeCreated>
<mix:imageProducer>BOPCRIS</mix:imageProducer>
<mix:captureDevice>digital still camera</mix:captureDevice>
</mix:GeneralCaptureInformation>
<mix:ScannerCapture>
<mix:scannerManufacturer>
</mix:scannerManufacturer>
<mix:ScannerModel>
<mix:scannerModelName>
</mix:scannerModelName>
<mix:scannerModelNumber>
</mix:scannerModelNumber>
</mix:ScannerModel>
<mix:ScanningSystemSoftware>
<mix:scanningSoftwareName>
</mix:scanningSoftwareName>
<mix:scanningSoftwareVersionNo>
</mix:scanningSoftwareVersionNo>
</mix:ScanningSystemSoftware>
</mix:ScannerCapture>
<mix:orientation>normal*</mix:orientation>
</mix:ImageCaptureMetadata>
<mix:ImageAssessmentMetadata>
<mix:SpatialMetrics>
<mix:samplingFrequencyUnit>in.</mix:samplingFrequencyUnit>
<mix:xSamplingFrequency>
<mix:numerator>400</mix:numerator>
</mix:xSamplingFrequency>
<mix:ySamplingFrequency>
<mix:numerator>400</mix:numerator>
</mix:ySamplingFrequency>
</mix:SpatialMetrics>
<mix:ImageColorEncoding>
<mix:BitsPerSample>
<mix:bitsPerSampleValue>8</mix:bitsPerSampleValue>
<mix:bitsPerSampleUnit>integer</mix:bitsPerSampleUnit>
</mix:BitsPerSample>
<mix:samplesPerPixel>1</mix:samplesPerPixel>
</mix:ImageColorEncoding>
</mix:ImageAssessmentMetadata>
</mix:mix>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:techMD ID="techMD_MASTER_00000001_PREMIS-OBJECT">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="PREMIS:OBJECT">
<mets:xmlData>
<premis:object xsi:type="premis:file">
<premis:objectIdentifier>
<premis:objectIdentifierType>BOPCRIS</premis:objectIdentifierType>
<premis:objectIdentifierValue>CURL/19B14906016_liv-531-1/00000001/MASTER</premis:objectIdentifierValue>
</premis:objectIdentifier>
<premis:preservationLevel>
<premis:preservationLevelValue>full</premis:preservationLevelValue>
</premis:preservationLevel>
<premis:objectCharacteristics>
<premis:compositionLevel>0</premis:compositionLevel>
<premis:fixity>
<premis:messageDigestAlgorithm>MD5</premis:messageDigestAlgorithm>
<premis:messageDigest>b6d1ea2990a79748acad91432f343377</premis:messageDigest>
<premis:messageDigestOriginator>BOPCRIS</premis:messageDigestOriginator>
</premis:fixity>
<premis:size>4144512</premis:size>
<premis:format>
<premis:formatDesignation>
<premis:formatName>image/tiff</premis:formatName>
<premis:formatVersion>6.0</premis:formatVersion>
</premis:formatDesignation>
<premis:formatRegistry>
<premis:formatRegistryName>PRONOM</premis:formatRegistryName>
<premis:formatRegistryKey>fmt/10</premis:formatRegistryKey>
<premis:formatRegistryRole>specification</premis:formatRegistryRole>
</premis:formatRegistry>
</premis:format>
<premis:creatingApplication>
<premis:creatingApplicationName>
</premis:creatingApplicationName>
<premis:creatingApplicationVersion>
</premis:creatingApplicationVersion>
<premis:dateCreatedByApplication>2008-07-31T10:16:15</premis:dateCreatedByApplication>
</premis:creatingApplication>
</premis:objectCharacteristics>
<premis:storage>
<premis:contentLocation>
<premis:contentLocationType>filepath</premis:contentLocationType>
<premis:contentLocationValue>./master/00000001.tif</premis:contentLocationValue>
</premis:contentLocation>
<premis:storageMedium>disk</premis:storageMedium>
</premis:storage>
<premis:relationship>
<premis:relationshipType>derivation</premis:relationshipType>
<premis:relationshipSubType>is parent of</premis:relationshipSubType>
<premis:relatedObjectIdentification>
<premis:relatedObjectIdentifierType>BOPCRIS</premis:relatedObjectIdentifierType>
<premis:relatedObjectIdentifierValue>CURL/19B14906016_liv-531-1/00000001/IDX</premis:relatedObjectIdentifierValue>
<premis:relatedObjectSequence>0</premis:relatedObjectSequence>
</premis:relatedObjectIdentification>
<premis:relatedEventIdentification>
<premis:relatedEventIdentifierType>BOPCRIS</premis:relatedEventIdentifierType>
<premis:relatedEventIdentifierValue>CURL/19B14906016_liv-531-1/00000001/OCR_Engine</premis:relatedEventIdentifierValue>
<premis:relatedEventSequence>0</premis:relatedEventSequence>
</premis:relatedEventIdentification>
</premis:relationship>
<premis:relationship>
<premis:relationshipType>derivation</premis:relationshipType>
<premis:relationshipSubType>is parent of</premis:relationshipSubType>
<premis:relatedObjectIdentification>
<premis:relatedObjectIdentifierType>BOPCRIS</premis:relatedObjectIdentifierType>
<premis:relatedObjectIdentifierValue>CURL/19B14906016_liv-531-1/00000001/TXT</premis:relatedObjectIdentifierValue>
<premis:relatedObjectSequence>0</premis:relatedObjectSequence>
</premis:relatedObjectIdentification>
<premis:relatedEventIdentification>
<premis:relatedEventIdentifierType>BOPCRIS</premis:relatedEventIdentifierType>
<premis:relatedEventIdentifierValue>CURL/19B14906016_liv-531-1/00000001/OCR_Engine</premis:relatedEventIdentifierValue>
<premis:relatedEventSequence>0</premis:relatedEventSequence>
</premis:relatedEventIdentification>
</premis:relationship>
</premis:object>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:digiprovMD ID="digiprovMD_MASTER_00000001_PREMIS-EVENT">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="PREMIS:EVENT">
<mets:xmlData>
<premis:event>
<premis:eventIdentifier>
<premis:eventIdentifierType>BOPCRIS</premis:eventIdentifierType>
<premis:eventIdentifierValue>CURL/19B14906016_liv-531-1/00000001/Image_Crop</premis:eventIdentifierValue>
</premis:eventIdentifier>
<premis:eventType>Image Crop</premis:eventType>
<premis:eventDateTime>2008-07-31T10:16:15</premis:eventDateTime>
<premis:eventOutcomeInformation>
<premis:eventOutcomeDetail>
<premis:eventOutcomeDetailNote />
</premis:eventOutcomeDetail>
</premis:eventOutcomeInformation>
<premis:linkingAgentIdentifier>
<premis:linkingAgentIdentifierType>BOPCRIS</premis:linkingAgentIdentifierType>
<premis:linkingAgentIdentifierValue>Image_Crop</premis:linkingAgentIdentifierValue>
</premis:linkingAgentIdentifier>
</premis:event>
</mets:xmlData>
</mets:mdWrap>
</mets:digiprovMD>
</mets:amdSec>
<mets:amdSec ID="amdSec_MASTER_00000002">
<mets:techMD ID="techMD_MASTER_00000002_NISOIMG">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="NISOIMG">
<mets:xmlData>
<mix:mix>
<mix:BasicDigitalObjectInformation>
<mix:ObjectIdentifier>
<mix:objectIdentifierType>BOPCRIS</mix:objectIdentifierType>
<mix:objectIdentifierValue>CURL/19B14906016_liv-531-1/00000002/MASTER</mix:objectIdentifierValue>
</mix:ObjectIdentifier>
<mix:fileSize>5047378</mix:fileSize>
<mix:FormatDesignation>
<mix:formatName>image/tiff</mix:formatName>
</mix:FormatDesignation>
<mix:byteOrder>little endian</mix:byteOrder>
<mix:Compression>
<mix:compressionScheme>LZW</mix:compressionScheme>
</mix:Compression>
<mix:Fixity>
<mix:messageDigestAlgorithm>MD5</mix:messageDigestAlgorithm>
<mix:messageDigest>a7623d3397c7b5b5467a22cf3743b142</mix:messageDigest>
<mix:messageDigestOriginator>BOPCRIS</mix:messageDigestOriginator>
</mix:Fixity>
</mix:BasicDigitalObjectInformation>
<mix:BasicImageInformation>
<mix:BasicImageCharacteristics>
<mix:imageWidth>2077</mix:imageWidth>
<mix:imageHeight>3324</mix:imageHeight>
<mix:PhotometricInterpretation>
<mix:colorSpace>PaletteColor</mix:colorSpace>
</mix:PhotometricInterpretation>
</mix:BasicImageCharacteristics>
</mix:BasicImageInformation>
<mix:ImageCaptureMetadata>
<mix:GeneralCaptureInformation>
<mix:dateTimeCreated>2008-07-31T10:16:16</mix:dateTimeCreated>
<mix:imageProducer>BOPCRIS</mix:imageProducer>
<mix:captureDevice>digital still camera</mix:captureDevice>
</mix:GeneralCaptureInformation>
<mix:ScannerCapture>
<mix:scannerManufacturer>
</mix:scannerManufacturer>
<mix:ScannerModel>
<mix:scannerModelName>
</mix:scannerModelName>
<mix:scannerModelNumber>
</mix:scannerModelNumber>
</mix:ScannerModel>
<mix:ScanningSystemSoftware>
<mix:scanningSoftwareName>
</mix:scanningSoftwareName>
<mix:scanningSoftwareVersionNo>
</mix:scanningSoftwareVersionNo>
</mix:ScanningSystemSoftware>
</mix:ScannerCapture>
<mix:orientation>normal*</mix:orientation>
</mix:ImageCaptureMetadata>
<mix:ImageAssessmentMetadata>
<mix:SpatialMetrics>
<mix:samplingFrequencyUnit>in.</mix:samplingFrequencyUnit>
<mix:xSamplingFrequency>
<mix:numerator>400</mix:numerator>
</mix:xSamplingFrequency>
<mix:ySamplingFrequency>
<mix:numerator>400</mix:numerator>
</mix:ySamplingFrequency>
</mix:SpatialMetrics>
<mix:ImageColorEncoding>
<mix:BitsPerSample>
<mix:bitsPerSampleValue>8</mix:bitsPerSampleValue>
<mix:bitsPerSampleUnit>integer</mix:bitsPerSampleUnit>
</mix:BitsPerSample>
<mix:samplesPerPixel>1</mix:samplesPerPixel>
</mix:ImageColorEncoding>
</mix:ImageAssessmentMetadata>
</mix:mix>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:techMD ID="techMD_MASTER_00000002_PREMIS-OBJECT">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="PREMIS:OBJECT">
<mets:xmlData>
<premis:object xsi:type="premis:file">
<premis:objectIdentifier>
<premis:objectIdentifierType>BOPCRIS</premis:objectIdentifierType>
<premis:objectIdentifierValue>CURL/19B14906016_liv-531-1/00000002/MASTER</premis:objectIdentifierValue>
</premis:objectIdentifier>
<premis:preservationLevel>
<premis:preservationLevelValue>full</premis:preservationLevelValue>
</premis:preservationLevel>
<premis:objectCharacteristics>
<premis:compositionLevel>0</premis:compositionLevel>
<premis:fixity>
<premis:messageDigestAlgorithm>MD5</premis:messageDigestAlgorithm>
<premis:messageDigest>a7623d3397c7b5b5467a22cf3743b142</premis:messageDigest>
<premis:messageDigestOriginator>BOPCRIS</premis:messageDigestOriginator>
</premis:fixity>
<premis:size>5047378</premis:size>
<premis:format>
<premis:formatDesignation>
<premis:formatName>image/tiff</premis:formatName>
<premis:formatVersion>6.0</premis:formatVersion>
</premis:formatDesignation>
<premis:formatRegistry>
<premis:formatRegistryName>PRONOM</premis:formatRegistryName>
<premis:formatRegistryKey>fmt/10</premis:formatRegistryKey>
<premis:formatRegistryRole>specification</premis:formatRegistryRole>
</premis:formatRegistry>
</premis:format>
<premis:creatingApplication>
<premis:creatingApplicationName>
</premis:creatingApplicationName>
<premis:creatingApplicationVersion>
</premis:creatingApplicationVersion>
<premis:dateCreatedByApplication>2008-07-31T10:16:16</premis:dateCreatedByApplication>
</premis:creatingApplication>
</premis:objectCharacteristics>
<premis:storage>
<premis:contentLocation>
<premis:contentLocationType>filepath</premis:contentLocationType>
<premis:contentLocationValue>./master/00000002.tif</premis:contentLocationValue>
</premis:contentLocation>
<premis:storageMedium>disk</premis:storageMedium>
</premis:storage>
<premis:relationship>
<premis:relationshipType>derivation</premis:relationshipType>
<premis:relationshipSubType>is parent of</premis:relationshipSubType>
<premis:relatedObjectIdentification>
<premis:relatedObjectIdentifierType>BOPCRIS</premis:relatedObjectIdentifierType>
<premis:relatedObjectIdentifierValue>CURL/19B14906016_liv-531-1/00000002/IDX</premis:relatedObjectIdentifierValue>
<premis:relatedObjectSequence>0</premis:relatedObjectSequence>
</premis:relatedObjectIdentification>
<premis:relatedEventIdentification>
<premis:relatedEventIdentifierType>BOPCRIS</premis:relatedEventIdentifierType>
<premis:relatedEventIdentifierValue>CURL/19B14906016_liv-531-1/00000002/OCR_Engine</premis:relatedEventIdentifierValue>
<premis:relatedEventSequence>0</premis:relatedEventSequence>
</premis:relatedEventIdentification>
</premis:relationship>
<premis:relationship>
<premis:relationshipType>derivation</premis:relationshipType>
<premis:relationshipSubType>is parent of</premis:relationshipSubType>
<premis:relatedObjectIdentification>
<premis:relatedObjectIdentifierType>BOPCRIS</premis:relatedObjectIdentifierType>
<premis:relatedObjectIdentifierValue>CURL/19B14906016_liv-531-1/00000002/TXT</premis:relatedObjectIdentifierValue>
<premis:relatedObjectSequence>0</premis:relatedObjectSequence>
</premis:relatedObjectIdentification>
<premis:relatedEventIdentification>
<premis:relatedEventIdentifierType>BOPCRIS</premis:relatedEventIdentifierType>
<premis:relatedEventIdentifierValue>CURL/19B14906016_liv-531-1/00000002/OCR_Engine</premis:relatedEventIdentifierValue>
<premis:relatedEventSequence>0</premis:relatedEventSequence>
</premis:relatedEventIdentification>
</premis:relationship>
</premis:object>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:digiprovMD ID="digiprovMD_MASTER_00000002_PREMIS-EVENT">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="PREMIS:EVENT">
<mets:xmlData>
<premis:event>
<premis:eventIdentifier>
<premis:eventIdentifierType>BOPCRIS</premis:eventIdentifierType>
<premis:eventIdentifierValue>CURL/19B14906016_liv-531-1/00000002/Image_Crop</premis:eventIdentifierValue>
</premis:eventIdentifier>
<premis:eventType>Image Crop</premis:eventType>
<premis:eventDateTime>2008-07-31T10:16:16</premis:eventDateTime>
<premis:eventOutcomeInformation>
<premis:eventOutcomeDetail>
<premis:eventOutcomeDetailNote />
</premis:eventOutcomeDetail>
</premis:eventOutcomeInformation>
<premis:linkingAgentIdentifier>
<premis:linkingAgentIdentifierType>BOPCRIS</premis:linkingAgentIdentifierType>
<premis:linkingAgentIdentifierValue>Image_Crop</premis:linkingAgentIdentifierValue>
</premis:linkingAgentIdentifier>
</premis:event>
</mets:xmlData>
</mets:mdWrap>
</mets:digiprovMD>
</mets:amdSec>
<mets:amdSec ID="amdSec_MASTER_00000003">
<mets:techMD ID="techMD_MASTER_00000003_NISOIMG">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="NISOIMG">
<mets:xmlData>
<mix:mix>
<mix:BasicDigitalObjectInformation>
<mix:ObjectIdentifier>
<mix:objectIdentifierType>BOPCRIS</mix:objectIdentifierType>
<mix:objectIdentifierValue>CURL/19B14906016_liv-531-1/00000003/MASTER</mix:objectIdentifierValue>
</mix:ObjectIdentifier>
<mix:fileSize>4267384</mix:fileSize>
<mix:FormatDesignation>
<mix:formatName>image/tiff</mix:formatName>
</mix:FormatDesignation>
<mix:byteOrder>little endian</mix:byteOrder>
<mix:Compression>
<mix:compressionScheme>LZW</mix:compressionScheme>
</mix:Compression>
<mix:Fixity>
<mix:messageDigestAlgorithm>MD5</mix:messageDigestAlgorithm>
<mix:messageDigest>2adce5c701c4929e4a995773279ed9cf</mix:messageDigest>
<mix:messageDigestOriginator>BOPCRIS</mix:messageDigestOriginator>
</mix:Fixity>
</mix:BasicDigitalObjectInformation>
<mix:BasicImageInformation>
<mix:BasicImageCharacteristics>
<mix:imageWidth>2044</mix:imageWidth>
<mix:imageHeight>3346</mix:imageHeight>
<mix:PhotometricInterpretation>
<mix:colorSpace>PaletteColor</mix:colorSpace>
</mix:PhotometricInterpretation>
</mix:BasicImageCharacteristics>
</mix:BasicImageInformation>
<mix:ImageCaptureMetadata>
<mix:GeneralCaptureInformation>
<mix:dateTimeCreated>2008-07-31T10:16:17</mix:dateTimeCreated>
<mix:imageProducer>BOPCRIS</mix:imageProducer>
<mix:captureDevice>digital still camera</mix:captureDevice>
</mix:GeneralCaptureInformation>
<mix:ScannerCapture>
<mix:scannerManufacturer>
</mix:scannerManufacturer>
<mix:ScannerModel>
<mix:scannerModelName>
</mix:scannerModelName>
<mix:scannerModelNumber>
</mix:scannerModelNumber>
</mix:ScannerModel>
<mix:ScanningSystemSoftware>
<mix:scanningSoftwareName>
</mix:scanningSoftwareName>
<mix:scanningSoftwareVersionNo>
</mix:scanningSoftwareVersionNo>
</mix:ScanningSystemSoftware>
</mix:ScannerCapture>
<mix:orientation>normal*</mix:orientation>
</mix:ImageCaptureMetadata>
<mix:ImageAssessmentMetadata>
<mix:SpatialMetrics>
<mix:samplingFrequencyUnit>in.</mix:samplingFrequencyUnit>
<mix:xSamplingFrequency>
<mix:numerator>400</mix:numerator>
</mix:xSamplingFrequency>
<mix:ySamplingFrequency>
<mix:numerator>400</mix:numerator>
</mix:ySamplingFrequency>
</mix:SpatialMetrics>
<mix:ImageColorEncoding>
<mix:BitsPerSample>
<mix:bitsPerSampleValue>8</mix:bitsPerSampleValue>
<mix:bitsPerSampleUnit>integer</mix:bitsPerSampleUnit>
</mix:BitsPerSample>
<mix:samplesPerPixel>1</mix:samplesPerPixel>
</mix:ImageColorEncoding>
</mix:ImageAssessmentMetadata>
</mix:mix>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:techMD ID="techMD_MASTER_00000003_PREMIS-OBJECT">
<mets:mdWrap MIMETYPE="text/xml" MDTYPE="PREMIS:OBJECT">
<mets:xmlData>
<premis:object xsi:type="premis:file">
<premis:objectIdentifier>
<premis:objectIdentifierType>BOPCRIS</premis:objectIdentifierType>
<premis:objectIdentifierValue>CURL/19B14906016_liv-531-1/00000003/MASTER</premis:objectIdentifierValue>
</premis:objectIdentifier>
<premis:preservationLevel>
<premis:preservationLevelValue>full</premis:preservationLevelValue>
</premis:preservationLevel>
<premis:objectCharacteristics>
<premis:compositionLevel>0</premis:compositionLevel>
<premis:fixity>