ࡱ                >  	                                          `	               8   bjbjss                  	 '    /                                                                    	      	  	      	      	      	      	             	                    8     D   $  ,   	      J    \       ^   N      N      N      B  &   h     t     5J     7J      7J      7J      7J      7J      7J  $   VL  h  N     [J                     	      b$                                "   b$      b$      [J              	      	      N              N    pJ     .,      .,      .,      b$  |  	      N      	      N      5J              .,                                                      b$      5J              .,      .,    G     	      	                                                              7I      N      P     {r+              '  0  G             5J      J  0   J      G  :  O      )    O  4   7I                                                                      7I  F   O              	      }I     |  V        .,      !     "                                    |      |      |      [J      [J                                      +  d                                   |      |      |      J      b$      b$      b$      b$              	      	      	        	      	      	            	      	      	      	      	      	      	      	      	                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TITLE   \* MERGEFORMAT Importing MARC data into DSpaceAuthor:  AUTHOR   \* MERGEFORMAT Steve Thomas, Senior Systems Analyst,  DOCPROPERTY  Company  \* MERGEFORMAT University of Adelaide LibraryLast Update:  DATE \@ "d/MM/yyyy h:mm am/pm" 6/08/2006 5:09 pm	Abstract: Describes a methodology and Perl scripts used to import data into DSpace derived from a file of MARC records.ProblemWe have two collections of documents stored locally on web servers, with a record describing each document in our Catalogue. Each catalogue record includes a URL linking to the document file. We wanted to migrate the documents into our new DSpace repository, and so needed to convert the Catalogue records into Dublin Core to provide the metadata for each document.Importing items into DSpace requires that they be organised into a specific structure: import is from a directory containing one sub-directory for each item, with each subdirectory containing the document file(s), a contents file listing the document files, and a dublin_core.xml file containing the metadata. This is all detailed in the  HYPERLINK "http://www.dspace.org/technology/system-docs/application.html" \l "itemimporter" DSpace system documentation, which provides the following succinct diagram: archive_directory/    item_000/        dublin_core.xml -- qualified Dublin Core metadata        contents        -- text file containing one line per filename        file_1.doc      -- files to be added as bitstreams to the item        file_2.pdf    item_001/        dublin_core.xml        contents        file_1.png        ...So the task was to generate the required directory structure and the dublin_core.xml file from the MARC catalogue record. Conversion of MARC to Dublin CoreThe first task was to convert our catalogue MARC records into Dublin Core, in the format required by DSpace. DSpace uses a reasonably simple version of qualified Dublin Core , thus:<dublin_core>    <dcvalue element="title" qualifier="none">A Tale of Two Cities</dcvalue>    <dcvalue element="date" qualifier="issued">1990</dcvalue>    <dcvalue element="title" qualifier="alternate" language="fr" ">J'aime les Printemps</dcvalue></dublin_core>To convert to this format, I developed a simple Perl script. While I could have written code to pull apart the MARC record, there are well-developed modules available from CPAN to do this, so I used two of these: MARC::File::USMARC which provides basic operations to convert MARC into an internal data structure, and  MARC::Crosswalk::DublinCore which uses that structure to create a qualified Dublin Core  data structure.This gave me a basic MARC->DC conversion script, which looks like this:#!/usr/local/bin/perl -wuse MARC::Crosswalk::DublinCore;use MARC::File::USMARC;$/ = chr(29); # MARC record separatorprint qq|<collection>\n|;while (my $blob = <>) { # suck in one MARC record at a time        print qq|<dublin_core>\n|;        # convert the MARC to DC        my $marc = MARC::Record->new_from_usmarc( $blob );        my $crosswalk = MARC::Crosswalk::DublinCore->new( qualified => 1 );        my $dc        = $crosswalk->as_dublincore( $marc );        # output the DC as XML        for( $dc->elements ) {                my $element     = $_->name;                my $qualifier   = $_->qualifier;                my $scheme      = $_->scheme;                my $content     = $_->content;                printf qq|  <dcvalue element="%s"|, $element;                printf qq| qualifier="%s"|, $qualifier if $qualifier;                printf qq| scheme="%s"|, $scheme if $scheme;                printf qq| language="en">%s</dcvalue>\n|, $content;        }        print qq|</dublin_core>\n|;}print qq|</collection>\n|;exit;So far so good. This script will take a file of MARC records and output an XML file of Dublin Core  records, which look like this:<dublin_core>  <dcvalue element="Title" language="en">Potassium fertiliser use in South Australia [electronic resource] / P.M. Barrow</dcvalue>  <dcvalue element="Creator" language="en">Barrow, P. M.</dcvalue>  <dcvalue element="Creator" language="en">South Australia. Agronomy Branch</dcvalue>  <dcvalue element="Subject" scheme="LCSH" language="en">Potassium fertilizers South Australia.</dcvalue>  <dcvalue element="Description" language="en">"Paper presented at a Symposium on 'Potassium in South-Eastern Australia', held at Monash University, August 21-22, 1967."</dcvalue>  <dcvalue element="Description" language="en">Electronic reproduction. Adelaide, S. Aust. : University of Adelaide, Barr Smith Library, 2006. Title from t.p. on PDF file (viewed 23 May 2006). Electronic text, download as a PDF file. Available via the World Wide Web.</dcvalue>  <dcvalue element="Description" language="en">System requirements: Adobe Acrobat Reader required to view/print PDF files.</dcvalue>  <dcvalue element="Publisher" language="en">[Adelaide, S. Aust.] : Dept. of Agriculture, South Australia,</dcvalue>  <dcvalue element="Date" qualifier="Created" language="en">1968</dcvalue>  <dcvalue element="Date" qualifier="Created" language="en">2006.</dcvalue>  <dcvalue element="Date" qualifier="Issued" language="en">1968</dcvalue>  <dcvalue element="Date" qualifier="Issued" language="en">1968</dcvalue>  <dcvalue element="Type" scheme="DCMI Type Vocabulary" language="en">Text</dcvalue>  <dcvalue element="Format" qualifier="Extent" language="en">11 leaves ;</dcvalue>  <dcvalue element="Language" scheme="ISO 639-2" language="en">eng</dcvalue>  <dcvalue element="Relation" qualifier="Requires" language="en">System requirements: Adobe Acrobat Reader required to view/print PDF files.</dcvalue>  <dcvalue element="Relation" qualifier="isPartOf" language="en">Agronomy Branch report ; no. 1</dcvalue>  <dcvalue element="Relation" qualifier="isFormatOf" language="en">Also available in a print form.</dcvalue>  <dcvalue element="Relation" qualifier="hasFormat" language="en">Also available in a print form.</dcvalue>  <dcvalue element="Coverage" qualifier="Spacial" language="en">South Australia.</dcvalue></dublin_core>Now, for the purpose of import into DSpace, there are a number of problems with this, due to the requirements of DSpace:the element and qualifier must be lower-case;the content may contain reserved characters (&<>) that need escaping;the author must use element=contributor and qualifier=author;the qualifier isPartOf needs to be ispartofseries;some elements provide a scheme rather than a qualifier; DSpace does not recognise the scheme attribute;the type element is technically correct but uninformative, and should be replaced with a DSpace type;the format element is used internally by DSpace to describe files, so should probably be avoided;date elements have been repeated, because MARC::Crosswalk::DublinCore is helpfully extracting data from as many fields and subfields as possible;some MARC data is irrelevant in the DSpace context, because it relates to print editions, or reflects excessive zeal on the part of the cataloguer.Many of these problems can be solved with a few additions to the script:        for( $dc->elements ) {                # lowercase all attributes                my $element     = lc $_->name;                my $qualifier   = lc $_->qualifier;                my $scheme      = lc $_->scheme;                my $content     = $_->content;                # escape reserved characters                $content =~ s/&/&amp;/gs;                $content =~ s/</&lt;/gs;                $content =~ s/>/&gt;/gs;                # munge attributes for DSpace compatibility                if ($element eq 'creator') {                        $element = 'contributor';                        $qualifier = 'author';                }                if ($element eq 'format') {                        $element = 'description';                        $qualifier = '';                }                if ($element eq 'language') {                    if ($scheme eq 'iso 639-2') {                        $qualifier = 'iso';                        $scheme = '';                    } else {                        $element = 'description';                        $qualifier = '';                    }                }                if ($qualifier eq 'ispartof') {                        $qualifier = 'ispartofseries';                }                printf qq|  <dcvalue element="%s"|, $element;                printf qq| qualifier="%s"|, $qualifier if $qualifier;                # output scheme as qualifier                printf qq| qualifier="%s"|, $scheme if $scheme;                printf qq| language="en">%s</dcvalue>\n|, $content;        }It is also possible to prove a filter function to MARC::Record->new that will filter out unwanted MARC tags. For example, one might ignore the 008 in order not to duplicate date elements.Other issues are perhaps better dealt with by post-conversion editing of the xml file.The script is then run as follows:> ./marc2dc.pl marc.bib > collection.xmlBuilding the import directory structureHaving converted our metadata into Dublin Core, I then needed to use this to build the required directory structure. This is accomplished with a second Perl script, build.pl, which needs to be customised for each collection to be imported. The basic idea is:extract each Dublin Core  record from the XML file;create a sub-directory for the record;extract the document file name from the identifier;create the dublin_core.xml file;create the contents file;create a symbolic link to the document file.Note that this assumes that the files in the identifier field actually reside on the same machine as DSpace, either because the we server is also running there, or because theyve been copied from the web server. The key part of the script is the regular expression used to extract the file and path information; this will be different for every import, and will require customisation for each import.The script is as follows:#!/usr/local/bin/perl -w$/ = "</dublin_core>\n"; # record separator$what = 100001; # dummy id for when theres no filewhile (<>) {    # discard the top and bottom tags    s/<collection>\n//;    s/<\/collection>\n//;    # extract the file path from the identifier    # use the file name as an id    # note that identifier element is discarded!    if (s!<dcvalue element="identifier" qualifier="uri" language="en">http://.*/theses/(.*?)/([^/]+).pdf<\/dcvalue>\n!!s) {        $path = $1;        $id = $2;    } else {        $path = '';        $id = $what++;    }    # let the operator know where were up to    print "$path/$id\n";    # create the item directory    mkdir "import/$id", 0755;    # create the dublin_core.xml file    open DC, ">import/$id/dublin_core.xml"      or die "Cannot open dublin core for $id, $!\n";    print DC $_;    close DC;    # assuming we have a file ...    if ($path) {        # ... create the contents file ...        open OUT, ">import/$id/contents"          or die "Cannot open contents for $id, $!\n";        print OUT "$id.pdf";        close OUT;        # ... and create a symbolic link to the actual file        symlink "/scratch/dspace/import/theses/$path/$id.pdf",          "import/$id/$id.pdf";    }}__END__The script is then run against the xml file produced earlier:> mkdir import> ./build.pl collection.xml After running the script, we should have an import directory structure we can use to import into a DSpace collection in the usual way.ReferencesDSpace System Documentation HYPERLINK "http://www.dspace.org/technology/system-docs/" http://www.dspace.org/technology/system-docs/ MARC::File::USMARC  HYPERLINK "http://search.cpan.org/~petdance/MARC-Record-1.38/lib/MARC/File/USMARC.pm" http://search.cpan.org/~petdance/MARC-Record-1.38/lib/MARC/File/USMARC.pmMARC::Crosswalk::DublinCore  HYPERLINK "http://search.cpan.org/~bricas/MARC-Crosswalk-DublinCore-0.02/lib/MARC/Crosswalk/DublinCore.pm" http://search.cpan.org/~bricas/MARC-Crosswalk-DublinCore-0.02/lib/MARC/Crosswalk/DublinCore.pm TITLE   \* MERGEFORMAT Importing MARC data into DSpaceST, 19/04/2004 5:04 pm		Page  PAGE 4 of  NUMPAGES 8Technical ReportSystems DepartmentThe University of Adelaide LibraryST, 5/08/2006 6:07 pm		Page  PAGE 1 of  NUMPAGES 8                                                                                                                                                                                                                                                                                                                           :  ;  <  D  E  ^  _                                	  	  	  	  	  	  θάܣuluu`W          h4 6nH	tH	h4 h4 5nH	tH	h{_ 6nH	tH	j    h{_ 6UnH	tH	 h=D 6nH	tH	h^ 6nH	tH	j    h^ 6UnH	tH	 hTcJ 6nH	tH	h=D h=D 6nH	tH	h{_ 6mH nH tH	u h'; 6nH	tH	j    h'; 6UnH	tH	 h4 hTcJ 5nH	tH	h$  h\6  h^  j    h^ UhB       <    	  	  	          !  [        	  !  2  E  Q  R      ^                                                                                                                                                                                                                                                                                                                 gd   gd   gd      gd     $   a$ gd\6    $ a$ gdTcJ       7  8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               	  	  
  
  
  R
  
  6  R  S               Q  R  ^  d  l  m          .  9  ^                      r      <  H  X  Y                      6  8  ߼߸߼ߤߤ㠙 h\Lu  hH_  h\Lu h2W  h2W  h&  h 5OJ QJ \]^J  aJ h  h+ h+  h+ h+ 0J  j    h$ Uj    h+ Uh+  h4  h  h$  h   h\6 h4 6nH	tH	 9      @        Y          U  V               !  B!  y!  !  G"  "  ;#  #  #                                                                                                                                                                                                                                                                                                                                  gdB      gd    gdE\#    gd&   gd  8  O  s  u              @  A  |  ~                  G  H  v  x          8  9  |  }                    )  5  V  c  d      )  *                  8  9          D  E          -  .          d  e      ;  <               I      hE\# hE\#  h  hE\#  hH_  h\Lu  h\Lu h2W YI             !  A!  B!  x!  y!  !  !  F"  G"  "  "  :#  ;#  #  #  #  #  $  !$  7$  9$  c$  d$  $  $  $  $  $  $  &%  (%  T%  U%  ~%  %  %  %  %  %  &  &  :&  ;&  l&  m&  &  &  &  &  &  &  '  '  4'  5'  F'  G'  t'  u'  '  '  '  '  '  '  (  (  G(  H(  p(  q(  (  (  (     hH_  h=D  hj  hB  h\6 h<o  h<o  h\6 h  h  h\6 h.  h.  h\6 h  h M#  $  R*  S*  +  f+  +  +  +  +  +  ,  -  ;-  o-  -  -  -  -  j/  /  /  4  4                                                                                                                                                                                                                                                                                             gdY4\      gd=D  
& F gdB   gdY4\      gd   gd   gdj      gd   (  (  (  (  (   )  )  )  P)  Q)  )  )  )  )  *  *  G*  H*  S*  +  f+  +  +   ,  ,  ,  ,  ,  ,  o-  {-  -  -  j/  /  /  /  /  /  /  /  /  /  /  0  0  0  40  50  L0  M0  f0  h0  0  0  0  0  0  0  e1  f1  y1  z1  1  1  1  1  1  1  1  1  1  1  1  1  2  2  22  32  P2  R2      hg9  h,  hB  h  hY4\  h=D 5OJ QJ \]^J  aJ h  h=D  hj  hH_ PR2  w2  x2  2  2  2  2  2  2  2  2  2  3  3  +3  -3  W3  X3  3  3  3  3  3  3  3  3  3  $4  %4  c4  d4  m4  4  4  4  4  4  4  4  4  5  w5  5  5  5  5  5  5  5  5  5  5  5  6  6  6   6  46  56  A6  6  6  6  6  6  6  Ժ̱Ԧ̱   j8  h Uh~ h 0J  j  h Uh h  j    h Uh  h   hF  h.  h  hj  h  h=D  hY4\  hH_  h, A4  4  4  5  5  5  5   6  6  7  7  7  7  7  7  7  7  7  7  8  8  I8  J8                                                                                                                                                                                                                                                                                                  
 $d N     &d P    gd^       gd=D   gd\6   gd=D   gd      gd   6  6  6  6  7  a7  c7  d7  e7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  8  8  8  8  ,8  -8  38  48  58  68  :8  ;8  E8  F8  G8  H8  I8  J8  鶲qqm    h$  h{_ 0J B*mH nH ph u h$ 0J B*ph j    h$ 0J B*Uph  h$ B*ph hC  h^  j    h^ UhSf;  j    hSf; U-j  h"k hSf; <B*CJ OJ QJ Uph h~ h 0J  j  h Uh h  j    h UhB  h *J8  K8  \8  n8  o8  8  8  8  8  8  8  8  8  8  8  8  8  8  8  8  8  8  8  8  8  8  ǿǰς{                                                                                                                     h h  hSf;  hB 0J B*mH nH ph u h{_ 0J B*mH nH ph u h$ 0J B*ph j    h$ 0J B*Uph  hz B*ph h$ B*ph h$  hz  h% h$ eh  r     h% h$  h% h%  j    h% hY U J8  \8  o8  8  8  8  8  8  8                                                                                                                                                                                                                                                                                                                                                                   gd=D    
 $d N     @&d P    ^@gd%  $ &d P    a$ gdz   $ a$ gdz  5 
0&P	 :pB . A!"#k$%  `!<  뫢M:sL}[          >    W 0 <   xڭtF0lUFbF^{mؔm^B=޻BLL'z	zy󟯼|s.f433vmۗ0<Ӌeh
BdDs0kf
)PfwT( }Zh-qM#e0$}w*9m(?t|.o|OR
ZJh6uI4ɨMEmi^TPQ67@׍\茑2Ë1h9yqSoӌ#rWcX%1f-1rSh)oTB:qLgņ JlnT[FͰ}Fb<7EaqJUXf;FaV8fK1Oxm,t@B6:]( i8Og	m\](KIt0n:_J{Wp>.ToPCMVn:[|G;#%EmxoTs8.N0c̒/4EHd;:9[(oNJ?B.3[
N Մp.Ѱp6da1M&,@j
KEcb!d:WFAWXmFvaWl7JjB~h/F_c/Kjoper]^W?qk˵E pyiKq{]U$kדv}dD/]Y{Wd'ŐfG.Q*bD13L4֘{qZcB{蜱	3v;Pv݆f4Uh]Nѹ^1H2"슒(Y6Kf 54P+SGrOϼ 1#y9Ioɓ<*O7z\˙r	_|R.3}j?=1'	tgfHQw7/tGe8濞J2MeP|:`cT/k:Q.(GOeqhkGz*g*0X"xTb_*B*ʿE%&O%[Z3aǯG	1񤿴xT<!^5cHCw3&IO|?K_%7k|=y<Nᷠ~uߎjcw~{Qv2>$Ыt#s^~b#!]IXށX2/APkOh6V'}7`t;胿k!X	$D(11&ƣ6T"\!\=\/q(1Cn8QnSnXOXXEYꖸ TxX윸@8@l@lX@l$~j$>$'^J'&'n&.r$т-q %	m%ሿ_\X/ U9d!ޟ$<MHv$Q_dG*)1MJFIQ3@rTD(>%F}}̾Eƚ=%匊GsGko{φse?@Tp0/ԇ>)廩h}Q^r49Z
3НL~B>Jy	;@R!V	녶-B.ax09pB$,	_}]5 OJ#+uMz+]4K>('4OzʿFGUyK>pN^./ܓgɓQ׀Zn `r!)^M@2Gd]y3ռ{
,CT%fihM`NF;z^ZF`%,S_0ƣA*,W
>k{&ep6S'w݂R`H=xX\ v
ĦAX?I|*T*/eGB!\.
;8Zp	r0Mxh+<4.j[ŅŁ^!a@ &"T
@,o+_X'=3PHT2!#QҌPx$/|	F}}߱}$#F1('5ey.7bQot7扲QNhl~䏋2IYF9xvRL('ufھsX}OeN;bNπ2n;xq%Jw*ůՉ?5ɵu]lm#}{wcy%G>kL>0/oKX/IXw8~ _N|>6_?7;13~_/O3w{̽q9KpO	59) rJ"J돺?xށzq==q\"¿k/q\~k.Swok	d~Bv~cBIN~#7FЮ:/@	N>wޝ^sbcK-M%i	A~vVܵܕtbX| nܩBx/̞ ނW<m6vO̼Ld,ɜLJ&EձM*aR;n􆩑S5rOLΟdg*O:\y\m\\\o^OϞrD9!<k2m0r)T'SHuIuHkkkrrR||̗NyK+NI˙2KLdVXVϱr1yFQ<Q<{#WTfL('ufھO&S)d<y͙FA`R`S`<:0Hg'KvV0{/p}>bDeͽ
^7}?ܻpy/2<l<
`:,𳃥`?5(SIJ0LørSaH)}aﰣ`78M`'6!l`?a[;؉l~l6fI=X(~
f #zjAmuYY҂-YFOYwZfY'[ZVZVXVC견
PY,^`0sۙU̔|f\GfDp3 8ta1uL`&,$3 #Sd^ c<ƀ,Xw ik]yevsLxW`360Y	c`m?km̳}4>a cуv=dqCZעZ`iS,%1&<(pr'pr#pr9pr&pr4p۲7в5emeIeVeb೥wcD@bxek{~%)TK
U5@=jZ#?rɡ%\.5+7tqCo!/rC>V(o*
Ễ}CPG~n(හFCcstEh6χ1E|R@x9_9o^ɧ)o%BAx!<Ǒ'2E#v|H6?2R)ϊEd~eo~{Ds#߹|dw!2|laD׈n<`WE."G؉2}$ɖ#X=R}.n
ؾ&§,y{,Z!424$4r/r+r=r%Tr1Tr.Tr6r:b9XP\]fn~cv3B&ydg
`ʇ0߇0aL:+x?}hγD2%qF0Y$E^1#%g$%%@APwl-SyP E@AAx-"ks89bD2#Hfn3-ҙiczG0"eLHIeDܑ0^8"N0fn%ls̺0	[aI9WLѰeV!v6c(y0CPvf_()Y*	g&j2?1CmnL ih,S/4ZTgzg0B|L8$ZB!%"/k	jYY
:[
[FYJZʅ~Tm4ji:kjm!235!/{(*dcíp9(>ɞ
_coX>"se$sɑ'RFsH.W ҉+B~*/D@#?rsGnszGpov=叄p~a8?!7
	.Ns=OyŰ[ZC<&{z==sCqCK]ܹrLh2w*4߃z	*">sY|鼔?	yg7Z O.OEQ1K"Q{!E̝"N6*/dҠߥ76geiYm)8lt5AWY"$Zo'9W[w_QIR@.@ A=r 	:]FnMc!=O7+|	kZ4d*Ìfo&iT-J*f1YZkeӺfmYMmVV5(Ƿ3JvwY-]RKuk%;ENhܱZ[7ѺZ/q!? cܧ2ٽLw"w2םt2EH1w~PEAqPeAБu"IAO$^C$I~|J\KO'%ym%O\7&s`9MP?.S|DwIC&k^%y3NR\CHĜHB@4;(Jb(
 Bk̽yI{~` Lq?Q`,-";K!b}|x1$Q=VqhY<lZVSH)5xj<=Upc5-zKhoQV֪{sk9f^֛Euii^]^6>#T${'sOޭdwYi?2ہ6d-@FzsAKI{/!<}UгI=왫nLQyF3=nPOSC=ƞ\8`7-<pMs<ᡞCxgفyFѳÿyKx6Pyw`݃C=}s8{x<g8^F.57dAN
r<  BL ; ^k<{O#@:Ǜ{xNٸw+x^8vxϞ%>iBy:ޞKxgN,&َ5>xbs/~?_wnY}ygwu4U%OgUuqyF>45ų@YlUk{i+suG&7<^ē|! qxKMry)IxbqwIQ:RȻ$IH7ܻ}B+b'=_C	Y6HW|MqdyBzzΞ뤭i9Fy~!=ICBG0 A/{onv?v5>ڎd*}_?hEq]QeRqQ-`xGBg8܍ɓ8Sɻ8gOD#"D"7,Flwsj1>fR5WVZ__k=|t]!]|G,3$06A[!}eI'_%6>7iH#}P}⾿|jﲚw^Ϊ4T˷[-۪S}sf)j{H5Q}!P_H%u9໏Ľ}pIwwm|[qszз-}pL\7M!X7S`lėݰ6)J-vq_qøCe1)_w8{|ŧq>/
q|`T_}?&⦩wfW/Qw-WƭPŭTfc-?-L()ZjB=9"eI$Z?:8yK(NorĨd?.xׯHįGrY)[<,le٦I~d8{rqOߙS*3cf%ꃴײH>b)~A[F(-^d70[^^Qm:9LV>׸4[2֛oj?ΟEìVYI&.掙/ҟ13`GD>@ jj,pT6~n캂WT?$IsKSSݹWLiα去ilif 㣖Gk|N:ې+%gys3xqJ;tLT1f\%TFX%fX9&P9f_9:[9rLxOϿؗdF*{b?=Q4yCGmHJG+Ğb5c/%֢|{\ސg]nFpKI}OBƹ2k&6`vyE"wpn[:z;go%b꜂?:eBuOF;zx-1O{dwc.zv{{yۏb%蘨q:~Ӳ8[h=oQHۘS}3h^!ԵŞݵ"}w5؇ڱcwLc|L}wzOvSΉ4Gy&GV篎WOV5ye󎽇}s}s}3HvO|e9c]CY]uy]9]mu\gmm\Kl}\i1ҶY.m/}k~G?*rSyk.|[n9lZ!I6֐FRCJ5jUZHR÷FlԨ[2niUZK@}+-_QScjdB7r-c\&3%gRg)Sf䗼GaEcUCe7]]-2!YG[\-]5\y]5*vm%8ElkzVOLa+?p9:|Cg/|tSGG69{؉l;G簲9Y"Ŗ$GwQ"9;E}1sޑ9eWYӊ9ykcXؖc,cW[Ğ4}bI%\؊vk1,3XNZN6+Ė ;rFZ@poi0)l6{uYݺ\b=h^5
/ArX)pRuw_]D^(uh#MuRK '7x:ƽ_N"ݣIG]A^p[<fǽSvдW-g{m#0/;,s#9^u1eh嘬tX[csiv2L+f[l8fAl͘=bb4S9rLO19bb]b؞cމy{(kqL>gh{~#c6Ml3Ķ0>-A+x7?	`23|6χK[fr ')7F6nkrCBYkmjWѰs̅n\VG3^\Cpq}fXnKඹ0e疺(7ǥI<XWn7Uq5m @Hh3΁s¹k%-*/F~nwu;:]pne1~;c\6clx9X>c^p]øk(1;J㎸r\V)w=.wUT0
A;Wu\ӎK5:s\	"[>`87x1hҍOv94Zs)E
w(mA=5by{ld5qlʞ5vǌ-c=Xn0"?|v
^b*3[Ȗ56lI8-jlg;.6_{Odd~5#4r/켅&&R?I4N)4MC E@	>-iy>L+A]U>m~ڈi;ў>xkZ8st?/}L@ݼNt'Kw5	ư]
t_|+:H]@'~?`Z4߇R;E|kIrӻ\zB?R2W}6C'5q;n<Ϲ%F!+ï]/9&	1	L;<$	FYK`4a-GZ+֚tڈn6fk{H{Atu,JY"l::αΧG":|W(:N֟hGDcia߇=zE[$}l=D_Zwwu99T&PQSК}e-KYӷ塊:xj
&*ة_h)<3R"2DaU0&,4da:xml<76~0[\fX6c=ln76M`3bal)qzθl
cl"B;
!k Q"fq|ɒh#IOSJxC|,&/y/bv6_byXü&7ωMV^Y`;s$9Dlov[MffMSX`9Z~1ٌ=f^">Y?hx&?L[LCb;Z@Mhi1H+Hi}Q-Dv?ķH1M|f, = 0Έ{x%PIÜM+%PJJiTj4Qj:@Ix0I)q=#vgŦ6=-V	18U,B> EGAՐ.P>_,L@ۙb:Ο$~O5G#q!X%`)Xb'봧yi-̾(f5Ho)b63̆ObʗBrhNtE"~;GOwwmp|~ڽ_?Hf2W=ԆC-}S|SQD5{QܗRy uCGz剐΢B!oNTPVG_H}7غJҏ9bޑx$$()l3yiהl  M\꫃:&'훛l2r`"O6͖Rl,3g<Ƭ#YOna֗kB]I!HNԄcdƬ.77._|t7Ӯr1!O C!:NrsNn@[i#-"\F0.`rSEN樂t53nG(@}3;jeD̍yQO3zQk߁*ՄڨYu59&0RfA.+Hjt;PA6ym([Qs\o3jjnD4\ƙK4smE͙h9ejsZoEh12faoAM6,Zg~Wo|"/08yyQn[`O{✜=Y0kßΘ ?(
(ʀڦ2ǙN7<|dϔ}e<5*]as LRCf7e4Tu}ueYIYcTYfH`Q)Jw3LV*ٔfd?ٔ+4Y9Ds(iQҰ2RRJZYiM*i.ԠC*tR.P*ҵR*_jR^W{ҊS:QQ0?ԎP'@c^pg=N(~e3ݫk/;yt2nVf4s*]LBe2tG:&@1:RY@G(K0e5좃Strp@V  H@d!͡JsAiV㕁d4e9[0\
VZe2ܤ2*~fQ: $("( 0W?7{괤-N4z_3j柸YMmgR7.3koFfmJW=C-`cufkvл+@hL̗|Ś5QMSXM7=4tmW'fV]1t,xKꏨWNM$8S(_6h[})m i{}o[hG};]ECE{`5{E3;vzJ|f#YO/a˘z3^t`ManZSؼ52OkcZ]VܣU3wh-Z9gB+`.R͹Z9C?B&j10m	4˯]뒅Y4춅F#[
mbMBmk+M;٪i_[{:֏lh?[Vi/[*Me~6ڸdkm/lWJo==6jdSe5}~&`/mܵqq{c}c3TZai2t}*ھ(
8N~p,q%3ňu/\/7]g\7\];#\]3CfG4N:8wm~'8Cr3uF	w k/e1smԹ[io@U2}`UYhdY$_#Cd̕r?BnB%&9l-d|M-oUrs?CI|T^Oȃr|EΏo&~ Q^wiE@TL4[J.4DɇzB@yОQtS@Ww:!QY@y_Nr[fiO(/ɣrgi\[+I8H>.v{4Y$Dm@/QLqLLwΙڇ}g_ע(~m_BI[tَv[yf/Q;*COtHWn(?h/vOڳx;agۛ=ulQ[j2E׿+Z_yW饕zV낲@W>GFz7TWojߡz UԳr-\_MRKN)uK]Rw=C)F5Cm@PW=`c8_u\%^`/ V\ӋIW6}tQ?,NQ|P/nhx-ڢ@	گQ*gU=k=o	Z34A&=}>tۓNz~N)>WwTkq96.Ч Ho[q''O?ޅ<kv9xP觔mwrvv&ޢśAx>d3pRKԃy.zaމ\+rqMx횞*`)8ei<櫏6HyA 7%pAfkc 3Uϴk-U+V32{^t/0HࣨObEzQ|\?bqpUfrV.-}J<J$ihDG$ݕ<HUPoُr"<!/ʎTFmQ F4DځJP9t@J[C+PITUTfbPqI=}M7sw{mzGϴV=ʠ{ZtW@1Vϩiz`@49x !01{D}Ri8j{Z~MŏAjZa0==]?D(B]VfT2]݅8~xpMw4jN #hqnt8;blȧ&j"j8QM@UfEA'A44 h7,_ oe@Ω]QN#xx5 j9Z4fSْD2T(TܓVvH7ItN))!/;%;~ bLqٍGPPʆ'8{P_@T
|IP	RgJADGJt<_;sKaa|pEnI&i-#-帤Ý+xt_8 -tpP3:x>Bnb;7^\-}$:wxڇǣ]vGXռȽir?<@)THԃ`umjIX֪z0x/Ssk5]^W'<rU@Ul 'PˠjSF~Vg-FK=OYecn86CղzKk]'sٙrYP.O;1TꑉR}Zj@JfGڀiy$"ny %}Adܟ{HvԋFIԏCH:N6dHN
I@[r5&Q2U#}P%#PYFiK\dӦ5][JնJyRXk%JJ@ȷ&JRDh%:6])G4<j=Qm
Au]{j]B;v|^(JvljMD^;2:(F+Z-:oȉhٯ4SlWG2SRAҕƣ	X4LH#Qgij!EzdW)TVK%R9E(J\G"UnJ}x5TfH
uR4!*(JT!	ʥ7)8cyɜwAH
&1JnREi@)CHqe1ɧ${0*I M$(D帚MYfW9njN*jRPV2WB`%Wxjע&x=F5FToFToCEv@_Pvx>ÔwWJn-76VsV
3>~ǯ2WJJX!A8x:Nq|gÏWPUԬ۸1p	*7T"w,H}lW*a,|Qx+>Nwx?n܎|¼.VČ=R=Ms@$pAr'Y/"k 3A6?U`([ͭ:P}@u/.q+Ԃ8V`>8x?6[F8gzS_5juEY]nT/UlQ.`.٬$Puv#?%#e0:Dk=snVj5RPL<j%Z(V `W\	^LuI]܈­HV,&
♤<uIw<ڎsx (&@-u4U`:TGX&Hy2"S|#9AҔ, AEҘxICXOu&[xviQLuحMY8Ag*Thp>-+.k#|oUʹkkSp5m+h7qyf9ZSj3-+iU">tnBZ_'!핚[;IZt|_}gf\+X[쳵lA9Y
؎ILTVB*n
6	Q1R0Aw4u2 !\GuzO#Elu9`/@[}D̱fH3mӥid{i-Uek,dݖʡζm,jgV_ =	DlOޢtٕ^WZ^[,*mۇ
֣mmr"#5D^[Ed
"jˁ\6
1V(UۤmIړ$b픚j&:>{k]0Mm[ئ`mNu9mp^[EV emǍm/J-fpW;r¸
nkk
C~:`ۊ;.C:жDf;d0lD搙d6}ؚ-(ϱ3z?m^j=W=%`F>h[?x-gjX-4PΟ >!˸h;>oi/3^v&s>˳ԓ?!׋YyMs5ŭ,+a}12[J,65/;JxW&)KZǖRrNe2=kk7XgAZߩOBZYx
OS<ֱF}mI}ژ$GXSOTkGdޓZJ
=BP."G=uG*%=4._Q                                                                                                                                                                                                                           D                                                               y  K      y  K|   h t t p : / / w w w . d s p a c e . o r g / t e c h n o l o g y / s y s t e m - d o c s / a p p l i c a t i o n . h t m l      i t e m i m p o r t e r   -  D                                                                y  K      .   h t t p : / / w w w . d s p a c e . o r g / t e c h n o l o g y / s y s t e m - d o c s /   y  K\   h t t p : / / w w w . d s p a c e . o r g / t e c h n o l o g y / s y s t e m - d o c s /     D                                                                y  K      J   h t t p : / / s e a r c h . c p a n . o r g / ~ p e t d a n c e / M A R C - R e c o r d - 1 . 3 8 / l i b / M A R C / F i l e / U S M A R C . p m   y  K   h t t p : / / s e a r c h . c p a n . o r g / ~ p e t d a n c e / M A R C - R e c o r d - 1 . 3 8 / l i b / M A R C / F i l e / U S M A R C . p m     D                                                                y  K      _   h t t p : / / s e a r c h . c p a n . o r g / ~ b r i c a s / M A R C - C r o s s w a l k - D u b l i n C o r e - 0 . 0 2 / l i b / M A R C / C r o s s w a l k / D u b l i n C o r e . p m   y  K   h t t p : / / s e a r c h . c p a n . o r g / ~ b r i c a s / M A R C - C r o s s w a l k - D u b l i n C o r e - 0 . 0 2 / l i b / M A R C / C r o s s w a l k / D u b l i n C o r e . p m     D d       
                                                >   
      
  #    A       "    @ @        b O  $_0/ˍU +     
    x	 n#  $_0/ˍUPNG

   IHDR         h6   sRGB    IDAT8O}R π3Vd:3*hY^xā83szQU$"ɿ^ db r`J~Cx $S2țJDC.FvkRzFDjQZh2(ͯޛԨPzW
IRE%$mˣ04{f%s8VuC$Vk𖿿7dl     IENDB`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         R  @ R    \6    N o r m a l      $ a$  CJ OJ QJ _HaJ mH	sH	tH	V `  V    \6   	 H e a d i n g   1     $@& " 5CJ KH  OJ QJ \^J aJ  tH	N `  N    \6   	 H e a d i n g   2     $@& 5OJ QJ \]^J aJ  F @  F          	 H e a d i n g   3     
&F @& 6CJ \aJ 8 @  8          	 H e a d i n g   4     $@& >*           D A@ D          D e f a u l t   P a r a g r a p h   F o n t     V i  V          T a b l e   N o r m a l     :V   4   4 
l a      ( k@ (           N o   L i s t         J  @  J           F o o t e r     $ 9r a$  CJ OJ QJ tH	N @ N    \6    H e a d e r      9r     B*CJ OJ QJ ph  : B@ :          	 B o d y   T e x t      OJ  QJ  aJ . )@ !.           P a g e   N u m b e r     6 U@ 16          	 H y p e r l i n k    >*B*ph   F V@ AF           F o l l o w e d H y p e r l i n k    >*B*ph  > @ R>          F o o t n o t e   T e x t      CJ aJ @ &  a@          F o o t n o t e   R e f e r e n c e    H*  e@ r    +    H T M L   P r e f o r m a t t e d   =  $ 2 (
Px4 #\'*.25@9                a$   CJ OJ QJ ^J aJ tH	 o     \6    C o d e   [  $ $    $d %d &d 'd N    O    P    Q    a$   CJ OJ QJ 8 "@  8   K(    C a p t i o n      5CJ \aJ B '  B   TcJ    C o m m e n t   R e f e r e n c e    CJ aJ < @ <   TcJ    C o m m e n t   T e x t      CJ aJ @ j@@   TcJ    C o m m e n t   S u b j e c t      5\H @ H   TcJ    B a l l o o n   T e x t      CJ OJ QJ ^J aJ : o :    B   
 S t y l e   L e f t     $ a$  aJ @ o@    B    l i s t     
& F
 < ^`       0    V           <                    !  [        	  !  2  E  Q  R      ^        @        Y
  
  
      U  V             B  y    G    ;        R"  S"  #  f#  #  #  #  #  #  $  %  ;%  o%  %  %  %  %  j'  '  '  ,  ,  ,  ,  -  -  -  -   .  .  /  /  /  /  /  /  /  /  /  /  0  0  I0  J0  \0  o0  0  0  0  0  0     0                       0                        0                        0                        0                       0                        0                        0                       0                       0                       0                       0                       0                       0                       0                       0                       0                       0                       0                        0                       0                      0                        0       5                0       5               0       5               0       5               0       5               0       5               0       5                0       5                0       5                0       5                0       5               0       5                0       5                0       5                0       5               0       5                0       5                0       5             
 0       5             
 0      5             
 0      5             
 0      5             
 0      5             
 0      5             
 0      5             
 0      5             
 0      5                0       5                0       5               0       5                0       5                0       5                0       5                0       5                0       5               0       5                0       5               0                        0       #              0       #              0      #              0      #              0      #              0      #              0      #                0       #               0                       0                       0                      0                        0                        0                       0                       0                        0                        0                       0                       0                       0                       0                        0                   @   0                  h 0 0                   @   0                  h 0 0                   @   0                  h 0 0                   @   0                  h 0 0                   @  0                   @   0                  @  0                   @   0                   @  0                    @  0                    @  0                    @  0                   @  0                    @   0                  h 0 0                 |           !  [        	  !  2  E  Q  R    ^        @          B  y  G    R"  ,  -  -  -   .  .  /  /  J0  0  0  h 0 0                     @ 0 H           h 0 0                   @ 0 H           h 0 0                  h 0 0                  h 0 0                  h 0 0                  h 0 0                  h 0 0                  h 0 0                   @ 0 H     p     h 0 0                   h 0 0                   h 00                  h 00                  h 0 0                   h 0 0                  h 0 0                   h 0 0                  h 0 0                   @   0                  h 0 0                   h 0 0                   h 0%0            &   lh 0%0                  h 0%0                   @   0     x         h 0 0                   h 0 0                   h 0!0            "   HDh 0!0                   h 0 0                   h 0 0                   h 0 0                   h 0 0                       0            0     j 0 0               RTj 0 0               N
    0            0                  	            H   H           
     	  8  I   (  R2  6  J8  8         "   #   %   &   (   )        #  4  J8  8     !   $   '   *      8           :   D   ^                       R      -  -  .  4.  .  .  .  d/  /  0  UXXXX   %   E   e   l   n   s   ~                      
  !!  t                                 ,   2 $   뫢M:sL} <     7V      @                            0    (    	                    
          B    
        S              	   ?                            (    	                    
          b   
      
  C    A        3 "     `                          
         '    R         _ P i c t u r e B u l l e t s /  0      /  0                  ,     tw         -    |      ,        j    \     <         \     L     
 	   D  
       ,          4m    
    <
    \DF  F        U  U  l  l  s        	  g  }  }      *  *  s0  s0  0  0                                       	    
                                                        L  L        d  d  r  }  }          o          *  *  }0  0  0  0                             	   
                                          8      *urn:schemas-microsoft-com:office:smarttagsCity 9      *urn:schemas-microsoft-com:office:smarttagsState =      *urn:schemas-microsoft-com:office:smarttags	PlaceType =      *urn:schemas-microsoft-com:office:smarttags	PlaceName 9      *urn:schemas-microsoft-com:office:smarttagsplace   8~                                                                                                                                                 }            
  
  
  
          e  r              I  O  8  ;          e  n      Q  Y  h  v      $  -              {  }              +  -      d  f                                #!  )!  a!  g!  !  !  "  "  "  "  \#  _#  #  #  #  #  z%  %  '  '  )   )  O)  R)  U)  \)  ^)  b)  7*  <*  *  *  +  +  -,  4,  ?,  a,  {,  ,  ,  ,  ,  ,  ,   -   .  2.  .  .  /  /  /  /  /  /  /  /  /  /  /  /  /  /  0  0                                                                                                                                                          _  f  c  k  )  1      f
  m
      0  =               ;  ?  %  %  T&  Z&  F)  H)  ,  ,  %.  *.  .  .  /  /  /  /  /  /  /  /  /  /  /  /  /  /  0  0   3  3  3  3  3  3  3  3  3  3  3  3  3  3  3  3  3                               R                    E  E  R  R  ^  d  l  m  n  n      .  9  ^  ^          <
  H
  Y
  Y
  )  5                !  S"  #  f#  f#  #  #   $  $  $  $  $  $  $  $  z%  {%  %  j'  '  '  c,  m,  ,  ,  ,  -  -  -  w-  -  -  /  /  /  /  /  /  /  /  /  /  /  /  0  ,0  60  :0  H0  I0  I0  J0  \0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0                                                                                                                          /  /  /  /  /  /  /  /  /  /  /  /  /  /  0  0                  
 ;'W`z IFC ,*
*F 4-( 0W`z  M2 e8<A QjD% 	      	   kEI  1Tv              h         ^`OJ QJ o( h    H                h         ^`OJ QJ ^J o( h    H   o              h        p p^p`OJ QJ o( h    H                h        @ @^@`OJ QJ o( h    H                h         ^`OJ QJ ^J o( h    H   o              h         ^`OJ QJ o( h    H                h         ^`OJ QJ o( h    H                h         ^`OJ QJ ^J o( h    H   o              h        P P^P`OJ QJ o( h    H                h         ^`OJ QJ o(               h         ^`OJ QJ o(  o              h        p p^p`OJ QJ o(               h        @ @^@`OJ QJ o(               h         ^`OJ QJ o(  o              h         ^`OJ QJ o(               h         ^`OJ QJ o(               h         ^`OJ QJ o(  o              h        P P^P`OJ QJ o(               h         ^`OJ QJ o(               h         ^`OJ QJ o(  o              h        p p^p`OJ QJ o(               h        @ @^@`OJ QJ o(               h         ^`OJ QJ o(  o              h         ^`OJ QJ o(               h         ^`OJ QJ o(               h         ^`OJ QJ o(  o              h        P P^P`OJ QJ o(               h      
   ^`h    H     .             h      
   ^`h    H    .             h      
  pL p^p`Lh    H    .              h      
  @ @^@`h    H    .             h      
   ^`h    H    .             h      
  L ^`Lh    H    .              h      
   ^`h    H    .             h      
   ^`h    H    .             h      
  PL P^P`Lh    H    .              h         ^`CJ OJ QJ h    H                h         ^`OJ QJ ^J o( h    H   o              h        p p^p`OJ QJ o( h    H                h        @ @^@`OJ QJ o( h    H                h         ^`OJ QJ ^J o( h    H   o              h         ^`OJ QJ o( h    H                h         ^`OJ QJ o( h    H                h         ^`OJ QJ ^J o( h    H   o              h        P P^P`OJ QJ o( h    H                             ^`OJ PJ  QJ ^J  o(                          ^`OJ QJ ^J o( h    H   o                        p p^p`OJ QJ o( h    H                          @ @^@`OJ QJ o( h    H                           ^`OJ QJ ^J o( h    H   o                         ^`OJ QJ o( h    H                           ^`OJ QJ o( h    H                           ^`OJ QJ ^J o( h    H   o                        P P^P`OJ QJ o( h    H                h         ^`OJ QJ o(               h         ^`OJ QJ o(  o              h        p p^p`OJ QJ o(               h        @ @^@`OJ QJ o(               h         ^`OJ QJ o(  o              h         ^`OJ QJ o(               h         ^`OJ QJ o(               h         ^`OJ QJ o(  o              h        P P^P`OJ QJ o(                           P ^`P                           @ @^@`   .                         0 ^`0   .  .                        ` `^``   .  .  .       	                 ^`	   .  .  .  .       	                ^`   .  .  .  .  .       	               ^`   .  .  .  .  .  .       	             ` ^``   .  .  .  .  .  .  .       	            0 0^0`   .  .  .  .  .  .  .  .               h         ^`OJ QJ o( h    H                h         ^`OJ QJ ^J o( h    H   o              h        p p^p`OJ QJ o( h    H                h        @ @^@`OJ QJ o( h    H                h         ^`OJ QJ ^J o( h    H   o              h         ^`OJ QJ o( h    H                h         ^`OJ QJ o( h    H                h         ^`OJ QJ ^J o( h    H   o              h        P P^P`OJ QJ o( h    H                h         ^`o( h    H     .              h         ^`OJ QJ ^J o( h    H   o              h        p p^p`OJ QJ o( h    H                h        @ @^@`OJ QJ o( h    H                h         ^`OJ QJ ^J o( h    H   o              h         ^`OJ QJ o( h    H                h         ^`OJ QJ o( h    H                h         ^`OJ QJ ^J o( h    H   o              h        P P^P`OJ QJ o( h    H      QjD            QjD            e8<            I            ,*            ;'            4-            M2            0            kE            1T          
                       
     	 	 	 	 	 	 	 	 	  	 	 	 	 	 	 	 	 	  	 	 	 	 	 	 	 	 	  	 	 	 	 	 	 	 	 	    	 	 	 	 	 	 	 	 	  	 	 	 	 	 	 	 	 	   (W6 	 	 	 	 	 	 	 	  	 	 	 	 	 	 	 	 	 (X1R                  ~^S                  (                '    .  n |\ \6 E\# K( , 4 4 g9 '; Sf; =D TcJ mDO Y4\ H_ \Lu Y z S {_ % B <o 2W     F  & C   j ^ $ + @     )/                     0     @      U n k n o w n                                   G  :                    T i m e s   N e w   R o m a n   5                       S y m b o l   3&  :                    A r i a l   7                       G e o r g i a   ?5  	z                  C o u r i e r   N e w   5&  z !               T a h o m a   ;                                W i n g d i n g s   "  1 h    E4I4EF    !  (       V   !  (      V       !                                                                                                                                                                                                                                                                                                                          kx  4    d      /  /                                                                       2Q                             HX    	 ?    /  4     2                      U : \ T e m p l a t e \ S y s t e m s . d o t  I m p o r t i n g   M A R C   d a t a   i n t o   D S p a c e       $ S t e v e   T h o m a s ,   S e n i o r   S y s t e m s   A n a l y s t  S t e p h e n   T h o m a s                     4      
                      	                                             Oh +'0                                                  0  	   H     T  
   t                                                 Importing MARC data into DSpace              (   Steve Thomas, Senior Systems Analyst                              Systems.dot       Stephen Thomas        4         Microsoft Office Word   @    ^в    @    ?.@    j*@    a+         !     (                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ՜. +,D   ՜. +,h  $        h      p                                                                          University of Adelaide Library     V            /                                           Importing MARC data into DSpace            Title         `                8      @            _PID_HLINKS      A           | %                       _   h t t p : / / s e a r c h . c p a n . o r g / ~ b r i c a s / M A R C - C r o s s w a l k - D u b l i n C o r e - 0 . 0 2 / l i b / M A R C / C r o s s w a l k / D u b l i n C o r e . p m             e                           J   h t t p : / / s e a r c h . c p a n . o r g / ~ p e t d a n c e / M A R C - R e c o r d - 1 . 3 8 / l i b / M A R C / F i l e / U S M A R C . p m           e                           .   h t t p : / / w w w . d s p a c e . o r g / t e c h n o l o g y / s y s t e m - d o c s /           e    	                       >   h t t p : / / w w w . d s p a c e . o r g / t e c h n o l o g y / s y s t e m - d o c s / a p p l i c a t i o n . h t m l         i t e m i m p o r t e r                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   K   L   M   N   O   P   Q   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   {   |   }   ~                                    R o o t   E n t r y                                                 	           F            r+          D a t a                                                         
                                     J          1 T a b l e                                                                                                R   O      W o r d D o c u m e n t                                                                                        '       S u m m a r y I n f o r m a t i o n                           (                                     z           D o c u m e n t S u m m a r y I n f o r m a t i o n           8                                                   C o m p O b j                                                                                           q                                                                                                                               
  	           F   Microsoft Office Word Document 
   MSWordDoc    Word.Document.8 9q                                                                                                                                                                                                                                                                                                                                                                                                                           