]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Added gzip tests for all open modes and compression levels for more code coverage.
authorNathan Moinvaziri <nathan@solidstatenetworks.com>
Fri, 25 Oct 2019 19:53:04 +0000 (12:53 -0700)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Tue, 10 Dec 2019 09:56:41 +0000 (10:56 +0100)
Added tests for gzip compress/uncompress for all open modes.
Added test data from Google snappy project and include copying info.

CMakeLists.txt
test/README.md
test/data/fireworks.jpg [new file with mode: 0644]
test/data/lcet10.txt [new file with mode: 0644]
test/data/paper-100k.pdf [new file with mode: 0644]
test/minigzip.c

index a1ccfeb489fcb36a98d0ed5b1537a3580bbb06b9..523544663e26da6d34a6be6ccf1887a05efc8205 100644 (file)
@@ -935,6 +935,73 @@ if (ZLIB_ENABLE_TESTS)
             -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/run-and-redirect.cmake)
     endforeach()
 
+    macro(minigzip_deflate_file target name path)
+        set(GZ_COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:${target}>
+            ${CMAKE_CURRENT_SOURCE_DIR}/${path})
+        add_test(NAME ${target}-${name}-file-compr
+            COMMAND ${CMAKE_COMMAND}
+            "-DCOMMAND=${GZ_COMMAND}"
+            "-DSUCCESS_EXIT=0;1"
+            -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/run-and-redirect.cmake)
+    endmacro()
+    macro(minigzip_inflate_file target name path)
+        set(GZ_COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:${target}>
+            -d ${CMAKE_CURRENT_SOURCE_DIR}/${path})
+        add_test(NAME ${target}-${name}-file-uncompr
+            COMMAND ${CMAKE_COMMAND}
+            "-DCOMMAND=${GZ_COMMAND}"
+            "-DSUCCESS_EXIT=0;1"
+            -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/run-and-redirect.cmake)
+    endmacro()
+
+    minigzip_deflate_file(minigzip "lcet10" "test/data/lcet10.txt")
+    minigzip_inflate_file(minigzip "lcet10" "test/data/lcet10.txt.gz")
+
+    macro(minigzip_stdio_cmp target name path)
+        set(GZ_COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:${target}> -c)
+        foreach(EXTRA_ARG IN ITEMS "${ARGN}")
+            list(APPEND GZ_COMMAND ${EXTRA_ARG})
+        endforeach()
+        string(REPLACE ";" "" GZ_ARGS "${ARGN}")
+        string(REPLACE "-" "" GZ_ARGS "${GZ_ARGS}")
+        add_test(NAME ${target}-${name}-${GZ_ARGS}-compr
+            COMMAND ${CMAKE_COMMAND}
+            "-DCOMMAND=${GZ_COMMAND}"
+            -DINPUT=${CMAKE_CURRENT_SOURCE_DIR}/${path}
+            -DOUTPUT=${CMAKE_CURRENT_SOURCE_DIR}/${path}.gz
+            "-DSUCCESS_EXIT=0;1"
+            -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/run-and-redirect.cmake)
+        set(GZ_COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:${target}> -d)
+        add_test(NAME ${target}-${name}-${GZ_ARGS}-uncompr
+            COMMAND ${CMAKE_COMMAND}
+            "-DCOMMAND=${GZ_COMMAND}"
+            -DINPUT=${CMAKE_CURRENT_SOURCE_DIR}/${path}.gz
+            -DOUTPUT=${CMAKE_CURRENT_SOURCE_DIR}/${path}.out
+            "-DSUCCESS_EXIT=0;1"
+            -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/run-and-redirect.cmake)
+        add_test(NAME ${target}-${name}-${GZ_ARGS}-cmp
+            COMMAND ${CMAKE_COMMAND} -E compare_files
+                ${CMAKE_CURRENT_SOURCE_DIR}/${path}
+                ${CMAKE_CURRENT_SOURCE_DIR}/${path}.out)
+    endmacro()
+
+    set(OPEN_MODES -f -h -R -F -T)
+    set(COMPRESSION_LEVELS -0 -1 -6 -9)
+    foreach(OPEN_MODE ${OPEN_MODES})
+        foreach(COMPRESSION_LEVEL ${COMPRESSION_LEVELS})
+            minigzip_stdio_cmp(minigzip "lcet10" "test/data/lcet10.txt" ${OPEN_MODE} ${COMPRESSION_LEVEL})
+            minigzip_stdio_cmp(minigzip "fireworks" "test/data/fireworks.jpg" ${OPEN_MODE} ${COMPRESSION_LEVEL})
+            minigzip_stdio_cmp(minigzip "paper-100k" "test/data/paper-100k.pdf" ${OPEN_MODE} ${COMPRESSION_LEVEL})
+        endforeach()
+    endforeach()
+
+    if(HAVE_OFF64_T)
+        minigzip_stdio_cmp(minigzip64 "offset64" "test/data/paper-100k.pdf")
+    endif()
+
+    minigzip_stdio_cmp(minigzip "detect-text" "test/data/lcet10.txt" -A)
+    minigzip_stdio_cmp(minigzip "detect-binary" "test/data/paper-100k.pdf" -A)
+
     if(NOT WIN32 AND ZLIB_COMPAT)
         add_executable(CVE-2003-0107 test/CVE-2003-0107.c)
         target_link_libraries(CVE-2003-0107 zlib)
index 2cc15ca9545ccc50c09a4c05dce0ddc8c9489a3a..095f4dc7da694097700564e26d4e0e454cf862e9 100644 (file)
@@ -10,3 +10,24 @@ Contents
 |[CVE-2005-2096](https://nvd.nist.gov/vuln/detail/CVE-2005-2096)|Buffer overflow when incomplete code description
 |[GH-361](https://github.com/zlib-ng/zlib-ng/issues/361)|Test case for overlapping matches|
 |[GH-364](https://github.com/zlib-ng/zlib-ng/issues/364)|Test case for switching compression levels|
+
+Copying
+-------
+
+Some of the test data in test/data is licensed differently:
+
+ - fireworks.jpeg is Copyright 2013 Steinar H. Gunderson, and
+   is licensed under the Creative Commons Attribution 3.0 license
+   (CC-BY-3.0). See https://creativecommons.org/licenses/by/3.0/
+   for more information.
+
+ - paper-100k.pdf is an excerpt (bytes 92160 to 194560) from the paper
+   “Combinatorial Modeling of Chromatin Features Quantitatively Predicts DNA
+   Replication Timing in _Drosophila_” by Federico Comoglio and Renato Paro,
+   which is licensed under the CC-BY license. See
+   http://www.ploscompbiol.org/static/license for more information.
+
+ - lcet10.txt is from Project
+   Gutenberg. It does not have expired copyright, but is still in the
+   public domain according to the license information.
+   (http://www.gutenberg.org/ebooks/53).
\ No newline at end of file
diff --git a/test/data/fireworks.jpg b/test/data/fireworks.jpg
new file mode 100644 (file)
index 0000000..078cf17
Binary files /dev/null and b/test/data/fireworks.jpg differ
diff --git a/test/data/lcet10.txt b/test/data/lcet10.txt
new file mode 100644 (file)
index 0000000..26b187d
--- /dev/null
@@ -0,0 +1,7519 @@
+
+
+The Project Gutenberg Etext of LOC WORKSHOP ON ELECTRONIC TEXTS
+
+
+
+
+                      WORKSHOP ON ELECTRONIC TEXTS
+
+                               PROCEEDINGS
+
+
+
+                          Edited by James Daly
+
+
+
+
+
+
+
+                             9-10 June 1992
+
+
+                           Library of Congress
+                            Washington, D.C.
+
+
+
+    Supported by a Grant from the David and Lucile Packard Foundation
+
+
+               ***   ***   ***   ******   ***   ***   ***
+
+
+                            TABLE OF CONTENTS
+
+
+Acknowledgements
+
+Introduction
+
+Proceedings
+   Welcome
+      Prosser Gifford and Carl Fleischhauer
+
+   Session I.  Content in a New Form:  Who Will Use It and What Will They Do?
+      James Daly (Moderator)
+      Avra Michelson, Overview
+      Susan H. Veccia, User Evaluation
+      Joanne Freeman, Beyond the Scholar
+         Discussion
+
+   Session II.  Show and Tell
+      Jacqueline Hess (Moderator)
+      Elli Mylonas, Perseus Project
+         Discussion
+      Eric M. Calaluca, Patrologia Latina Database
+      Carl Fleischhauer and Ricky Erway, American Memory
+         Discussion
+      Dorothy Twohig, The Papers of George Washington
+         Discussion
+      Maria L. Lebron, The Online Journal of Current Clinical Trials
+         Discussion
+      Lynne K. Personius, Cornell mathematics books
+         Discussion
+
+   Session III.  Distribution, Networks, and Networking:  
+                 Options for Dissemination
+      Robert G. Zich (Moderator)
+      Clifford A. Lynch
+         Discussion
+      Howard Besser
+         Discussion
+      Ronald L. Larsen
+      Edwin B. Brownrigg
+         Discussion
+
+   Session IV.  Image Capture, Text Capture, Overview of Text and
+                Image Storage Formats
+         William L. Hooton (Moderator)
+      A) Principal Methods for Image Capture of Text:  
+            direct scanning, use of microform
+         Anne R. Kenney
+         Pamela Q.J. Andre
+         Judith A. Zidar
+         Donald J. Waters
+            Discussion
+      B) Special Problems:  bound volumes, conservation,
+                            reproducing printed halftones
+         George Thoma
+         Carl Fleischhauer
+            Discussion
+      C) Image Standards and Implications for Preservation
+         Jean Baronas
+         Patricia Battin
+            Discussion
+      D) Text Conversion:  OCR vs. rekeying, standards of accuracy
+                           and use of imperfect texts, service bureaus
+         Michael Lesk
+         Ricky Erway
+         Judith A. Zidar
+            Discussion
+
+   Session V.  Approaches to Preparing Electronic Texts
+      Susan Hockey (Moderator)
+      Stuart Weibel
+         Discussion
+      C.M. Sperberg-McQueen
+         Discussion
+      Eric M. Calaluca
+         Discussion
+
+   Session VI.  Copyright Issues
+      Marybeth Peters
+
+   Session VII.  Conclusion
+      Prosser Gifford (Moderator)
+      General discussion
+
+Appendix I:  Program
+
+Appendix II:  Abstracts
+
+Appendix III:  Directory of Participants
+
+
+               ***   ***   ***   ******   ***   ***   ***
+
+
+                            Acknowledgements
+
+I would like to thank Carl Fleischhauer and Prosser Gifford for the
+opportunity to learn about areas of human activity unknown to me a scant
+ten months ago, and the David and Lucile Packard Foundation for
+supporting that opportunity.  The help given by others is acknowledged on
+a separate page.
+
+                                                          19 October 1992
+
+
+               ***   ***   ***   ******   ***   ***   ***
+
+
+                              INTRODUCTION
+
+The Workshop on Electronic Texts (1) drew together representatives of
+various projects and interest groups to compare ideas, beliefs,
+experiences, and, in particular, methods of placing and presenting
+historical textual materials in computerized form.  Most attendees gained
+much in insight and outlook from the event.  But the assembly did not
+form a new nation, or, to put it another way, the diversity of projects
+and interests was too great to draw the representatives into a cohesive,
+action-oriented body.(2)
+
+Everyone attending the Workshop shared an interest in preserving and
+providing access to historical texts.  But within this broad field the
+attendees represented a variety of formal, informal, figurative, and
+literal groups, with many individuals belonging to more than one.  These
+groups may be defined roughly according to the following topics or
+activities:
+
+* Imaging
+* Searchable coded texts
+* National and international computer networks
+* CD-ROM production and dissemination
+* Methods and technology for converting older paper materials into
+electronic form
+* Study of the use of digital materials by scholars and others
+
+This summary is arranged thematically and does not follow the actual
+sequence of presentations.
+
+NOTES:
+     (1)  In this document, the phrase electronic text is used to mean
+     any computerized reproduction or version of a document, book,
+     article, or manuscript (including images), and not merely a machine-
+     readable or machine-searchable text.
+
+     (2)  The Workshop was held at the Library of Congress on 9-10 June
+     1992, with funding from the David and Lucile Packard Foundation. 
+     The document that follows represents a summary of the presentations
+     made at the Workshop and was compiled by James DALY.  This
+     introduction was written by DALY and Carl FLEISCHHAUER.
+
+
+PRESERVATION AND IMAGING
+
+Preservation, as that term is used by archivists,(3) was most explicitly
+discussed in the context of imaging.  Anne KENNEY and Lynne PERSONIUS
+explained how the concept of a faithful copy and the user-friendliness of
+the traditional book have guided their project at Cornell University.(4) 
+Although interested in computerized dissemination, participants in the
+Cornell project are creating digital image sets of older books in the
+public domain as a source for a fresh paper facsimile or, in a future
+phase, microfilm.  The books returned to the library shelves are
+high-quality and useful replacements on acid-free paper that should last
+a long time.  To date, the Cornell project has placed little or no
+emphasis on creating searchable texts; one would not be surprised to find
+that the project participants view such texts as new editions, and thus
+not as faithful reproductions. 
+
+In her talk on preservation, Patricia BATTIN struck an ecumenical and
+flexible note as she endorsed the creation and dissemination of a variety
+of types of digital copies.  Do not be too narrow in defining what counts
+as a preservation element, BATTIN counseled; for the present, at least,
+digital copies made with preservation in mind cannot be as narrowly
+standardized as, say, microfilm copies with the same objective.  Setting
+standards precipitously can inhibit creativity, but delay can result in
+chaos, she advised.
+
+In part, BATTIN's position reflected the unsettled nature of image-format
+standards, and attendees could hear echoes of this unsettledness in the
+comments of various speakers.  For example, Jean BARONAS reviewed the
+status of several formal standards moving through committees of experts;
+and Clifford LYNCH encouraged the use of a new guideline for transmitting
+document images on Internet.  Testimony from participants in the National
+Agricultural Library's (NAL) Text Digitization Program and LC's American
+Memory project highlighted some of the challenges to the actual creation
+or interchange of images, including difficulties in converting
+preservation microfilm to digital form.  Donald WATERS reported on the
+progress of a master plan for a project at Yale University to convert
+books on microfilm to digital image sets, Project Open Book (POB).
+
+The Workshop offered rather less of an imaging practicum than planned,
+but "how-to" hints emerge at various points, for example, throughout
+KENNEY's presentation and in the discussion of arcana such as
+thresholding and dithering offered by George THOMA and FLEISCHHAUER.
+
+NOTES:
+     (3)  Although there is a sense in which any reproductions of
+     historical materials preserve the human record, specialists in the
+     field have developed particular guidelines for the creation of
+     acceptable preservation copies.
+
+     (4)  Titles and affiliations of presenters are given at the
+     beginning of their respective talks and in the Directory of
+     Participants (Appendix III).
+
+
+THE MACHINE-READABLE TEXT:  MARKUP AND USE
+
+The sections of the Workshop that dealt with machine-readable text tended
+to be more concerned with access and use than with preservation, at least
+in the narrow technical sense.  Michael SPERBERG-McQUEEN made a forceful
+presentation on the Text Encoding Initiative's (TEI) implementation of
+the Standard Generalized Markup Language (SGML).  His ideas were echoed
+by Susan HOCKEY, Elli MYLONAS, and Stuart WEIBEL.  While the
+presentations made by the TEI advocates contained no practicum, their
+discussion focused on the value of the finished product, what the
+European Community calls reusability, but what may also be termed
+durability.  They argued that marking up--that is, coding--a text in a
+well-conceived way will permit it to be moved from one computer
+environment to another, as well as to be used by various users.  Two
+kinds of markup were distinguished:  1) procedural markup, which
+describes the features of a text (e.g., dots on a page), and 2)
+descriptive markup, which describes the structure or elements of a
+document (e.g., chapters, paragraphs, and front matter).
+
+The TEI proponents emphasized the importance of texts to scholarship. 
+They explained how heavily coded (and thus analyzed and annotated) texts
+can underlie research, play a role in scholarly communication, and
+facilitate classroom teaching.  SPERBERG-McQUEEN reminded listeners that
+a written or printed item (e.g., a particular edition of a book) is
+merely a representation of the abstraction we call a text.  To concern
+ourselves with faithfully reproducing a printed instance of the text,
+SPERBERG-McQUEEN argued, is to concern ourselves with the representation
+of a representation ("images as simulacra for the text").  The TEI proponents'
+interest in images tends to focus on corollary materials for use in teaching,
+for example, photographs of the Acropolis to accompany a Greek text.
+
+By the end of the Workshop, SPERBERG-McQUEEN confessed to having been
+converted to a limited extent to the view that electronic images
+constitute a promising alternative to microfilming; indeed, an
+alternative probably superior to microfilming.  But he was not convinced
+that electronic images constitute a serious attempt to represent text in
+electronic form.  HOCKEY and MYLONAS also conceded that their experience
+at the Pierce Symposium the previous week at Georgetown University and
+the present conference at the Library of Congress had compelled them to
+reevaluate their perspective on the usefulness of text as images. 
+Attendees could see that the text and image advocates were in
+constructive tension, so to say.
+
+Three nonTEI presentations described approaches to preparing
+machine-readable text that are less rigorous and thus less expensive.  In
+the case of the Papers of George Washington, Dorothy TWOHIG explained
+that the digital version will provide a not-quite-perfect rendering of
+the transcribed text--some 135,000 documents, available for research
+during the decades while the perfect or print version is completed. 
+Members of the American Memory team and the staff of NAL's Text
+Digitization Program (see below) also outlined a middle ground concerning
+searchable texts.  In the case of American Memory, contractors produce
+texts with about 99-percent accuracy that serve as "browse" or
+"reference" versions of written or printed originals.  End users who need
+faithful copies or perfect renditions must refer to accompanying sets of
+digital facsimile images or consult copies of the originals in a nearby
+library or archive.  American Memory staff argued that the high cost of
+producing 100-percent accurate copies would prevent LC from offering
+access to large parts of its collections.
+
+
+THE MACHINE-READABLE TEXT:  METHODS OF CONVERSION
+
+Although the Workshop did not include a systematic examination of the
+methods for converting texts from paper (or from facsimile images) into
+machine-readable form, nevertheless, various speakers touched upon this
+matter.  For example, WEIBEL reported that OCLC has experimented with a
+merging of multiple optical character recognition systems that will
+reduce errors from an unacceptable rate of 5 characters out of every
+l,000 to an unacceptable rate of 2 characters out of every l,000.
+
+Pamela ANDRE presented an overview of NAL's Text Digitization Program and
+Judith ZIDAR discussed the technical details.  ZIDAR explained how NAL
+purchased hardware and software capable of performing optical character
+recognition (OCR) and text conversion and used its own staff to convert
+texts.  The process, ZIDAR said, required extensive editing and project
+staff found themselves considering alternatives, including rekeying
+and/or creating abstracts or summaries of texts.  NAL reckoned costs at
+$7 per page.  By way of contrast, Ricky ERWAY explained that American
+Memory had decided from the start to contract out conversion to external
+service bureaus.  The criteria used to select these contractors were cost
+and quality of results, as opposed to methods of conversion.  ERWAY noted
+that historical documents or books often do not lend themselves to OCR. 
+Bound materials represent a special problem.  In her experience, quality
+control--inspecting incoming materials, counting errors in samples--posed
+the most time-consuming aspect of contracting out conversion.  ERWAY
+reckoned American Memory's costs at $4 per page, but cautioned that fewer
+cost-elements had been included than in NAL's figure.
+
+
+OPTIONS FOR DISSEMINATION
+
+The topic of dissemination proper emerged at various points during the
+Workshop.  At the session devoted to national and international computer
+networks, LYNCH, Howard BESSER, Ronald LARSEN, and Edwin BROWNRIGG
+highlighted the virtues of Internet today and of the network that will
+evolve from Internet.  Listeners could discern in these narratives a
+vision of an information democracy in which millions of citizens freely
+find and use what they need.  LYNCH noted that a lack of standards
+inhibits disseminating multimedia on the network, a topic also discussed
+by BESSER.  LARSEN addressed the issues of network scalability and
+modularity and commented upon the difficulty of anticipating the effects
+of growth in orders of magnitude.  BROWNRIGG talked about the ability of
+packet radio to provide certain links in a network without the need for
+wiring.  However, the presenters also called attention to the
+shortcomings and incongruities of present-day computer networks.  For
+example:  1) Network use is growing dramatically, but much network
+traffic consists of personal communication (E-mail).  2) Large bodies of
+information are available, but a user's ability to search across their
+entirety is limited.  3) There are significant resources for science and
+technology, but few network sources provide content in the humanities. 
+4) Machine-readable texts are commonplace, but the capability of the
+system to deal with images (let alone other media formats) lags behind. 
+A glimpse of a multimedia future for networks, however, was provided by
+Maria LEBRON in her overview of the Online Journal of Current Clinical
+Trials (OJCCT), and the process of scholarly publishing on-line.   
+
+The contrasting form of the CD-ROM disk was never systematically
+analyzed, but attendees could glean an impression from several of the
+show-and-tell presentations.  The Perseus and American Memory examples
+demonstrated recently published disks, while the descriptions of the
+IBYCUS version of the Papers of George Washington and Chadwyck-Healey's
+Patrologia Latina Database (PLD) told of disks to come.  According to
+Eric CALALUCA, PLD's principal focus has been on converting Jacques-Paul
+Migne's definitive collection of Latin texts to machine-readable form. 
+Although everyone could share the network advocates' enthusiasm for an
+on-line future, the possibility of rolling up one's sleeves for a session
+with a CD-ROM containing both textual materials and a powerful retrieval
+engine made the disk seem an appealing vessel indeed.  The overall
+discussion suggested that the transition from CD-ROM to on-line networked
+access may prove far slower and more difficult than has been anticipated.
+
+
+WHO ARE THE USERS AND WHAT DO THEY DO?
+
+Although concerned with the technicalities of production, the Workshop
+never lost sight of the purposes and uses of electronic versions of
+textual materials.  As noted above, those interested in imaging discussed
+the problematical matter of digital preservation, while the TEI proponents
+described how machine-readable texts can be used in research.  This latter
+topic received thorough treatment in the paper read by Avra MICHELSON.
+She placed the phenomenon of electronic texts within the context of
+broader trends in information technology and scholarly communication.
+
+Among other things, MICHELSON described on-line conferences that
+represent a vigorous and important intellectual forum for certain
+disciplines.  Internet now carries more than 700 conferences, with about
+80 percent of these devoted to topics in the social sciences and the
+humanities.  Other scholars use on-line networks for "distance learning." 
+Meanwhile, there has been a tremendous growth in end-user computing;
+professors today are less likely than their predecessors to ask the
+campus computer center to process their data.  Electronic texts are one
+key to these sophisticated applications, MICHELSON reported, and more and
+more scholars in the humanities now work in an on-line environment. 
+Toward the end of the Workshop, Michael LESK presented a corollary to
+MICHELSON's talk, reporting the results of an experiment that compared
+the work of one group of chemistry students using traditional printed
+texts and two groups using electronic sources.  The experiment
+demonstrated that in the event one does not know what to read, one needs
+the electronic systems; the electronic systems hold no advantage at the
+moment if one knows what to read, but neither do they impose a penalty.
+
+DALY provided an anecdotal account of the revolutionizing impact of the
+new technology on his previous methods of research in the field of classics.
+His account, by extrapolation, served to illustrate in part the arguments
+made by MICHELSON concerning the positive effects of the sudden and radical
+transformation being wrought in the ways scholars work.
+
+Susan VECCIA and Joanne FREEMAN delineated the use of electronic
+materials outside the university.  The most interesting aspect of their
+use, FREEMAN said, could be seen as a paradox:  teachers in elementary
+and secondary schools requested access to primary source materials but,
+at the same time, found that "primariness" itself made these materials
+difficult for their students to use.
+
+
+OTHER TOPICS
+
+Marybeth PETERS reviewed copyright law in the United States and offered
+advice during a lively discussion of this subject.  But uncertainty
+remains concerning the price of copyright in a digital medium, because a
+solution remains to be worked out concerning management and synthesis of
+copyrighted and out-of-copyright pieces of a database.
+
+As moderator of the final session of the Workshop, Prosser GIFFORD directed
+discussion to future courses of action and the potential role of LC in
+advancing them.  Among the recommendations that emerged were the following:
+
+     * Workshop participants should 1) begin to think about working
+     with image material, but structure and digitize it in such a
+     way that at a later stage it can be interpreted into text, and
+     2) find a common way to build text and images together so that
+     they can be used jointly at some stage in the future, with
+     appropriate network support, because that is how users will want
+     to access these materials.  The Library might encourage attempts
+     to bring together people who are working on texts and images.
+
+     * A network version of American Memory should be developed or
+     consideration should be given to making the data in it
+     available to people interested in doing network multimedia. 
+     Given the current dearth of digital data that is appealing and
+     unencumbered by extremely complex rights problems, developing a
+     network version of American Memory could do much to help make
+     network multimedia a reality.
+
+     * Concerning the thorny issue of electronic deposit, LC should
+     initiate a catalytic process in terms of distributed
+     responsibility, that is, bring together the distributed
+     organizations and set up a study group to look at all the
+     issues related to electronic deposit and see where we as a
+     nation should move.  For example, LC might attempt to persuade
+     one major library in each state to deal with its state
+     equivalent publisher, which might produce a cooperative project
+     that would be equitably distributed around the country, and one
+     in which LC would be dealing with a minimal number of publishers
+     and minimal copyright problems.  LC must also deal with the
+     concept of on-line publishing, determining, among other things,
+     how serials such as OJCCT might be deposited for copyright.
+
+     * Since a number of projects are planning to carry out
+     preservation by creating digital images that will end up in
+     on-line or near-line storage at some institution, LC might play
+     a helpful role, at least in the near term, by accelerating how
+     to catalog that information into the Research Library Information
+     Network (RLIN) and then into OCLC, so that it would be accessible.
+     This would reduce the possibility of multiple institutions digitizing
+     the same work. 
+
+
+CONCLUSION
+
+The Workshop was valuable because it brought together partisans from
+various groups and provided an occasion to compare goals and methods. 
+The more committed partisans frequently communicate with others in their
+groups, but less often across group boundaries.  The Workshop was also
+valuable to attendees--including those involved with American Memory--who
+came less committed to particular approaches or concepts.  These
+attendees learned a great deal, and plan to select and employ elements of
+imaging, text-coding, and networked distribution that suit their
+respective projects and purposes.
+
+Still, reality rears its ugly head:  no breakthrough has been achieved. 
+On the imaging side, one confronts a proliferation of competing
+data-interchange standards and a lack of consensus on the role of digital
+facsimiles in preservation.  In the realm of machine-readable texts, one
+encounters a reasonably mature standard but methodological difficulties
+and high costs.  These latter problems, of course, represent a special
+impediment to the desire, as it is sometimes expressed in the popular
+press, "to put the [contents of the] Library of Congress on line."  In
+the words of one participant, there was "no solution to the economic
+problems--the projects that are out there are surviving, but it is going
+to be a lot of work to transform the information industry, and so far the
+investment to do that is not forthcoming" (LESK, per litteras).
+
+
+               ***   ***   ***   ******   ***   ***   ***
+
+
+                               PROCEEDINGS
+
+
+WELCOME
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+GIFFORD * Origin of Workshop in current Librarian's desire to make LC's
+collections more widely available * Desiderata arising from the prospect
+of greater interconnectedness *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+After welcoming participants on behalf of the Library of Congress,
+American Memory (AM), and the National Demonstration Lab, Prosser
+GIFFORD, director for scholarly programs, Library of Congress, located
+the origin of the Workshop on Electronic Texts in a conversation he had
+had considerably more than a year ago with Carl FLEISCHHAUER concerning
+some of the issues faced by AM.  On the assumption that numerous other
+people were asking the same questions, the decision was made to bring
+together as many of these people as possible to ask the same questions
+together.  In a deeper sense, GIFFORD said, the origin of the Workshop
+lay in the desire of the current Librarian of Congress, James H. 
+Billington, to make the collections of the Library, especially those
+offering unique or unusual testimony on aspects of the American
+experience, available to a much wider circle of users than those few
+people who can come to Washington to use them.  This meant that the
+emphasis of AM, from the outset, has been on archival collections of the
+basic material, and on making these collections themselves available,
+rather than selected or heavily edited products.
+
+From AM's emphasis followed the questions with which the Workshop began: 
+who will use these materials, and in what form will they wish to use
+them.  But an even larger issue deserving mention, in GIFFORD's view, was
+the phenomenal growth in Internet connectivity.  He expressed the hope
+that the prospect of greater interconnectedness than ever before would
+lead to:  1) much more cooperative and mutually supportive endeavors; 2)
+development of systems of shared and distributed responsibilities to
+avoid duplication and to ensure accuracy and preservation of unique
+materials; and 3) agreement on the necessary standards and development of
+the appropriate directories and indices to make navigation
+straightforward among the varied resources that are, and increasingly
+will be, available.  In this connection, GIFFORD requested that
+participants reflect from the outset upon the sorts of outcomes they
+thought the Workshop might have.  Did those present constitute a group
+with sufficient common interests to propose a next step or next steps,
+and if so, what might those be?  They would return to these questions the
+following afternoon.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+FLEISCHHAUER * Core of Workshop concerns preparation and production of
+materials * Special challenge in conversion of textual materials *
+Quality versus quantity * Do the several groups represented share common
+interests? *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Carl FLEISCHHAUER, coordinator, American Memory, Library of Congress,
+emphasized that he would attempt to represent the people who perform some
+of the work of converting or preparing  materials and that the core of
+the Workshop had to do with preparation and production.  FLEISCHHAUER
+then drew a distinction between the long term, when many things would be
+available and connected in the ways that GIFFORD described, and the short
+term, in which AM not only has wrestled with the issue of what is the
+best course to pursue but also has faced a variety of technical
+challenges.
+
+FLEISCHHAUER remarked AM's endeavors to deal with a wide range of library
+formats, such as motion picture collections, sound-recording collections,
+and pictorial collections of various sorts, especially collections of
+photographs.  In the course of these efforts, AM kept coming back to
+textual materials--manuscripts or rare printed matter, bound materials,
+etc.  Text posed the greatest conversion challenge of all.  Thus, the
+genesis of the Workshop, which reflects the problems faced by AM.  These
+problems include physical problems.  For example, those in the library
+and archive business deal with collections made up of fragile and rare
+manuscript items, bound materials, especially the notoriously brittle
+bound materials of the late nineteenth century.  These are precious
+cultural artifacts, however, as well as interesting sources of
+information, and LC desires to retain and conserve them.  AM needs to
+handle things without damaging them.  Guillotining a book to run it
+through a sheet feeder must be avoided at all costs.
+
+Beyond physical problems, issues pertaining to quality arose.  For
+example, the desire to provide users with a searchable text is affected
+by the question of acceptable level of accuracy.  One hundred percent
+accuracy is tremendously expensive.  On the other hand, the output of
+optical character recognition (OCR) can be tremendously inaccurate. 
+Although AM has attempted to find a middle ground, uncertainty persists
+as to whether or not it has discovered the right solution.
+
+Questions of quality arose concerning images as well.  FLEISCHHAUER
+contrasted the extremely high level of quality of the digital images in
+the Cornell Xerox Project with AM's efforts to provide a browse-quality
+or access-quality image, as opposed to an archival or preservation image. 
+FLEISCHHAUER therefore welcomed the opportunity to compare notes.
+
+FLEISCHHAUER observed in passing that conversations he had had about
+networks have begun to signal that for various forms of media a
+determination may be made that there is a browse-quality item, or a
+distribution-and-access-quality item that may coexist in some systems
+with a higher quality archival item that would be inconvenient to send
+through the network because of its size.  FLEISCHHAUER referred, of
+course, to images more than to searchable text.
+
+As AM considered those questions, several conceptual issues arose:  ought
+AM occasionally to reproduce materials entirely through an image set, at
+other times, entirely through a text set, and in some cases, a mix? 
+There probably would be times when the historical authenticity of an
+artifact would require that its image be used.  An image might be
+desirable as a recourse for users if one could not provide 100-percent
+accurate text.  Again, AM wondered, as a practical matter, if a
+distinction could be drawn between rare printed matter that might exist
+in multiple collections--that is, in ten or fifteen libraries.  In such
+cases, the need for perfect reproduction would be less than for unique
+items.  Implicit in his remarks, FLEISCHHAUER conceded, was the admission
+that AM has been tilting strongly towards quantity and drawing back a
+little from perfect quality.  That is, it seemed to AM that society would
+be better served if more things were distributed by LC--even if they were
+not quite perfect--than if fewer things, perfectly represented, were
+distributed.  This was stated as a proposition to be tested, with
+responses to be gathered from users.
+
+In thinking about issues related to reproduction of materials and seeing
+other people engaged in parallel activities, AM deemed it useful to
+convene a conference.  Hence, the Workshop.  FLEISCHHAUER thereupon
+surveyed the several groups represented:  1) the world of images (image
+users and image makers); 2) the world of text and scholarship and, within
+this group, those concerned with language--FLEISCHHAUER confessed to finding
+delightful irony in the fact that some of the most advanced thinkers on
+computerized texts are those dealing with ancient Greek and Roman materials;
+3) the network world; and 4) the general world of library science, which
+includes people interested in preservation and cataloging.
+
+FLEISCHHAUER concluded his remarks with special thanks to the David and
+Lucile Packard Foundation for its support of the meeting, the American
+Memory group, the Office for Scholarly Programs, the National
+Demonstration Lab, and the Office of Special Events.  He expressed the
+hope that David Woodley Packard might be able to attend, noting that
+Packard's work and the work of the foundation had sponsored a number of
+projects in the text area.
+
+                                 ******
+
+SESSION I.  CONTENT IN A NEW FORM:   WHO WILL USE IT AND WHAT WILL THEY DO?
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DALY * Acknowledgements * A new Latin authors disk *  Effects of the new
+technology on previous methods of research *       
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Serving as moderator, James DALY acknowledged the generosity of all the
+presenters for giving of their time, counsel, and patience in planning
+the Workshop, as well as of members of the American Memory project and
+other Library of Congress staff, and the David and Lucile Packard
+Foundation and its executive director, Colburn S. Wilbur.
+
+DALY then recounted his visit in March to the Center for Electronic Texts
+in the Humanities (CETH) and the Department of Classics at Rutgers
+University, where an old friend, Lowell Edmunds, introduced him to the
+department's IBYCUS scholarly personal computer, and, in particular, the
+new Latin CD-ROM, containing, among other things, almost all classical
+Latin literary texts through A.D. 200.  Packard Humanities Institute
+(PHI), Los Altos, California, released this disk late in 1991, with a
+nominal triennial licensing fee.
+
+Playing with the disk for an hour or so at Rutgers brought home to DALY
+at once the revolutionizing impact of the new technology on his previous
+methods of research.  Had this disk been available two or three years
+earlier, DALY contended, when he was engaged in preparing a commentary on
+Book 10 of Virgil's Aeneid for Cambridge University Press, he would not
+have required a forty-eight-square-foot table on which to spread the
+numerous, most frequently consulted items, including some ten or twelve
+concordances to key Latin authors, an almost equal number of lexica to
+authors who lacked concordances, and where either lexica or concordances
+were lacking, numerous editions of authors antedating and postdating Virgil.
+
+Nor, when checking each of the average six to seven words contained in
+the Virgilian hexameter for its usage elsewhere in Virgil's works or
+other Latin authors, would DALY have had to maintain the laborious
+mechanical process of flipping through these concordances, lexica, and
+editions each time.  Nor would he have had to frequent as often the
+Milton S. Eisenhower Library at the Johns Hopkins University to consult
+the Thesaurus Linguae Latinae.  Instead of devoting countless hours, or
+the bulk of his research time, to gathering data concerning Virgil's use
+of words, DALY--now freed by PHI's Latin authors disk from the
+tyrannical, yet in some ways paradoxically happy scholarly drudgery--
+would have been able to devote that same bulk of time to analyzing and
+interpreting Virgilian verbal usage.
+
+Citing Theodore Brunner, Gregory Crane, Elli MYLONAS, and Avra MICHELSON,
+DALY argued that this reversal in his style of work, made possible by the
+new technology, would perhaps have resulted in better, more productive
+research.  Indeed, even in the course of his browsing the Latin authors
+disk at Rutgers, its powerful search, retrieval, and highlighting
+capabilities suggested to him several new avenues of research into
+Virgil's use of sound effects.  This anecdotal account, DALY maintained,
+may serve to illustrate in part the sudden and radical transformation
+being wrought in the ways scholars work.
+
+                                 ******
+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+MICHELSON * Elements related to scholarship and technology * Electronic
+texts within the context of broader trends within information technology
+and scholarly communication * Evaluation of the prospects for the use of
+electronic texts * Relationship of electronic texts to processes of
+scholarly communication in humanities research * New exchange formats
+created by scholars * Projects initiated to increase scholarly access to
+converted text * Trend toward making electronic resources available
+through research and education networks * Changes taking place in
+scholarly communication among humanities scholars * Network-mediated
+scholarship transforming traditional scholarly practices * Key
+information technology trends affecting the conduct of scholarly
+communication over the next decade * The trend toward end-user computing
+* The trend toward greater connectivity * Effects of these trends * Key
+transformations taking place * Summary of principal arguments *
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Avra MICHELSON, Archival Research and Evaluation Staff, National Archives
+and Records Administration (NARA), argued that establishing who will use
+electronic texts and what they will use them for involves a consideration
+of both information technology and scholarship trends.  This
+consideration includes several elements related to scholarship and
+technology:  1) the key trends in information technology that are most
+relevant to scholarship; 2) the key trends in the use of currently
+available technology by scholars in the nonscientific community; and 3)
+the relationship between these two very distinct but interrelated trends. 
+The investment in understanding this relationship being made by
+information providers, technologists, and public policy developers, as
+well as by scholars themselves, seems to be pervasive and growing,
+MICHELSON contended.  She drew on collaborative work with Jeff Rothenberg
+on the scholarly use of technology.
+
+MICHELSON sought to place the phenomenon of electronic texts within the
+context of broader trends within information technology and scholarly
+communication.  She argued that electronic texts are of most use to
+researchers to the extent that the researchers' working context (i.e.,
+their relevant bibliographic sources, collegial feedback, analytic tools,
+notes, drafts, etc.), along with their field's primary and secondary
+sources, also is accessible in electronic form and can be integrated in
+ways that are unique to the on-line environment.
+
+Evaluation of the prospects for the use of electronic texts includes two
+elements:  1) an examination of the ways in which researchers currently
+are using electronic texts along with other electronic resources, and 2)
+an analysis of key information technology trends that are affecting the
+long-term conduct of scholarly communication.  MICHELSON limited her
+discussion of the use of electronic texts to the practices of humanists
+and noted that the scientific community was outside the panel's overview.
+
+MICHELSON examined the nature of the current relationship of electronic
+texts in particular, and electronic resources in general, to what she
+maintained were, essentially, five processes of scholarly communication
+in humanities research.  Researchers 1) identify sources, 2) communicate
+with their colleagues, 3) interpret and analyze data, 4) disseminate
+their research findings, and 5) prepare curricula to instruct the next
+generation of scholars and students.  This examination would produce a
+clearer understanding of the synergy among these five processes that
+fuels the tendency of the use of electronic resources for one process to
+stimulate its use for other processes of scholarly communication.
+
+For the first process of scholarly communication, the identification of
+sources, MICHELSON remarked the opportunity scholars now enjoy to
+supplement traditional word-of-mouth searches for sources among their
+colleagues with new forms of electronic searching.  So, for example,
+instead of having to visit the library, researchers are able to explore
+descriptions of holdings in their offices.  Furthermore, if their own
+institutions' holdings prove insufficient, scholars can access more than
+200 major American library catalogues over Internet, including the
+universities of California, Michigan, Pennsylvania, and Wisconsin. 
+Direct access to the bibliographic databases offers intellectual
+empowerment to scholars by presenting a comprehensive means of browsing
+through libraries from their homes and offices at their convenience.
+
+The second process of communication involves communication among
+scholars.  Beyond the most common methods of communication, scholars are
+using E-mail and a variety of new electronic communications formats
+derived from it for further academic interchange.  E-mail exchanges are
+growing at an astonishing rate, reportedly 15 percent a month.  They
+currently constitute approximately half the traffic on research and
+education networks.  Moreover, the global spread of E-mail has been so
+rapid that it is now possible for American scholars to use it to
+communicate with colleagues in close to 140 other countries.
+
+Other new exchange formats created by scholars and operating on Internet
+include more than 700 conferences, with about 80 percent of these devoted
+to topics in the social sciences and humanities.  The rate of growth of
+these scholarly electronic conferences also is astonishing.  From l990 to
+l991, 200 new conferences were identified on Internet.  From October 1991
+to June 1992, an additional 150 conferences in the social sciences and
+humanities were added to this directory of listings.  Scholars have
+established conferences in virtually every field, within every different
+discipline.  For example, there are currently close to 600 active social
+science and humanities  conferences on topics such as art and
+architecture, ethnomusicology, folklore, Japanese culture, medical
+education, and gifted and talented education.  The appeal to scholars of
+communicating through these conferences is that, unlike any other medium,
+electronic conferences today provide a forum for global communication
+with peers at the front end of the research process.
+
+Interpretation and analysis of sources constitutes the third process of
+scholarly communication that MICHELSON discussed in terms of texts and
+textual resources.  The methods used to analyze sources fall somewhere on
+a continuum from quantitative analysis to qualitative analysis. 
+Typically, evidence is culled and evaluated using methods drawn from both
+ends of this continuum.  At one end, quantitative analysis involves the
+use of mathematical processes such as a count of frequencies and
+distributions of occurrences or, on a higher level, regression analysis. 
+At the other end of the continuum, qualitative analysis typically
+involves nonmathematical processes oriented toward language
+interpretation or the building of theory.  Aspects of this work involve
+the processing--either manual or computational--of large and sometimes
+massive amounts of textual sources, although the use of nontextual
+sources as evidence, such as photographs, sound recordings, film footage,
+and artifacts, is significant as well.
+
+Scholars have discovered that many of the methods of interpretation and
+analysis that are related to both quantitative and qualitative methods
+are processes that can be performed by computers.  For example, computers
+can count.  They can count brush strokes used in a Rembrandt painting or
+perform regression analysis for understanding cause and effect.  By means
+of advanced technologies, computers can recognize patterns, analyze text,
+and model concepts.  Furthermore, computers can complete these processes
+faster with more sources and with greater precision than scholars who
+must rely on manual interpretation of data.  But if scholars are to use
+computers for these processes, source materials must be in a form
+amenable to computer-assisted analysis.  For this reason many scholars,
+once they have identified the sources that are key to their research, are
+converting them to machine-readable form.  Thus, a representative example
+of the numerous textual conversion projects organized by scholars around
+the world in recent years to support computational text analysis is the
+TLG, the Thesaurus Linguae Graecae.  This project is devoted to
+converting the extant ancient texts of classical Greece.  (Editor's note: 
+according to the TLG Newsletter of May l992, TLG was in use in thirty-two
+different countries.  This figure updates MICHELSON's previous count by one.)
+
+The scholars performing these conversions have been asked to recognize
+that the electronic sources they are converting for one use possess value
+for other research purposes as well.  As a result, during the past few
+years, humanities scholars have initiated a number of projects to
+increase scholarly access to converted text.  So, for example, the Text
+Encoding Initiative (TEI), about which more is said later in the program,
+was established as an effort by scholars to determine standard elements
+and methods for encoding machine-readable text for electronic exchange. 
+In a second effort to facilitate the sharing of converted text, scholars
+have created a new institution, the Center for Electronic Texts in the
+Humanities (CETH).  The center estimates that there are 8,000 series of
+source texts in the humanities that have been converted to
+machine-readable form worldwide.  CETH is undertaking an international
+search for converted text in the humanities, compiling it into an
+electronic library, and preparing bibliographic descriptions of the
+sources for the Research Libraries Information Network's (RLIN)
+machine-readable data file.  The library profession has begun to initiate
+large conversion projects as well, such as American Memory.
+
+While scholars have been making converted text available to one another,
+typically on disk or on CD-ROM, the clear trend is toward making these
+resources available through research and education networks.  Thus, the
+American and French Research on the Treasury of the French Language
+(ARTFL) and the Dante Project are already available on Internet. 
+MICHELSON summarized this section on interpretation and analysis by
+noting that:  1) increasing numbers of humanities scholars in the library
+community are recognizing the importance to the advancement of
+scholarship of retrospective conversion of source materials in the arts
+and humanities; and 2) there is a growing realization that making the
+sources available on research and education networks maximizes their
+usefulness for the analysis performed by humanities scholars.
+
+The fourth process of scholarly communication is dissemination of
+research findings, that is, publication.  Scholars are using existing
+research and education networks to engineer a new type of publication: 
+scholarly-controlled journals that are electronically produced and
+disseminated.  Although such journals are still emerging as a
+communication format, their number has grown, from approximately twelve
+to thirty-six during the past year (July 1991 to June 1992).  Most of
+these electronic scholarly journals are devoted to topics in the
+humanities.  As with network conferences, scholarly enthusiasm for these
+electronic journals stems from the medium's unique ability to advance
+scholarship in a way that no other medium can do by supporting global
+feedback and interchange, practically in real time, early in the research
+process.  Beyond scholarly journals, MICHELSON remarked the delivery of
+commercial full-text products, such as articles in professional journals,
+newsletters, magazines, wire services, and reference sources.  These are
+being delivered via on-line local library catalogues, especially through
+CD-ROMs.  Furthermore, according to MICHELSON, there is general optimism
+that the copyright and fees issues impeding the delivery of full text on
+existing research and education networks soon will be resolved.
+
+The final process of scholarly communication is curriculum development
+and instruction, and this involves the use of computer information
+technologies in two areas.  The first is the development of
+computer-oriented instructional tools, which includes simulations,
+multimedia applications, and computer tools that are used to assist in
+the analysis of sources in the classroom, etc.  The Perseus Project, a
+database that provides a multimedia curriculum on classical Greek
+civilization, is a good example of the way in which entire curricula are
+being recast using information technologies.  It is anticipated that the
+current difficulty in exchanging electronically computer-based
+instructional software, which in turn makes it difficult for one scholar
+to build upon the work of others, will be resolved before too long. 
+Stand-alone curricular applications that involve electronic text will be
+sharable through networks, reinforcing their significance as intellectual
+products as well as instructional tools.
+
+The second aspect of electronic learning involves the use of research and
+education networks for distance education programs.  Such programs
+interactively link teachers with students in geographically scattered
+locations and rely on the availability of electronic instructional
+resources.  Distance education programs are gaining wide appeal among
+state departments of education because of their demonstrated capacity to
+bring advanced specialized course work and an array of experts to many
+classrooms.  A recent report found that at least 32 states operated at
+least one statewide network for education in 1991, with networks under
+development in many of the remaining states.
+
+MICHELSON summarized this section by noting two striking changes taking
+place in scholarly communication among humanities scholars.  First is the
+extent to which electronic text in particular, and electronic resources
+in general, are being infused into each of the five processes described
+above.  As mentioned earlier, there is a certain synergy at work here. 
+The use of electronic resources for one process tends to stimulate its
+use for other processes, because the chief course of movement is toward a
+comprehensive on-line working context for humanities scholars that
+includes on-line availability of key bibliographies, scholarly feedback,
+sources, analytical tools, and publications.  MICHELSON noted further
+that the movement toward a comprehensive on-line working context for
+humanities scholars is not new.  In fact, it has been underway for more
+than forty years in the humanities, since Father Roberto Busa began
+developing an electronic concordance of the works of Saint Thomas Aquinas
+in 1949.  What we are witnessing today, MICHELSON contended, is not the
+beginning of this on-line transition but, for at least some humanities
+scholars, the turning point in the transition from a print to an
+electronic working context.  Coinciding with the on-line transition, the
+second striking change is the extent to which research and education
+networks are becoming the new medium of scholarly communication.  The
+existing Internet and the pending National Education and Research Network
+(NREN) represent the new meeting ground where scholars are going for
+bibliographic information, scholarly dialogue and feedback, the most
+current publications in their field, and high-level educational
+offerings.  Traditional scholarly practices are undergoing tremendous
+transformations as a result of the emergence and growing prominence of
+what is called network-mediated scholarship.
+
+MICHELSON next turned to the second element of the framework she proposed
+at the outset of her talk for evaluating the prospects for electronic
+text, namely the key information technology trends affecting the conduct
+of scholarly communication over the next decade:  1) end-user computing
+and 2) connectivity.
+
+End-user computing means that the person touching the keyboard, or
+performing computations, is the same as the person who initiates or
+consumes the computation.  The emergence of personal computers, along
+with a host of other forces, such as ubiquitous computing, advances in
+interface design, and the on-line transition, is prompting the consumers
+of computation to do their own computing, and is thus rendering obsolete
+the traditional distinction between end users and ultimate users.
+
+The trend toward end-user computing is significant to consideration of
+the prospects for electronic texts because it means that researchers are
+becoming more adept at doing their own computations and, thus, more
+competent in the use of electronic media.  By avoiding programmer
+intermediaries, computation is becoming central to the researcher's
+thought process.  This direct involvement in computing is changing the
+researcher's perspective on the nature of research itself, that is, the
+kinds of questions that can be posed, the analytical methodologies that
+can be used, the types and amount of sources that are appropriate for
+analyses, and the form in which findings are presented.  The trend toward
+end-user computing means that, increasingly, electronic media and
+computation are being infused into all processes of humanities
+scholarship, inspiring remarkable transformations in scholarly
+communication.
+
+The trend toward greater connectivity suggests that researchers are using
+computation increasingly in network environments.  Connectivity is
+important to scholarship because it erases the distance that separates
+students from teachers and scholars from their colleagues, while allowing
+users to access remote databases, share information in many different
+media, connect to their working context wherever they are, and
+collaborate in all phases of research.
+
+The combination of the trend toward end-user computing and the trend
+toward connectivity suggests that the scholarly use of electronic
+resources, already evident among some researchers, will soon become an
+established feature of scholarship.  The effects of these trends, along
+with ongoing changes in scholarly practices, point to a future in which
+humanities researchers will use computation and electronic communication
+to help them formulate ideas, access sources, perform research,
+collaborate with colleagues, seek peer review, publish and disseminate
+results, and engage in many other professional and educational activities.
+
+In summary, MICHELSON emphasized four points:  1) A portion of humanities
+scholars already consider electronic texts the preferred format for
+analysis and dissemination.  2) Scholars are using these electronic
+texts, in conjunction with other electronic resources, in all the
+processes of scholarly communication.  3) The humanities scholars'
+working context is in the process of changing from print technology to
+electronic technology, in many ways mirroring transformations that have
+occurred or are occurring within the scientific community.  4) These
+changes are occurring in conjunction with the development of a new
+communication medium:  research and education networks that are
+characterized by their capacity to advance scholarship in a wholly unique
+way.
+
+MICHELSON also reiterated her three principal arguments:  l) Electronic
+texts are best understood in terms of the relationship to other
+electronic resources and the growing prominence of network-mediated
+scholarship.  2) The prospects for electronic texts lie in their capacity
+to be integrated into the on-line network of electronic resources that
+comprise the new working context for scholars.  3) Retrospective conversion
+of portions of the scholarly record should be a key strategy as information
+providers respond to changes in scholarly communication practices.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+VECCIA * AM's evaluation project and public users of electronic resources
+* AM and its design * Site selection and evaluating the Macintosh
+implementation of AM * Characteristics of the six public libraries
+selected * Characteristics of AM's users in these libraries * Principal
+ways AM is being used *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Susan VECCIA, team leader, and Joanne FREEMAN, associate coordinator,
+American Memory, Library of Congress, gave a joint presentation.  First,
+by way of introduction, VECCIA explained her and FREEMAN's roles in
+American Memory (AM).  Serving principally as an observer, VECCIA has
+assisted with the evaluation project of AM, placing AM collections in a
+variety of different sites around the country and helping to organize and
+implement that project.  FREEMAN has been an associate coordinator of AM
+and has been involved principally with the interpretative materials,
+preparing some of the electronic exhibits and printed historical
+information that accompanies AM and that is requested by users.  VECCIA
+and FREEMAN shared anecdotal observations concerning AM with public users
+of electronic resources.  Notwithstanding a fairly structured evaluation
+in progress, both VECCIA and FREEMAN chose not to report on specifics in
+terms of numbers, etc., because they felt it was too early in the
+evaluation project to do so.
+
+AM is an electronic archive of primary source materials from the Library
+of Congress, selected collections representing a variety of formats--
+photographs, graphic arts, recorded sound, motion pictures, broadsides,
+and soon, pamphlets and books.  In terms of the design of this system,
+the interpretative exhibits have been kept separate from the primary
+resources, with good reason.  Accompanying this collection are printed
+documentation and user guides, as well as guides that FREEMAN prepared for
+teachers so that they may begin using the content of the system at once.
+
+VECCIA described the evaluation project before talking about the public
+users of AM, limiting her remarks to public libraries, because FREEMAN
+would talk more specifically about schools from kindergarten to twelfth
+grade (K-12).   Having started in spring 1991, the evaluation currently
+involves testing of the Macintosh implementation of AM.  Since the
+primary goal of this evaluation is to determine the most appropriate
+audience or audiences for AM, very different sites were selected.  This
+makes evaluation difficult because of the varying degrees of technology
+literacy among the sites.  AM is situated in forty-four locations, of
+which six are public libraries and sixteen are schools.  Represented
+among the schools are elementary, junior high, and high schools.
+District offices also are involved in the evaluation, which will
+conclude in summer 1993.
+
+VECCIA focused the remainder of her talk on the six public libraries, one
+of which doubles as a state library.  They represent a range of
+geographic areas and a range of demographic characteristics.  For
+example, three are located in urban settings, two in rural settings, and
+one in a suburban setting.  A range of technical expertise is to be found
+among these facilities as well.  For example, one is an "Apple library of
+the future," while two others are rural one-room libraries--in one, AM
+sits at the front desk next to a tractor manual.
+
+All public libraries have been extremely enthusiastic, supportive, and
+appreciative of the work that AM has been doing.  VECCIA characterized
+various users:  Most users in public libraries describe themselves as
+general readers; of the students who use AM in the public libraries,
+those in fourth grade and above seem most interested.  Public libraries
+in rural sites tend to attract retired people, who have been highly
+receptive to AM.  Users tend to fall into two additional categories: 
+people interested in the content and historical connotations of these
+primary resources, and those fascinated by the technology.  The format
+receiving the most comments has been motion pictures.  The adult users in
+public libraries are more comfortable with IBM computers, whereas young
+people seem comfortable with either IBM or Macintosh, although most of
+them seem to come from a Macintosh background.  This same tendency is
+found in the schools.
+
+What kinds of things do users do with AM?  In a public library there are
+two main goals or ways that AM is being used:  as an individual learning
+tool, and as a leisure activity.  Adult learning was one area that VECCIA
+would highlight as a possible application for a tool such as AM.  She
+described a patron of a rural public library who comes in every day on
+his lunch hour and literally reads AM, methodically going through the
+collection image by image.  At the end of his hour he makes an electronic
+bookmark, puts it in his pocket, and returns to work.  The next day he
+comes in and resumes where he left off.  Interestingly, this man had
+never been in the library before he used AM.  In another small, rural
+library, the coordinator reports that AM is a popular activity for some
+of the older, retired people in the community, who ordinarily would not
+use "those things,"--computers.  Another example of adult learning in
+public libraries is book groups, one of which, in particular, is using AM
+as part of its reading on industrialization, integration, and urbanization
+in the early 1900s.
+
+One library reports that a family is using AM to help educate their
+children.  In another instance, individuals from a local museum came in
+to use AM to prepare an exhibit on toys of the past.  These two examples
+emphasize the mission of the public library as a cultural institution,
+reaching out to people who do not have the same resources available to
+those who live in a metropolitan area or have access to a major library. 
+One rural library reports that junior high school students in large
+numbers came in one afternoon to use AM for entertainment.  A number of
+public libraries reported great interest among postcard collectors in the
+Detroit collection, which was essentially a collection of images used on
+postcards around the turn of the century.  Train buffs are similarly
+interested because that was a time of great interest in railroading. 
+People, it was found, relate to things that they know of firsthand.  For
+example, in both rural public libraries where AM was made available,
+observers reported that the older people with personal remembrances of
+the turn of the century were gravitating to the Detroit collection. 
+These examples served to underscore MICHELSON's observation re the
+integration of electronic tools and ideas--that people learn best when
+the material relates to something they know.
+
+VECCIA made the final point that in many cases AM serves as a
+public-relations tool for the public libraries that are testing it.  In
+one case, AM is being used as a vehicle to secure additional funding for
+the library.  In another case, AM has served as an inspiration to the
+staff of a major local public library in the South to think about ways to
+make its own collection of photographs more accessible to the public.
+
+                                  ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+FREEMAN * AM and archival electronic resources in a school environment *
+Questions concerning context * Questions concerning the electronic format
+itself * Computer anxiety * Access and availability of the system *
+Hardware * Strengths gained through the use of archival resources in
+schools *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Reiterating an observation made by VECCIA, that AM is an archival
+resource made up of primary materials with very little interpretation,
+FREEMAN stated that the project has attempted to bridge the gap between
+these bare primary materials and a school environment, and in that cause
+has created guided introductions to AM collections.  Loud demand from the
+educational community,  chiefly from teachers working with the upper
+grades of elementary school through high school, greeted the announcement
+that AM would be tested around the country.
+
+FREEMAN reported not only on what was learned about AM in a school
+environment, but also on several universal questions that were raised
+concerning archival electronic resources in schools.  She discussed
+several strengths of this type of material in a school environment as
+opposed to a highly structured resource that offers a limited number of
+paths to follow.
+
+FREEMAN first raised several questions about using AM in a school
+environment.  There is often some difficulty in developing a sense of
+what the system contains.  Many students sit down at a computer resource
+and assume that, because AM comes from the Library of Congress, all of
+American history is now at their fingertips.  As a result of that sort of
+mistaken judgment, some students are known to conclude that AM contains
+nothing of use to them when they look for one or two things and do not
+find them.  It is difficult to discover that middle ground where one has
+a sense of what the system contains.  Some students grope toward the idea
+of an archive, a new idea to them, since they have not previously
+experienced what it means to have access to a vast body of somewhat
+random information.
+
+Other questions raised by FREEMAN concerned the electronic format itself. 
+For instance, in a school environment it is often difficult both for
+teachers and students to gain a sense of what it is they are viewing. 
+They understand that it is a visual image, but they do not necessarily
+know that it is a postcard from the turn of the century, a panoramic
+photograph, or even machine-readable text of an eighteenth-century
+broadside, a twentieth-century printed book, or a nineteenth-century
+diary.  That distinction is often difficult for people in a school
+environment to grasp.  Because of that, it occasionally becomes difficult
+to draw conclusions from what one is viewing.
+
+FREEMAN also noted the obvious fear of the computer, which constitutes a
+difficulty in using an electronic resource.  Though students in general
+did not suffer from this anxiety, several older students feared that they
+were computer-illiterate, an assumption that became self-fulfilling when
+they searched for something but failed to find it.  FREEMAN said she
+believed that some teachers also fear computer resources, because they
+believe they lack complete control.  FREEMAN related the example of
+teachers shooing away students because it was not their time to use the
+system.  This was a case in which the situation had to be extremely
+structured so that the teachers would not feel that they had lost their
+grasp on what the system contained.
+
+A final question raised by FREEMAN concerned access and availability of
+the system.  She noted the occasional existence of a gap in communication
+between school librarians and teachers.  Often AM sits in a school
+library and the librarian is the person responsible for monitoring the
+system.  Teachers do not always take into their world new library
+resources about which the librarian is excited.  Indeed, at the sites
+where AM had been used most effectively within a library, the librarian
+was required to go to specific teachers and instruct them in its use.  As
+a result, several AM sites will have in-service sessions over a summer,
+in the hope that perhaps, with a more individualized link, teachers will
+be more likely to use the resource.
+
+A related issue in the school context concerned the number of
+workstations available at any one location.  Centralization of equipment
+at the district level, with teachers invited to download things and walk
+away with them, proved unsuccessful because the hours these offices were
+open were also school hours.
+
+Another issue was hardware.  As VECCIA observed, a range of sites exists,
+some technologically advanced and others essentially acquiring their
+first computer for the primary purpose of using it in conjunction with
+AM's testing.  Users at technologically sophisticated sites want even
+more sophisticated hardware, so that they can perform even more
+sophisticated tasks with the materials in AM.  But once they acquire a
+newer piece of hardware, they must learn how to use that also; at an
+unsophisticated site it takes an extremely long time simply to become
+accustomed to the computer, not to mention the program offered with the
+computer.  All of these small issues raise one large question, namely,
+are systems like AM truly rewarding in a school environment, or do they
+simply act as innovative toys that do little more than spark interest?
+
+FREEMAN contended that the evaluation project has revealed several strengths
+that were gained through the use of archival resources in schools, including:
+
+     * Psychic rewards from using AM as a vast, rich database, with
+     teachers assigning various projects to students--oral presentations,
+     written reports, a documentary, a turn-of-the-century newspaper--
+     projects that start with the materials in AM but are completed using
+     other resources; AM thus is used as a research tool in conjunction
+     with other electronic resources, as well as with books and items in
+     the library where the system is set up.
+
+     * Students are acquiring computer literacy in a humanities context.
+
+     * This sort of system is overcoming the isolation between disciplines
+     that often exists in schools.  For example, many English teachers are
+     requiring their students to write papers on historical topics
+     represented in AM.  Numerous teachers have reported that their
+     students are learning critical thinking skills using the system.
+
+     * On a broader level, AM is introducing primary materials, not only
+     to students but also to teachers, in an environment where often
+     simply none exist--an exciting thing for the students because it
+     helps them learn to conduct research, to interpret, and to draw
+     their own conclusions.  In learning to conduct research and what it
+     means, students are motivated to seek knowledge.  That relates to
+     another positive outcome--a high level of personal involvement of
+     students with the materials in this system and greater motivation to
+     conduct their own research and draw their own conclusions.
+
+     * Perhaps the most ironic strength of these kinds of archival
+     electronic resources is that many of the teachers AM interviewed
+     were desperate, it is no exaggeration to say, not only for primary
+     materials but for unstructured primary materials.  These would, they
+     thought, foster personally motivated research, exploration, and
+     excitement in their students.  Indeed, these materials have done
+     just that.  Ironically, however, this lack of structure produces
+     some of the confusion to which the newness of these kinds of
+     resources may also contribute.  The key to effective use of archival
+     products in a school environment is a clear, effective introduction
+     to the system and to what it contains. 
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Nothing known, quantitatively, about the number of
+humanities scholars who must see the original versus those who would
+settle for an edited transcript, or about the ways in which humanities
+scholars are using information technology * Firm conclusions concerning
+the manner and extent of the use of supporting materials in print
+provided by AM to await completion of evaluative study * A listener's
+reflections on additional applications of electronic texts * Role of
+electronic resources in teaching elementary research skills to students *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+During the discussion that followed the presentations by MICHELSON,
+VECCIA, and FREEMAN, additional points emerged.
+
+LESK asked if MICHELSON could give any quantitative estimate of the
+number of humanities scholars who must see or want to see the original,
+or the best possible version of the material, versus those who typically
+would settle for an edited transcript.  While unable to provide a figure,
+she offered her impressions as an archivist who has done some reference
+work and has discussed this issue with other archivists who perform
+reference, that those who use archives and those who use primary sources
+for what would be considered very high-level scholarly research, as
+opposed to, say, undergraduate papers, were few in number, especially
+given the public interest in using primary sources to conduct
+genealogical or avocational research and the kind of professional
+research done by people in private industry or the federal government. 
+More important in MICHELSON's view was that, quantitatively, nothing is
+known about the ways in which, for example, humanities scholars are using
+information technology.  No studies exist to offer guidance in creating
+strategies.  The most recent study was conducted in 1985 by the American
+Council of Learned Societies (ACLS), and what it showed was that 50
+percent of humanities scholars at that time were using computers.  That
+constitutes the extent of our knowledge.
+
+Concerning AM's strategy for orienting people toward the scope of
+electronic resources, FREEMAN could offer no hard conclusions at this
+point, because she and her colleagues were still waiting to see,
+particularly in the schools, what has been made of their efforts.  Within
+the system, however, AM has provided what are called electronic exhibits-
+-such as introductions to time periods and materials--and these are
+intended to offer a student user a sense of what a broadside is  and what
+it might tell her or him.  But FREEMAN conceded that the project staff
+would have to talk with students next year, after teachers have had a
+summer to use the materials, and attempt to discover what the students
+were learning from the materials.  In addition, FREEMAN described
+supporting materials in print provided by AM at the request of local
+teachers during a meeting held at LC.  These included time lines,
+bibliographies, and other materials that could be reproduced on a
+photocopier in a classroom.  Teachers could walk away with and use these,
+and in this way gain a better understanding of the contents.  But again,
+reaching firm conclusions concerning the manner and extent of their use
+would have to wait until next year.
+
+As to the changes she saw occurring at the National Archives and Records
+Administration (NARA) as a result of the increasing emphasis on
+technology in scholarly research, MICHELSON stated that NARA at this
+point was absorbing the report by her and Jeff Rothenberg addressing
+strategies for the archival profession in general, although not for the
+National Archives specifically.  NARA is just beginning to establish its
+role and what it can do.  In terms of changes and initiatives that NARA
+can take, no clear response could be given at this time.
+
+GREENFIELD remarked two trends mentioned in the session.  Reflecting on
+DALY's opening comments on how he could have used a Latin collection of
+text in an electronic form, he said that at first he thought most scholars
+would be unwilling to do that.  But as he thought of that in terms of the
+original meaning of research--that is, having already mastered these texts,
+researching them for critical and comparative purposes--for the first time,
+the electronic format made a lot of sense.  GREENFIELD could envision
+growing numbers of scholars learning the new technologies for that very
+aspect of their scholarship and for convenience's sake.
+
+Listening to VECCIA and FREEMAN, GREENFIELD thought of an additional
+application of electronic texts.  He realized that AM could be used as a
+guide to lead someone to original sources.  Students cannot be expected
+to have mastered these sources, things they have never known about
+before.  Thus, AM is leading them, in theory, to a vast body of
+information and giving them a superficial overview of it, enabling them
+to select parts of it.  GREENFIELD asked if any evidence exists that this
+resource will indeed teach the new user, the K-12 students, how to do
+research.  Scholars already know how to do research and are applying
+these new tools.  But he wondered why students would go beyond picking
+out things that were most exciting to them.
+
+FREEMAN conceded the correctness of GREENFIELD's observation as applied
+to a school environment.  The risk is that a student would sit down at a
+system, play with it, find some things of interest, and then walk away. 
+But in the relatively controlled situation of a school library, much will
+depend on the instructions a teacher or a librarian gives a student.  She
+viewed the situation not as one of fine-tuning research skills but of
+involving students at a personal level in understanding and researching
+things.  Given the guidance one can receive at school, it then becomes
+possible to teach elementary research skills to students, which in fact
+one particular librarian said she was teaching her fifth graders. 
+FREEMAN concluded that introducing the idea of following one's own path
+of inquiry, which is essentially what research entails, involves more
+than teaching specific skills.  To these comments VECCIA added the
+observation that the individual teacher and the use of a creative
+resource, rather than AM itself, seemed to make the key difference.
+Some schools and some teachers are making excellent use of the nature
+of critical thinking and teaching skills, she said.
+
+Concurring with these remarks, DALY closed the session with the thought that
+the more that producers produced for teachers and for scholars to use with
+their students, the more successful their electronic products would prove.
+
+                                 ******
+
+SESSION II.  SHOW AND TELL
+
+Jacqueline HESS, director, National Demonstration Laboratory, served as
+moderator of the "show-and-tell" session.  She noted that a
+question-and-answer period would follow each presentation.
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+MYLONAS * Overview and content of Perseus * Perseus' primary materials
+exist in a system-independent, archival form * A concession * Textual
+aspects of Perseus * Tools to use with the Greek text * Prepared indices
+and full-text searches in Perseus * English-Greek word search leads to
+close study of words and concepts * Navigating Perseus by tracing down
+indices * Using the iconography to perform research *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Elli MYLONAS, managing editor, Perseus Project, Harvard University, first
+gave an overview of Perseus, a large, collaborative effort based at
+Harvard University but with contributors and collaborators located at
+numerous universities and colleges in the United States (e.g., Bowdoin,
+Maryland, Pomona, Chicago, Virginia).  Funded primarily by the
+Annenberg/CPB Project, with additional funding from Apple, Harvard, and
+the Packard Humanities Institute, among others, Perseus is a multimedia,
+hypertextual database for teaching and research on classical Greek
+civilization, which was released in February 1992 in version 1.0 and
+distributed by Yale University Press.
+
+Consisting entirely of primary materials, Perseus includes ancient Greek
+texts and translations of those texts; catalog entries--that is, museum
+catalog entries, not library catalog entries--on vases, sites, coins,
+sculpture, and archaeological objects; maps; and a dictionary, among
+other sources.  The number of objects and the objects for which catalog
+entries exist are accompanied by thousands of color images, which
+constitute a major feature of the database.  Perseus contains
+approximately 30 megabytes of text, an amount that will double in
+subsequent versions.  In addition to these primary materials, the Perseus
+Project has been building tools for using them, making access and
+navigation easier, the goal being to build part of the electronic
+environment discussed earlier in the morning in which students or
+scholars can work with their sources.
+
+The demonstration of Perseus will show only a fraction of the real work
+that has gone into it, because the project had to face the dilemma of
+what to enter when putting something into machine-readable form:  should
+one aim for very high quality or make concessions in order to get the
+material in?  Since Perseus decided to opt for very high quality, all of
+its primary materials exist in a system-independent--insofar as it is
+possible to be system-independent--archival form.  Deciding what that
+archival form would be and attaining it required much work and thought. 
+For example, all the texts are marked up in SGML, which will be made
+compatible with the guidelines of the Text Encoding Initiative (TEI) when
+they are issued.
+
+Drawings are postscript files, not meeting international standards, but
+at least designed to go across platforms.  Images, or rather the real
+archival forms, consist of the best available slides, which are being
+digitized.  Much of the catalog material exists in database form--a form
+that the average user could use, manipulate, and display on a personal
+computer, but only at great cost.  Thus, this is where the concession
+comes in:  All of this rich, well-marked-up information is stripped of
+much of its content; the images are converted into bit-maps and the text
+into small formatted chunks.  All this information can then be imported
+into HyperCard and run on a mid-range Macintosh, which is what Perseus
+users have.  This fact has made it possible for Perseus to attain wide
+use fairly rapidly.  Without those archival forms the HyperCard version
+being demonstrated could not be made easily, and the project could not
+have the potential to move to other forms and machines and software as
+they appear, none of which information is in Perseus on the CD.
+
+Of the numerous multimedia aspects of Perseus, MYLONAS focused on the
+textual.  Part of what makes Perseus such a pleasure to use, MYLONAS
+said, is this effort at seamless integration and the ability to move
+around both visual and textual material.  Perseus also made the decision
+not to attempt to interpret its material any more than one interprets by
+selecting.  But, MYLONAS emphasized, Perseus is not courseware:  No
+syllabus exists.  There is no effort to define how one teaches a topic
+using Perseus, although the project may eventually collect papers by
+people who have used it to teach.  Rather, Perseus aims to provide
+primary material in a kind of electronic library, an electronic sandbox,
+so to say, in which students and scholars who are working on this
+material can explore by themselves.  With that, MYLONAS demonstrated
+Perseus, beginning with the Perseus gateway, the first thing one sees
+upon opening Perseus--an effort in part to solve the contextualizing
+problem--which tells the user what the system contains.
+
+MYLONAS demonstrated only a very small portion, beginning with primary
+texts and running off the CD-ROM.  Having selected Aeschylus' Prometheus
+Bound, which was viewable in Greek and English pretty much in the same
+segments together, MYLONAS demonstrated tools to use with the Greek text,
+something not possible with a book:  looking up the dictionary entry form
+of an unfamiliar word in Greek after subjecting it to Perseus'
+morphological analysis for all the texts.  After finding out about a
+word, a user may then decide to see if it is used anywhere else in Greek. 
+Because vast amounts of indexing support all of the primary material, one
+can find out where else all forms of a particular Greek word appear--
+often not a trivial matter because Greek is highly inflected.  Further,
+since the story of Prometheus has to do with the origins of sacrifice, a
+user may wish to study and explore sacrifice in Greek literature; by
+typing sacrifice into a small window, a user goes to the English-Greek
+word list--something one cannot do without the computer (Perseus has
+indexed the definitions of its dictionary)--the string sacrifice appears
+in the definitions of these sixty-five words.  One may then find out
+where any of those words is used in the work(s) of a particular author. 
+The English definitions are not lemmatized.
+
+All of the indices driving this kind of usage were originally devised for
+speed, MYLONAS observed; in other words, all that kind of information--
+all forms of all words, where they exist, the dictionary form they belong
+to--were collected into databases, which will expedite searching.  Then
+it was discovered that one can do things searching in these databases
+that could not be done searching in the full texts.  Thus, although there
+are full-text searches in Perseus, much of the work is done behind the
+scenes, using prepared indices.  Re the indexing that is done behind the
+scenes, MYLONAS pointed out that without the SGML forms of the text, it
+could not be done effectively.  Much of this indexing is based on the
+structures that are made explicit by the SGML tagging.
+
+It was found that one of the things many of Perseus' non-Greek-reading
+users do is start from the dictionary and then move into the close study
+of words and concepts via this kind of English-Greek word search, by which
+means they might select a concept.  This exercise has been assigned to
+students in core courses at Harvard--to study a concept by looking for the
+English word in the dictionary, finding the Greek words, and then finding
+the words in the Greek but, of course, reading across in the English.
+That tells them a great deal about what a translation means as well.
+
+Should one also wish to see images that have to do with sacrifice, that
+person would go to the object key word search, which allows one to
+perform a similar kind of index retrieval on the database of
+archaeological objects.  Without words, pictures are useless; Perseus has
+not reached the point where it can do much with images that are not
+cataloged.  Thus, although it is possible in Perseus with text and images
+to navigate by knowing where one wants to end up--for example, a
+red-figure vase from the Boston Museum of Fine Arts--one can perform this
+kind of navigation very easily by tracing down indices.  MYLONAS
+illustrated several generic scenes of sacrifice on vases.  The features
+demonstrated derived from Perseus 1.0; version 2.0 will implement even
+better means of retrieval.
+
+MYLONAS closed by looking at one of the pictures and noting again that
+one can do a great deal of research using the iconography as well as the
+texts.  For instance, students in a core course at Harvard this year were
+highly interested in Greek concepts of foreigners and representations of
+non-Greeks.  So they performed a great deal of research, both with texts
+(e.g., Herodotus) and with iconography on vases and coins, on how the
+Greeks portrayed non-Greeks.  At the same time, art historians who study
+iconography were also interested, and were able to use this material.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Indexing and searchability of all English words in Perseus *
+Several features of Perseus 1.0 * Several levels of customization
+possible * Perseus used for general education * Perseus' effects on
+education * Contextual information in Perseus * Main challenge and
+emphasis of Perseus *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Several points emerged in the discussion that followed MYLONAS's presentation.
+
+Although MYLONAS had not demonstrated Perseus' ability to cross-search
+documents, she confirmed that all English words in Perseus are indexed
+and can be searched.  So, for example, sacrifice could have been searched
+in all texts, the historical essay, and all the catalogue entries with
+their descriptions--in short, in all of Perseus.
+
+Boolean logic is not in Perseus 1.0 but will be added to the next
+version, although an effort is being made not to restrict Perseus to a
+database in which one just performs searching, Boolean or otherwise.  It
+is possible to move laterally through the documents by selecting a word
+one is interested in and selecting an area of information one is
+interested in and trying to look that word up in that area.
+
+Since Perseus was developed in HyperCard, several levels of customization
+are possible.  Simple authoring tools exist that allow one to create
+annotated paths through the information, which are useful for note-taking
+and for guided tours for teaching purposes and for expository writing. 
+With a little more ingenuity it is possible to begin to add or substitute
+material in Perseus.
+
+Perseus has not been used so much for classics education as for general
+education, where it seemed to have an impact on the students in the core
+course at Harvard (a general required course that students must take in
+certain areas).  Students were able to use primary material much more.
+
+The Perseus Project has an evaluation team at the University of Maryland
+that has been documenting Perseus' effects on education.  Perseus is very
+popular, and anecdotal evidence indicates that it is having an effect at
+places other than Harvard, for example, test sites at Ball State
+University, Drury College, and numerous small places where opportunities
+to use vast amounts of primary data may not exist.  One documented effect
+is that archaeological, anthropological, and philological research is
+being done by the same person instead of by three different people.
+
+The contextual information in Perseus includes an overview essay, a
+fairly linear historical essay on the fifth century B.C. that provides
+links into the primary material (e.g., Herodotus, Thucydides, and
+Plutarch), via small gray underscoring (on the screen) of linked
+passages.  These are handmade links into other material.
+
+To different extents, most of the production work was done at Harvard,
+where the people and the equipment are located.  Much of the
+collaborative activity involved data collection and structuring, because
+the main challenge and the emphasis of Perseus is the gathering of
+primary material, that is, building a useful environment for studying
+classical Greece, collecting data, and making it useful. 
+Systems-building is definitely not the main concern.  Thus, much of the
+work has involved writing essays, collecting information, rewriting it,
+and tagging it.  That can be done off site.  The creative link for the
+overview essay as well as for both systems and data was collaborative,
+and was forged via E-mail and paper mail with professors at Pomona and
+Bowdoin.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+CALALUCA * PLD's principal focus and contribution to scholarship *
+Various questions preparatory to beginning the project * Basis for
+project * Basic rule in converting PLD * Concerning the images in PLD *
+Running PLD under a variety of retrieval softwares * Encoding the
+database a hard-fought issue * Various features demonstrated * Importance
+of user documentation * Limitations of the CD-ROM version *   
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Eric CALALUCA, vice president, Chadwyck-Healey, Inc., demonstrated a
+software interpretation of the Patrologia Latina Database (PLD).  PLD's
+principal focus from the beginning of the project about three-and-a-half
+years ago was on converting Migne's Latin series, and in the end,
+CALALUCA suggested, conversion of the text will be the major contribution
+to scholarship.  CALALUCA stressed that, as possibly the only private
+publishing organization at the Workshop, Chadwyck-Healey had sought no
+federal funds or national foundation support before embarking upon the
+project, but instead had relied upon a great deal of homework and
+marketing to accomplish the task of conversion.
+
+Ever since the possibilities of computer-searching have emerged, scholars
+in the field of late ancient and early medieval studies (philosophers,
+theologians, classicists, and those studying the history of natural law
+and the history of the legal development of Western civilization) have
+been longing for a fully searchable version of Western literature, for
+example, all the texts of Augustine and Bernard of Clairvaux and
+Boethius, not to mention all the secondary and tertiary authors.
+
+Various questions arose, CALALUCA said.  Should one convert Migne? 
+Should the database be encoded?  Is it necessary to do that?  How should
+it be delivered?  What about CD-ROM?  Since this is a transitional
+medium, why even bother to create software to run on a CD-ROM?  Since
+everybody knows people will be networking information, why go to the
+trouble--which is far greater with CD-ROM than with the production of
+magnetic data?  Finally, how does one make the data available?  Can many
+of the hurdles to using electronic information that some publishers have
+imposed upon databases be eliminated?
+
+The PLD project was based on the principle that computer-searching of
+texts is most effective when it is done with a large database.  Because
+PLD represented a collection that serves so many disciplines across so
+many periods, it was irresistible.
+
+The basic rule in converting PLD was to do no harm, to avoid the sins of
+intrusion in such a database:  no introduction of newer editions, no
+on-the-spot changes, no eradicating of all possible falsehoods from an
+edition.  Thus, PLD is not the final act in electronic publishing for
+this discipline, but simply the beginning.  The conversion of PLD has
+evoked numerous unanticipated questions:  How will information be used? 
+What about networking?  Can the rights of a database be protected? 
+Should one protect the rights of a database?  How can it be made
+available?
+
+Those converting PLD also tried to avoid the sins of omission, that is,
+excluding portions of the collections or whole sections.  What about the
+images?  PLD is full of images, some are extremely pious
+nineteenth-century representations of the Fathers, while others contain
+highly interesting elements.  The goal was to cover all the text of Migne
+(including notes, in Greek and in Hebrew, the latter of which, in
+particular, causes problems in creating a search structure), all the
+indices, and even the images, which are being scanned in separately
+searchable files.
+
+Several North American institutions that have placed acquisition requests
+for the PLD database have requested it in magnetic form without software,
+which means they are already running it without software, without
+anything demonstrated at the Workshop.
+
+What cannot practically be done is go back and reconvert and re-encode
+data, a time-consuming and extremely costly enterprise.  CALALUCA sees
+PLD as a database that can, and should, be run under a variety of
+retrieval softwares.  This will permit the widest possible searches. 
+Consequently, the need to produce a CD-ROM of PLD, as well as to develop
+software that could handle some 1.3 gigabyte of heavily encoded text,
+developed out of conversations with collection development and reference
+librarians who wanted software both compassionate enough for the
+pedestrian but also capable of incorporating the most detailed
+lexicographical studies that a user desires to conduct.  In the end, the
+encoding and conversion of the data will prove the most enduring
+testament to the value of the project.
+
+The encoding of the database was also a hard-fought issue:  Did the
+database need to be encoded? Were there normative structures for encoding
+humanist texts?  Should it be SGML?  What about the TEI--will it last,
+will it prove useful?  CALALUCA expressed some minor doubts as to whether
+a data bank can be fully TEI-conformant.  Every effort can be made, but
+in the end to be TEI-conformant means to accept the need to make some
+firm encoding decisions that can, indeed, be disputed.  The TEI points
+the publisher in a proper direction but does not presume to make all the
+decisions for him or her.  Essentially, the goal of encoding was to
+eliminate, as much as possible, the hindrances to information-networking,
+so that if an institution acquires a database, everybody associated with
+the institution can have access to it.
+
+CALALUCA demonstrated a portion of Volume 160, because it had the most
+anomalies in it.  The software was created by Electronic Book
+Technologies of Providence, RI, and is called Dynatext.  The software
+works only with SGML-coded data.
+
+Viewing a table of contents on the screen, the audience saw how Dynatext
+treats each element as a book and attempts to simplify movement through a
+volume.  Familiarity with the Patrologia in print (i.e., the text, its
+source, and the editions) will make the machine-readable versions highly
+useful.  (Software with a Windows application was sought for PLD,
+CALALUCA said, because this was the main trend for scholarly use.)
+
+CALALUCA also demonstrated how a user can perform a variety of searches
+and quickly move to any part of a volume; the look-up screen provides
+some basic, simple word-searching. 
+
+CALALUCA argued that one of the major difficulties is not the software. 
+Rather, in creating a product that will be used by scholars representing
+a broad spectrum of computer sophistication,  user documentation proves
+to be the most important service one can provide.
+
+CALALUCA next illustrated a truncated search under mysterium within ten
+words of virtus and how one would be able to find its contents throughout
+the entire database.  He said that the exciting thing about PLD is that
+many of the applications in the retrieval software being written for it
+will exceed the capabilities of the software employed now for the CD-ROM
+version.  The CD-ROM faces genuine limitations, in terms of speed and
+comprehensiveness, in the creation of a retrieval software to run it. 
+CALALUCA said he hoped that individual scholars will download the data,
+if they wish, to their personal computers, and have ready access to
+important texts on a constant basis, which they will be able to use in
+their research and from which they might even be able to publish.
+
+(CALALUCA explained that the blue numbers represented Migne's column numbers,
+which are the standard scholarly references.  Pulling up a note, he stated
+that these texts were heavily edited and the image files would appear simply
+as a note as well, so that one could quickly access an image.)
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+FLEISCHHAUER/ERWAY * Several problems with which AM is still wrestling *
+Various search and retrieval capabilities * Illustration of automatic
+stemming and a truncated search * AM's attempt to find ways to connect
+cataloging to the texts * AM's gravitation towards SGML * Striking a
+balance between quantity and quality * How AM furnishes users recourse to
+images * Conducting a search in a full-text environment * Macintosh and
+IBM prototypes of AM * Multimedia aspects of AM *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+A demonstration of American Memory by its coordinator, Carl FLEISCHHAUER,
+and Ricky ERWAY, associate coordinator, Library of Congress, concluded
+the morning session.  Beginning with a collection of broadsides from the
+Continental Congress and the Constitutional Convention, the only text
+collection in a presentable form at the time of the Workshop, FLEISCHHAUER
+highlighted several of the problems with which AM is still wrestling.
+(In its final form, the disk will contain two collections, not only the
+broadsides but also the full text with illustrations of a set of
+approximately 300 African-American pamphlets from the period 1870 to 1910.)
+
+As FREEMAN had explained earlier, AM has attempted to use a small amount
+of interpretation to introduce collections.  In the present case, the
+contractor, a company named Quick Source, in Silver Spring, MD., used
+software called Toolbook and put together a modestly interactive
+introduction to the collection.  Like the two preceding speakers,
+FLEISCHHAUER argued that the real asset was the underlying collection.
+
+FLEISCHHAUER proceeded to describe various search and retrieval
+capabilities while ERWAY worked the computer.  In this particular package
+the "go to" pull-down allowed the user in effect to jump out of Toolbook,
+where the interactive program was located, and enter the third-party
+software used by AM for this text collection, which is called Personal
+Librarian.  This was the Windows version of Personal Librarian, a
+software application put together by a company in Rockville, Md.
+
+Since the broadsides came from the Revolutionary War period, a search was
+conducted using the words British or war, with the default operator reset
+as or.  FLEISCHHAUER demonstrated both automatic stemming (which finds
+other forms of the same root) and a truncated search.  One of Personal
+Librarian's strongest features, the relevance ranking, was represented by
+a chart that indicated how often words being sought appeared in
+documents, with the one receiving the most "hits" obtaining the highest
+score.  The "hit list" that is supplied takes the relevance ranking into
+account, making the first hit, in effect, the one the software has
+selected as the most relevant example.
+
+While in the text of one of the broadside documents, FLEISCHHAUER
+remarked AM's attempt to find ways to connect cataloging to the texts,
+which it does in different ways in different manifestations.  In the case
+shown, the cataloging was pasted on:  AM took MARC records that were
+written as on-line records right into one of the Library's mainframe
+retrieval programs, pulled them out, and handed them off to the contractor,
+who massaged them somewhat to display them in the manner shown.  One of
+AM's questions is, Does the cataloguing normally performed in the mainframe
+work in this context, or had AM ought to think through adjustments?
+
+FLEISCHHAUER made the additional point that, as far as the text goes, AM
+has gravitated towards SGML (he pointed to the boldface in the upper part
+of the screen).  Although extremely limited in its ability to translate
+or interpret SGML, Personal Librarian will furnish both bold and italics
+on screen; a fairly easy thing to do, but it is one of the ways in which
+SGML is useful.
+
+Striking a balance between quantity and quality has been a major concern
+of AM, with accuracy being one of the places where project staff have
+felt that less than 100-percent accuracy was not unacceptable. 
+FLEISCHHAUER cited the example of the standard of the rekeying industry,
+namely 99.95 percent; as one service bureau informed him, to go from
+99.95 to 100 percent would double the cost.
+
+FLEISCHHAUER next demonstrated how AM furnishes users recourse to images,
+and at the same time recalled LESK's pointed question concerning the
+number of people who would look at those images and the number who would
+work only with the text.  If the implication of LESK's question was
+sound, FLEISCHHAUER said, it raised the stakes for text accuracy and
+reduced the value of the strategy for images.
+
+Contending that preservation is always a bugaboo, FLEISCHHAUER
+demonstrated several images derived from a scan of a preservation
+microfilm that AM had made.  He awarded a grade of C at best, perhaps a
+C minus or a C plus, for how well it worked out.  Indeed, the matter of
+learning if other people had better ideas about scanning in general, and,
+in particular, scanning from microfilm, was one of the factors that drove
+AM to attempt to think through the agenda for the Workshop.  Skew, for
+example, was one of the issues that AM in its ignorance had not reckoned
+would prove so difficult.
+
+Further, the handling of images of the sort shown, in a desktop computer
+environment, involved a considerable amount of zooming and scrolling. 
+Ultimately, AM staff feel that perhaps the paper copy that is printed out
+might be the most useful one, but they remain uncertain as to how much
+on-screen reading users will do.
+
+Returning to the text, FLEISCHHAUER asked viewers to imagine a person who
+might be conducting a search in a full-text environment.  With this
+scenario, he proceeded to illustrate other features of Personal Librarian
+that he considered helpful; for example, it provides the ability to
+notice words as one reads.  Clicking the "include" button on the bottom
+of the search window pops the words that have been highlighted into the
+search.  Thus, a user can refine the search as he or she reads,
+re-executing the search and continuing to find things in the quest for
+materials.  This software not only contains relevance ranking, Boolean
+operators, and truncation, it also permits one to perform word algebra,
+so to say, where one puts two or three words in parentheses and links
+them with one Boolean operator and then a couple of words in another set
+of parentheses and asks for things within so many words of others.
+
+Until they became acquainted recently with some of the work being done in
+classics, the AM staff had not realized that a large number of the
+projects that involve electronic texts were being done by people with a
+profound interest in language and linguistics.  Their search strategies
+and thinking are oriented to those fields, as is shown in particular by
+the Perseus example.  As amateur historians, the AM staff were thinking
+more of searching for concepts and ideas than for particular words. 
+Obviously, FLEISCHHAUER conceded, searching for concepts and ideas and
+searching for words may be two rather closely related things.
+
+While displaying several images, FLEISCHHAUER observed that the Macintosh
+prototype built by AM contains a greater diversity of formats.  Echoing a
+previous speaker, he said that it was easier to stitch things together in
+the Macintosh, though it tended to be a little more anemic in search and
+retrieval.  AM, therefore, increasingly has been investigating
+sophisticated retrieval engines in the IBM format.
+
+FLEISCHHAUER demonstrated several additional examples of the prototype
+interfaces:  One was AM's metaphor for the network future, in which a
+kind of reading-room graphic suggests how one would be able to go around
+to different materials.  AM contains a large number of photographs in
+analog video form worked up from a videodisc, which enable users to make
+copies to print or incorporate in digital documents.  A frame-grabber is
+built into the system, making it possible to bring an image into a window
+and digitize or print it out.
+
+FLEISCHHAUER next demonstrated sound recording, which included texts. 
+Recycled from a previous project, the collection included sixty 78-rpm
+phonograph records of political speeches that were made during and
+immediately after World War I.  These constituted approximately three
+hours of audio, as AM has digitized it, which occupy 150 megabytes on a
+CD.  Thus, they are considerably compressed.  From the catalogue card,
+FLEISCHHAUER proceeded to a transcript of a speech with the audio
+available and with highlighted text following it as it played.
+A photograph has been added and a transcription made.
+
+Considerable value has been added beyond what the Library of Congress
+normally would do in cataloguing a sound recording, which raises several
+questions for AM concerning where to draw lines about how much value it can
+afford to add and at what point, perhaps, this becomes more than AM could
+reasonably do or reasonably wish to do.  FLEISCHHAUER also demonstrated
+a motion picture.  As FREEMAN had reported earlier, the motion picture
+materials have proved the most popular, not surprisingly.  This says more
+about the medium, he thought, than about AM's presentation of it.
+
+Because AM's goal was to bring together things that could be used by
+historians or by people who were curious about history,
+turn-of-the-century footage seemed to represent the most appropriate
+collections from the Library of Congress in motion pictures. These were
+the very first films made by Thomas Edison's company and some others at
+that time.  The particular example illustrated was a Biograph film,
+brought in with a frame-grabber into a window.  A single videodisc
+contains about fifty titles and pieces of film from that period, all of
+New York City.  Taken together, AM believes, they provide an interesting
+documentary resource.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Using the frame-grabber in AM * Volume of material processed
+and to be processed * Purpose of AM within LC * Cataloguing and the
+nature of AM's material * SGML coding and the question of quality versus
+quantity *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+During the question-and-answer period that followed FLEISCHHAUER's
+presentation, several clarifications were made.
+
+AM is bringing in motion pictures from a videodisc.  The frame-grabber
+devices create a window on a computer screen, which permits users to
+digitize a single frame of the movie or one of the photographs.  It
+produces a crude, rough-and-ready image that high school students can
+incorporate into papers, and that has worked very nicely in this way.
+
+Commenting on FLEISCHHAUER's assertion that AM was looking more at
+searching ideas than words, MYLONAS argued that without words an idea
+does not exist.  FLEISCHHAUER conceded that he ought to have articulated
+his point more clearly.  MYLONAS stated that they were in fact both
+talking about the same thing.  By searching for words and by forcing
+people to focus on the word, the Perseus Project felt that they would get
+them to the idea.  The way one reviews results is tailored more to one
+kind of user than another.
+
+Concerning the total volume of material that has been processed in this
+way, AM at this point has in retrievable form seven or eight collections,
+all of them photographic.  In the Macintosh environment, for example,
+there probably are 35,000-40,000 photographs.  The sound recordings
+number sixty items.  The broadsides number about 300 items.  There are
+500 political cartoons in the form of drawings.  The motion pictures, as
+individual items, number sixty to seventy.
+
+AM also has a manuscript collection, the life history portion of one of
+the federal project series, which will contain 2,900 individual
+documents, all first-person narratives.  AM has in process about 350
+African-American pamphlets, or about 12,000 printed pages for the period
+1870-1910.  Also in the works are some 4,000 panoramic photographs.  AM
+has recycled a fair amount of the work done by LC's Prints and
+Photographs Division during the Library's optical disk pilot project in
+the 1980s.  For example, a special division of LC has tooled up and
+thought through all the ramifications of electronic presentation of
+photographs.  Indeed, they are wheeling them out in great barrel loads. 
+The purpose of AM within the Library, it is hoped, is to catalyze several
+of the other special collection divisions which have no particular
+experience with, in some cases, mixed feelings about, an activity such as
+AM.  Moreover, in many cases the divisions may be characterized as not
+only lacking experience in "electronifying" things but also in automated
+cataloguing.  MARC cataloguing as practiced in the United States is
+heavily weighted toward the description of monograph and serial
+materials, but is much thinner when one enters the world of manuscripts
+and things that are held in the Library's music collection and other
+units.  In response to a comment by LESK, that AM's material is very
+heavily photographic, and is so primarily because individual records have
+been made for each photograph, FLEISCHHAUER observed that an item-level
+catalog record exists, for example, for each photograph in the Detroit
+Publishing collection of 25,000 pictures.  In the case of the Federal
+Writers Project, for which nearly 3,000 documents exist, representing
+information from twenty-six different states, AM with the assistance of
+Karen STUART of the Manuscript Division will attempt to find some way not
+only to have a collection-level record but perhaps a MARC record for each
+state, which will then serve as an umbrella for the 100-200 documents
+that come under it.  But that drama remains to be enacted.  The AM staff
+is conservative and clings to cataloguing, though of course visitors tout
+artificial intelligence and neural networks in a manner that suggests that
+perhaps one need not have cataloguing or that much of it could be put aside.
+
+The matter of SGML coding, FLEISCHHAUER conceded, returned the discussion
+to the earlier treated question of quality versus quantity in the Library
+of Congress.  Of course, text conversion can be done with 100-percent
+accuracy, but it means that when one's holdings are as vast as LC's only
+a tiny amount will be exposed, whereas permitting lower levels of
+accuracy can lead to exposing or sharing larger amounts, but with the
+quality correspondingly impaired.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+TWOHIG * A contrary experience concerning electronic options * Volume of
+material in the Washington papers and a suggestion of David Packard *
+Implications of Packard's suggestion * Transcribing the documents for the
+CD-ROM * Accuracy of transcriptions * The CD-ROM edition of the Founding
+Fathers documents *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Finding encouragement in a comment of MICHELSON's from the morning
+session--that numerous people in the humanities were choosing electronic
+options to do their work--Dorothy TWOHIG, editor, The Papers of George
+Washington, opened her illustrated talk by noting that her experience
+with literary scholars and numerous people in editing was contrary to
+MICHELSON's.  TWOHIG emphasized literary scholars' complete ignorance of
+the technological options available to them or their reluctance or, in
+some cases, their downright hostility toward these options.
+
+After providing an overview of the five Founding Fathers projects
+(Jefferson at Princeton, Franklin at Yale, John Adams at the
+Massachusetts Historical Society, and Madison down the hall from her at
+the University of Virginia), TWOHIG observed that the Washington papers,
+like all of the projects, include both sides of the Washington
+correspondence and deal with some 135,000 documents to be published with
+extensive annotation in eighty to eighty-five volumes, a project that
+will not be completed until well into the next century.  Thus, it was
+with considerable enthusiasm several years ago that the Washington Papers
+Project (WPP) greeted David Packard's suggestion that the papers of the
+Founding Fathers could be published easily and inexpensively, and to the
+great benefit of American scholarship, via CD-ROM.
+
+In pragmatic terms, funding from the Packard Foundation would expedite
+the transcription of thousands of documents waiting to be put on disk in
+the WPP offices.  Further, since the costs of collecting, editing, and
+converting the Founding Fathers documents into letterpress editions were
+running into the millions of dollars, and the considerable staffs
+involved in all of these projects were devoting their careers to
+producing the work, the Packard Foundation's suggestion had a
+revolutionary aspect:  Transcriptions of the entire corpus of the
+Founding Fathers papers would be available on CD-ROM to public and
+college libraries, even high schools, at a fraction of the cost--
+$100-$150 for the annual license fee--to produce a limited university
+press run of 1,000 of each volume of the published papers at $45-$150 per
+printed volume.  Given the current budget crunch in educational systems
+and the corresponding constraints on librarians in smaller institutions
+who wish to add these volumes to their collections, producing the
+documents on CD-ROM would likely open a greatly expanded audience for the
+papers.  TWOHIG stressed, however, that development of the Founding
+Fathers CD-ROM is still in its infancy.  Serious software problems remain
+to be resolved before the material can be put into readable form.  
+
+Funding from the Packard Foundation resulted in a major push to
+transcribe the 75,000 or so documents of the Washington papers remaining
+to be transcribed onto computer disks.  Slides illustrated several of the
+problems encountered, for example, the present inability of CD-ROM to
+indicate the cross-outs (deleted material) in eighteenth century
+documents.  TWOHIG next described documents from various periods in the
+eighteenth century that have been transcribed in chronological order and
+delivered to the Packard offices in California, where they are converted
+to the CD-ROM, a process that is expected to consume five years to
+complete (that is, reckoning from David Packard's suggestion made several
+years ago, until about July 1994).  TWOHIG found an encouraging
+indication of the project's benefits in the ongoing use made by scholars
+of the search functions of the CD-ROM, particularly in reducing the time
+spent in manually turning the pages of the Washington papers.
+
+TWOHIG next furnished details concerning the accuracy of transcriptions. 
+For instance, the insertion of thousands of documents on the CD-ROM
+currently does not permit each document to be verified against the
+original manuscript several times as in the case of documents that appear
+in the published edition.  However, the transcriptions receive a cursory
+check for obvious typos, the misspellings of proper names, and other
+errors from the WPP CD-ROM editor.  Eventually, all documents that appear
+in the electronic version will be checked by project editors.  Although
+this process has met with opposition from some of the editors on the
+grounds that imperfect work may leave their offices, the advantages in
+making this material available as a research tool outweigh  fears about the
+misspelling of proper names and other relatively minor editorial matters.
+
+Completion of all five Founding Fathers projects (i.e., retrievability
+and searchability of all of the documents by proper names, alternate
+spellings, or varieties of subjects) will provide one of the richest
+sources of this size for the history of the United States in the latter
+part of the eighteenth century.  Further, publication on CD-ROM will
+allow editors to include even minutiae, such as laundry lists, not
+included in the printed volumes.
+
+It seems possible that the extensive annotation provided in the printed
+volumes eventually will be added to the CD-ROM edition, pending
+negotiations with the publishers of the papers.  At the moment, the
+Founding Fathers CD-ROM is accessible only on the IBYCUS, a computer
+developed out of the Thesaurus Linguae Graecae project and designed for
+the use of classical scholars.  There are perhaps 400 IBYCUS computers in
+the country, most of which are in university classics departments. 
+Ultimately, it is anticipated that the CD-ROM edition of the Founding
+Fathers documents will run on any IBM-compatible or Macintosh computer
+with a CD-ROM drive.  Numerous changes in the software will also occur
+before the project is completed.  (Editor's note: an IBYCUS was
+unavailable to demonstrate the CD-ROM.)
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Several additional features of WPP clarified *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Discussion following TWOHIG's presentation served to clarify several
+additional features, including (1) that the project's primary
+intellectual product consists in the electronic transcription of the
+material; (2) that the text transmitted to the CD-ROM people is not
+marked up; (3) that cataloging and subject-indexing of the material
+remain to be worked out (though at this point material can be retrieved
+by name); and (4) that because all the searching is done in the hardware,
+the IBYCUS is designed to read a CD-ROM which contains only sequential
+text files.  Technically, it then becomes very easy to read the material
+off and put it on another device.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+LEBRON * Overview of the history of the joint project between AAAS and
+OCLC * Several practices the on-line environment shares with traditional
+publishing on hard copy * Several technical and behavioral barriers to
+electronic publishing * How AAAS and OCLC arrived at the subject of
+clinical trials * Advantages of the electronic format and other features
+of OJCCT * An illustrated tour of the journal *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Maria LEBRON, managing editor, The Online Journal of Current Clinical
+Trials (OJCCT), presented an illustrated overview of the history of the
+joint project between the American Association for the Advancement of
+Science (AAAS) and the Online Computer Library Center, Inc. (OCLC).  The
+joint venture between AAAS and OCLC owes its beginning to a
+reorganization launched by the new chief executive officer at OCLC about
+three years ago and combines the strengths of these two disparate
+organizations.  In short, OJCCT represents the process of scholarly
+publishing on line.
+
+LEBRON next discussed several practices the on-line environment shares
+with traditional publishing on hard copy--for example, peer review of
+manuscripts--that are highly important in the academic world.  LEBRON
+noted in particular the implications of citation counts for tenure
+committees and grants committees.  In the traditional hard-copy
+environment, citation counts are readily demonstrable, whereas the
+on-line environment represents an ethereal medium to most academics.
+
+LEBRON remarked several technical and behavioral barriers to electronic
+publishing, for instance, the problems in transmission created by special
+characters or by complex graphics and halftones.  In addition, she noted
+economic limitations such as the storage costs of maintaining back issues
+and market or audience education.
+
+Manuscripts cannot be uploaded to OJCCT, LEBRON explained, because it is
+not a bulletin board or E-mail, forms of electronic transmission of
+information that have created an ambience clouding people's understanding
+of what the journal is attempting to do.  OJCCT, which publishes
+peer-reviewed medical articles dealing with the subject of clinical
+trials, includes text, tabular material, and graphics, although at this
+time it can transmit only line illustrations.
+
+Next, LEBRON described how AAAS and OCLC arrived at the subject of
+clinical trials:  It is 1) a highly statistical discipline that 2) does
+not require halftones but can satisfy the needs of its audience with line
+illustrations and graphic material, and 3) there is a need for the speedy
+dissemination of high-quality research results.  Clinical trials are
+research activities that involve the administration of a test treatment
+to some experimental unit in order to test its usefulness before it is
+made available to the general population.  LEBRON proceeded to give
+additional information on OJCCT concerning its editor-in-chief, editorial
+board, editorial content, and the types of articles it publishes
+(including peer-reviewed research reports and reviews), as well as
+features shared by other traditional hard-copy journals.
+
+Among the advantages of the electronic format are faster dissemination of
+information, including raw data, and the absence of space constraints
+because pages do not exist.  (This latter fact creates an interesting
+situation when it comes to citations.)  Nor are there any issues.  AAAS's
+capacity to download materials directly from the journal to a
+subscriber's printer, hard drive, or floppy disk helps ensure highly
+accurate transcription.  Other features of OJCCT include on-screen alerts
+that allow linkage of subsequently published documents to the original
+documents; on-line searching by subject, author, title, etc.; indexing of
+every single word that appears in an article; viewing access to an
+article by component (abstract, full text, or graphs); numbered
+paragraphs to replace page counts; publication in Science every thirty
+days of indexing of all articles published in the journal;
+typeset-quality screens; and Hypertext links that enable subscribers to
+bring up Medline abstracts directly without leaving the journal.
+
+After detailing the two primary ways to gain access to the journal,
+through the OCLC network and Compuserv if one desires graphics or through
+the Internet if just an ASCII file is desired, LEBRON illustrated the
+speedy editorial process and the coding of the document using SGML tags
+after it has been accepted for publication.  She also gave an illustrated
+tour of the journal, its search-and-retrieval capabilities in particular,
+but also including problems associated with scanning in illustrations,
+and the importance of on-screen alerts to the medical profession re
+retractions or corrections, or more frequently, editorials, letters to
+the editors, or follow-up reports.  She closed by inviting the audience
+to join AAAS on 1 July, when OJCCT was scheduled to go on-line.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Additional features of OJCCT *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+In the lengthy discussion that followed LEBRON's presentation, these
+points emerged:
+
+     * The SGML text can be tailored as users wish.
+
+     * All these articles have a fairly simple document definition.
+
+     * Document-type definitions (DTDs) were developed and given to OJCCT
+     for coding.
+
+     * No articles will be removed from the journal.  (Because there are
+     no back issues, there are no lost issues either.  Once a subscriber
+     logs onto the journal he or she has access not only to the currently
+     published materials, but retrospectively to everything that has been
+     published in it.  Thus the table of contents grows bigger.  The date
+     of publication serves to distinguish between currently published
+     materials and older materials.)
+
+     * The pricing system for the journal resembles that for most medical
+     journals:  for 1992, $95 for a year, plus telecommunications charges
+     (there are no connect time charges);    for 1993, $110 for the
+     entire year for single users, though the journal can be put on a
+     local area network (LAN).  However, only one person can access the
+     journal at a time.  Site licenses may come in the future.
+
+     * AAAS is working closely with colleagues at OCLC to display
+     mathematical equations on screen.
+
+     * Without compromising any steps in the editorial process, the
+     technology has reduced the time lag between when a manuscript is
+     originally submitted and the time it is accepted; the review process
+     does not differ greatly from the standard six-to-eight weeks
+     employed by many of the hard-copy journals.  The process still
+     depends on people.
+
+     * As far as a preservation copy is concerned, articles will be
+     maintained on the computer permanently and subscribers, as part of
+     their subscription, will receive a microfiche-quality archival copy
+     of everything published during that year; in addition, reprints can
+     be purchased in much the same way as in a hard-copy environment. 
+     Hard copies are prepared but are not the primary medium for the
+     dissemination of the information.
+
+     * Because OJCCT is not yet on line, it is difficult to know how many
+     people would simply browse through the journal on the screen as
+     opposed to downloading the whole thing and printing it out; a mix of
+     both types of users likely will result.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+PERSONIUS * Developments in technology over the past decade * The CLASS
+Project * Advantages for technology and for the CLASS Project *
+Developing a network application an underlying assumption of the project
+* Details of the scanning process * Print-on-demand copies of books *
+Future plans include development of a browsing tool *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Lynne PERSONIUS, assistant director, Cornell Information Technologies for
+Scholarly Information Services, Cornell University, first commented on
+the tremendous impact that developments in technology over the past ten
+years--networking, in particular--have had on the way information is
+handled, and how, in her own case, these developments have counterbalanced
+Cornell's relative geographical isolation.  Other significant technologies
+include scanners, which are much more sophisticated than they were ten years
+ago; mass storage and the dramatic savings that result from it in terms of
+both space and money relative to twenty or thirty years ago; new and
+improved printing technologies, which have greatly affected the distribution
+of information; and, of course, digital technologies, whose applicability to
+library preservation remains at issue.
+
+Given that context, PERSONIUS described the College Library Access and
+Storage System (CLASS) Project, a library preservation project,
+primarily, and what has been accomplished.  Directly funded by the
+Commission on Preservation and Access and by the Xerox Corporation, which
+has provided a significant amount of hardware, the CLASS Project has been
+working with a development team at Xerox to develop a software
+application tailored to library preservation requirements.  Within
+Cornell, participants in the project have been working jointly with both
+library and information technologies.  The focus of the project has been
+on reformatting and saving books that are in brittle condition. 
+PERSONIUS showed Workshop participants a brittle book, and described how
+such books were the result of developments in papermaking around the
+beginning of the Industrial Revolution.  The papermaking process was
+changed so that a significant amount of acid was introduced into the
+actual paper itself, which deteriorates as it sits on library shelves.
+
+One of the advantages for technology and for the CLASS Project is that
+the information in brittle books is mostly out of copyright and thus
+offers an opportunity to work with material that requires library
+preservation, and to create and work on an infrastructure to save the
+material.  Acknowledging the familiarity of those working in preservation
+with this information, PERSONIUS noted that several things are being
+done:  the primary preservation technology used today is photocopying of
+brittle material.  Saving the intellectual content of the material is the
+main goal.  With microfilm copy, the intellectual content is preserved on
+the assumption that in the future the image can be reformatted in any
+other way that then exists.
+
+An underlying assumption of the CLASS Project from the beginning was
+that it would develop a network application.  Project staff scan books
+at a workstation located in the library, near the brittle material.
+An image-server filing system is located at a distance from that
+workstation, and a printer is located in another building.  All of the
+materials digitized and stored on the image-filing system are cataloged
+in the on-line catalogue.  In fact, a record for each of these electronic
+books is stored in the RLIN database so that a record exists of what is
+in the digital library throughout standard catalogue procedures.  In the
+future, researchers working from their own workstations in their offices,
+or their networks, will have access--wherever they might be--through a
+request server being built into the new digital library.  A second
+assumption is that the preferred means of finding the material will be by
+looking through a catalogue.  PERSONIUS described the scanning process,
+which uses a prototype scanner being developed by Xerox and which scans a
+very high resolution image at great speed.  Another significant feature,
+because this is a preservation application, is the placing of the pages
+that fall apart one for one on the platen.  Ordinarily, a scanner could
+be used with some sort of a document feeder, but because of this
+application that is not feasible.  Further, because CLASS is a
+preservation application, after the paper replacement is made there, a
+very careful quality control check is performed.  An original book is
+compared to the printed copy and verification is made, before proceeding,
+that all of the image, all of the information, has been captured.  Then,
+a new library book is produced:  The printed images are rebound by a
+commercial binder and a new book is returned to the shelf. 
+Significantly, the books returned to the library shelves are beautiful
+and useful replacements on acid-free paper that should last a long time,
+in effect, the equivalent of preservation photocopies.  Thus, the project
+has a library of digital books.  In essence, CLASS is scanning and
+storing books as 600 dot-per-inch bit-mapped images, compressed using
+Group 4 CCITT (i.e., the French acronym for International Consultative
+Committee for Telegraph and Telephone) compression.  They are stored as
+TIFF files on an optical filing system that is composed of a database
+used for searching and locating the books and an optical jukebox that
+stores 64 twelve-inch platters.  A very-high-resolution printed copy of
+these books at 600 dots per inch is created, using a Xerox DocuTech
+printer to make the paper replacements on acid-free paper.
+
+PERSONIUS maintained that the CLASS Project presents an opportunity to
+introduce people to books as digital images by using a paper medium. 
+Books are returned to the shelves while people are also given the ability
+to print on demand--to make their own copies of books.  (PERSONIUS
+distributed copies of an engineering journal published by engineering
+students at Cornell around 1900 as an example of what a print-on-demand
+copy of material might be like.  This very cheap copy would be available
+to people to use for their own research purposes and would bridge the gap
+between an electronic work and the paper that readers like to have.) 
+PERSONIUS then attempted to illustrate a very early prototype of
+networked access to this digital library.  Xerox Corporation has
+developed a prototype of a view station that can send images across the
+network to be viewed.
+
+The particular library brought down for demonstration contained two
+mathematics books.  CLASS is developing and will spend the next year
+developing an application that allows people at workstations to browse
+the books.  Thus, CLASS is developing a browsing tool, on the assumption
+that users do not want to read an entire book from a workstation, but
+would prefer to be able to look through and decide if they would like to
+have a printed copy of it.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Re retrieval software * "Digital file copyright" * Scanning
+rate during production * Autosegmentation * Criteria employed in
+selecting books for scanning * Compression and decompression of images *
+OCR not precluded *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+During the question-and-answer period that followed her presentation,
+PERSONIUS made these additional points:
+
+     * Re retrieval software, Cornell is developing a Unix-based server
+     as well as clients for the server that support multiple platforms
+     (Macintosh, IBM and Sun workstations), in the hope that people from
+     any of those platforms will retrieve books; a further operating
+     assumption is that standard interfaces will be used as much as
+     possible, where standards can be put in place, because CLASS
+     considers this retrieval software a library application and would
+     like to be able to look at material not only at Cornell but at other
+     institutions.
+
+     * The phrase "digital file copyright by Cornell University" was
+     added at the advice of Cornell's legal staff with the caveat that it
+     probably would not hold up in court.  Cornell does not want people
+     to copy its books and sell them but would like to keep them
+     available for use in a library environment for library purposes.
+
+     * In production the scanner can scan about 300 pages per hour,
+     capturing 600 dots per inch.
+
+     * The Xerox software has filters to scan halftone material and avoid
+     the moire patterns that occur when halftone material is scanned. 
+     Xerox has been working on hardware and software that would enable
+     the scanner itself to recognize this situation and deal with it
+     appropriately--a kind of autosegmentation that would enable the
+     scanner to handle halftone material as well as text on a single page.
+
+     * The books subjected to the elaborate process described above were
+     selected because CLASS is a preservation project, with the first 500
+     books selected coming from Cornell's mathematics collection, because
+     they were still being heavily used and because, although they were
+     in need of preservation, the mathematics library and the mathematics
+     faculty were uncomfortable having them microfilmed.  (They wanted a
+     printed copy.)  Thus, these books became a logical choice for this
+     project.  Other books were chosen by the project's selection committees
+     for experiments with the technology, as well as to meet a demand or need.
+
+     * Images will be decompressed before they are sent over the line; at
+     this time they are compressed and sent to the image filing system
+     and then sent to the printer as compressed images; they are returned
+     to the workstation as compressed 600-dpi images and the workstation
+     decompresses and scales them for display--an inefficient way to
+     access the material though it works quite well for printing and
+     other purposes.
+
+     * CLASS is also decompressing on Macintosh and IBM, a slow process
+     right now.  Eventually, compression and decompression will take
+     place on an image conversion server.  Trade-offs will be made, based
+     on future performance testing, concerning where the file is
+     compressed and what resolution image is sent.
+
+     * OCR has not been precluded; images are being stored that have been
+     scanned at a high resolution, which presumably would suit them well
+     to an OCR process.  Because the material being scanned is about 100
+     years old and was printed with less-than-ideal technologies, very
+     early and preliminary tests have not produced good results.  But the
+     project is capturing an image that is of sufficient resolution to be
+     subjected to OCR in the future.  Moreover, the system architecture
+     and the system plan have a logical place to store an OCR image if it
+     has been captured.  But that is not being done now.
+
+                                 ******
+
+SESSION III.  DISTRIBUTION, NETWORKS, AND NETWORKING:  OPTIONS FOR
+DISSEMINATION
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ZICH * Issues pertaining to CD-ROMs * Options for publishing in CD-ROM *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Robert ZICH, special assistant to the associate librarian for special
+projects, Library of Congress, and moderator of this session, first noted
+the blessed but somewhat awkward circumstance of having four very
+distinguished people representing networks and networking or at least
+leaning in that direction, while lacking anyone to speak from the
+strongest possible background in CD-ROMs.  ZICH expressed the hope that
+members of the audience would join the discussion.  He stressed the
+subtitle of this particular session, "Options for Dissemination," and,
+concerning CD-ROMs, the importance of determining when it would be wise
+to consider dissemination in CD-ROM versus networks.  A shopping list of
+issues pertaining to CD-ROMs included:  the grounds for selecting
+commercial publishers, and in-house publication where possible versus
+nonprofit or government publication.  A similar list for networks
+included:  determining when one should consider dissemination through a
+network, identifying the mechanisms or entities that exist to place items
+on networks, identifying the pool of existing networks, determining how a
+producer  would choose between networks, and identifying the elements of
+a business arrangement in a network.
+
+Options for publishing in CD-ROM:  an outside publisher versus
+self-publication.  If an outside publisher is used, it can be nonprofit,
+such as the Government Printing Office (GPO) or the National Technical
+Information Service (NTIS), in the case of government.  The pros and cons
+associated with employing an outside publisher are obvious.  Among the
+pros, there is no trouble getting accepted.  One pays the bill and, in
+effect, goes one's way.  Among the cons, when one pays an outside
+publisher to perform the work, that publisher will perform the work it is
+obliged to do, but perhaps without the production expertise and skill in
+marketing and dissemination that some would seek.  There is the body of
+commercial publishers that do possess that kind of expertise in
+distribution and marketing but that obviously are selective.  In
+self-publication, one exercises full control, but then one must handle
+matters such as distribution and marketing.  Such are some of the options
+for publishing in the case of CD-ROM.
+
+In the case of technical and design issues, which are also important,
+there are many matters which many at the Workshop already knew a good
+deal about:  retrieval system requirements and costs, what to do about
+images, the various capabilities and platforms, the trade-offs between
+cost and performance, concerns about local-area networkability,
+interoperability, etc.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+LYNCH * Creating networked information is different from using networks
+as an access or dissemination vehicle * Networked multimedia on a large
+scale does not yet work * Typical CD-ROM publication model a two-edged
+sword * Publishing information on a CD-ROM in the present world of
+immature standards * Contrast between CD-ROM and network pricing *
+Examples demonstrated earlier in the day as a set of insular information
+gems * Paramount need to link databases * Layering to become increasingly
+necessary * Project NEEDS and the issues of information reuse and active
+versus passive use * X-Windows as a way of differentiating between
+network access and networked information * Barriers to the distribution
+of networked multimedia information * Need for good, real-time delivery
+protocols * The question of presentation integrity in client-server
+computing in the academic world * Recommendations for producing multimedia
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Clifford LYNCH, director, Library Automation, University of California,
+opened his talk with the general observation that networked information
+constituted a difficult and elusive topic because it is something just
+starting to develop and not yet fully understood.  LYNCH contended that
+creating genuinely networked information was different from using
+networks as an access or dissemination vehicle and was more sophisticated
+and more subtle.  He invited the members of the audience to extrapolate,
+from what they heard about the preceding demonstration projects, to what
+sort of a world of electronics information--scholarly, archival,
+cultural, etc.--they wished to end up with ten or fifteen years from now. 
+LYNCH suggested that to extrapolate directly from these projects would
+produce unpleasant results.
+
+Putting the issue of CD-ROM in perspective before getting into
+generalities on networked information, LYNCH observed that those engaged
+in multimedia today who wish to ship a product, so to say, probably do
+not have much choice except to use CD-ROM:  networked multimedia on a
+large scale basically does not yet work because the technology does not
+exist.  For example, anybody who has tried moving images around over the
+Internet knows that this is an exciting touch-and-go process, a
+fascinating and fertile area for experimentation, research, and
+development, but not something that one can become deeply enthusiastic
+about committing to production systems at this time.
+
+This situation will change, LYNCH said.  He differentiated CD-ROM from
+the practices that have been followed up to now in distributing data on
+CD-ROM.  For LYNCH the problem with CD-ROM is not its portability or its
+slowness but the two-edged sword of having the retrieval application and
+the user interface inextricably bound up with the data, which is the
+typical CD-ROM publication model.  It is not a case of publishing data
+but of distributing a typically stand-alone, typically closed system,
+all--software, user interface, and data--on a little disk.  Hence, all
+the between-disk navigational issues as well as the impossibility in most
+cases of integrating data on one disk with that on another.  Most CD-ROM
+retrieval software does not network very gracefully at present.  However,
+in the present world of immature standards and lack of understanding of
+what network information is or what the ground rules are for creating or
+using it, publishing information on a CD-ROM does add value in a very
+real sense.
+
+LYNCH drew a contrast between CD-ROM and network pricing and in doing so
+highlighted something bizarre in information pricing.  A large
+institution such as the University of California has vendors who will
+offer to sell information on CD-ROM for a price per year in four digits,
+but for the same data (e.g., an abstracting and indexing database) on
+magnetic tape, regardless of how many people may use it concurrently,
+will quote a price in six digits.
+
+What is packaged with the CD-ROM in one sense adds value--a complete
+access system, not just raw, unrefined information--although it is not
+generally perceived that way.  This is because the access software,
+although it adds value, is viewed by some people, particularly in the
+university environment where there is a very heavy commitment to
+networking, as being developed in the wrong direction.
+
+Given that context, LYNCH described the examples demonstrated as a set of
+insular information gems--Perseus, for example, offers nicely linked
+information, but would be very difficult to integrate with other
+databases, that is, to link together seamlessly with other source files
+from other sources.  It resembles an island, and in this respect is
+similar to numerous stand-alone projects that are based on videodiscs,
+that is, on the single-workstation concept.
+
+As scholarship evolves in a network environment, the paramount need will
+be to link databases.  We must link personal databases to public
+databases, to group databases, in fairly seamless ways--which is
+extremely difficult in the environments under discussion with copies of
+databases proliferating all over the place.
+
+The notion of layering also struck LYNCH as lurking in several of the
+projects demonstrated.  Several databases in a sense constitute
+information archives without a significant amount of navigation built in. 
+Educators, critics, and others will want a layered structure--one that
+defines or links paths through the layers to allow users to reach
+specific points.  In LYNCH's view, layering will become increasingly
+necessary, and not just within a single resource but across resources
+(e.g., tracing mythology and cultural themes across several classics
+databases as well as a database of Renaissance culture).  This ability to
+organize resources, to build things out of multiple other things on the
+network or select pieces of it, represented for LYNCH one of the key
+aspects of network information.
+
+Contending that information reuse constituted another significant issue,
+LYNCH commended to the audience's attention Project NEEDS (i.e., National
+Engineering Education Delivery System).  This project's objective is to
+produce a database of engineering courseware as well as the components
+that can be used to develop new courseware.  In a number of the existing
+applications, LYNCH said, the issue of reuse (how much one can take apart
+and reuse in other applications) was not being well considered.  He also
+raised the issue of active versus passive use, one aspect of which  is
+how much information will be manipulated locally by users.  Most people,
+he argued, may do a little browsing and then will wish to print.  LYNCH
+was uncertain how these resources would be used by the vast majority of
+users in the network environment.
+
+LYNCH next said a few words about X-Windows as a way of differentiating
+between network access and networked information.  A number of the
+applications demonstrated at the Workshop could be rewritten to use X
+across the network, so that one could run them from any X-capable device-
+-a workstation, an X terminal--and transact with a database across the
+network.  Although this opens up access a little, assuming one has enough
+network to handle it, it does not provide an interface to develop a
+program that conveniently integrates information from multiple databases. 
+X is a viewing technology that has limits.  In a real sense, it is just a
+graphical version of remote log-in across the network.  X-type applications
+represent only one step in the progression towards real access.
+
+LYNCH next discussed barriers to the distribution of networked multimedia
+information.  The heart of the problem is a lack of standards to provide
+the ability for computers to talk to each other, retrieve information,
+and shuffle it around fairly casually.  At the moment, little progress is
+being made on standards for networked information; for example, present
+standards do not cover images, digital voice, and digital video.  A
+useful tool kit of exchange formats for basic texts is only now being
+assembled.  The synchronization of content streams (i.e., synchronizing a
+voice track to a video track, establishing temporal relations between
+different components in a multimedia object) constitutes another issue
+for networked multimedia that is just beginning to receive attention.
+
+Underlying network protocols also need some work; good, real-time
+delivery protocols on the Internet do not yet exist.  In LYNCH's view,
+highly important in this context is the notion of networked digital
+object IDs, the ability of one object on the network to point to another
+object (or component thereof) on the network.  Serious bandwidth issues
+also exist.  LYNCH was uncertain if billion-bit-per-second networks would
+prove sufficient if numerous people ran video in parallel.
+
+LYNCH concluded by offering an issue for database creators to consider,
+as well as several comments about what might constitute good trial
+multimedia experiments.  In a networked information world the database
+builder or service builder (publisher) does not exercise the same
+extensive control over the integrity of the presentation; strange
+programs "munge" with one's data before the user sees it.  Serious
+thought must be given to what guarantees integrity of presentation.  Part
+of that is related to where one draws the boundaries around a networked
+information service.  This question of presentation integrity in
+client-server computing has not been stressed enough in the academic
+world, LYNCH argued, though commercial service providers deal with it
+regularly.
+
+Concerning multimedia, LYNCH observed that good multimedia at the moment
+is hideously expensive to produce.  He recommended producing multimedia
+with either very high sale value, or multimedia with a very long life
+span, or multimedia that will have a very broad usage base and whose
+costs therefore can be amortized among large numbers of users.  In this
+connection, historical and humanistically oriented material may be a good
+place to start, because it tends to have a longer life span than much of
+the scientific material, as well as a wider user base.  LYNCH noted, for
+example, that American Memory fits many of the criteria outlined.  He
+remarked the extensive discussion about bringing the Internet or the
+National Research and Education Network (NREN) into the K-12 environment
+as a way of helping the American educational system.
+
+LYNCH closed by noting that the kinds of applications demonstrated struck
+him as excellent justifications of broad-scale networking for K-12, but
+that at this time no "killer" application exists to mobilize the K-12
+community to obtain connectivity.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Dearth of genuinely interesting applications on the network
+a slow-changing situation * The issue of the integrity of presentation in
+a networked environment * Several reasons why CD-ROM software does not
+network *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+During the discussion period that followed LYNCH's presentation, several
+additional points were made.
+
+LYNCH reiterated even more strongly his contention that, historically,
+once one goes outside high-end science and the group of those who need
+access to supercomputers, there is a great dearth of genuinely
+interesting applications on the network.  He saw this situation changing
+slowly, with some of the scientific databases and scholarly discussion
+groups and electronic journals coming on as well as with the availability
+of Wide Area Information Servers (WAIS) and some of the databases that
+are being mounted there.  However, many of those things do not seem to
+have piqued great popular interest.  For instance, most high school
+students of LYNCH's acquaintance would not qualify as devotees of serious
+molecular biology.
+
+Concerning the issue of the integrity of presentation, LYNCH believed
+that a couple of information providers have laid down the law at least on
+certain things.  For example, his recollection was that the National
+Library of Medicine feels strongly that one needs to employ the
+identifier field if he or she is to mount a database commercially.  The
+problem with a real networked environment is that one does not know who
+is reformatting and reprocessing one's data when one enters a client
+server mode.  It becomes anybody's guess, for example, if the network
+uses a Z39.50 server, or what clients are doing with one's data.  A data
+provider can say that his contract will only permit clients to have
+access to his data after he vets them and their presentation and makes
+certain it suits him.  But LYNCH held out little expectation that the
+network marketplace would evolve in that way, because it required too
+much prior negotiation.
+
+CD-ROM software does not network for a variety of reasons, LYNCH said. 
+He speculated that CD-ROM publishers are not eager to have their products
+really hook into wide area networks, because they fear it will make their
+data suppliers nervous.  Moreover, until relatively recently, one had to
+be rather adroit to run a full TCP/IP stack plus applications on a
+PC-size machine, whereas nowadays it is becoming easier as PCs grow
+bigger and faster.  LYNCH also speculated that software providers had not
+heard from their customers until the last year or so, or had not heard
+from enough of their customers.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+BESSER * Implications of disseminating images on the network; planning
+the distribution of multimedia documents poses two critical
+implementation problems * Layered approach represents the way to deal
+with users' capabilities * Problems in platform design; file size and its
+implications for networking * Transmission of megabyte size images
+impractical * Compression and decompression at the user's end * Promising
+trends for compression * A disadvantage of using X-Windows * A project at
+the Smithsonian that mounts images on several networks *  
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Howard BESSER, School of Library and Information Science, University of
+Pittsburgh, spoke primarily about multimedia, focusing on images and the
+broad implications of disseminating them on the network.  He argued that
+planning the distribution of multimedia documents posed two critical
+implementation problems, which he framed in the form of two questions: 
+1) What platform will one use and what hardware and software will users
+have for viewing of the material?  and 2) How can one deliver a
+sufficiently robust set of information in an accessible format in a
+reasonable amount of time?  Depending on whether network or CD-ROM is the
+medium used, this question raises different issues of storage,
+compression, and transmission.
+
+Concerning the design of platforms (e.g., sound, gray scale, simple
+color, etc.) and the various capabilities users may have, BESSER
+maintained that a layered approach was the way to deal with users'
+capabilities.  A result would be that users with less powerful
+workstations would simply have less functionality.  He urged members of
+the audience to advocate standards and accompanying software that handle
+layered functionality across a wide variety of platforms.
+
+BESSER also addressed problems in platform design, namely, deciding how
+large a machine to design for situations when the largest number of users
+have the lowest level of the machine, and one desires higher
+functionality.  BESSER then proceeded to the question of file size and
+its implications for networking.  He discussed still images in the main. 
+For example, a digital color image that fills the screen of a standard
+mega-pel workstation (Sun or Next) will require one megabyte of storage
+for an eight-bit image or three megabytes of storage for a true color or
+twenty-four-bit image.  Lossless compression algorithms (that is,
+computational procedures in which no data is lost in the process of
+compressing [and decompressing] an image--the exact bit-representation is
+maintained) might bring storage down to a third of a megabyte per image,
+but not much further than that.  The question of size makes it difficult
+to fit an appropriately sized set of these images on a single disk or to
+transmit them quickly enough on a network.
+
+With these full screen mega-pel images that constitute a third of a
+megabyte, one gets 1,000-3,000 full-screen images on a one-gigabyte disk;
+a standard CD-ROM represents approximately 60 percent of that.  Storing
+images the size of a PC screen (just 8 bit color) increases storage
+capacity to 4,000-12,000 images per gigabyte; 60 percent of that gives
+one the size of a CD-ROM, which in turn creates a major problem.  One
+cannot have full-screen, full-color images with lossless compression; one
+must compress them or use a lower resolution.  For megabyte-size images,
+anything slower than a T-1 speed is impractical.  For example, on a
+fifty-six-kilobaud line, it takes three minutes to transfer a
+one-megabyte file, if it is not compressed; and this speed assumes ideal
+circumstances (no other user contending for network bandwidth).  Thus,
+questions of disk access, remote display, and current telephone
+connection speed make transmission of megabyte-size images impractical.
+
+BESSER then discussed ways to deal with these large images, for example,
+compression and decompression at the user's end.  In this connection, the
+issues of how much one is willing to lose in the compression process and
+what image quality one needs in the first place are unknown.  But what is
+known is that compression entails some loss of data.  BESSER urged that
+more studies be conducted on image quality in different situations, for
+example, what kind of images are needed for what kind of disciplines, and
+what kind of image quality is needed for a browsing tool, an intermediate
+viewing tool, and archiving.
+
+BESSER remarked two promising trends for compression:  from a technical
+perspective, algorithms that use what is called subjective redundancy
+employ principles from visual psycho-physics to identify and remove
+information from the image that the human eye cannot perceive; from an
+interchange and interoperability perspective, the JPEG (i.e., Joint
+Photographic Experts Group, an ISO standard) compression algorithms also
+offer promise.  These issues of compression and decompression, BESSER
+argued, resembled those raised earlier concerning the design of different
+platforms.  Gauging the capabilities of potential users constitutes a
+primary goal.  BESSER advocated layering or separating the images from
+the applications that retrieve and display them, to avoid tying them to
+particular software.
+
+BESSER detailed several lessons learned from his work at Berkeley with
+Imagequery, especially the advantages and disadvantages of using
+X-Windows.  In the latter category, for example, retrieval is tied
+directly to one's data, an intolerable situation in the long run on a
+networked system.  Finally, BESSER described a project of Jim Wallace at
+the Smithsonian Institution, who is mounting images in a extremely
+rudimentary way on the Compuserv and Genie networks and is preparing to
+mount them on America On Line.  Although the average user takes over
+thirty minutes to download these images (assuming a fairly fast modem),
+nevertheless, images have been downloaded 25,000 times.
+
+BESSER concluded his talk with several comments on the business
+arrangement between the Smithsonian and Compuserv.  He contended that not
+enough is known concerning the value of images.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Creating digitized photographic collections nearly
+impossible except with large organizations like museums * Need for study
+to determine quality of images users will tolerate *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+During the brief exchange between LESK and BESSER that followed, several
+clarifications emerged.
+
+LESK argued that the photographers were far ahead of BESSER:  It is
+almost impossible to create such digitized photographic collections
+except with large organizations like museums, because all the
+photographic agencies have been going crazy about this and will not sign
+licensing agreements on any sort of reasonable terms.  LESK had heard
+that National Geographic, for example, had tried to buy the right to use
+some image in some kind of educational production for $100 per image, but
+the photographers will not touch it.  They want accounting and payment
+for each use, which cannot be accomplished within the system.  BESSER
+responded that a consortium of photographers, headed by a former National
+Geographic photographer, had started assembling its own collection of
+electronic reproductions of images, with the money going back to the
+cooperative.
+
+LESK contended that BESSER was unnecessarily pessimistic about multimedia
+images, because people are accustomed to low-quality images, particularly
+from video.  BESSER urged the launching of a study to determine what
+users would tolerate, what they would feel comfortable with, and what
+absolutely is the highest quality they would ever need.  Conceding that
+he had adopted a dire tone in order to arouse people about the issue,
+BESSER closed on a sanguine note by saying that he would not be in this
+business if he did not think that things could be accomplished.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+LARSEN * Issues of scalability and modularity * Geometric growth of the
+Internet and the role played by layering * Basic functions sustaining
+this growth * A library's roles and functions in a network environment *
+Effects of implementation of the Z39.50 protocol for information
+retrieval on the library system * The trade-off between volumes of data
+and its potential usage * A snapshot of current trends *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Ronald LARSEN, associate director for information technology, University
+of Maryland at College Park, first addressed the issues of scalability
+and modularity.  He noted the difficulty of anticipating the effects of
+orders-of-magnitude growth, reflecting on the twenty years of experience
+with the Arpanet and Internet.  Recalling the day's demonstrations of
+CD-ROM and optical disk material, he went on to ask if the field has yet
+learned how to scale new systems to enable delivery and dissemination
+across large-scale networks.
+
+LARSEN focused on the geometric growth of the Internet from its inception
+circa 1969 to the present, and the adjustments required to respond to
+that rapid growth.  To illustrate the issue of scalability, LARSEN
+considered computer networks as including three generic components: 
+computers, network communication nodes, and communication media.  Each
+component scales (e.g., computers range from PCs to supercomputers;
+network nodes scale from interface cards in a PC through sophisticated
+routers and gateways; and communication media range from 2,400-baud
+dial-up facilities through 4.5-Mbps backbone links, and eventually to
+multigigabit-per-second communication lines), and architecturally, the
+components are organized to scale hierarchically from local area networks
+to international-scale networks.  Such growth is made possible by
+building layers of communication protocols, as BESSER pointed out.
+By layering both physically and logically, a sense of scalability is
+maintained from local area networks in offices, across campuses, through
+bridges, routers, campus backbones, fiber-optic links, etc., up into
+regional networks and ultimately into national and international
+networks.
+
+LARSEN then illustrated the geometric growth over a two-year period--
+through September 1991--of the number of networks that comprise the
+Internet.  This growth has been sustained largely by the availability of
+three basic functions:  electronic mail, file transfer (ftp), and remote
+log-on (telnet).  LARSEN also reviewed the growth in the kind of traffic
+that occurs on the network.  Network traffic reflects the joint contributions
+of a larger population of users and increasing use per user.  Today one sees
+serious applications involving moving images across the network--a rarity
+ten years ago.  LARSEN recalled and concurred with BESSER's main point
+that the interesting problems occur at the application level.
+
+LARSEN then illustrated a model of a library's roles and functions in a
+network environment.  He noted, in particular, the placement of on-line
+catalogues onto the network and patrons obtaining access to the library
+increasingly through local networks, campus networks, and the Internet. 
+LARSEN supported LYNCH's earlier suggestion that we need to address
+fundamental questions of networked information in order to build
+environments that scale in the information sense as well as in the
+physical sense.
+
+LARSEN supported the role of the library system as the access point into
+the nation's electronic collections.  Implementation of the Z39.50
+protocol for information retrieval would make such access practical and
+feasible.  For example, this would enable patrons in Maryland to search
+California libraries, or other libraries around the world that are
+conformant with Z39.50 in a manner that is familiar to University of
+Maryland patrons.  This client-server model also supports moving beyond
+secondary content into primary content.  (The notion of how one links
+from secondary content to primary content, LARSEN said, represents a
+fundamental problem that requires rigorous thought.)  After noting
+numerous network experiments in accessing full-text materials, including
+projects supporting the ordering of materials across the network, LARSEN
+revisited the issue of transmitting high-density, high-resolution color
+images across the network and the large amounts of bandwidth they
+require.  He went on to address the bandwidth and synchronization
+problems inherent in sending full-motion video across the network.
+
+LARSEN illustrated the trade-off between volumes of data in bytes or
+orders of magnitude and the potential usage of that data.  He discussed
+transmission rates (particularly, the time it takes to move various forms
+of information), and what one could do with a network supporting
+multigigabit-per-second transmission.  At the moment, the network
+environment includes a composite of data-transmission requirements,
+volumes and forms, going from steady to bursty (high-volume) and from
+very slow to very fast.  This aggregate must be considered in the design,
+construction, and operation of multigigabyte networks.
+
+LARSEN's objective is to use the networks and library systems now being
+constructed to increase access to resources wherever they exist, and
+thus, to evolve toward an on-line electronic virtual library.
+
+LARSEN concluded by offering a snapshot of current trends:  continuing
+geometric growth in network capacity and number of users; slower
+development of applications; and glacial development and adoption of
+standards.  The challenge is to design and develop each new application
+system with network access and scalability in mind.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+BROWNRIGG * Access to the Internet cannot be taken for granted * Packet
+radio and the development of MELVYL in 1980-81 in the Division of Library
+Automation at the University of California  *  Design criteria for packet
+radio * A demonstration project in San Diego and future plans * Spread
+spectrum * Frequencies at which the radios will run and plans to
+reimplement the WAIS server software in the public domain * Need for an
+infrastructure of radios that do not move around * 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Edwin BROWNRIGG, executive director, Memex Research Institute, first
+polled the audience in order to seek out regular users of the Internet as
+well as those planning to use it some time in the future.  With nearly
+everybody in the room falling into one category or the other, BROWNRIGG
+made a point re access, namely that numerous individuals, especially those
+who use the Internet every day, take for granted their access to it, the
+speeds with which they are connected, and how well it all works. 
+However, as BROWNRIGG discovered between 1987 and 1989 in Australia,
+if one wants access to the Internet but cannot afford it or has some
+physical boundary that prevents her or him from gaining access, it can
+be extremely frustrating.  He suggested that because of economics and
+physical barriers we were beginning to create a world of haves and have-nots
+in the process of scholarly communication, even in the United States.
+
+BROWNRIGG detailed the development of MELVYL in academic year 1980-81 in
+the Division of Library Automation at the University of California, in
+order to underscore the issue of access to the system, which at the
+outset was extremely limited.  In short, the project needed to build a
+network, which at that time entailed use of satellite technology, that is,
+putting earth stations on campus and also acquiring some terrestrial links
+from the State of California's microwave system.  The installation of
+satellite links, however, did not solve the problem (which actually
+formed part of a larger problem involving politics and financial resources).
+For while the project team could get a signal onto a campus, it had no means
+of distributing the signal throughout the campus.  The solution involved
+adopting a recent development in wireless communication called packet radio,
+which combined the basic notion of packet-switching with radio.  The project
+used this technology to get the signal from a point on campus where it
+came down, an earth station for example, into the libraries, because it
+found that wiring the libraries, especially the older marble buildings,
+would cost $2,000-$5,000 per terminal.
+
+BROWNRIGG noted that, ten years ago, the project had neither the public
+policy nor the technology that would have allowed it to use packet radio
+in any meaningful way.  Since then much had changed.  He proceeded to
+detail research and development of the technology, how it is being
+deployed in California, and what direction he thought it would take.
+The design criteria are to produce a high-speed, one-time, low-cost,
+high-quality, secure, license-free device (packet radio) that one can
+plug in and play today, forget about it, and have access to the Internet. 
+By high speed, BROWNRIGG meant 1 megabyte and 1.5 megabytes.  Those units
+have been built, he continued, and are in the process of being
+type-certified by an independent underwriting laboratory so that they can
+be type-licensed by the Federal Communications Commission.  As is the
+case with citizens band, one will be able to purchase a unit and not have
+to worry about applying for a license.
+
+The basic idea, BROWNRIGG elaborated, is to take high-speed radio data
+transmission and create a backbone network that at certain strategic
+points in the network will "gateway" into a medium-speed packet radio
+(i.e., one that runs at 38.4 kilobytes), so that perhaps by 1994-1995
+people, like those in the audience for the price of a VCR could purchase
+a medium-speed radio for the office or home, have full network connectivity
+to the Internet, and partake of all its services, with no need for an FCC
+license and no regular bill from the local common carrier.  BROWNRIGG
+presented several details of a demonstration project currently taking
+place in San Diego and described plans, pending funding, to install a
+full-bore network in the San Francisco area.  This network will have 600
+nodes running at backbone speeds, and 100 of these nodes will be libraries,
+which in turn will be the gateway ports to the 38.4 kilobyte radios that
+will give coverage for the neighborhoods surrounding the libraries.
+
+BROWNRIGG next explained Part 15.247, a new rule within Title 47 of the
+Code of Federal Regulations enacted by the FCC in 1985.  This rule
+challenged the industry, which has only now risen to the occasion, to
+build a radio that would run at no more than one watt of output power and
+use a fairly exotic method of modulating the radio wave called spread
+spectrum.  Spread spectrum in fact permits the building of networks so
+that numerous data communications can occur simultaneously, without
+interfering with each other, within the same wide radio channel.
+
+BROWNRIGG explained that the frequencies at which the radios would run
+are very short wave signals.  They are well above standard microwave and
+radar.  With a radio wave that small, one watt becomes a tremendous punch
+per bit and thus makes transmission at reasonable speed possible.  In
+order to minimize the potential for congestion, the project is
+undertaking to reimplement software which has been available in the
+networking business and is taken for granted now, for example, TCP/IP,
+routing algorithms, bridges, and gateways.  In addition, the project
+plans to take the WAIS server software in the public domain and
+reimplement it so that one can have a WAIS server on a Mac instead of a
+Unix machine.  The Memex Research Institute believes that libraries, in
+particular, will want to use the WAIS servers with packet radio.  This
+project, which has a team of about twelve people, will run through 1993
+and will include the 100 libraries already mentioned as well as other
+professionals such as those in the medical profession, engineering, and
+law.  Thus, the need is to create an infrastructure of radios that do not
+move around, which, BROWNRIGG hopes, will solve a problem not only for
+libraries but for individuals who, by and large today, do not have access
+to the Internet from their homes and offices.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Project operating frequencies *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+During a brief discussion period, which also concluded the day's
+proceedings, BROWNRIGG stated that the project was operating in four
+frequencies.  The slow speed is operating at 435 megahertz, and it would
+later go up to 920 megahertz.  With the high-speed frequency, the
+one-megabyte radios will run at 2.4 gigabits, and 1.5 will run at 5.7. 
+At 5.7, rain can be a factor, but it would have to be tropical rain,
+unlike what falls in most parts of the United States.
+
+                                 ******
+
+SESSION IV.  IMAGE CAPTURE, TEXT CAPTURE, OVERVIEW OF TEXT AND
+             IMAGE STORAGE FORMATS
+
+William HOOTON, vice president of operations, I-NET, moderated this session.
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+KENNEY * Factors influencing development of CXP * Advantages of using
+digital technology versus photocopy and microfilm * A primary goal of
+CXP; publishing challenges * Characteristics of copies printed * Quality
+of samples achieved in image capture * Several factors to be considered
+in choosing scanning * Emphasis of CXP on timely and cost-effective
+production of black-and-white printed facsimiles * Results of producing
+microfilm from digital files * Advantages of creating microfilm * Details
+concerning production * Costs * Role of digital technology in library
+preservation *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Anne KENNEY, associate director, Department of Preservation and
+Conservation, Cornell University, opened her talk by observing that the
+Cornell Xerox Project (CXP) has been guided by the assumption that the
+ability to produce printed facsimiles or to replace paper with paper
+would be important, at least for the present generation of users and
+equipment.  She described three factors that influenced development of
+the project:  1) Because the project has emphasized the preservation of
+deteriorating brittle books, the quality of what was produced had to be
+sufficiently high to return a paper replacement to the shelf.  CXP was
+only interested in using:  2) a system that was cost-effective, which
+meant that it had to be cost-competitive with the processes currently
+available, principally photocopy and microfilm, and 3) new or currently
+available product hardware and software.
+
+KENNEY described the advantages that using digital technology offers over
+both photocopy and microfilm:  1) The potential exists to create a higher
+quality reproduction of a deteriorating original than conventional
+light-lens technology.  2) Because a digital image is an encoded
+representation, it can be reproduced again and again with no resulting
+loss of quality, as opposed to the situation with light-lens processes,
+in which there is discernible difference between a second and a
+subsequent generation of an image.  3) A digital image can be manipulated
+in a number of ways to improve image capture; for example, Xerox has
+developed a windowing application that enables one to capture a page
+containing both text and illustrations in a manner that optimizes the
+reproduction of both.  (With light-lens technology, one must choose which
+to optimize, text or the illustration; in preservation microfilming, the
+current practice is to shoot an illustrated page twice, once to highlight
+the text and the second time to provide the best capture for the
+illustration.)  4) A digital image can also be edited, density levels
+adjusted to remove underlining and stains, and to increase legibility for
+faint documents.  5) On-screen inspection can take place at the time of
+initial setup and adjustments made prior to scanning, factors that
+substantially reduce the number of retakes required in quality control.
+
+A primary goal of CXP has been to evaluate the paper output printed on
+the Xerox DocuTech, a high-speed printer that produces 600-dpi pages from
+scanned images at a rate of 135 pages a minute.  KENNEY recounted several
+publishing challenges to represent faithful and legible reproductions of
+the originals that the 600-dpi copy for the most part successfully
+captured.  For example, many of the deteriorating volumes in the project
+were heavily illustrated with fine line drawings or halftones or came in
+languages such as Japanese, in which the buildup of characters comprised
+of varying strokes is difficult to reproduce at lower resolutions; a
+surprising number of them came with annotations and mathematical
+formulas, which it was critical to be able to duplicate exactly.
+
+KENNEY noted that 1) the copies are being printed on paper that meets the
+ANSI standards for performance, 2) the DocuTech printer meets the machine
+and toner requirements for proper adhesion of print to page, as described
+by the National Archives, and thus 3) paper product is considered to be
+the archival equivalent of preservation photocopy.
+
+KENNEY then discussed several samples of the quality achieved in the
+project that had been distributed in a handout, for example, a copy of a
+print-on-demand version of the 1911 Reed lecture on the steam turbine,
+which contains halftones, line drawings, and illustrations embedded in
+text; the first four loose pages in the volume compared the capture
+capabilities of scanning to photocopy for a standard test target, the
+IEEE standard 167A 1987 test chart.  In all instances scanning proved
+superior to photocopy, though only slightly more so in one.
+
+Conceding the simplistic nature of her review of the quality of scanning
+to photocopy, KENNEY described it as one representation of the kinds of
+settings that could be used with scanning capabilities on the equipment
+CXP uses.  KENNEY also pointed out that CXP investigated the quality
+achieved with binary scanning only, and noted the great promise in gray
+scale and color scanning, whose advantages and disadvantages need to be
+examined.  She argued further that scanning resolutions and file formats
+can represent a complex trade-off between the time it takes to capture
+material, file size, fidelity to the original, and on-screen display; and
+printing and equipment availability.  All these factors must be taken
+into consideration.
+
+CXP placed primary emphasis on the production in a timely and
+cost-effective manner of printed facsimiles that consisted largely of
+black-and-white text.  With binary scanning, large files may be
+compressed efficiently and in a lossless manner (i.e., no data is lost in
+the process of compressing [and decompressing] an image--the exact
+bit-representation is maintained) using Group 4 CCITT (i.e., the French
+acronym for International Consultative Committee for Telegraph and
+Telephone) compression.  CXP was getting compression ratios of about
+forty to one.  Gray-scale compression, which primarily uses JPEG, is much
+less economical and can represent a lossy compression (i.e., not
+lossless), so that as one compresses and decompresses, the illustration
+is subtly changed.  While binary files produce a high-quality printed
+version, it appears 1) that other combinations of spatial resolution with
+gray and/or color hold great promise as well, and 2) that gray scale can
+represent a tremendous advantage for on-screen viewing.  The quality
+associated with binary and gray scale also depends on the equipment used. 
+For instance, binary scanning produces a much better copy on a binary
+printer.
+
+Among CXP's findings concerning the production of microfilm from digital
+files, KENNEY reported that the digital files for the same Reed lecture
+were used to produce sample film using an electron beam recorder.  The
+resulting film was faithful to the image capture of the digital files,
+and while CXP felt that the text and image pages represented in the Reed
+lecture were superior to that of the light-lens film, the resolution
+readings for the 600 dpi were not as high as standard microfilming. 
+KENNEY argued that the standards defined for light-lens technology are
+not totally transferable to a digital environment.  Moreover, they are
+based on definition of quality for a preservation copy.  Although making
+this case will prove to be a long, uphill struggle, CXP plans to continue
+to investigate the issue over the course of the next year.
+
+KENNEY concluded this portion of her talk with a discussion of the
+advantages of creating film:  it can serve as a primary backup and as a
+preservation master to the digital file; it could then become the print
+or production master and service copies could be paper, film, optical
+disks, magnetic media, or on-screen display.
+
+Finally, KENNEY presented details re production:
+
+     * Development and testing of a moderately-high resolution production
+     scanning workstation represented a third goal of CXP; to date, 1,000
+     volumes have been scanned, or about 300,000 images.
+
+     * The resulting digital files are stored and used to produce
+     hard-copy replacements for the originals and additional prints on
+     demand; although the initial costs are high, scanning technology
+     offers an affordable means for reformatting brittle material.
+
+     * A technician in production mode can scan 300 pages per hour when
+     performing single-sheet scanning, which is a necessity when working
+     with truly brittle paper; this figure is expected to increase
+     significantly with subsequent iterations of the software from Xerox;
+     a three-month time-and-cost study of scanning found that the average
+     300-page book would take about an hour and forty minutes to scan
+     (this figure included the time for setup, which involves keying in
+     primary bibliographic data, going into quality control mode to
+     define page size, establishing front-to-back registration, and
+     scanning sample pages to identify a default range of settings for
+     the entire book--functions not dissimilar to those performed by
+     filmers or those preparing a book for photocopy).
+
+     * The final step in the scanning process involved rescans, which
+     happily were few and far between, representing well under 1 percent
+     of the total pages scanned.
+
+In addition to technician time, CXP costed out equipment, amortized over
+four years, the cost of storing and refreshing the digital files every
+four years, and the cost of printing and binding, book-cloth binding, a
+paper reproduction.  The total amounted to a little under $65 per single
+300-page volume, with 30 percent overhead included--a figure competitive
+with the prices currently charged by photocopy vendors.
+
+Of course, with scanning, in addition to the paper facsimile, one is left
+with a digital file from which subsequent copies of the book can be
+produced for a fraction of the cost of photocopy, with readers afforded
+choices in the form of these copies.
+
+KENNEY concluded that digital technology offers an electronic means for a
+library preservation effort to pay for itself.  If a brittle-book program
+included the means of disseminating reprints of books that are in demand
+by libraries and researchers alike, the initial investment in capture
+could be recovered and used to preserve additional but less popular
+books.  She disclosed that an economic model for a self-sustaining
+program could be developed for CXP's report to the Commission on
+Preservation and Access (CPA).
+
+KENNEY stressed that the focus of CXP has been on obtaining high quality
+in a production environment.  The use of digital technology is viewed as
+an affordable alternative to other reformatting options.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ANDRE * Overview and history of NATDP * Various agricultural CD-ROM
+products created inhouse and by service bureaus * Pilot project on
+Internet transmission * Additional products in progress *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Pamela ANDRE, associate director for automation, National Agricultural
+Text Digitizing Program (NATDP), National Agricultural Library (NAL),
+presented an overview of NATDP, which has been underway at NAL the last
+four years, before Judith ZIDAR discussed the technical details.  ANDRE
+defined agricultural information as a broad range of material going from
+basic and applied research in the hard sciences to the one-page pamphlets
+that are distributed by the cooperative state extension services on such
+things as how to grow blueberries.
+
+NATDP began in late 1986 with a meeting of representatives from the
+land-grant library community to deal with the issue of electronic
+information.  NAL and forty-five of these libraries banded together to
+establish this project--to evaluate the technology for converting what
+were then source documents in paper form into electronic form, to provide
+access to that digital information, and then to distribute it. 
+Distributing that material to the community--the university community as
+well as the extension service community, potentially down to the county
+level--constituted the group's chief concern.
+
+Since January 1988 (when the microcomputer-based scanning system was
+installed at NAL), NATDP has done a variety of things, concerning which
+ZIDAR would provide further details.  For example, the first technology
+considered in the project's discussion phase was digital videodisc, which
+indicates how long ago it was conceived.
+
+Over the four years of this project, four separate CD-ROM products on
+four different agricultural topics were created, two at a
+scanning-and-OCR station installed at NAL, and two by service bureaus. 
+Thus, NATDP has gained comparative information in terms of those relative
+costs.  Each of these products contained the full ASCII text as well as
+page images of the material, or between 4,000 and 6,000 pages of material
+on these disks.  Topics included aquaculture, food, agriculture and
+science (i.e., international agriculture and research), acid rain, and
+Agent Orange, which was the final product distributed (approximately
+eighteen months before the Workshop).
+
+The third phase of NATDP focused on delivery mechanisms other than
+CD-ROM.  At the suggestion of Clifford LYNCH, who was a technical
+consultant to the project at this point, NATDP became involved with the
+Internet and initiated a project with the help of North Carolina State
+University, in which fourteen of the land-grant university libraries are
+transmitting digital images over the Internet in response to interlibrary
+loan requests--a topic for another meeting.  At this point, the pilot
+project had been completed for about a year and the final report would be
+available shortly after the Workshop.  In the meantime, the project's
+success had led to its extension.  (ANDRE noted that one of the first
+things done under the program title was to select a retrieval package to
+use with subsequent products; Windows Personal Librarian was the package
+of choice after a lengthy evaluation.)
+  
+Three additional products had been planned and were in progress:
+
+     1) An arrangement with the American Society of Agronomy--a
+     professional society that has published the Agronomy Journal since
+     about 1908--to scan and create bit-mapped images of its journal. 
+     ASA granted permission first to put and then to distribute this
+     material in electronic form, to hold it at NAL, and to use these
+     electronic images as a mechanism to deliver documents or print out
+     material for patrons, among other uses.  Effectively, NAL has the
+     right to use this material in support of its program. 
+     (Significantly, this arrangement offers a potential cooperative
+     model for working with other professional societies in agriculture
+     to try to do the same thing--put the journals of particular interest
+     to agriculture research into electronic form.)
+
+     2) An extension of the earlier product on aquaculture.
+
+     3) The George Washington Carver Papers--a joint project with
+     Tuskegee University to scan and convert from microfilm some 3,500
+     images of Carver's papers, letters, and drawings.
+
+It was anticipated that all of these products would appear no more than
+six months after the Workshop.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ZIDAR * (A separate arena for scanning) * Steps in creating a database *
+Image capture, with and without performing OCR * Keying in tracking data
+* Scanning, with electronic and manual tracking * Adjustments during
+scanning process * Scanning resolutions * Compression * De-skewing and
+filtering * Image capture from microform:  the papers and letters of
+George Washington Carver * Equipment used for a scanning system * 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Judith ZIDAR, coordinator, National Agricultural Text Digitizing Program
+(NATDP), National Agricultural Library (NAL), illustrated the technical
+details of NATDP, including her primary responsibility, scanning and
+creating databases on a topic and putting them on CD-ROM.
+
+(ZIDAR remarked a separate arena from the CD-ROM projects, although the
+processing of the material is nearly identical, in which NATDP is also
+scanning material and loading it on a Next microcomputer, which in turn
+is linked to NAL's integrated library system.  Thus, searches in NAL's
+bibliographic database will enable people to pull up actual page images
+and text for any documents that have been entered.)
+
+In accordance with the session's topic, ZIDAR focused her illustrated
+talk on image capture, offering a primer on the three main steps in the
+process:  1) assemble the printed publications; 2) design the database
+(database design occurs in the process of preparing the material for
+scanning; this step entails reviewing and organizing the material,
+defining the contents--what will constitute a record, what kinds of
+fields will be captured in terms of author, title, etc.); 3) perform a
+certain amount of markup on the paper publications.  NAL performs this
+task record by record, preparing work sheets or some other sort of
+tracking material and designing descriptors and other enhancements to be
+added to the data that will not be captured from the printed publication. 
+Part of this process also involves determining NATDP's file and directory
+structure:  NATDP attempts to avoid putting more than approximately 100
+images in a directory, because placing more than that on a CD-ROM would
+reduce the access speed.
+
+This up-front process takes approximately two weeks for a
+6,000-7,000-page database.  The next step is to capture the page images. 
+How long this process takes is determined by the decision whether or not
+to perform OCR.  Not performing OCR speeds the process, whereas text
+capture requires greater care because of the quality of the image:  it
+has to be straighter and allowance must be made for text on a page, not
+just for the capture of photographs.
+
+NATDP keys in tracking data, that is, a standard bibliographic record
+including the title of the book and the title of the chapter, which will
+later either become the access information or will be attached to the
+front of a full-text record so that it is searchable.
+
+Images are scanned from a bound or unbound publication, chiefly from
+bound publications in the case of NATDP, however, because often they are
+the only copies and the publications are returned to the shelves.  NATDP
+usually scans one record at a time, because its database tracking system
+tracks the document in that way and does not require further logical
+separating of the images.  After performing optical character
+recognition, NATDP moves the images off the hard disk and maintains a
+volume sheet.  Though the system tracks electronically, all the
+processing steps are also tracked manually with a log sheet.
+
+ZIDAR next illustrated the kinds of adjustments that one can make when
+scanning from paper and microfilm, for example, redoing images that need
+special handling, setting for dithering or gray scale, and adjusting for
+brightness or for the whole book at one time.
+
+NATDP is scanning at 300 dots per inch, a standard scanning resolution. 
+Though adequate for capturing text that is all of a standard size, 300
+dpi is unsuitable for any kind of photographic material or for very small
+text.  Many scanners allow for different image formats, TIFF, of course,
+being a de facto standard.  But if one intends to exchange images with
+other people, the ability to scan other image formats, even if they are
+less common, becomes highly desirable.
+
+CCITT Group 4 is the standard compression for normal black-and-white
+images, JPEG for gray scale or color.   ZIDAR recommended 1) using the
+standard compressions, particularly if one attempts to make material
+available and to allow users to download images and reuse them from
+CD-ROMs; and 2) maintaining the ability to output an uncompressed image,
+because in image exchange uncompressed images are more likely to be able
+to cross platforms.
+
+ZIDAR emphasized the importance of de-skewing and filtering as
+requirements on NATDP's upgraded system.  For instance, scanning bound
+books, particularly books published by the federal government whose pages
+are skewed, and trying to scan them straight if OCR is to be performed,
+is extremely time-consuming.  The same holds for filtering of
+poor-quality or older materials.
+
+ZIDAR described image capture from microform, using as an example three
+reels from a sixty-seven-reel set of the papers and letters of George
+Washington Carver that had been produced by Tuskegee University.  These
+resulted in approximately 3,500 images, which NATDP had had scanned by
+its service contractor, Science Applications International Corporation
+(SAIC).  NATDP also created bibliographic records for access.  (NATDP did
+not have such specialized equipment as a microfilm scanner.
+
+Unfortunately, the process of scanning from microfilm was not an
+unqualified success, ZIDAR reported:  because microfilm frame sizes vary,
+occasionally some frames were missed, which without spending much time
+and money could not be recaptured.
+
+OCR could not be performed from the scanned images of the frames.  The
+bleeding in the text simply output text, when OCR was run, that could not
+even be edited.  NATDP tested for negative versus positive images,
+landscape versus portrait orientation, and single- versus dual-page
+microfilm, none of which seemed to affect the quality of the image; but
+also on none of them could OCR be performed.
+
+In selecting the microfilm they would use, therefore, NATDP had other
+factors in mind.  ZIDAR noted two factors that influenced the quality of
+the images:  1) the inherent quality of the original and 2) the amount of
+size reduction on the pages.
+
+The Carver papers were selected because they are informative and visually
+interesting, treat a single subject, and are valuable in their own right. 
+The images were scanned and divided into logical records by SAIC, then
+delivered, and loaded onto NATDP's system, where bibliographic
+information taken directly from the images was added.  Scanning was
+completed in summer 1991 and by the end of summer 1992 the disk was
+scheduled to be published.
+
+Problems encountered during processing included the following:  Because
+the microfilm scanning had to be done in a batch, adjustment for
+individual page variations was not possible.  The frame size varied on
+account of the nature of the material, and therefore some of the frames
+were missed while others were just partial frames.  The only way to go
+back and capture this material was to print out the page with the
+microfilm reader from the missing frame and then scan it in from the
+page, which was extremely time-consuming.  The quality of the images
+scanned from the printout of the microfilm compared unfavorably with that
+of the original images captured directly from the microfilm.  The
+inability to perform OCR also was a major disappointment.  At the time,
+computer output microfilm was unavailable to test.
+
+The equipment used for a scanning system was the last topic addressed by
+ZIDAR.  The type of equipment that one would purchase for a scanning
+system included:  a microcomputer, at least a 386, but preferably a 486;
+a large hard disk, 380 megabyte at minimum; a multi-tasking operating
+system that allows one to run some things in batch in the background
+while scanning or doing text editing, for example, Unix or OS/2 and,
+theoretically, Windows; a high-speed scanner and scanning software that
+allows one to make the various adjustments mentioned earlier; a
+high-resolution monitor (150 dpi ); OCR software and hardware to perform
+text recognition; an optical disk subsystem on which to archive all the
+images as the processing is done; file management and tracking software.
+
+ZIDAR opined that the software one purchases was more important than the
+hardware and might also cost more than the hardware, but it was likely to
+prove critical to the success or failure of one's system.  In addition to
+a stand-alone scanning workstation for image capture, then, text capture
+requires one or two editing stations networked to this scanning station
+to perform editing.  Editing the text takes two or three times as long as
+capturing the images.
+
+Finally, ZIDAR stressed the importance of buying an open system that allows
+for more than one vendor, complies with standards, and can be upgraded.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+WATERS *Yale University Library's master plan to convert microfilm to
+digital imagery (POB) * The place of electronic tools in the library of
+the future * The uses of images and an image library * Primary input from
+preservation microfilm * Features distinguishing POB from CXP and key
+hypotheses guiding POB * Use of vendor selection process to facilitate
+organizational work * Criteria for selecting vendor * Finalists and
+results of process for Yale * Key factor distinguishing vendors *
+Components, design principles, and some estimated costs of POB * Role of
+preservation materials in developing imaging market * Factors affecting
+quality and cost * Factors affecting the usability of complex documents
+in image form * 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Donald WATERS, head of the Systems Office, Yale University Library,
+reported on the progress of a master plan for a project at Yale to
+convert microfilm to digital imagery, Project Open Book (POB).  Stating
+that POB was in an advanced stage of planning, WATERS detailed, in
+particular, the process of selecting a vendor partner and several key
+issues under discussion as Yale prepares to move into the project itself. 
+He commented first on the vision that serves as the context of POB and
+then described its purpose and scope.
+
+WATERS sees the library of the future not necessarily as an electronic
+library but as a place that generates, preserves, and improves for its
+clients ready access to both intellectual and physical recorded
+knowledge.  Electronic tools must find a place in the library in the
+context of this vision.  Several roles for electronic tools include
+serving as:  indirect sources of electronic knowledge or as "finding"
+aids (the on-line catalogues, the article-level indices, registers for
+documents and archives); direct sources of recorded knowledge; full-text
+images; and various kinds of compound sources of recorded knowledge (the
+so-called compound documents of Hypertext, mixed text and image,
+mixed-text image format, and multimedia).
+
+POB is looking particularly at images and an image library, the uses to
+which images will be put (e.g., storage, printing, browsing, and then use
+as input for other processes), OCR as a subsequent process to image
+capture, or creating an image library, and also possibly generating
+microfilm.
+
+While input will come from a variety of sources, POB is considering
+especially input from preservation microfilm.  A possible outcome is that
+the film and paper which provide the input for the image library
+eventually may go off into remote storage, and that the image library may
+be the primary access tool.
+
+The purpose and scope of POB focus on imaging.  Though related to CXP,
+POB has two features which distinguish it:  1) scale--conversion of
+10,000 volumes into digital image form; and 2) source--conversion from
+microfilm.  Given these features, several key working hypotheses guide
+POB, including:  1) Since POB is using microfilm, it is not concerned with
+the image library as a preservation medium.  2) Digital imagery can improve
+access to recorded knowledge through printing and network distribution at
+a modest incremental cost of microfilm.  3) Capturing and storing documents
+in a digital image form is necessary to further improvements in access.
+(POB distinguishes between the imaging, digitizing process and OCR,
+which at this stage it does not plan to perform.)
+
+Currently in its first or organizational phase, POB found that it could
+use a vendor selection process to facilitate a good deal of the
+organizational work (e.g., creating a project team and advisory board,
+confirming the validity of the plan, establishing the cost of the project
+and a budget, selecting the materials to convert, and then raising the
+necessary funds).
+
+POB developed numerous selection criteria, including:  a firm committed
+to image-document management, the ability to serve as systems integrator
+in a large-scale project over several years, interest in developing the
+requisite software as a standard rather than a custom product, and a
+willingness to invest substantial resources in the project itself.
+
+Two vendors, DEC and Xerox, were selected as finalists in October 1991,
+and with the support of the Commission on Preservation and Access, each
+was commissioned to generate a detailed requirements analysis for the
+project and then to submit a formal proposal for the completion of the
+project, which included a budget and costs. The terms were that POB would
+pay the loser.  The results for Yale of involving a vendor included: 
+broad involvement of Yale staff across the board at a relatively low
+cost, which may have long-term significance in carrying out the project
+(twenty-five to thirty university people are engaged in POB); better
+understanding of the factors that affect corporate response to markets
+for imaging products; a competitive proposal; and a more sophisticated
+view of the imaging markets.
+
+The most important factor that distinguished the vendors under
+consideration was their identification with the customer.  The size and
+internal complexity of the company also was an important factor.  POB was
+looking at large companies that had substantial resources.  In the end,
+the process generated for Yale two competitive proposals, with Xerox's
+the clear winner.  WATERS then described the components of the proposal,
+the design principles, and some of the costs estimated for the process.
+
+Components are essentially four:  a conversion subsystem, a
+network-accessible storage subsystem for 10,000 books (and POB expects
+200 to 600 dpi storage), browsing stations distributed on the campus
+network, and network access to the image printers.
+
+Among the design principles, POB wanted conversion at the highest
+possible resolution.  Assuming TIFF files, TIFF files with Group 4
+compression, TCP/IP, and ethernet network on campus, POB wanted a
+client-server approach with image documents distributed to the
+workstations and made accessible through native workstation interfaces
+such as Windows.  POB also insisted on a phased approach to
+implementation:  1) a stand-alone, single-user, low-cost entry into the
+business with a workstation focused on conversion and allowing POB to
+explore user access; 2) movement into a higher-volume conversion with
+network-accessible storage and multiple access stations; and 3) a
+high-volume conversion, full-capacity storage, and multiple browsing
+stations distributed throughout the campus.
+
+The costs proposed for start-up assumed the existence of the Yale network
+and its two DocuTech image printers.  Other start-up costs are estimated
+at $1 million over the three phases.  At the end of the project, the annual
+operating costs estimated primarily for the software and hardware proposed
+come to about $60,000, but these exclude costs for labor needed in the
+conversion process, network and printer usage, and facilities management.
+
+Finally, the selection process produced for Yale a more sophisticated
+view of the imaging markets:  the management of complex documents in
+image form is not a preservation problem, not a library problem, but a
+general problem in a broad, general industry.  Preservation materials are
+useful for developing that market because of the qualities of the
+material.  For example, much of it is out of copyright.  The resolution
+of key issues such as the quality of scanning and image browsing also
+will affect development of that market.
+
+The technology is readily available but changing rapidly.  In this
+context of rapid change, several factors affect quality and cost, to
+which POB intends to pay particular attention, for example, the various
+levels of resolution that can be achieved.  POB believes it can bring
+resolution up to 600 dpi, but an interpolation process from 400 to 600 is
+more likely.  The variation quality in microfilm will prove to be a
+highly important factor.  POB may reexamine the standards used to film in
+the first place by looking at this process as a follow-on to microfilming.
+
+Other important factors include:  the techniques available to the
+operator for handling material, the ways of integrating quality control
+into the digitizing work flow, and a work flow that includes indexing and
+storage.  POB's requirement was to be able to deal with quality control
+at the point of scanning.  Thus, thanks to Xerox, POB anticipates having
+a mechanism which will allow it not only to scan in batch form, but to
+review the material as it goes through the scanner and control quality
+from the outset.
+
+The standards for measuring quality and costs depend greatly on the uses
+of the material, including subsequent OCR, storage, printing, and
+browsing.  But especially at issue for POB is the facility for browsing. 
+This facility, WATERS said, is perhaps the weakest aspect of imaging
+technology and the most in need of development.
+
+A variety of factors affect the usability of complex documents in image
+form, among them:  1) the ability of the system to handle the full range
+of document types, not just monographs but serials, multi-part
+monographs, and manuscripts; 2) the location of the database of record
+for bibliographic information about the image document, which POB wants
+to enter once and in the most useful place, the on-line catalog; 3) a
+document identifier for referencing the bibliographic information in one
+place and the images in another; 4) the technique for making the basic
+internal structure of the document accessible to the reader; and finally,
+5) the physical presentation on the CRT of those documents.  POB is ready
+to complete this phase now.  One last decision involves deciding which
+material to scan.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * TIFF files constitute de facto standard * NARA's experience
+with image conversion software and text conversion * RFC 1314 *
+Considerable flux concerning available hardware and software solutions *
+NAL through-put rate during scanning * Window management questions *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+In the question-and-answer period that followed WATERS's presentation,
+the following points emerged:
+
+     * ZIDAR's statement about using TIFF files as a standard meant de
+     facto standard.  This is what most people use and typically exchange
+     with other groups, across platforms, or even occasionally across
+     display software.
+
+     * HOLMES commented on the unsuccessful experience of NARA in
+     attempting to run image-conversion software or to exchange between
+     applications:  What are supposedly TIFF files go into other software
+     that is supposed to be able to accept TIFF but cannot recognize the
+     format and cannot deal with it, and thus renders the exchange
+     useless.  Re text conversion, he noted the different recognition
+     rates obtained by substituting the make and model of scanners in
+     NARA's recent test of an "intelligent" character-recognition product
+     for a new company.  In the selection of hardware and software,
+     HOLMES argued, software no longer constitutes the overriding factor
+     it did until about a year ago; rather it is perhaps important to
+     look at both now.
+
+     * Danny Cohen and Alan Katz of the University of Southern California
+     Information Sciences Institute began circulating as an Internet RFC
+     (RFC 1314) about a month ago a standard for a TIFF interchange
+     format for Internet distribution of monochrome bit-mapped images,
+     which LYNCH said he believed would be used as a de facto standard.
+
+     * FLEISCHHAUER's impression from hearing these reports and thinking
+     about AM's experience was that there is considerable flux concerning
+     available hardware and software solutions.  HOOTON agreed and
+     commented at the same time on ZIDAR's statement that the equipment
+     employed affects the results produced.  One cannot draw a complete
+     conclusion by saying it is difficult or impossible to perform OCR
+     from scanning microfilm, for example, with that device,  that set of
+     parameters, and system requirements, because numerous other people
+     are accomplishing just that, using other components, perhaps. 
+     HOOTON opined that both the hardware and the software were highly
+     important.  Most of the problems discussed today have been solved in
+     numerous different ways by other people.  Though it is good to be
+     cognizant of various experiences, this is not to say that it will
+     always be thus.
+
+     * At NAL, the through-put rate of the scanning process for paper,
+     page by page, performing OCR, ranges from 300 to 600 pages per day;
+     not performing OCR is considerably faster, although how much faster
+     is not known.  This is for scanning from bound books, which is much
+     slower.
+
+     * WATERS commented on window management questions:  DEC proposed an
+     X-Windows solution which was problematical for two reasons.  One was
+     POB's requirement to be able to manipulate images on the workstation
+     and bring them down to the workstation itself and the other was
+     network usage.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+THOMA * Illustration of deficiencies in scanning and storage process *
+Image quality in this process * Different costs entailed by better image
+quality * Techniques for overcoming various de-ficiencies:  fixed
+thresholding, dynamic thresholding, dithering, image merge * Page edge
+effects *   
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+George THOMA, chief, Communications Engineering Branch, National Library
+of Medicine (NLM), illustrated several of the deficiencies discussed by
+the previous speakers.  He introduced the topic of special problems by
+noting the advantages of electronic imaging.  For example, it is regenerable
+because it is a coded file, and real-time quality control is possible with
+electronic capture, whereas in photographic capture it is not.
+
+One of the difficulties discussed in the scanning and storage process was
+image quality which, without belaboring the obvious, means different
+things for maps, medical X-rays, or broadcast television.  In the case of
+documents, THOMA said, image quality boils down to legibility of the
+textual parts, and fidelity in the case of gray or color photo print-type
+material.  Legibility boils down to scan density, the standard in most
+cases being 300 dpi.  Increasing the resolution with scanners that
+perform 600 or 1200 dpi, however, comes at a cost.
+
+Better image quality entails at least four different kinds of costs:  1)
+equipment costs, because the CCD (i.e., charge-couple device) with
+greater number of elements costs more;  2) time costs that translate to
+the actual capture costs, because manual labor is involved (the time is
+also dependent on the fact that more data has to be moved around in the
+machine in the scanning or network devices that perform the scanning as
+well as the storage);  3) media costs, because at high resolutions larger
+files have to be stored; and 4) transmission costs, because there is just
+more data to be transmitted.
+
+But while resolution takes care of the issue of legibility in image
+quality, other deficiencies have to do with contrast and elements on the
+page scanned or the image that needed to be removed or clarified.  Thus,
+THOMA proceeded to illustrate various deficiencies, how they are
+manifested, and several techniques to overcome them.
+
+Fixed thresholding was the first technique described, suitable for
+black-and-white text, when the contrast does not vary over the page.  One
+can have many different threshold levels in scanning devices.  Thus,
+THOMA offered an example of extremely poor contrast, which resulted from
+the fact that the stock was a heavy red.  This is the sort of image that
+when microfilmed fails to provide any legibility whatsoever.  Fixed
+thresholding is the way to change the black-to-red contrast to the
+desired black-to-white contrast.
+
+Other examples included material that had been browned or yellowed by
+age.  This was also a case of contrast deficiency, and correction was
+done by fixed thresholding.  A final example boils down to the same
+thing, slight variability, but it is not significant.  Fixed thresholding
+solves this problem as well.  The microfilm equivalent is certainly legible,
+but it comes with dark areas.  Though THOMA did not have a slide of the
+microfilm in this case, he did show the reproduced electronic image.
+
+When one has variable contrast over a page or the lighting over the page
+area varies, especially in the case where a bound volume has light
+shining on it, the image must be processed by a dynamic thresholding
+scheme.  One scheme, dynamic averaging, allows the threshold level not to
+be fixed but to be recomputed for every pixel from the neighboring
+characteristics.  The neighbors of a pixel determine where the threshold
+should be set for that pixel.
+
+THOMA showed an example of a page that had been made deficient by a
+variety of techniques, including a burn mark, coffee stains, and a yellow
+marker.  Application of a fixed-thresholding scheme, THOMA argued, might
+take care of several deficiencies on the page but not all of them. 
+Performing the calculation for a dynamic threshold setting, however,
+removes most of the deficiencies so that at least the text is legible.
+
+Another problem is representing a gray level with black-and-white pixels
+by a process known as dithering or electronic screening.  But dithering
+does not provide good image quality for pure black-and-white textual
+material.  THOMA illustrated this point with examples. Although its
+suitability for photoprint is the reason for electronic screening or
+dithering, it cannot be used for every compound image.  In the document
+that was distributed by CXP, THOMA noticed that the dithered image of the
+IEEE test chart evinced some deterioration in the text.  He presented an
+extreme example of deterioration in the text in which compounded
+documents had to be set right by other techniques.  The technique
+illustrated by the present example was an image merge in which the page
+is scanned twice and the settings go from fixed threshold to the
+dithering matrix; the resulting images are merged to give the best
+results with each technique.
+
+THOMA illustrated how dithering is also used in nonphotographic or
+nonprint materials with an example of a grayish page from a medical text,
+which was reproduced to show all of the gray that appeared in the
+original.  Dithering provided a reproduction of all the gray in the
+original of another example from the same text.
+
+THOMA finally illustrated the problem of bordering, or page-edge,
+effects.  Books and bound volumes that are placed on a photocopy machine
+or a scanner produce page-edge effects that are undesirable for two
+reasons:  1) the aesthetics of the image; after all, if the image is to
+be preserved, one does not necessarily want to keep all of its
+deficiencies; 2) compression (with the bordering problem THOMA
+illustrated, the compression ratio deteriorated tremendously).  One way
+to eliminate this more serious problem is to have the operator at the
+point of scanning window the part of the image that is desirable and
+automatically turn all of the pixels out of that picture to white. 
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+FLEISCHHAUER * AM's experience with scanning bound materials * Dithering
+*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Carl FLEISCHHAUER, coordinator, American Memory, Library of Congress,
+reported AM's experience with scanning bound materials, which he likened
+to the problems involved in using photocopying machines.  Very few
+devices in the industry offer book-edge scanning, let alone book cradles. 
+The problem may be unsolvable, FLEISCHHAUER said, because a large enough
+market does not exist for a preservation-quality scanner.  AM is using a
+Kurzweil scanner, which is a book-edge scanner now sold by Xerox.
+
+Devoting the remainder of his brief presentation to dithering,
+FLEISCHHAUER related AM's experience with a contractor who was using
+unsophisticated equipment and software to reduce moire patterns from
+printed halftones.  AM took the same image and used the dithering
+algorithm that forms part of the same Kurzweil Xerox scanner; it
+disguised moire patterns much more effectively.
+
+FLEISCHHAUER also observed that dithering produces a binary file which is
+useful for numerous purposes, for example, printing it on a laser printer
+without having to "re-halftone" it.  But it tends to defeat efficient
+compression, because the very thing that dithers to reduce moire patterns
+also tends to work against compression schemes.  AM thought the
+difference in image quality was worth it.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Relative use as a criterion for POB's selection of books to
+be converted into digital form *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+During the discussion period, WATERS noted that one of the criteria for
+selecting books among the 10,000 to be converted into digital image form
+would be how much relative use they would receive--a subject still
+requiring evaluation.  The challenge will be to understand whether
+coherent bodies of material will increase usage or whether POB should
+seek material that is being used, scan that, and make it more accessible. 
+POB might decide to digitize materials that are already heavily used, in
+order to make them more accessible and decrease wear on them.  Another
+approach would be to provide a large body of intellectually coherent
+material that may be used more in digital form than it is currently used
+in microfilm.  POB would seek material that was out of copyright.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+BARONAS * Origin and scope of AIIM * Types of documents produced in
+AIIM's standards program * Domain of AIIM's standardization work * AIIM's
+structure * TC 171 and MS23 * Electronic image management standards *
+Categories of EIM standardization where AIIM standards are being
+developed *  
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Jean BARONAS, senior manager, Department of Standards and Technology,
+Association for Information and Image Management (AIIM), described the
+not-for-profit association and the national and international programs
+for standardization in which AIIM is active.
+
+Accredited for twenty-five years as the nation's standards development
+organization for document image management, AIIM began life in a library
+community developing microfilm standards.  Today the association
+maintains both its library and business-image management standardization
+activities--and has moved into electronic image-management
+standardization (EIM).
+
+BARONAS defined the program's scope.  AIIM deals with:  1) the
+terminology of standards and of the technology it uses; 2) methods of
+measurement for the systems, as well as quality; 3) methodologies for
+users to evaluate and measure quality; 4) the features of apparatus used
+to manage and edit images; and 5) the procedures used to manage images.
+
+BARONAS noted that three types of documents are produced in the AIIM
+standards program:  the first two, accredited by the American National
+Standards Institute (ANSI), are standards and standard recommended
+practices.  Recommended practices differ from standards in that they
+contain more tutorial information.  A technical report is not an ANSI
+standard.  Because AIIM's policies and procedures for developing
+standards are approved by ANSI, its standards are labeled ANSI/AIIM,
+followed by the number and title of the standard.
+
+BARONAS then illustrated the domain of AIIM's standardization work.  For
+example, AIIM is the administrator of the U.S. Technical Advisory Group
+(TAG) to the International Standards Organization's (ISO) technical
+committee, TC l7l Micrographics and Optical Memories for Document and
+Image Recording, Storage, and Use.  AIIM officially works through ANSI in
+the international standardization process.
+
+BARONAS described AIIM's structure, including its board of directors, its
+standards board of twelve individuals active in the image-management
+industry, its strategic planning and legal admissibility task forces, and
+its National Standards Council, which is comprised of the members of a
+number of organizations who vote on every AIIM standard before it is
+published.  BARONAS pointed out that AIIM's liaisons deal with numerous
+other standards developers, including the optical disk community, office
+and publishing systems, image-codes-and-character set committees, and the
+National Information Standards Organization (NISO).
+
+BARONAS illustrated the procedures of TC l7l, which covers all aspects of
+image management.  When AIIM's national program has conceptualized a new
+project, it is usually submitted to the international level, so that the
+member countries of TC l7l can simultaneously work on the development of
+the standard or the technical report.  BARONAS also illustrated a classic
+microfilm standard, MS23, which deals with numerous imaging concepts that
+apply to electronic imaging.  Originally developed in the l970s, revised
+in the l980s, and revised again in l991, this standard is scheduled for
+another revision.  MS23 is an active standard whereby users may propose
+new density ranges and new methods of evaluating film images in the
+standard's revision.
+
+BARONAS detailed several electronic image-management standards, for
+instance, ANSI/AIIM MS44, a quality-control guideline for scanning 8.5"
+by 11" black-and-white office documents.  This standard is used with the
+IEEE fax image--a continuous tone photographic image with gray scales,
+text, and several continuous tone pictures--and AIIM test target number
+2, a representative document used in office document management.
+
+BARONAS next outlined the four categories of EIM standardization in which
+AIIM standards are being developed:  transfer and retrieval, evaluation,
+optical disc and document scanning applications, and design and
+conversion of documents.  She detailed several of the main projects of
+each:  1) in the category of image transfer and retrieval, a bi-level
+image transfer format, ANSI/AIIM MS53, which is a proposed standard that
+describes a file header for image transfer between unlike systems when
+the images are compressed using G3 and G4 compression; 2) the category of
+image evaluation, which includes the AIIM-proposed TR26 tutorial on image
+resolution (this technical report will treat the differences and
+similarities between classical or photographic and electronic imaging);
+3) design and conversion, which includes a proposed technical report
+called "Forms Design Optimization for EIM" (this report considers how
+general-purpose business forms can be best designed so that scanning is
+optimized; reprographic characteristics such as type, rules, background,
+tint, and color will likewise be treated in the technical report); 4)
+disk and document scanning applications includes a project a) on planning
+platters and disk management, b) on generating an application profile for
+EIM when images are stored and distributed on CD-ROM, and c) on
+evaluating SCSI2, and how a common command set can be generated for SCSI2
+so that document scanners are more easily integrated.  (ANSI/AIIM MS53
+will also apply to compressed images.)
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+BATTIN * The implications of standards for preservation * A major
+obstacle to successful cooperation * A hindrance to access in the digital
+environment * Standards a double-edged sword for those concerned with the
+preservation of the human record * Near-term prognosis for reliable
+archival standards * Preservation concerns for electronic media * Need
+for reconceptualizing our preservation principles * Standards in the real
+world and the politics of reproduction * Need to redefine the concept of
+archival and to begin to think in terms of life cycles * Cooperation and
+the La Guardia Eight * Concerns generated by discussions on the problems
+of preserving text and image * General principles to be adopted in a
+world without standards *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Patricia BATTIN, president, the Commission on Preservation and Access
+(CPA), addressed the implications of standards for preservation.  She
+listed several areas where the library profession and the analog world of
+the printed book had made enormous contributions over the past hundred
+years--for example, in bibliographic formats, binding standards, and, most
+important, in determining what constitutes longevity or archival quality.
+
+Although standards have lightened the preservation burden through the
+development of national and international collaborative programs,
+nevertheless, a pervasive mistrust of other people's standards remains a
+major obstacle to successful cooperation, BATTIN said.
+
+The zeal to achieve perfection, regardless of the cost, has hindered
+rather than facilitated access in some instances, and in the digital
+environment, where no real standards exist, has brought an ironically
+just reward.
+
+BATTIN argued that standards are a double-edged sword for those concerned
+with the preservation of the human record, that is, the provision of
+access to recorded knowledge in a multitude of media as far into the
+future as possible.  Standards are essential to facilitate
+interconnectivity and access, but, BATTIN said, as LYNCH pointed out
+yesterday, if set too soon they can hinder creativity, expansion of
+capability, and the broadening of access.  The characteristics of
+standards for digital imagery differ radically from those for analog
+imagery.  And the nature of digital technology implies continuing
+volatility and change.  To reiterate, precipitous standard-setting can
+inhibit creativity, but delayed standard-setting results in chaos.
+
+Since in BATTIN'S opinion the near-term prognosis for reliable archival
+standards, as defined by librarians in the analog world, is poor, two
+alternatives remain:  standing pat with the old technology, or
+reconceptualizing.
+
+Preservation concerns for electronic media fall into two general domains. 
+One is the continuing assurance of access to knowledge originally
+generated, stored, disseminated, and used in electronic form.  This
+domain contains several subdivisions, including 1) the closed,
+proprietary systems discussed the previous day, bundled information such
+as electronic journals and government agency records, and electronically
+produced or captured raw data; and 2) the application of digital
+technologies to the reformatting of materials originally published on a
+deteriorating analog medium such as acid paper or videotape.
+
+The preservation of electronic media requires a reconceptualizing of our
+preservation principles during a volatile, standardless transition which
+may last far longer than any of us envision today.  BATTIN urged the
+necessity of shifting focus from assessing, measuring, and setting
+standards for the permanence of the medium to the concept of managing
+continuing access to information stored on a variety of media and
+requiring a variety of ever-changing hardware and software for access--a
+fundamental shift for the library profession.
+
+BATTIN offered a primer on how to move forward with reasonable confidence
+in a world without standards.  Her comments fell roughly into two sections:
+1) standards in the real world and 2) the politics of reproduction.
+
+In regard to real-world standards, BATTIN argued the need to redefine the
+concept of archive and to begin to think in terms of life cycles.  In
+the past, the naive assumption that paper would last forever produced a
+cavalier attitude toward life cycles.  The transient nature of the
+electronic media has compelled people to recognize and accept upfront the
+concept of life cycles in place of permanency.
+
+Digital standards have to be developed and set in a cooperative context
+to ensure efficient exchange of information.  Moreover, during this
+transition period, greater flexibility concerning how concepts such as
+backup copies and archival copies in the CXP are defined is necessary,
+or the opportunity to move forward will be lost.
+
+In terms of cooperation, particularly in the university setting, BATTIN
+also argued the need to avoid going off in a hundred different
+directions.  The CPA has catalyzed a small group of universities called
+the La Guardia Eight--because La Guardia Airport is where meetings take
+place--Harvard, Yale, Cornell, Princeton, Penn State, Tennessee,
+Stanford, and USC, to develop a digital preservation consortium to look
+at all these issues and develop de facto standards as we move along,
+instead of waiting for something that is officially blessed.  Continuing
+to apply analog values and definitions of standards to the digital
+environment, BATTIN said, will effectively lead to forfeiture of the
+benefits of digital technology to research and scholarship.
+
+Under the second rubric, the politics of reproduction, BATTIN reiterated
+an oft-made argument concerning the electronic library, namely, that it
+is more difficult to transform than to create, and nowhere is that belief
+expressed more dramatically than in the conversion of brittle books to
+new media.  Preserving information published in electronic media involves
+making sure the information remains accessible and that digital
+information is not lost through reproduction.  In the analog world of
+photocopies and microfilm, the issue of fidelity to the original becomes
+paramount, as do issues of "Whose fidelity?" and "Whose original?"
+
+BATTIN elaborated these arguments with a few examples from a recent study
+conducted by the CPA on the problems of preserving text and image. 
+Discussions with scholars, librarians, and curators in a variety of
+disciplines dependent on text and image generated a variety of concerns,
+for example:  1) Copy what is, not what the technology is capable of. 
+This is very important for the history of ideas.  Scholars wish to know
+what the author saw and worked from.  And make available at the
+workstation the opportunity to erase all the defects and enhance the
+presentation.  2) The fidelity of reproduction--what is good enough, what
+can we afford, and the difference it makes--issues of subjective versus
+objective resolution.  3) The differences between primary and secondary
+users.  Restricting the definition of primary user to the one in whose
+discipline the material has been published runs one headlong into the
+reality that these printed books have had a host of other users from a
+host of other disciplines, who not only were looking for very different
+things, but who also shared values very different from those of the
+primary user.  4) The relationship of the standard of reproduction to new
+capabilities of scholarship--the browsing standard versus an archival
+standard.  How good must the archival standard be?  Can a distinction be
+drawn between potential users in setting standards for reproduction? 
+Archival storage, use copies, browsing copies--ought an attempt to set
+standards even be made?  5) Finally, costs.  How much are we prepared to
+pay to capture absolute fidelity?  What are the trade-offs between vastly
+enhanced access, degrees of fidelity, and costs?
+
+These standards, BATTIN concluded, serve to complicate further the
+reproduction process, and add to the long list of technical standards
+that are necessary to ensure widespread access.  Ways to articulate and
+analyze the costs that are attached to the different levels of standards
+must be found.
+
+Given the chaos concerning standards, which promises to linger for the
+foreseeable future, BATTIN urged adoption of the following general
+principles:
+
+     * Strive to understand the changing information requirements of
+     scholarly disciplines as more and more technology is integrated into
+     the process of research and scholarly communication in order to meet
+     future scholarly needs, not to build for the past.  Capture
+     deteriorating information at the highest affordable resolution, even
+     though the dissemination and display technologies will lag.
+
+     * Develop cooperative mechanisms to foster agreement on protocols
+     for document structure and other interchange mechanisms necessary
+     for widespread dissemination and use before official standards are
+     set.
+
+     * Accept that, in a transition period, de facto standards will have
+     to be developed.
+
+     * Capture information in a way that keeps all options open and
+     provides for total convertibility:  OCR, scanning of microfilm,
+     producing microfilm from scanned documents, etc.
+
+     * Work closely with the generators of information and the builders
+     of networks and databases to ensure that continuing accessibility is
+     a primary concern from the beginning.
+
+     * Piggyback on standards under development for the broad market, and
+     avoid library-specific standards; work with the vendors, in order to
+     take advantage of that which is being standardized for the rest of
+     the world.
+
+     * Concentrate efforts on managing permanence in the digital world,
+     rather than perfecting the longevity of a particular medium.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Additional comments on TIFF *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+During the brief discussion period that followed BATTIN's presentation,
+BARONAS explained that TIFF was not developed in collaboration with or
+under the auspices of AIIM.  TIFF is a company product, not a standard,
+is owned by two corporations, and is always changing.  BARONAS also
+observed that ANSI/AIIM MS53, a bi-level image file transfer format that
+allows unlike systems to exchange images, is compatible with TIFF as well
+as with DEC's architecture and IBM's MODCA/IOCA.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+HOOTON * Several questions to be considered in discussing text conversion
+*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+HOOTON introduced the final topic, text conversion, by noting that it is
+becoming an increasingly important part of the imaging business.  Many
+people now realize that it enhances their system to be able to have more
+and more character data as part of their imaging system.  Re the issue of
+OCR versus rekeying, HOOTON posed several questions:  How does one get
+text into computer-readable form?  Does one use automated processes? 
+Does one attempt to eliminate the use of operators where possible? 
+Standards for accuracy, he said, are extremely important:  it makes a
+major difference in cost and time whether one sets as a standard 98.5
+percent acceptance or 99.5 percent.  He mentioned outsourcing as a
+possibility for converting text.  Finally, what one does with the image
+to prepare it for the recognition process is also important, he said,
+because such preparation changes how recognition is viewed, as well as
+facilitates recognition itself.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+LESK * Roles of participants in CORE * Data flow * The scanning process *
+The image interface * Results of experiments involving the use of
+electronic resources and traditional paper copies * Testing the issue of
+serendipity * Conclusions *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Michael LESK, executive director, Computer Science Research, Bell
+Communications Research, Inc. (Bellcore), discussed the Chemical Online
+Retrieval Experiment (CORE), a cooperative project involving Cornell
+University, OCLC, Bellcore, and the American Chemical Society (ACS).
+
+LESK spoke on 1) how the scanning was performed, including the unusual
+feature of page segmentation, and 2) the use made of the text and the
+image in experiments.
+
+Working with the chemistry journals (because ACS has been saving its
+typesetting tapes since the mid-1970s and thus has a significant back-run
+of the most important chemistry journals in the United States), CORE is
+attempting to create an automated chemical library.  Approximately a
+quarter of the pages by square inch are made up of images of
+quasi-pictorial material; dealing with the graphic components of the
+pages is extremely important.  LESK described the roles of participants
+in CORE:  1) ACS provides copyright permission, journals on paper,
+journals on microfilm, and some of the definitions of the files; 2) at
+Bellcore, LESK chiefly performs the data preparation, while Dennis Egan
+performs experiments on the users of chemical abstracts, and supplies the
+indexing and numerous magnetic tapes;  3) Cornell provides the site of the
+experiment; 4) OCLC develops retrieval software and other user interfaces.
+Various manufacturers and publishers have furnished other help.
+
+Concerning data flow, Bellcore receives microfilm and paper from ACS; the
+microfilm is scanned by outside vendors, while the paper is scanned
+inhouse on an Improvision scanner, twenty pages per minute at 300 dpi,
+which provides sufficient quality for all practical uses.  LESK would
+prefer to have more gray level, because one of the ACS journals prints on
+some colored pages, which creates a problem.
+
+Bellcore performs all this scanning, creates a page-image file, and also
+selects from the pages the graphics, to mix with the text file (which is
+discussed later in the Workshop).  The user is always searching the ASCII
+file, but she or he may see a display based on the ASCII or a display
+based on the images.
+
+LESK illustrated how the program performs page analysis, and the image
+interface.  (The user types several words, is presented with a list--
+usually of the titles of articles contained in an issue--that derives
+from the ASCII, clicks on an icon and receives an image that mirrors an
+ACS page.)  LESK also illustrated an alternative interface, based on text
+on the ASCII, the so-called SuperBook interface from Bellcore.
+
+LESK next presented the results of an experiment conducted by Dennis Egan
+and involving thirty-six students at Cornell, one third of them
+undergraduate chemistry majors, one third senior undergraduate chemistry
+majors, and one third graduate chemistry students.  A third of them
+received the paper journals, the traditional paper copies and chemical
+abstracts on paper.  A third received image displays of the pictures of
+the pages, and a third received the text display with pop-up graphics.
+
+The students were given several questions made up by some chemistry
+professors.  The questions fell into five classes, ranging from very easy
+to very difficult, and included questions designed to simulate browsing
+as well as a traditional information retrieval-type task.
+
+LESK furnished the following results.  In the straightforward question
+search--the question being, what is the phosphorus oxygen bond distance
+and hydroxy phosphate?--the students were told that they could take
+fifteen minutes and, then, if they wished, give up.  The students with
+paper took more than fifteen minutes on average, and yet most of them
+gave up.  The students with either electronic format, text or image,
+received good scores in reasonable time, hardly ever had to give up, and
+usually found the right answer.
+
+In the browsing study, the students were given a list of eight topics,
+told to imagine that an issue of the Journal of the American Chemical
+Society had just appeared on their desks, and were also told to flip
+through it and to find topics mentioned in the issue.  The average scores
+were about the same.  (The students were told to answer yes or no about
+whether or not particular topics appeared.)  The errors, however, were
+quite different.  The students with paper rarely said that something
+appeared when it had not.  But they often failed to find something
+actually mentioned in the issue.  The computer people found numerous
+things, but they also frequently said that a topic was mentioned when it
+was not.  (The reason, of course, was that they were performing word
+searches.  They were finding that words were mentioned and they were
+concluding that they had accomplished their task.)
+
+This question also contained a trick to test the issue of serendipity. 
+The students were given another list of eight topics and instructed,
+without taking a second look at the journal, to recall how many of this
+new list of eight topics were in this particular issue.  This was an
+attempt to see if they performed better at remembering what they were not
+looking for.  They all performed about the same, paper or electronics,
+about 62 percent accurate.  In short, LESK said, people were not very
+good when it came to serendipity, but they were no worse at it with
+computers than they were with paper.
+
+(LESK gave a parenthetical illustration of the learning curve of students
+who used SuperBook.)
+
+The students using the electronic systems started off worse than the ones
+using print, but by the third of the three sessions in the series had
+caught up to print.  As one might expect, electronics provide a much
+better means of finding what one wants to read; reading speeds, once the
+object of the search has been found, are about the same.
+
+Almost none of the students could perform the hard task--the analogous
+transformation.  (It would require the expertise of organic chemists to
+complete.)  But an interesting result was that the students using the text
+search performed terribly, while those using the image system did best.
+That the text search system is driven by text offers the explanation.
+Everything is focused on the text; to see the pictures, one must press
+on an icon.  Many students found the right article containing the answer
+to the question, but they did not click on the icon to bring up the right
+figure and see it.  They did not know that they had found the right place,
+and thus got it wrong.
+
+The short answer demonstrated by this experiment was that in the event
+one does not know what to read, one needs the electronic systems; the
+electronic systems hold no advantage at the moment if one knows what to
+read, but neither do they impose a penalty.
+
+LESK concluded by commenting that, on one hand, the image system was easy
+to use.  On the other hand, the text display system, which represented
+twenty man-years of work in programming and polishing, was not winning,
+because the text was not being read, just searched.  The much easier
+system is highly competitive as well as remarkably effective for the
+actual chemists.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ERWAY * Most challenging aspect of working on AM * Assumptions guiding
+AM's approach * Testing different types of service bureaus * AM's
+requirement for 99.95 percent accuracy * Requirements for text-coding *
+Additional factors influencing AM's approach to coding * Results of AM's
+experience with rekeying * Other problems in dealing with service bureaus
+* Quality control the most time-consuming aspect of contracting out
+conversion * Long-term outlook uncertain *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+To Ricky ERWAY, associate coordinator, American Memory, Library of
+Congress, the constant variety of conversion projects taking place
+simultaneously represented perhaps the most challenging aspect of working
+on AM.  Thus, the challenge was not to find a solution for text
+conversion but a tool kit of solutions to apply to LC's varied
+collections that need to be converted.  ERWAY limited her remarks to the
+process of converting text to machine-readable form, and the variety of
+LC's text collections, for example, bound volumes, microfilm, and
+handwritten manuscripts.
+
+Two assumptions have guided AM's approach, ERWAY said:  1) A desire not
+to perform the conversion inhouse.  Because of the variety of formats and
+types of texts, to capitalize the equipment and have the talents and
+skills to operate them at LC would be extremely expensive.  Further, the
+natural inclination to upgrade to newer and better equipment each year
+made it reasonable for AM to focus on what it did best and seek external
+conversion services.  Using service bureaus also allowed AM to have
+several types of operations take place at the same time.  2) AM was not a
+technology project, but an effort to improve access to library
+collections.  Hence, whether text was converted using OCR or rekeying
+mattered little to AM.  What mattered were cost and accuracy of results.
+
+AM considered different types of service bureaus and selected three to
+perform several small tests in order to acquire a sense of the field. 
+The sample collections with which they worked included handwritten
+correspondence, typewritten manuscripts from the 1940s, and
+eighteenth-century printed broadsides on microfilm.  On none of these
+samples was OCR performed; they were all rekeyed.  AM had several special
+requirements for the three service bureaus it had engaged.  For instance,
+any errors in the original text were to be retained.  Working from bound
+volumes or anything that could not be sheet-fed also constituted a factor
+eliminating companies that would have performed OCR.
+
+AM requires 99.95 percent accuracy, which, though it sounds high, often
+means one or two errors per page.  The initial batch of test samples
+contained several handwritten materials for which AM did not require
+text-coding.  The results, ERWAY reported, were in all cases fairly
+comparable:  for the most part, all three service bureaus achieved 99.95
+percent accuracy.  AM was satisfied with the work but surprised at the cost.
+
+As AM began converting whole collections, it retained the requirement for
+99.95 percent accuracy and added requirements for text-coding.  AM needed
+to begin performing work more than three years ago before LC requirements
+for SGML applications had been established.  Since AM's goal was simply
+to retain any of the intellectual content represented by the formatting
+of the document (which would be lost if one performed a straight ASCII
+conversion), AM used "SGML-like" codes.  These codes resembled SGML tags
+but were used without the benefit of document-type definitions.  AM found
+that many service bureaus were not yet SGML-proficient.
+
+Additional factors influencing the approach AM took with respect to
+coding included:  1) the inability of any known microcomputer-based
+user-retrieval software to take advantage of SGML coding; and 2) the
+multiple inconsistencies in format of the older documents, which
+confirmed AM in its desire not to attempt to force the different formats
+to conform to a single document-type definition (DTD) and thus create the
+need for a separate DTD for each document. 
+
+The five text collections that AM has converted or is in the process of
+converting include a collection of eighteenth-century broadsides, a
+collection of pamphlets, two typescript document collections, and a
+collection of 150 books.
+
+ERWAY next reviewed the results of AM's experience with rekeying, noting
+again that because the bulk of AM's materials are historical, the quality
+of the text often does not lend itself to OCR.  While non-English
+speakers are less likely to guess or elaborate or correct typos in the
+original text, they are also less able to infer what we would; they also
+are nearly incapable of converting handwritten text.  Another
+disadvantage of working with overseas keyers is that they are much less
+likely to telephone with questions, especially on the coding, with the
+result that they develop their own rules as they encounter new
+situations.
+
+Government contracting procedures and time frames posed a major challenge
+to performing the conversion.  Many service bureaus are not accustomed to
+retaining the image, even if they perform OCR.  Thus, questions of image
+format and storage media were somewhat novel to many of them.  ERWAY also
+remarked other problems in dealing with service bureaus, for example,
+their inability to perform text conversion from the kind of microfilm
+that LC uses for preservation purposes.
+
+But quality control, in ERWAY's experience, was the most time-consuming
+aspect of contracting out conversion.  AM has been attempting to perform
+a 10-percent quality review, looking at either every tenth document or
+every tenth page to make certain that the service bureaus are maintaining
+99.95 percent accuracy.  But even if they are complying with the
+requirement for accuracy, finding errors produces a desire to correct
+them and, in turn, to clean up the whole collection, which defeats the
+purpose to some extent.  Even a double entry requires a
+character-by-character comparison to the original to meet the accuracy
+requirement.  LC is not accustomed to publish imperfect texts, which
+makes attempting to deal with the industry standard an emotionally
+fraught issue for AM.  As was mentioned in the previous day's discussion,
+going from 99.95 to 99.99 percent accuracy usually doubles costs and
+means a third keying or another complete run-through of the text.
+
+Although AM has learned much from its experiences with various collections
+and various service bureaus, ERWAY concluded pessimistically that no
+breakthrough has been achieved.   Incremental improvements have occurred
+in some of the OCR technology, some of the processes, and some of the
+standards acceptances, which, though they may lead to somewhat lower costs,
+do not offer much encouragement to many people who are anxiously awaiting
+the day that the entire contents of LC are available on-line.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ZIDAR * Several answers to why one attempts to perform full-text
+conversion * Per page cost of performing OCR * Typical problems
+encountered during editing * Editing poor copy OCR vs. rekeying *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Judith ZIDAR, coordinator, National Agricultural Text Digitizing Program
+(NATDP), National Agricultural Library (NAL), offered several answers to
+the question of why one attempts to perform full-text conversion:  1)
+Text in an image can be read by a human but not by a computer, so of
+course it is not searchable and there is not much one can do with it.  2)
+Some material simply requires word-level access.  For instance, the legal
+profession insists on full-text access to its material; with taxonomic or
+geographic material, which entails numerous names, one virtually requires
+word-level access.  3) Full text permits rapid browsing and searching,
+something that cannot be achieved in an image with today's technology. 
+4) Text stored as ASCII and delivered in ASCII is standardized and highly
+portable.  5) People just want full-text searching, even those who do not
+know how to do it.  NAL, for the most part, is performing OCR at an
+actual cost per average-size page of approximately $7.  NAL scans the
+page to create the electronic image and passes it through the OCR device.
+
+ZIDAR next rehearsed several typical problems encountered during editing. 
+Praising the celerity of her student workers, ZIDAR observed that editing
+requires approximately five to ten minutes per page, assuming that there
+are no large tables to audit.  Confusion among the three characters I, 1, 
+and l, constitutes perhaps the most common problem encountered.  Zeroes
+and  O's also are  frequently confused.  Double M's create a particular
+problem, even on clean pages.  They are so wide in most fonts that they
+touch, and the system simply cannot tell where one letter ends and the
+other begins.  Complex page formats occasionally fail to columnate
+properly, which entails rescanning as though one were working with a
+single column, entering the ASCII, and decolumnating for better
+searching.  With proportionally spaced text, OCR can have difficulty
+discerning what is a space and what are merely spaces between letters, as
+opposed to spaces between words, and therefore will merge text or break
+up words where it should not.
+
+ZIDAR said that it can often take longer to edit a poor-copy OCR than to
+key it from scratch.  NAL has also experimented with partial editing of
+text, whereby project workers go into and clean up the format, removing
+stray characters but not running a spell-check.  NAL corrects typos in
+the title and authors' names, which provides a foothold for searching and
+browsing.  Even extremely poor-quality OCR (e.g., 60-percent accuracy)
+can still be searched, because numerous words are correct, while the
+important words are probably repeated often enough that they are likely
+to be found correct somewhere.  Librarians, however, cannot tolerate this
+situation, though end users seem more willing to use this text for
+searching, provided that NAL indicates that it is unedited.  ZIDAR
+concluded that rekeying of text may be the best route to take, in spite
+of numerous problems with quality control and cost.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Modifying an image before performing OCR * NAL's costs per
+page *AM's costs per page and experience with Federal Prison Industries *
+Elements comprising NATDP's costs per page * OCR and structured markup *
+Distinction between the structure of a document and its representation
+when put on the screen or printed *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+HOOTON prefaced the lengthy discussion that followed with several
+comments about modifying an image before one reaches the point of
+performing OCR.  For example, in regard to an application containing a
+significant amount of redundant data, such as form-type data, numerous
+companies today are working on various kinds of form renewal, prior to
+going through a recognition process, by using dropout colors.  Thus,
+acquiring access to form design or using electronic means are worth
+considering.  HOOTON also noted that conversion usually makes or breaks
+one's imaging system.  It is extremely important, extremely costly in
+terms of either capital investment or service, and determines the quality
+of the remainder of one's system, because it determines the character of
+the raw material used by the system.
+
+Concerning the four projects undertaken by NAL, two inside and two
+performed by outside contractors, ZIDAR revealed that an in-house service
+bureau executed the first at a cost between $8 and $10 per page for
+everything, including building of the database.  The project undertaken
+by the Consultative Group on International Agricultural Research (CGIAR)
+cost approximately $10 per page for the conversion, plus some expenses
+for the software and building of the database.  The Acid Rain Project--a
+two-disk set produced by the University of Vermont, consisting of
+Canadian publications on acid rain--cost $6.70 per page for everything,
+including keying of the text, which was double keyed, scanning of the
+images, and building of the database.  The in-house project offered
+considerable ease of convenience and greater control of the process.  On
+the other hand, the service bureaus know their job and perform it
+expeditiously, because they have more people.
+
+As a useful comparison, ERWAY revealed AM's costs as follows:  $0.75
+cents to $0.85 cents per thousand characters, with an average page
+containing 2,700 characters.  Requirements for coding and imaging
+increase the costs.  Thus, conversion of the text, including the coding,
+costs approximately $3 per page.  (This figure does not include the
+imaging and database-building included in the NAL costs.)  AM also
+enjoyed a happy experience with Federal Prison Industries, which
+precluded the necessity of going through the request-for-proposal process
+to award a contract, because it is another government agency.  The
+prisoners performed AM's rekeying just as well as other service bureaus
+and proved handy as well.  AM shipped them the books, which they would
+photocopy on a book-edge scanner.  They would perform the markup on
+photocopies, return the books as soon as they were done with them,
+perform the keying, and return the material to AM on WORM disks.
+
+ZIDAR detailed the elements that constitute the previously noted cost of
+approximately $7 per page.  Most significant is the editing, correction
+of errors, and spell-checkings, which though they may sound easy to
+perform require, in fact, a great deal of time.  Reformatting text also
+takes a while, but a significant amount of NAL's expenses are for equipment,
+which was extremely expensive when purchased because it was one of the few
+systems on the market.  The costs of equipment are being amortized over
+five years but are still quite high, nearly $2,000 per month.
+
+HOCKEY raised a general question concerning OCR and the amount of editing
+required (substantial in her experience) to generate the kind of
+structured markup necessary for manipulating the text on the computer or
+loading it into any retrieval system.  She wondered if the speakers could
+extend the previous question about the cost-benefit of adding or exerting
+structured markup.  ERWAY noted that several OCR systems retain italics,
+bolding, and other spatial formatting.  While the material may not be in
+the format desired, these systems possess the ability to remove the
+original materials quickly from the hands of the people performing the
+conversion, as well as to retain that information so that users can work
+with it.  HOCKEY rejoined that the current thinking on markup is that one
+should not say that something is italic or bold so much as why it is that
+way.  To be sure, one needs to know that something was italicized, but
+how can one get from one to the other?  One can map from the structure to
+the typographic representation.
+
+FLEISCHHAUER suggested that, given the 100 million items the Library
+holds, it may not be possible for LC to do more than report that a thing
+was in italics as opposed to why it was italics, although that may be
+desirable in some contexts.  Promising to talk a bit during the afternoon
+session about several experiments OCLC performed on automatic recognition
+of document elements, and which they hoped to extend, WEIBEL said that in
+fact one can recognize the major elements of a document with a fairly
+high degree of reliability, at least as good as OCR.  STEVENS drew a
+useful distinction between standard, generalized markup (i.e., defining
+for a document-type definition the structure of the document), and what
+he termed a style sheet, which had to do with italics, bolding, and other
+forms of emphasis.  Thus, two different components are at work, one being
+the structure of the document itself (its logic), and the other being its
+representation when it is put on the screen or printed.
+
+                                 ******
+
+SESSION V.  APPROACHES TO PREPARING ELECTRONIC TEXTS
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+HOCKEY * Text in ASCII and the representation of electronic text versus
+an image * The need to look at ways of using markup to assist retrieval *
+The need for an encoding format that will be reusable and multifunctional
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Susan HOCKEY, director, Center for Electronic Texts in the Humanities
+(CETH), Rutgers and Princeton Universities, announced that one talk
+(WEIBEL's) was moved into this session from the morning and that David
+Packard was unable to attend.  The session would attempt to focus more on
+what one can do with a text in ASCII and the representation of electronic
+text rather than just an image, what one can do with a computer that
+cannot be done with a book or an image.  It would be argued that one can
+do much more than just read a text, and from that starting point one can
+use markup and methods of preparing the text to take full advantage of
+the capability of the computer.  That would lead to a discussion of what
+the European Community calls REUSABILITY, what may better be termed
+DURABILITY, that is, how to prepare or make a text that will last a long
+time and that can be used for as many applications as possible, which
+would lead to issues of improving intellectual access.
+
+HOCKEY urged the need to look at ways of using markup to facilitate retrieval,
+not just for referencing or to help locate an item that is retrieved, but also to put markup tags in
+a text to help retrieve the thing sought either with linguistic tagging or
+interpretation.  HOCKEY also argued that little advancement had occurred in
+the software tools currently available for retrieving and searching text.
+She pressed the desideratum of going beyond Boolean searches and performing
+more sophisticated searching, which the insertion of more markup in the text
+would facilitate.  Thinking about electronic texts as opposed to images means
+considering material that will never appear in print form, or print will not
+be its primary form, that is, material which only appears in electronic form.
+HOCKEY alluded to the history and the need for markup and tagging and
+electronic text, which was developed through the use of computers in the
+humanities; as MICHELSON had observed, Father Busa had started in 1949
+to prepare the first-ever text on the computer.
+
+HOCKEY remarked several large projects, particularly in Europe, for the
+compilation of dictionaries, language studies, and language analysis, in
+which people have built up archives of text and have begun to recognize
+the need for an encoding format that will be reusable and multifunctional,
+that can be used not just to print the text, which may be assumed to be a
+byproduct of what one wants to do, but to structure it inside the computer
+so that it can be searched, built into a Hypertext system, etc.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+WEIBEL * OCLC's approach to preparing electronic text:  retroconversion,
+keying of texts, more automated ways of developing data * Project ADAPT
+and the CORE Project * Intelligent character recognition does not exist *
+Advantages of SGML * Data should be free of procedural markup;
+descriptive markup strongly advocated * OCLC's interface illustrated *
+Storage requirements and costs for putting a lot of information on line *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Stuart WEIBEL, senior research scientist, Online Computer Library Center,
+Inc. (OCLC), described OCLC's approach to preparing electronic text.  He
+argued that the electronic world into which we are moving must
+accommodate not only the future but the past as well, and to some degree
+even the present.  Thus, starting out at one end with retroconversion and
+keying of texts, one would like to move toward much more automated ways
+of developing data.
+
+For example, Project ADAPT had to do with automatically converting
+document images into a structured document database with OCR text as
+indexing and also a little bit of automatic formatting and tagging of
+that text.  The CORE project hosted by Cornell University, Bellcore,
+OCLC, the American Chemical Society, and Chemical Abstracts, constitutes
+WEIBEL's principal concern at the moment.  This project is an example of
+converting text for which one already has a machine-readable version into
+a format more suitable for electronic delivery and database searching. 
+(Since Michael LESK had previously described CORE, WEIBEL would say
+little concerning it.)  Borrowing a chemical phrase, de novo synthesis,
+WEIBEL cited the Online Journal of Current Clinical Trials as an example
+of de novo electronic publishing, that is, a form in which the primary
+form of the information is electronic.
+
+Project ADAPT, then, which OCLC completed a couple of years ago and in
+fact is about to resume, is a model in which one takes page images either
+in paper or microfilm and converts them automatically to a searchable
+electronic database, either on-line or local.  The operating assumption
+is that accepting some blemishes in the data, especially for
+retroconversion of materials, will make it possible to accomplish more. 
+Not enough money is available to support perfect conversion.
+
+WEIBEL related several steps taken to perform image preprocessing
+(processing on the image before performing optical character
+recognition), as well as image postprocessing.  He denied the existence
+of intelligent character recognition and asserted that what is wanted is
+page recognition, which is a long way off.  OCLC has experimented with
+merging of multiple optical character recognition systems that will
+reduce errors from an unacceptable rate of 5 characters out of every
+l,000 to an unacceptable rate of 2 characters out of every l,000, but it
+is not good enough.  It will never be perfect.
+
+Concerning the CORE Project, WEIBEL observed that Bellcore is taking the
+topography files, extracting the page images, and converting those
+topography files to SGML markup.  LESK hands that data off to OCLC, which
+builds that data into a Newton database, the same system that underlies
+the on-line system in virtually all of the reference products at OCLC. 
+The long-term goal is to make the systems interoperable so that not just
+Bellcore's system and OCLC's system can access this data, but other
+systems can as well, and the key to that is the Z39.50 common command
+language and the full-text extension.  Z39.50 is fine for MARC records,
+but is not enough to do it for full text (that is, make full texts
+interoperable).
+
+WEIBEL next outlined the critical role of SGML for a variety of purposes,
+for example, as noted by HOCKEY, in the world of extremely large
+databases, using highly structured data to perform field searches. 
+WEIBEL argued that by building the structure of the data in (i.e., the
+structure of the data originally on a printed page), it becomes easy to
+look at a journal article even if one cannot read the characters and know
+where the title or author is, or what the sections of that document would be.
+OCLC wants to make that structure explicit in the database, because it will
+be important for retrieval purposes.
+
+The second big advantage of SGML is that it gives one the ability to
+build structure into the database that can be used for display purposes
+without contaminating the data with instructions about how to format
+things.  The distinction lies between procedural markup, which tells one
+where to put dots on the page, and descriptive markup, which describes
+the elements of a document.
+
+WEIBEL believes that there should be no procedural markup in the data at
+all, that the data should be completely unsullied by information about
+italics or boldness.  That should be left up to the display device,
+whether that display device is a page printer or a screen display device. 
+By keeping one's database free of that kind of contamination, one can
+make decisions down the road, for example, reorganize the data in ways
+that are not cramped by built-in notions of what should be italic and
+what should be bold.  WEIBEL strongly advocated descriptive markup.  As
+an example, he illustrated the index structure in the CORE data.  With
+subsequent illustrated examples of markup, WEIBEL acknowledged the common
+complaint that SGML is hard to read in its native form, although markup
+decreases considerably once one gets into the body.  Without the markup,
+however, one would not have the structure in the data.  One can pass
+markup through a LaTeX processor and convert it relatively easily to a
+printed version of the document.
+
+WEIBEL next illustrated an extremely cluttered screen dump of OCLC's
+system, in order to show as much as possible the inherent capability on
+the screen.  (He noted parenthetically that he had become a supporter of
+X-Windows as a result of the progress of the CORE Project.)  WEIBEL also
+illustrated the two major parts of the interface:  l) a control box that
+allows one to generate lists of items, which resembles a small table of
+contents based on key words one wishes to search, and 2) a document
+viewer, which is a separate process in and of itself.  He demonstrated
+how to follow links through the electronic database simply by selecting
+the appropriate button and bringing them up.  He also noted problems that
+remain to be accommodated in the interface (e.g., as pointed out by LESK,
+what happens when users do not click on the icon for the figure).
+
+Given the constraints of time, WEIBEL omitted a large number of ancillary
+items in order to say a few words concerning storage requirements and
+what will be required to put a lot of things on line.  Since it is
+extremely expensive to reconvert all of this data, especially if it is
+just in paper form (and even if it is in electronic form in typesetting
+tapes), he advocated building journals electronically from the start.  In
+that case, if one only has text graphics and indexing (which is all that
+one needs with de novo electronic publishing, because there is no need to
+go back and look at bit-maps of pages), one can get 10,000 journals of
+full text, or almost 6 million pages per year.  These pages can be put in
+approximately 135 gigabytes of storage, which is not all that much,
+WEIBEL said.  For twenty years, something less than three terabytes would
+be required.  WEIBEL calculated the costs of storing this information as
+follows:  If a gigabyte costs approximately $1,000, then a terabyte costs
+approximately $1 million to buy in terms of hardware.  One also needs a
+building to put it in and a staff like OCLC to handle that information. 
+So, to support a terabyte, multiply by five, which gives $5 million per
+year for a supported terabyte of data.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Tapes saved by ACS are the typography files originally
+supporting publication of the journal * Cost of building tagged text into
+the database *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+During the question-and-answer period that followed WEIBEL's
+presentation, these clarifications emerged.  The tapes saved by the
+American Chemical Society are the typography files that originally
+supported the publication of the journal.  Although they are not tagged
+in SGML, they are tagged in very fine detail.  Every single sentence is
+marked, all the registry numbers, all the publications issues, dates, and
+volumes.  No cost figures on tagging material on a per-megabyte basis
+were available.  Because ACS's typesetting system runs from tagged text,
+there is no extra cost per article.  It was unknown what it costs ACS to
+keyboard the tagged text rather than just keyboard the text in the
+cheapest process.  In other words, since one intends to publish things
+and will need to build tagged text into a typography system in any case,
+if one does that in such a way that it can drive not only typography but
+an electronic system (which is what ACS intends to do--move to SGML
+publishing), the marginal cost is zero.  The marginal cost represents the
+cost of building tagged text into the database, which is small.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+SPERBERG-McQUEEN * Distinction between texts and computers * Implications
+of recognizing that all representation is encoding * Dealing with
+complicated representations of text entails the need for a grammar of
+documents * Variety of forms of formal grammars * Text as a bit-mapped
+image does not represent a serious attempt to represent text in
+electronic form * SGML, the TEI, document-type declarations, and the
+reusability and longevity of data * TEI conformance explicitly allows
+extension or modification of the TEI tag set * Administrative background
+of the TEI * Several design goals for the TEI tag set * An absolutely
+fixed requirement of the TEI Guidelines * Challenges the TEI has
+attempted to face * Good texts not beyond economic feasibility * The
+issue of reproducibility or processability * The issue of mages as
+simulacra for the text redux * One's model of text determines what one's
+software can do with a text and has economic consequences *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Prior to speaking about SGML and markup, Michael SPERBERG-McQUEEN, editor,
+Text Encoding Initiative (TEI), University of Illinois-Chicago, first drew
+a distinction between texts and computers:  Texts are abstract cultural
+and linguistic objects while computers are complicated physical devices,
+he said.  Abstract objects cannot be placed inside physical devices; with
+computers one can only represent text and act upon those representations.
+
+The recognition that all representation is encoding, SPERBERG-McQUEEN
+argued, leads to the recognition of two things:  1) The topic description
+for this session is slightly misleading, because there can be no discussion
+of pros and cons of text-coding unless what one means is pros and cons of
+working with text with computers.  2) No text can be represented in a
+computer without some sort of encoding; images are one way of encoding text,
+ASCII is another, SGML yet another.  There is no encoding without some
+information loss, that is, there is no perfect reproduction of a text that
+allows one to do away with the original.  Thus, the question becomes,
+What is the most useful representation of text for a serious work?
+This depends on what kind of serious work one is talking about.
+
+The projects demonstrated the previous day all involved highly complex
+information and fairly complex manipulation of the textual material.
+In order to use that complicated information, one has to calculate it
+slowly or manually and store the result.  It needs to be stored, therefore,
+as part of one's representation of the text.  Thus, one needs to store the
+structure in the text.  To deal with complicated representations of text,
+one needs somehow to control the complexity of the representation of a text;
+that means one needs a way of finding out whether a document and an
+electronic representation of a document is legal or not; and that
+means one needs a grammar of documents.
+
+SPERBERG-McQUEEN discussed the variety of forms of formal grammars,
+implicit and explicit, as applied to text, and their capabilities.  He
+argued that these grammars correspond to different models of text that
+different developers have.  For example, one implicit model of the text
+is that there is no internal structure, but just one thing after another,
+a few characters and then perhaps a start-title command, and then a few
+more characters and an end-title command.  SPERBERG-McQUEEN also
+distinguished several kinds of text that have a sort of hierarchical
+structure that is not very well defined, which, typically, corresponds
+to grammars that are not very well defined, as well as hierarchies that
+are very well defined (e.g., the Thesaurus Linguae Graecae) and extremely
+complicated things such as SGML, which handle strictly hierarchical data
+very nicely.
+
+SPERBERG-McQUEEN conceded that one other model not illustrated on his two
+displays was the model of text as a bit-mapped image, an image of a page,
+and confessed to having been converted to a limited extent by the
+Workshop to the view that electronic images constitute a promising,
+probably superior alternative to microfilming.  But he was not convinced
+that electronic images represent a serious attempt to represent text in
+electronic form.  Many of their problems stem from the fact that they are
+not direct attempts to represent the text but attempts to represent the
+page, thus making them representations of representations.
+
+In this situation of increasingly complicated textual information and the
+need to control that complexity in a useful way (which begs the question
+of the need for good textual grammars), one has the introduction of SGML. 
+With SGML, one can develop specific document-type declarations
+for specific text types or, as with the TEI, attempts to generate
+general document-type declarations that can handle all sorts of text.
+The TEI is an attempt to develop formats for text representation that
+will ensure the kind of reusability and longevity of data discussed earlier.
+It offers a way to stay alive in the state of permanent technological
+revolution.
+
+It has been a continuing challenge in the TEI to create document grammars
+that do some work in controlling the complexity of the textual object but
+also allowing one to represent the real text that one will find. 
+Fundamental to the notion of the TEI is that TEI conformance allows one
+the ability to extend or modify the TEI tag set so that it fits the text
+that one is attempting to represent.
+
+SPERBERG-McQUEEN next outlined the administrative background of the TEI. 
+The TEI is an international project to develop and disseminate guidelines
+for the encoding and interchange of machine-readable text.  It is
+sponsored by the Association for Computers in the Humanities, the
+Association for Computational Linguistics, and the Association for
+Literary and Linguistic Computing.  Representatives of numerous other
+professional societies sit on its advisory board.  The TEI has a number
+of affiliated projects that have provided assistance by testing drafts of
+the guidelines.
+
+Among the design goals for the TEI tag set, the scheme first of all must
+meet the needs of research, because the TEI came out of the research
+community, which did not feel adequately served by existing tag sets. 
+The tag set must be extensive as well as compatible with existing and
+emerging standards.  In 1990, version 1.0 of the Guidelines was released
+(SPERBERG-McQUEEN illustrated their contents).
+
+SPERBERG-McQUEEN noted that one problem besetting electronic text has
+been the lack of adequate internal or external documentation for many
+existing electronic texts.  The TEI guidelines as currently formulated
+contain few fixed requirements, but one of them is this:  There must
+always be a document header, an in-file SGML tag that provides
+1) a bibliographic description of the electronic object one is talking
+about (that is, who included it, when, what for, and under which title);
+and 2) the copy text from which it was derived, if any.  If there was
+no copy text or if the copy text is unknown, then one states as much.
+Version 2.0 of the Guidelines was scheduled to be completed in fall 1992
+and a revised third version is to be presented to the TEI advisory board
+for its endorsement this coming winter.  The TEI itself exists to provide
+a markup language, not a marked-up text.
+
+Among the challenges the TEI has attempted to face is the need for a
+markup language that will work for existing projects, that is, handle the
+level of markup that people are using now to tag only chapter, section,
+and paragraph divisions and not much else.  At the same time, such a
+language also will be able to scale up gracefully to handle the highly
+detailed markup which many people foresee as the future destination of
+much electronic text, and which is not the future destination but the
+present home of numerous electronic texts in specialized areas.
+
+SPERBERG-McQUEEN dismissed the lowest-common-denominator approach as
+unable to support the kind of applications that draw people who have
+never been in the public library regularly before, and make them come
+back.  He advocated more interesting text and more intelligent text. 
+Asserting that it is not beyond economic feasibility to have good texts,
+SPERBERG-McQUEEN noted that the TEI Guidelines listing 200-odd tags
+contains tags that one is expected to enter every time the relevant
+textual feature occurs.  It contains all the tags that people need now,
+and it is not expected that everyone will tag things in the same way.
+
+The question of how people will tag the text is in large part a function
+of their reaction to what SPERBERG-McQUEEN termed the issue of
+reproducibility.  What one needs to be able to reproduce are the things
+one wants to work with.  Perhaps a more useful concept than that of
+reproducibility or recoverability is that of processability, that is,
+what can one get from an electronic text without reading it again
+in the original.  He illustrated this contention with a page from
+Jan Comenius's bilingual Introduction to Latin.
+
+SPERBERG-McQUEEN returned at length to the issue of images as simulacra
+for the text, in order to reiterate his belief that in the long run more
+than images of pages of particular editions of the text are needed,
+because just as second-generation photocopies and second-generation
+microfilm degenerate, so second-generation representations tend to
+degenerate, and one tends to overstress some relatively trivial aspects
+of the text such as its layout on the page, which is not always
+significant, despite what the text critics might say, and slight other
+pieces of information such as the very important lexical ties between the
+English and Latin versions of Comenius's bilingual text, for example. 
+Moreover, in many crucial respects it is easy to fool oneself concerning
+what a scanned image of the text will accomplish.  For example, in order
+to study the transmission of texts, information concerning the text
+carrier is necessary, which scanned images simply do not always handle. 
+Further, even the high-quality materials being produced at Cornell use
+much of the information that one would need if studying those books as
+physical objects.  It is a choice that has been made.  It is an arguably
+justifiable choice, but one does not know what color those pen strokes in
+the margin are or whether there was a stain on the page, because it has
+been filtered out.  One does not know whether there were rips in the page
+because they do not show up, and on a couple of the marginal marks one
+loses half of the mark because the pen is very light and the scanner
+failed to pick it up, and so what is clearly a checkmark in the margin of
+the original becomes a little scoop in the margin of the facsimile. 
+Standard problems for facsimile editions, not new to electronics, but
+also true of light-lens photography, and are remarked here because it is
+important that we not fool ourselves that even if we produce a very nice
+image of this page with good contrast, we are not replacing the
+manuscript any more than microfilm has replaced the manuscript.
+
+The TEI comes from the research community, where its first allegiance
+lies, but it is not just an academic exercise.  It has relevance far
+beyond those who spend all of their time studying text, because one's
+model of text determines what one's software can do with a text.  Good
+models lead to good software.  Bad models lead to bad software.  That has
+economic consequences, and it is these economic consequences that have
+led the European Community to help support the TEI, and that will lead,
+SPERBERG-McQUEEN hoped, some software vendors to realize that if they
+provide software with a better model of the text they can make a killing.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Implications of different DTDs and tag sets * ODA versus SGML *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+During the discussion that followed, several additional points were made. 
+Neither AAP (i.e., Association of American Publishers) nor CALS (i.e.,
+Computer-aided Acquisition and Logistics Support) has a document-type
+definition for ancient Greek drama, although the TEI will be able to
+handle that.  Given this state of affairs and assuming that the
+technical-journal producers and the commercial vendors decide to use the
+other two types, then an institution like the Library of Congress, which
+might receive all of their publications, would have to be able to handle
+three different types of document definitions and tag sets and be able to
+distinguish among them.
+
+Office Document Architecture (ODA) has some advantages that flow from its
+tight focus on office documents and clear directions for implementation. 
+Much of the ODA standard is easier to read and clearer at first reading
+than the SGML standard, which is extremely general.  What that means is
+that if one wants to use graphics in TIFF and ODA, one is stuck, because
+ODA defines graphics formats while TIFF does not, whereas SGML says the
+world is not waiting for this work group to create another graphics format.
+What is needed is an ability to use whatever graphics format one wants.
+
+The TEI provides a socket that allows one to connect the SGML document to
+the graphics.  The notation that the graphics are in is clearly a choice
+that one needs to make based on her or his environment, and that is one
+advantage.  SGML is less megalomaniacal in attempting to define formats
+for all kinds of information, though more megalomaniacal in attempting to
+cover all sorts of documents.  The other advantage is that the model of
+text represented by SGML is simply an order of magnitude richer and more
+flexible than the model of text offered by ODA.  Both offer hierarchical
+structures, but SGML recognizes that the hierarchical model of the text
+that one is looking at may not have been in the minds of the designers,
+whereas ODA does not.
+
+ODA is not really aiming for the kind of document that the TEI wants to
+encompass.  The TEI can handle the kind of material ODA has, as well as a
+significantly broader range of material.  ODA seems to be very much
+focused on office documents, which is what it started out being called--
+office document architecture.
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+CALALUCA * Text-encoding from a publisher's perspective *
+Responsibilities of a publisher * Reproduction of Migne's Latin series
+whole and complete with SGML tags based on perceived need and expected
+use * Particular decisions arising from the general decision to produce
+and publish PLD *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+The final speaker in this session, Eric CALALUCA, vice president,
+Chadwyck-Healey, Inc., spoke from the perspective of a publisher re
+text-encoding, rather than as one qualified to discuss methods of
+encoding data, and observed that the presenters sitting in the room,
+whether they had chosen to or not, were acting as publishers:  making
+choices, gathering data, gathering information, and making assessments. 
+CALALUCA offered the hard-won conviction that in publishing very large
+text files (such as PLD), one cannot avoid making personal judgments of
+appropriateness and structure.
+
+In CALALUCA's view, encoding decisions stem from prior judgments.  Two
+notions have become axioms for him in the consideration of future sources
+for electronic publication:  1) electronic text publishing is as personal
+as any other kind of publishing, and questions of if and how to encode
+the data are simply a consequence of that prior decision;  2) all
+personal decisions are open to criticism, which is unavoidable.
+
+CALALUCA rehearsed his role as a publisher or, better, as an intermediary
+between what is viewed as a sound idea and the people who would make use
+of it.  Finding the specialist to advise in this process is the core of
+that function.  The publisher must monitor and hug the fine line between
+giving users what they want and suggesting what they might need.  One
+responsibility of a publisher is to represent the desires of scholars and
+research librarians as opposed to bullheadedly forcing them into areas
+they would not choose to enter.
+
+CALALUCA likened the questions being raised today about data structure
+and standards to the decisions faced by the Abbe Migne himself during
+production of the Patrologia series in the mid-nineteenth century. 
+Chadwyck-Healey's decision to reproduce Migne's Latin series whole and
+complete with SGML tags was also based upon a perceived need and an
+expected use.  In the same way that Migne's work came to be far more than
+a simple handbook for clerics, PLD is already far more than a database
+for theologians.  It is a bedrock source for the study of Western
+civilization, CALALUCA asserted.
+
+In regard to the decision to produce and publish PLD, the editorial board
+offered direct judgments on the question of appropriateness of these
+texts for conversion, their encoding and their distribution, and
+concluded that the best possible project was one that avoided overt
+intrusions or exclusions in so important a resource.  Thus, the general
+decision to transmit the original collection as clearly as possible with
+the widest possible avenues for use led to other decisions:  1) To encode
+the data or not, SGML or not, TEI or not.  Again, the expected user
+community asserted the need for normative tagging structures of important
+humanities texts, and the TEI seemed the most appropriate structure for
+that purpose.  Research librarians, who are trained to view the larger
+impact of electronic text sources on 80 or 90 or 100 doctoral
+disciplines, loudly approved the decision to include tagging.  They see
+what is coming better than the specialist who is completely focused on
+one edition of Ambrose's De Anima, and they also understand that the
+potential uses exceed present expectations.  2) What will be tagged and
+what will not.  Once again, the board realized that one must tag the
+obvious.  But in no way should one attempt to identify through encoding
+schemes every single discrete area of a text that might someday be
+searched.  That was another decision.  Searching by a column number, an
+author, a word, a volume, permitting combination searches, and tagging
+notations seemed logical choices as core elements.  3) How does one make
+the data available?  Tieing it to a CD-ROM edition creates limitations,
+but a magnetic tape file that is very large, is accompanied by the
+encoding specifications, and that allows one to make local modifications
+also allows one to incorporate any changes one may desire within the
+bounds of private research, though exporting tag files from a CD-ROM
+could serve just as well.  Since no one on the board could possibly
+anticipate each and every way in which a scholar might choose to mine
+this data bank, it was decided to satisfy the basics and make some
+provisions for what might come.  4) Not to encode the database would rob
+it of the interchangeability and portability these important texts should
+accommodate.  For CALALUCA, the extensive options presented by full-text
+searching require care in text selection and strongly support encoding of
+data to facilitate the widest possible search strategies.  Better
+software can always be created, but summoning the resources, the people,
+and the energy to reconvert the text is another matter.
+
+PLD is being encoded, captured, and distributed, because to
+Chadwyck-Healey and the board it offers the widest possible array of
+future research applications that can be seen today.  CALALUCA concluded
+by urging the encoding of all important text sources in whatever way
+seems most appropriate and durable at the time, without blanching at the
+thought that one's work may require emendation in the future.  (Thus,
+Chadwyck-Healey produced a very large humanities text database before the
+final release of the TEI Guidelines.)
+
+                                 ******
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+DISCUSSION * Creating texts with markup advocated * Trends in encoding *
+The TEI and the issue of interchangeability of standards * A
+misconception concerning the TEI * Implications for an institution like
+LC in the event that a multiplicity of DTDs develops * Producing images
+as a first step towards possible conversion to full text through
+character recognition * The AAP tag sets as a common starting point and
+the need for caution *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+HOCKEY prefaced the discussion that followed with several comments in
+favor of creating texts with markup and on trends in encoding.  In the
+future, when many more texts are available for on-line searching, real
+problems in finding what is wanted will develop, if one is faced with
+millions of words of data.  It therefore becomes important to consider
+putting markup in texts to help searchers home in on the actual things
+they wish to retrieve.  Various approaches to refining retrieval methods
+toward this end include building on a computer version of a dictionary
+and letting the computer look up words in it to obtain more information
+about the semantic structure or semantic field of a word, its grammatical
+structure, and syntactic structure.
+
+HOCKEY commented on the present keen interest in the encoding world
+in creating:  1) machine-readable versions of dictionaries that can be
+initially tagged in SGML, which gives a structure to the dictionary entry;
+these entries can then be converted into a more rigid or otherwise
+different database structure inside the computer, which can be treated as
+a dynamic tool for searching mechanisms; 2) large bodies of text to study
+the language.  In order to incorporate more sophisticated mechanisms,
+more about how words behave needs to be known, which can be learned in
+part from information in dictionaries.  However, the last ten years have
+seen much interest in studying the structure of printed dictionaries
+converted into computer-readable form.  The information one derives about
+many words from those is only partial, one or two definitions of the
+common or the usual meaning of a word, and then numerous definitions of
+unusual usages.  If the computer is using a dictionary to help retrieve
+words in a text, it needs much more information about the common usages,
+because those are the ones that occur over and over again.  Hence the
+current interest in developing large bodies of text in computer-readable
+form in order to study the language.  Several projects are engaged in
+compiling, for example, 100 million words. HOCKEY described one with
+which she was associated briefly at Oxford University involving
+compilation of 100 million words of British English:  about 10 percent of
+that will contain detailed linguistic tagging encoded in SGML; it will
+have word class taggings, with words identified as nouns, verbs,
+adjectives, or other parts of speech.  This tagging can then be used by
+programs which will begin to learn a bit more about the structure of the
+language, and then, can go to tag more text.
+
+HOCKEY said that the more that is tagged accurately, the more one can
+refine the tagging process and thus the bigger body of text one can build
+up with linguistic tagging incorporated into it.  Hence, the more tagging
+or annotation there is in the text, the more one may begin to learn about
+language and the more it will help accomplish more intelligent OCR.  She
+recommended the development of software tools that will help one begin to
+understand more about a text, which can then be applied to scanning
+images of that text in that format and to using more intelligence to help
+one interpret or understand the text.
+
+HOCKEY posited the need to think about common methods of text-encoding
+for a long time to come, because building these large bodies of text is
+extremely expensive and will only be done once.
+
+In the more general discussion on approaches to encoding that followed,
+these points were made:
+
+BESSER identified the underlying problem with standards that all have to
+struggle with in adopting a standard, namely, the tension between a very
+highly defined standard that is very interchangeable but does not work
+for everyone because something is lacking, and a standard that is less
+defined, more open, more adaptable, but less interchangeable.  Contending
+that the way in which people use SGML is not sufficiently defined, BESSER
+wondered 1) if people resist the TEI because they think it is too defined
+in certain things they do not fit into, and 2) how progress with
+interchangeability can be made without frightening people away.
+
+SPERBERG-McQUEEN replied that the published drafts of the TEI had met
+with surprisingly little objection on the grounds that they do not allow
+one to handle X or Y or Z.  Particular concerns of the affiliated
+projects have led, in practice, to discussions of how extensions are to
+be made; the primary concern of any project has to be how it can be
+represented locally, thus making interchange secondary.  The TEI has
+received much criticism based on the notion that everything in it is
+required or even recommended, which, as it happens, is a misconception
+from the beginning,   because none of it is required and very little is
+actually actively recommended for all cases, except that one document
+one's source.
+
+SPERBERG-McQUEEN agreed with BESSER about this trade-off:  all the
+projects in a set of twenty TEI-conformant projects will not necessarily
+tag the material in the same way.  One result of the TEI will be that the
+easiest problems will be solved--those dealing with the external form of
+the information; but the problem that is hardest in interchange is that
+one is not encoding what another wants, and vice versa.  Thus, after
+the adoption of a common notation, the differences in the underlying
+conceptions of what is interesting about texts become more visible.
+The success of a standard like the TEI will lie in the ability of
+the recipient of interchanged texts to use some of what it contains
+and to add the information that was not encoded that one wants, in a
+layered way, so that texts can be gradually enriched and one does not
+have to put in everything all at once.  Hence, having a well-behaved
+markup scheme is important.
+
+STEVENS followed up on the paradoxical analogy that BESSER alluded to in
+the example of the MARC records, namely, the formats that are the same
+except that they are different.  STEVENS drew a parallel between
+document-type definitions and MARC records for books and serials and maps,
+where one has a tagging structure and there is a text-interchange. 
+STEVENS opined that the producers of the information will set the terms
+for the standard (i.e., develop document-type definitions for the users
+of their products), creating a situation that will be problematical for
+an institution like the Library of Congress, which will have to deal with
+the DTDs in the event that a multiplicity of them develops.  Thus,
+numerous people are seeking a standard but cannot find the tag set that
+will be acceptable to them and their clients.  SPERBERG-McQUEEN agreed
+with this view, and said that the situation was in a way worse:  attempting
+to unify arbitrary DTDs resembled attempting to unify a MARC record with a
+bibliographic record done according to the Prussian instructions. 
+According to STEVENS, this situation occurred very early in the process.
+
+WATERS recalled from early discussions on Project Open Book the concern
+of many people that merely by producing images, POB was not really
+enhancing intellectual access to the material.  Nevertheless, not wishing
+to overemphasize the opposition between imaging and full text, WATERS
+stated that POB views getting the images as a first step toward possibly
+converting to full text through character recognition, if the technology
+is appropriate.  WATERS also emphasized that encoding is involved even
+with a set of images.
+
+SPERBERG-McQUEEN agreed with WATERS that one can create an SGML document
+consisting wholly of images.  At first sight, organizing graphic images
+with an SGML document may not seem to offer great advantages, but the
+advantages of the scheme WATERS described would be precisely that
+ability to move into something that is more of a multimedia document:
+a combination of transcribed text and page images.  WEIBEL concurred in
+this judgment, offering evidence from Project ADAPT, where a page is
+divided into text elements and graphic elements, and in fact the text
+elements are organized by columns and lines.  These lines may be used as
+the basis for distributing documents in a network environment.  As one
+develops software intelligent enough to recognize what those elements
+are, it makes sense to apply SGML to an image initially, that may, in
+fact, ultimately become more and more text, either through OCR or edited
+OCR or even just through keying.  For WATERS, the labor of composing the
+document and saying this set of documents or this set of images belongs
+to this document constitutes a significant investment.
+
+WEIBEL also made the point that the AAP tag sets, while not excessively
+prescriptive, offer a common starting point; they do not define the
+structure of the documents, though.  They have some recommendations about
+DTDs one could use as examples, but they do just suggest tag sets.   For
+example, the CORE project attempts to use the AAP markup as much as
+possible, but there are clearly areas where structure must be added. 
+That in no way contradicts the use of AAP tag sets.
+
+SPERBERG-McQUEEN noted that the TEI prepared a long working paper early
+on about the AAP tag set and what it lacked that the TEI thought it
+needed, and a fairly long critique of the naming conventions, which has
+led to a very different style of naming in the TEI.  He stressed the
+importance of the opposition between prescriptive markup, the kind that a
+publisher or anybody can do when producing documents de novo, and
+descriptive markup, in which one has to take what the text carrier
+provides.  In these particular tag sets it is easy to overemphasize this
+opposition, because the AAP tag set is extremely flexible.  Even if one
+just used the DTDs, they allow almost anything to appear almost anywhere.
+
+                                 ******
+
+SESSION VI.  COPYRIGHT ISSUES
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+PETERS * Several cautions concerning copyright in an electronic
+environment * Review of copyright law in the United States * The notion
+of the public good and the desirability of incentives to promote it *
+What copyright protects * Works not protected by copyright * The rights
+of copyright holders * Publishers' concerns in today's electronic
+environment * Compulsory licenses * The price of copyright in a digital
+medium and the need for cooperation * Additional clarifications *  Rough
+justice oftentimes the outcome in numerous copyright matters * Copyright
+in an electronic society * Copyright law always only sets up the
+boundaries; anything can be changed by contract *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Marybeth PETERS, policy planning adviser to the Register of Copyrights,
+Library of Congress,   made several general comments and then opened the
+floor to discussion of subjects of interest to the audience.
+
+Having attended several sessions in an effort to gain a sense of what
+people did and where copyright would affect their lives, PETERS expressed
+the following cautions:
+
+     * If one takes and converts materials and puts them in new forms,
+     then, from a copyright point of view, one is creating something and
+     will receive some rights.
+
+     * However, if what one is converting already exists, a question
+     immediately arises about the status of the materials in question.
+
+     * Putting something in the public domain in the United States offers
+     some freedom from anxiety, but distributing it throughout the world
+     on a network is another matter, even if one has put it in the public
+     domain in the United States.  Re foreign laws, very frequently a
+     work can be in the public domain in the United States but protected
+     in other countries.  Thus, one must consider all of the places a
+     work may reach, lest one unwittingly become liable to being faced
+     with a suit for copyright infringement, or at least a letter
+     demanding discussion of what one is doing.
+
+PETERS reviewed copyright law in the United States.  The U.S.
+Constitution effectively states that Congress has the power to enact
+copyright laws for two purposes:  1) to encourage the creation and
+dissemination of intellectual works for the good of society as a whole;
+and, significantly, 2) to give creators and those who package and
+disseminate materials the economic rewards that are due them.
+
+Congress strives to strike a balance, which at times can become an
+emotional issue.  The United States has never accepted the notion of the
+natural right of an author so much as it has accepted the notion of the
+public good and the desirability of incentives to promote it.  This state
+of affairs, however, has created strains on the international level and
+is the reason for several of the differences in the laws that we have. 
+Today the United States protects almost every kind of work that can be
+called an expression of an author.  The standard for gaining copyright
+protection is simply originality.  This is a low standard and means that
+a work is not copied from something else, as well as shows a certain
+minimal amount of authorship.  One can also acquire copyright protection
+for making a new version of preexisting material, provided it manifests
+some spark of creativity.
+
+However, copyright does not protect ideas, methods, systems--only the way
+that one expresses those things.  Nor does copyright protect anything
+that is mechanical, anything that does not involve choice, or criteria
+concerning whether or not one should do a thing.  For example, the
+results of a process called declicking, in which one mechanically removes
+impure sounds from old recordings, are not copyrightable.  On the other
+hand, the choice to record a song digitally and to increase the sound of
+violins or to bring up the tympani constitutes the results of conversion
+that are copyrightable.  Moreover, if a work is protected by copyright in
+the United States, one generally needs the permission of the copyright
+owner to convert it.  Normally, who will own the new--that is, converted-
+-material is a matter of contract.  In the absence of a contract, the
+person who creates the new material is the author and owner.  But people
+do not generally think about the copyright implications until after the
+fact.  PETERS stressed the need when dealing with copyrighted works to
+think about copyright in advance.  One's bargaining power is much greater
+up front than it is down the road.
+
+PETERS next discussed works not protected by copyright, for example, any
+work done by a federal employee as part of his or her official duties is
+in the public domain in the United States.  The issue is not wholly free
+of doubt concerning whether or not the work is in the public domain
+outside the United States.  Other materials in the public domain include: 
+any works published more than seventy-five years ago, and any work
+published in the United States more than twenty-eight years ago, whose
+copyright was not renewed.  In talking about the new technology and
+putting material in a digital form to send all over the world, PETERS
+cautioned, one must keep in mind that while the rights may not be an
+issue in the United States, they may be in different parts of the world,
+where most countries previously employed a copyright term of the life of
+the author plus fifty years.
+
+PETERS next reviewed the economics of copyright holding.  Simply,
+economic rights are the rights to control the reproduction of a work in
+any form.  They belong to the author, or in the case of a work made for
+hire, the employer.  The second right, which is critical to conversion,
+is the right to change a work.  The right to make new versions is perhaps
+one of the most significant rights of authors, particularly in an
+electronic world.  The third right is the right to publish the work and
+the right to disseminate it, something that everyone who deals in an
+electronic medium needs to know.  The basic rule is if a copy is sold,
+all rights of distribution are extinguished with the sale of that copy. 
+The key is that it must be sold.  A number of companies overcome this
+obstacle by leasing or renting their product.  These companies argue that
+if the material is rented or leased and not sold, they control the uses
+of a work.  The fourth right, and one very important in a digital world,
+is a right of public performance, which means the right to show the work
+sequentially.  For example, copyright owners control the showing of a
+CD-ROM product in a public place such as a public library.  The reverse
+side of public performance is something called the right of public
+display.  Moral rights also exist, which at the federal level apply only
+to very limited visual works of art, but in theory may apply under
+contract and other principles.  Moral rights may include the right of an
+author to have his or her name on a work, the right of attribution, and
+the right to object to distortion or mutilation--the right of integrity.
+
+The way copyright law is worded gives much latitude to activities such as
+preservation; to use of material for scholarly and research purposes when
+the user does not make multiple copies; and to the generation of
+facsimile copies of unpublished works by libraries for themselves and
+other libraries.  But the law does not allow anyone to become the
+distributor of the product for the entire world.  In today's electronic
+environment, publishers are extremely concerned that the entire world is
+networked and can obtain the information desired from a single copy in a
+single library.  Hence, if there is to be only one sale, which publishers
+may choose to live with, they will obtain their money in other ways, for
+example, from access and use.  Hence, the development of site licenses
+and other kinds of agreements to cover what publishers believe they
+should be compensated for.  Any solution that the United States takes
+today has to consider the international arena.
+
+Noting that the United States is a member of the Berne Convention and
+subscribes to its provisions, PETERS described the permissions process. 
+She also defined compulsory licenses.  A compulsory license, of which the
+United States has had a few, builds into the law the right to use a work
+subject to certain terms and conditions.  In the international arena,
+however, the ability to use compulsory licenses is extremely limited. 
+Thus, clearinghouses and other collectives comprise one option that has
+succeeded in providing for use of a work.  Often overlooked when one
+begins to use copyrighted material and put products together is how
+expensive the permissions process and managing it is.  According to
+PETERS, the price of copyright in a digital medium, whatever solution is
+worked out, will include managing and assembling the database.  She
+strongly recommended that publishers and librarians or people with
+various backgrounds cooperate to work out administratively feasible
+systems, in order to produce better results.
+
+In the lengthy question-and-answer period that followed PETERS's
+presentation, the following points emerged:
+
+     * The Copyright Office maintains that anything mechanical and
+     totally exhaustive probably is not protected.  In the event that
+     what an individual did in developing potentially copyrightable
+     material is not understood, the Copyright Office will ask about the
+     creative choices the applicant chose to make or not to make.  As a
+     practical matter, if one believes she or he has made enough of those
+     choices, that person has a right to assert a copyright and someone
+     else must assert that the work is not copyrightable.  The more
+     mechanical, the more automatic, a thing is, the less likely it is to
+     be copyrightable.
+
+     * Nearly all photographs are deemed to be copyrightable, but no one
+     worries about them much, because everyone is free to take the same
+     image.  Thus, a photographic copyright represents what is called a
+     "thin" copyright.  The photograph itself must be duplicated, in
+     order for copyright to be violated.
+
+     * The Copyright Office takes the position that X-rays are not
+     copyrightable because they are mechanical.  It  can be argued
+     whether or not image enhancement in scanning can be protected.  One
+     must exercise care with material created with public funds and
+     generally in the public domain.  An article written by a federal
+     employee, if written as part of official duties, is not
+     copyrightable.  However, control over a scientific article written
+     by a National Institutes of Health grantee (i.e., someone who
+     receives money from the U.S. government), depends on NIH policy.  If
+     the government agency has no policy (and that policy can be
+     contained in its regulations, the contract, or the grant), the
+     author retains copyright.  If a provision of the contract, grant, or
+     regulation states that there will be no copyright, then it does not
+     exist.  When a work is created, copyright automatically comes into
+     existence unless something exists that says it does not.
+
+     * An enhanced electronic copy of a print copy of an older reference
+     work in the public domain that does not contain copyrightable new
+     material is a purely mechanical rendition of the original work, and
+     is not copyrightable.
+
+     * Usually, when a work enters the public domain, nothing can remove
+     it.  For example, Congress recently passed into law the concept of
+     automatic renewal, which means that copyright on any work published
+     between l964 and l978 does not have to be renewed in order to
+     receive a seventy-five-year term.  But any work not renewed before
+     1964 is in the public domain.
+
+     * Concerning whether or not the United States keeps track of when
+     authors die, nothing was ever done, nor is anything being done at
+     the moment by the Copyright Office.
+
+     * Software that drives a mechanical process is itself copyrightable. 
+     If one changes platforms, the software itself has a copyright.  The
+     World Intellectual Property Organization will hold a symposium 28
+     March through 2 April l993, at Harvard University, on digital
+     technology, and will study this entire issue.  If one purchases a
+     computer software package, such as MacPaint, and creates something
+     new, one receives protection only for that which has been added.
+
+PETERS added that often in copyright matters, rough justice is the
+outcome, for example, in collective licensing, ASCAP (i.e., American
+Society of Composers, Authors, and Publishers), and BMI (i.e., Broadcast
+Music, Inc.), where it may seem that the big guys receive more than their
+due.  Of course, people ought not to copy a creative product without
+paying for it; there should be some compensation.  But the truth of the
+world, and it is not a great truth, is that the big guy gets played on
+the radio more frequently than the little guy, who has to do much more
+until he becomes a big guy.  That is true of every author, every
+composer, everyone, and, unfortunately, is part of life.
+
+Copyright always originates with the author, except in cases of works
+made for hire.  (Most software falls into this category.)  When an author
+sends his article to a journal, he has not relinquished copyright, though
+he retains the right to relinquish it.  The author receives absolutely
+everything.  The less prominent the author, the more leverage the
+publisher will have in contract negotiations.  In order to transfer the
+rights, the author must sign an agreement giving them away.
+
+In an electronic society, it is important to be able to license a writer
+and work out deals.  With regard to use of a work, it usually is much
+easier when a publisher holds the rights.  In an electronic era, a real
+problem arises when one is digitizing and making information available. 
+PETERS referred again to electronic licensing clearinghouses.  Copyright
+ought to remain with the author, but as one moves forward globally in the
+electronic arena, a middleman who can handle the various rights becomes
+increasingly necessary.
+
+The notion of copyright law is that it resides with the individual, but
+in an on-line environment, where a work can be adapted and tinkered with
+by many individuals, there is concern.  If changes are authorized and
+there is no agreement to the contrary, the person who changes a work owns
+the changes.  To put it another way, the person who acquires permission
+to change a work technically will become the author and the owner, unless
+some agreement to the contrary has been made.  It is typical for the
+original publisher to try to control all of the versions and all of the
+uses.  Copyright law always only sets up the boundaries.  Anything can be
+changed by contract.
+
+                                 ******
+
+SESSION VII.  CONCLUSION
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+GENERAL DISCUSSION * Two questions for discussion * Different emphases in
+the Workshop * Bringing the text and image partisans together *
+Desiderata in planning the long-term development of something * Questions
+surrounding the issue of electronic deposit * Discussion of electronic
+deposit as an allusion to the issue of standards * Need for a directory
+of preservation projects in digital form and for access to their
+digitized files * CETH's catalogue of machine-readable texts in the
+humanities * What constitutes a publication in the electronic world? *
+Need for LC to deal with the concept of on-line publishing * LC's Network
+Development Office  exploring the limits of MARC as a standard in terms
+of handling electronic information * Magnitude of the problem and the
+need for distributed responsibility in order to maintain and store
+electronic information * Workshop participants to be viewed as a starting
+point * Development of a network version of AM urged * A step toward AM's
+construction of some sort of apparatus for network access * A delicate
+and agonizing policy question for LC * Re the issue of electronic
+deposit, LC urged to initiate a catalytic process in terms of distributed
+responsibility * Suggestions for cooperative ventures * Commercial
+publishers' fears * Strategic questions for getting the image and text
+people to think through long-term cooperation * Clarification of the
+driving force behind both the Perseus and the Cornell Xerox projects *
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+In his role as moderator of the concluding session, GIFFORD raised two
+questions he believed would benefit from discussion:  1) Are there enough
+commonalities among those of us that have been here for two days so that
+we can see courses of action that should be taken in the future?  And, if
+so, what are they and who might take them?  2) Partly derivative from
+that, but obviously very dangerous to LC as host, do you see a role for
+the Library of Congress in all this?  Of course, the Library of Congress
+holds a rather special status in a number of these matters, because it is
+not perceived as a player with an economic stake in them, but are there
+roles that LC can play that can help advance us toward where we are heading?
+
+Describing himself as an uninformed observer of the technicalities of the
+last two days, GIFFORD detected three different emphases in the Workshop: 
+1) people who are very deeply committed to text; 2) people who are almost
+passionate about images; and 3) a few people who are very committed to
+what happens to the networks.  In other words, the new networking
+dimension, the accessibility of the processability, the portability of
+all this across the networks.  How do we pull those three together?
+
+Adding a question that reflected HOCKEY's comment that this was the
+fourth workshop she had attended in the previous thirty days, FLEISCHHAUER
+wondered to what extent this meeting had reinvented the wheel, or if it
+had contributed anything in the way of bringing together a different group
+of people from those who normally appear on the workshop circuit.
+
+HOCKEY confessed to being struck at this meeting and the one the
+Electronic Pierce Consortium organized the previous week that this was a
+coming together of people working on texts and not images.  Attempting to
+bring the two together is something we ought to be thinking about for the
+future:  How one can think about working with image material to begin
+with, but structuring it and digitizing it in such a way that at a later
+stage it can be interpreted into text, and find a common way of building
+text and images together so that they can be used jointly in the future,
+with the network support to begin there because that is how people will
+want to access it.
+
+In planning the long-term development of something, which is what is
+being done in electronic text, HOCKEY stressed the importance not only
+of discussing the technical aspects of how one does it but particularly
+of thinking about what the people who use the stuff will want to do.
+But conversely, there are numerous things that people start to do with
+electronic text or material that nobody ever thought of in the beginning.
+
+LESK, in response to the question concerning the role of the Library of
+Congress, remarked the often suggested desideratum of having electronic
+deposit:  Since everything is now computer-typeset, an entire decade of
+material that was machine-readable exists, but the publishers frequently
+did not save it; has LC taken any action to have its copyright deposit
+operation start collecting these machine-readable versions?  In the
+absence of PETERS, GIFFORD replied that the question was being
+actively considered but that that was only one dimension of the problem.
+Another dimension is the whole question of the integrity of the original
+electronic document.  It becomes highly important in science to prove
+authorship.  How will that be done?
+
+ERWAY explained that, under the old policy, to make a claim for a
+copyright for works that were published in electronic form, including
+software, one had to submit a paper copy of the first and last twenty
+pages of code--something that represented the work but did not include
+the entire work itself and had little value to anyone.  As a temporary
+measure, LC has claimed the right to demand electronic versions of
+electronic publications.  This measure entails a proactive role for the
+Library to say that it wants a particular electronic version.  Publishers
+then have perhaps a year to submit it.  But the real problem for LC is
+what to do with all this material in all these different formats.  Will
+the Library mount it?  How will it give people access to it?  How does LC
+keep track of the appropriate computers, software, and media?  The situation
+is so hard to control, ERWAY said, that it makes sense for each publishing
+house to maintain its own archive.  But LC cannot enforce that either.
+
+GIFFORD acknowledged LESK's suggestion that establishing a priority
+offered the solution, albeit a fairly complicated one.  But who maintains
+that register?, he asked.  GRABER noted that LC does attempt to collect a
+Macintosh version and the IBM-compatible version of software.  It does
+not collect other versions.  But while true for software, BYRUM observed,
+this reply does not speak to materials, that is, all the materials that
+were published that were on somebody's microcomputer or driver tapes
+at a publishing office across the country.  LC does well to acquire
+specific machine-readable products selectively that were intended to be
+machine-readable.  Materials that were in machine-readable form at one time,
+BYRUM said, would be beyond LC's capability at the moment, insofar as
+attempting to acquire, organize, and preserve them are concerned--and
+preservation would be the most important consideration.  In this
+connection, GIFFORD reiterated the need to work out some sense of
+distributive responsibility for a number of these issues, which
+inevitably will require significant cooperation and discussion.
+Nobody can do it all.
+
+LESK suggested that some publishers may look with favor on LC beginning
+to serve as a depository of tapes in an electronic manuscript standard. 
+Publishers may view this as a service that they did not have to perform
+and they might send in tapes.  However, SPERBERG-McQUEEN countered,
+although publishers have had equivalent services available to them for a
+long time, the electronic text archive has never turned away or been
+flooded with tapes and is forever sending feedback to the depositor. 
+Some publishers do send in tapes.
+
+ANDRE viewed this discussion as an allusion to the issue of standards. 
+She recommended that the AAP standard and the TEI, which has already been
+somewhat harmonized internationally and which also shares several
+compatibilities with the AAP, be harmonized to ensure sufficient
+compatibility in the software.  She drew the line at saying LC ought to
+be the locus or forum for such harmonization.
+
+Taking the group in a slightly different direction, but one where at
+least in the near term LC might play a helpful role, LYNCH remarked the
+plans of a number of projects to carry out preservation by creating
+digital images that will end up in on-line or near-line storage at some
+institution.   Presumably, LC will link this material somehow to its
+on-line catalog in most cases.  Thus, it is in a digital form.  LYNCH had
+the impression that many of these institutions would be willing to make
+those files accessible to other people outside the institution, provided
+that there is no copyright problem.  This desideratum will require
+propagating the knowledge that those digitized files exist, so that they
+can end up in other on-line catalogs.  Although uncertain about the
+mechanism for achieving this result, LYNCH said that it warranted
+scrutiny because it seemed to be connected to some of the basic issues of
+cataloging and distribution of records.  It would be  foolish, given the
+amount of work that all of us have to do and our meager resources, to
+discover multiple institutions digitizing the same work.  Re microforms,
+LYNCH said, we are in pretty good shape.
+
+BATTIN called this a big problem and noted that the Cornell people (who
+had already departed) were working on it.  At issue from the beginning
+was to learn how to catalog that information into RLIN and then into
+OCLC, so that it would be accessible.  That issue remains to be resolved. 
+LYNCH rejoined that putting it into OCLC or RLIN was helpful insofar as
+somebody who is thinking of performing preservation activity on that work
+could learn about it.  It is not necessarily helpful for institutions to
+make that available.  BATTIN opined that the idea was that it not only be
+for preservation purposes but for the convenience of people looking for
+this material.  She endorsed LYNCH's dictum that duplication of this
+effort was to be avoided by every means.
+
+HOCKEY informed the Workshop about one major current activity of CETH,
+namely a catalogue of machine-readable texts in the humanities.  Held on
+RLIN at present, the catalogue has been concentrated on ASCII as opposed
+to digitized images of text.  She is exploring ways to improve the
+catalogue and make it more widely available, and welcomed suggestions
+about these concerns.  CETH owns the records, which are not just
+restricted to RLIN, and can distribute them however it wishes.
+
+Taking up LESK's earlier question, BATTIN inquired whether LC, since it
+is accepting electronic files and designing a mechanism for dealing with
+that rather than putting books on shelves, would become responsible for
+the National Copyright Depository of Electronic Materials.  Of course
+that could not be accomplished overnight, but it would be something LC
+could plan for.  GIFFORD acknowledged that much thought was being devoted
+to that set of problems and returned the discussion to the issue raised
+by LYNCH--whether or not putting the kind of records that both BATTIN and
+HOCKEY have been talking about in RLIN is not a satisfactory solution. 
+It seemed to him that RLIN answered LYNCH's original point concerning
+some kind of directory for these kinds of materials.  In a situation
+where somebody is attempting to decide whether or not to scan this or
+film that or to learn whether or not someone has already done so, LYNCH
+suggested, RLIN is helpful, but it is not helpful in the case of a local,
+on-line catalogue.  Further, one would like to have her or his system be
+aware that that exists in digital form, so that one can present it to a
+patron, even though one did not digitize it, if it is out of copyright. 
+The only way to make those linkages would be to perform a tremendous
+amount of real-time look-up, which would be awkward at best, or
+periodically to yank the whole file from RLIN and match it against one's
+own stuff, which is a nuisance.
+
+But where, ERWAY inquired, does one stop including things that are
+available with Internet, for instance, in one's local catalogue?
+It almost seems that that is LC's means to acquire access to them.
+That represents LC's new form of library loan.  Perhaps LC's new on-line
+catalogue is an amalgamation of all these catalogues on line.  LYNCH
+conceded that perhaps that was true in the very long term, but was not
+applicable to scanning in the short term.  In his view, the totals cited
+by Yale, 10,000 books over perhaps a four-year period, and 1,000-1,500
+books from Cornell, were not big numbers, while searching all over
+creation for relatively rare occurrences will prove to be less efficient. 
+As GIFFORD wondered if this would not be a separable file on RLIN and
+could be requested from them, BATTIN interjected that it was easily
+accessible to an institution.  SEVERTSON pointed out that that file, cum
+enhancements, was available with reference information on CD-ROM, which
+makes it a little more available.
+
+In HOCKEY's view, the real question facing the Workshop is what to put in
+this catalogue, because that raises the question of what constitutes a
+publication in the electronic world.  (WEIBEL interjected that Eric Joule
+in OCLC's Office of Research is also wrestling with this particular
+problem, while GIFFORD thought it sounded fairly generic.)  HOCKEY
+contended that a majority of texts in the humanities are in the hands
+of either a small number of large research institutions or individuals
+and are not generally available for anyone else to access at all.
+She wondered if these texts ought to be catalogued.
+
+After argument proceeded back and forth for several minutes over why
+cataloguing might be a necessary service, LEBRON suggested that this
+issue involved the responsibility of a publisher.  The fact that someone
+has created something electronically and keeps it under his or her
+control does not constitute publication.  Publication implies
+dissemination.  While it would be important for a scholar to let other
+people know that this creation exists, in many respects this is no
+different from an unpublished manuscript.  That is what is being accessed
+in there, except that now one is not looking at it in the hard-copy but
+in the electronic environment.
+
+LEBRON expressed puzzlement at the variety of ways electronic publishing
+has been viewed.  Much of what has been discussed throughout these two
+days has concerned CD-ROM publishing, whereas in the on-line environment
+that she confronts, the constraints and challenges are very different. 
+Sooner or later LC will have to deal with the concept of on-line
+publishing.  Taking up the comment ERWAY made earlier about storing
+copies, LEBRON gave her own journal as an example.  How would she deposit
+OJCCT for copyright?, she asked, because the journal will exist in the
+mainframe at OCLC and people will be able to access it.  Here the
+situation is different, ownership versus access, and is something that
+arises with publication in the on-line environment, faster than is
+sometimes realized.  Lacking clear answers to all of these questions
+herself, LEBRON did not anticipate that LC would be able to take a role
+in helping to define some of them for quite a while.
+
+GREENFIELD observed that LC's Network Development Office is attempting,
+among other things, to explore the limits of MARC as a standard in terms
+of handling electronic information.  GREENFIELD also noted that Rebecca
+GUENTHER from that office gave a paper to the American Society for
+Information Science (ASIS) summarizing several of the discussion papers
+that were coming out of the Network Development Office.  GREENFIELD said
+he understood that that office had a list-server soliciting just the kind
+of feedback received today concerning the difficulties of identifying and
+cataloguing electronic information.  GREENFIELD hoped that everybody
+would be aware of that and somehow contribute to that conversation.
+
+Noting two of LC's roles, first, to act as a repository of record for
+material that is copyrighted in this country, and second, to make
+materials it holds available in some limited form to a clientele that
+goes beyond Congress, BESSER suggested that it was incumbent on LC to
+extend those responsibilities to all the things being published in
+electronic form.  This would mean eventually accepting electronic
+formats.  LC could require that at some point they be in a certain
+limited set of formats, and then develop mechanisms for allowing people
+to access those in the same way that other things are accessed.  This
+does not imply that they are on the network and available to everyone. 
+LC does that with most of its bibliographic records, BESSER said, which
+end up migrating to the utility (e.g., OCLC) or somewhere else.  But just
+as most of LC's books are available in some form through interlibrary
+loan or some other mechanism, so in the same way electronic formats ought
+to be available to others in some format, though with some copyright
+considerations.  BESSER was not suggesting that these mechanisms be
+established tomorrow, only that they seemed to fall within LC's purview,
+and that there should be long-range plans to establish them.
+
+Acknowledging that those from LC in the room agreed with BESSER
+concerning the need to confront difficult questions, GIFFORD underscored
+the magnitude of the problem of what to keep and what to select.  GIFFORD
+noted that LC currently receives some 31,000 items per day, not counting
+electronic materials, and argued for much more distributed responsibility
+in order to maintain and store electronic information.
+
+BESSER responded that the assembled group could be viewed as a starting
+point, whose initial operating premise could be helping to move in this
+direction and defining how LC could do so, for example, in areas of
+standardization or distribution of responsibility.
+
+FLEISCHHAUER added that AM was fully engaged, wrestling with some of the
+questions that pertain to the conversion of older historical materials,
+which would be one thing that the Library of Congress might do.  Several
+points mentioned by BESSER and several others on this question have a
+much greater impact on those who are concerned with cataloguing and the
+networking of bibliographic information, as well as preservation itself.
+
+Speaking directly to AM, which he considered was a largely uncopyrighted
+database, LYNCH urged development of a network version of AM, or
+consideration of making the data in it available to people interested in
+doing network multimedia.  On account of the current great shortage of
+digital data that is both appealing and unencumbered by complex rights
+problems, this course of action could have a significant effect on making
+network multimedia a reality.
+
+In this connection, FLEISCHHAUER reported on a fragmentary prototype in
+LC's Office of Information Technology Services that attempts to associate
+digital images of photographs with cataloguing information in ways that
+work within a local area network--a step, so to say, toward AM's
+construction of some sort of apparatus for access.  Further, AM has
+attempted to use standard data forms in order to help make that
+distinction between the access tools and the underlying data, and thus
+believes that the database is networkable.
+
+A delicate and agonizing policy question for LC, however, which comes
+back to resources and unfortunately has an impact on this, is to find
+some appropriate, honorable, and legal cost-recovery possibilities.  A
+certain skittishness concerning cost-recovery has made people unsure
+exactly what to do.  AM would be highly receptive to discussing further
+LYNCH's offer to test or demonstrate its database in a network
+environment, FLEISCHHAUER said.
+
+Returning the discussion to what she viewed as the vital issue of
+electronic deposit, BATTIN recommended that LC initiate a catalytic
+process in terms of distributed responsibility, that is, bring together
+the distributed organizations and set up a study group to look at all
+these issues and see where we as a nation should move.  The broader
+issues of how we deal with the management of electronic information will
+not disappear, but only grow worse.
+
+LESK took up this theme and suggested that LC attempt to persuade one
+major library in each state to deal with its state equivalent publisher,
+which might produce a cooperative project that would be equitably
+distributed around the country, and one in which LC would be dealing with
+a minimal number of publishers and minimal copyright problems.
+
+GRABER remarked the recent development in the scientific community of a
+willingness to use SGML and either deposit or interchange on a fairly
+standardized format.  He wondered if a similar movement was taking place
+in the humanities.  Although the National Library of Medicine found only
+a few publishers to cooperate in a like venture two or three years ago, a
+new effort might generate a much larger number willing to cooperate.
+
+KIMBALL recounted his unit's (Machine-Readable Collections Reading Room)
+troubles with the commercial publishers of electronic media in acquiring
+materials for LC's collections, in particular the publishers' fear that
+they would not be able to cover their costs and would lose control of
+their products, that LC would give them away or sell them and make
+profits from them.  He doubted that the publishing industry was prepared
+to move into this area at the moment, given its resistance to allowing LC
+to use its machine-readable materials as the Library would like.
+
+The copyright law now addresses compact disk as a medium, and LC can
+request one copy of that, or two copies if it is the only version, and
+can request copies of software, but that fails to address magazines or
+books or anything like that which is in machine-readable form.
+
+GIFFORD acknowledged the thorny nature of this issue, which he illustrated
+with the example of the cumbersome process involved in putting a copy of a
+scientific database on a LAN in LC's science reading room.  He also
+acknowledged that LC needs help and could enlist the energies and talents
+of Workshop participants in thinking through a number of these problems.
+
+GIFFORD returned the discussion to getting the image and text people to
+think through together where they want to go in the long term.  MYLONAS
+conceded that her experience at the Pierce Symposium the previous week at
+Georgetown University and this week at LC had forced her to reevaluate
+her perspective on the usefulness of text as images.  MYLONAS framed the
+issues in a series of questions:  How do we acquire machine-readable
+text?  Do we take pictures of it and perform OCR on it later?  Is it
+important to obtain very high-quality images and text, etc.? 
+FLEISCHHAUER agreed with MYLONAS's framing of strategic questions, adding
+that a large institution such as LC probably has to do all of those
+things at different times.  Thus, the trick is to exercise judgment.  The
+Workshop had added to his and AM's considerations in making those
+judgments.  Concerning future meetings or discussions, MYLONAS suggested
+that screening priorities would be helpful.
+
+WEIBEL opined that the diversity reflected in this group was a sign both
+of the health and of the immaturity of the field, and more time would
+have to pass before we convince one another concerning standards.
+
+An exchange between MYLONAS and BATTIN clarified the point that the
+driving force behind both the Perseus and the Cornell Xerox projects was
+the preservation of knowledge for the future, not simply for particular
+research use.  In the case of Perseus, MYLONAS said, the assumption was
+that the texts would not be entered again into electronically readable
+form.  SPERBERG-McQUEEN added that a scanned image would not serve as an
+archival copy for purposes of preservation in the case of, say, the Bill
+of Rights, in the sense that the scanned images are effectively the
+archival copies for the Cornell mathematics books.
+
+
+               ***   ***   ***   ******   ***   ***   ***
+
+
+                          Appendix I:  PROGRAM
+
+
+
+                                WORKSHOP
+                                   ON
+                               ELECTRONIC
+                                  TEXTS
+
+
+
+                             9-10 June 1992
+
+                           Library of Congress
+                            Washington, D.C.
+
+
+
+    Supported by a Grant from the David and Lucile Packard Foundation
+
+
+Tuesday, 9 June 1992
+
+NATIONAL DEMONSTRATION LAB, ATRIUM, LIBRARY MADISON
+
+8:30 AM   Coffee and Danish, registration
+
+9:00 AM   Welcome
+
+          Prosser Gifford, Director for Scholarly Programs, and Carl
+             Fleischhauer, Coordinator, American Memory, Library of
+             Congress
+
+9:l5 AM   Session I.  Content in a New Form:  Who Will Use It and What
+          Will They Do?
+
+          Broad description of the range of electronic information. 
+          Characterization of who uses it and how it is or may be used. 
+          In addition to a look at scholarly uses, this session will
+          include a presentation on use by students (K-12 and college)
+          and the general public.
+
+          Moderator:  James Daly
+          Avra Michelson, Archival Research and Evaluation Staff,
+             National Archives and Records Administration (Overview)
+          Susan H. Veccia, Team Leader, American Memory, User Evaluation,
+             and
+          Joanne Freeman, Associate Coordinator, American Memory, Library
+             of Congress (Beyond the scholar)
+
+10:30-
+11:00 AM  Break
+
+11:00 AM  Session II.  Show and Tell.
+
+          Each presentation to consist of a fifteen-minute
+          statement/show; group discussion will follow lunch.
+
+          Moderator:  Jacqueline Hess, Director, National Demonstration
+             Lab
+
+            1.  A classics project, stressing texts and text retrieval
+                more than multimedia:  Perseus Project, Harvard
+                University
+                Elli Mylonas, Managing Editor
+
+            2.  Other humanities projects employing the emerging norms of
+                the Text Encoding Initiative (TEI):  Chadwyck-Healey's
+                The English Poetry Full Text Database and/or Patrologia
+                Latina Database
+                Eric M. Calaluca, Vice President, Chadwyck-Healey, Inc.
+
+            3.  American Memory
+                Carl Fleischhauer, Coordinator, and
+                Ricky Erway, Associate Coordinator, Library of Congress
+
+            4.  Founding Fathers example from Packard Humanities
+                Institute:  The Papers of George Washington, University
+                of Virginia
+                Dorothy Twohig, Managing Editor, and/or
+                David Woodley Packard
+
+            5.  An electronic medical journal offering graphics and
+                full-text searchability:  The Online Journal of Current
+                Clinical Trials, American Association for the Advancement
+                of Science
+                Maria L. Lebron, Managing Editor
+
+            6.  A project that offers facsimile images of pages but omits
+                searchable text:  Cornell math books
+                Lynne K. Personius, Assistant Director, Cornell
+                   Information Technologies for Scholarly Information
+                   Sources, Cornell University
+
+12:30 PM  Lunch  (Dining Room A, Library Madison 620.  Exhibits
+          available.)
+
+1:30 PM   Session II.  Show and Tell (Cont'd.).
+
+3:00-
+3:30 PM   Break
+
+3:30-
+5:30 PM   Session III.  Distribution, Networks, and Networking:  Options
+          for Dissemination.
+
+          Published disks:  University presses and public-sector
+             publishers, private-sector publishers
+          Computer networks
+
+          Moderator:  Robert G. Zich, Special Assistant to the Associate
+             Librarian for Special Projects, Library of Congress
+          Clifford A. Lynch, Director, Library Automation, University of
+             California
+          Howard Besser, School of Library and Information Science,
+             University of Pittsburgh
+          Ronald L. Larsen, Associate Director of Libraries for
+             Information Technology, University of Maryland at College
+             Park
+          Edwin B. Brownrigg, Executive Director, Memex Research
+             Institute
+
+6:30 PM   Reception  (Montpelier Room, Library Madison 619.)
+
+                                 ******
+
+Wednesday, 10 June 1992
+
+DINING ROOM A, LIBRARY MADISON 620
+
+8:30 AM   Coffee and Danish
+
+9:00 AM   Session IV.  Image Capture, Text Capture, Overview of Text and
+          Image Storage Formats.
+
+          Moderator:  William L. Hooton, Vice President of Operations,
+             I-NET
+
+          A) Principal Methods for Image Capture of Text:
+             Direct scanning
+             Use of microform
+
+          Anne R. Kenney, Assistant Director, Department of Preservation
+             and Conservation, Cornell University
+          Pamela Q.J. Andre, Associate Director, Automation, and
+          Judith A. Zidar, Coordinator, National Agricultural Text
+             Digitizing Program (NATDP), National Agricultural Library
+             (NAL)
+          Donald J. Waters, Head, Systems Office, Yale University Library
+
+          B) Special Problems:
+             Bound volumes
+             Conservation
+             Reproducing printed halftones
+
+          Carl Fleischhauer, Coordinator, American Memory, Library of
+             Congress
+          George Thoma, Chief, Communications Engineering Branch,
+             National Library of Medicine (NLM)
+
+10:30-
+11:00 AM  Break
+
+11:00 AM  Session IV.  Image Capture, Text Capture, Overview of Text and
+          Image Storage Formats (Cont'd.).
+
+          C) Image Standards and Implications for Preservation
+
+          Jean Baronas, Senior Manager, Department of Standards and
+             Technology, Association for Information and Image Management
+             (AIIM)
+          Patricia Battin, President, The Commission on Preservation and
+             Access (CPA)
+
+          D) Text Conversion:
+             OCR vs. rekeying
+             Standards of accuracy and use of imperfect texts
+             Service bureaus
+
+          Stuart Weibel, Senior Research Specialist, Online Computer
+             Library Center, Inc. (OCLC)
+          Michael Lesk, Executive Director, Computer Science Research,
+             Bellcore
+          Ricky Erway, Associate Coordinator, American Memory, Library of
+             Congress
+          Pamela Q.J. Andre, Associate Director, Automation, and
+          Judith A. Zidar, Coordinator, National Agricultural Text
+             Digitizing Program (NATDP), National Agricultural Library
+             (NAL)
+
+12:30-
+1:30 PM   Lunch
+
+1:30 PM   Session V.  Approaches to Preparing Electronic Texts.
+
+          Discussion of approaches to structuring text for the computer;
+          pros and cons of text coding, description of methods in
+          practice, and comparison of text-coding methods.
+
+          Moderator:  Susan Hockey, Director, Center for Electronic Texts
+             in the Humanities (CETH), Rutgers and Princeton Universities
+          David Woodley Packard
+          C.M. Sperberg-McQueen, Editor, Text Encoding Initiative (TEI),
+             University of Illinois-Chicago
+          Eric M. Calaluca, Vice President, Chadwyck-Healey, Inc.
+
+3:30-
+4:00 PM   Break
+
+4:00 PM   Session VI.  Copyright Issues.
+
+          Marybeth Peters, Policy Planning Adviser to the Register of
+             Copyrights, Library of Congress
+
+5:00 PM   Session VII. Conclusion.
+
+          General discussion.
+          What topics were omitted or given short shrift that anyone
+             would like to talk about now?
+          Is there a "group" here?  What should the group do next, if
+             anything?  What should the Library of Congress do next, if
+             anything?
+          Moderator:  Prosser Gifford, Director for Scholarly Programs,
+             Library of Congress
+
+6:00 PM   Adjourn
+
+
+               ***   ***   ***   ******   ***   ***   ***
+
+
+                         Appendix II:  ABSTRACTS
+
+
+SESSION I
+
+Avra MICHELSON           Forecasting the Use of Electronic Texts by
+                         Social Sciences and Humanities Scholars
+
+This presentation explores the ways in which electronic texts are likely
+to be used by the non-scientific scholarly community.  Many of the
+remarks are drawn from a report the speaker coauthored with Jeff
+Rothenberg, a computer scientist at The RAND Corporation.
+
+The speaker assesses 1) current scholarly use of information technology
+and 2) the key trends in information technology most relevant to the
+research process, in order to predict how social sciences and humanities
+scholars are apt to use electronic texts.  In introducing the topic,
+current use of electronic texts is explored broadly within the context of
+scholarly communication.  From the perspective of scholarly
+communication, the work of humanities and social sciences scholars
+involves five processes:  1) identification of sources, 2) communication
+with colleagues, 3) interpretation and analysis of data, 4) dissemination
+of research findings, and 5) curriculum development and instruction.  The
+extent to which computation currently permeates aspects of scholarly
+communication represents a viable indicator of the prospects for
+electronic texts.
+
+The discussion of current practice is balanced by an analysis of key
+trends in the scholarly use of information technology.  These include the
+trends toward end-user computing and connectivity, which provide a
+framework for forecasting the use of electronic texts through this
+millennium.  The presentation concludes with a summary of the ways in
+which the nonscientific scholarly community can be expected to use
+electronic texts, and the implications of that use for information
+providers.
+
+Susan VECCIA and Joanne FREEMAN    Electronic Archives for the Public: 
+                                   Use of American Memory in Public and
+                                   School Libraries
+
+This joint discussion focuses on nonscholarly applications of electronic
+library materials, specifically addressing use of the Library of Congress
+American Memory (AM) program in a small number of public and school
+libraries throughout the United States.  AM consists of selected Library
+of Congress primary archival materials, stored on optical media
+(CD-ROM/videodisc), and presented with little or no editing.  Many
+collections are accompanied by electronic introductions and user's guides
+offering background information and historical context.  Collections
+represent a variety of formats including photographs, graphic arts,
+motion pictures, recorded sound, music, broadsides and manuscripts,
+books, and pamphlets.
+
+In 1991, the Library of Congress began a nationwide evaluation of AM in
+different types of institutions.  Test sites include public libraries,
+elementary and secondary school libraries, college and university
+libraries, state libraries, and special libraries.  Susan VECCIA and
+Joanne FREEMAN will discuss their observations on the use of AM by the
+nonscholarly community, using evidence gleaned from this ongoing
+evaluation effort.
+
+VECCIA will comment on the overall goals of the evaluation project, and
+the types of public and school libraries included in this study.  Her
+comments on nonscholarly use of AM will focus on the public library as a
+cultural and community institution, often bridging the gap between formal
+and informal education.  FREEMAN will discuss the use of AM in school
+libraries.  Use by students and teachers has revealed some broad
+questions about the use of electronic resources, as well as definite
+benefits gained by the "nonscholar."  Topics will include the problem of
+grasping content and context in an electronic environment, the stumbling
+blocks created by "new" technologies, and the unique skills and interests
+awakened through use of electronic resources.
+
+SESSION II
+
+Elli MYLONAS             The Perseus Project:  Interactive Sources and
+                         Studies in Classical Greece
+
+The Perseus Project (5) has just released Perseus 1.0, the first publicly
+available version of its hypertextual database of multimedia materials on
+classical Greece.  Perseus is designed to be used by a wide audience,
+comprised of readers at the student and scholar levels.  As such, it must
+be able to locate information using different strategies, and it must
+contain enough detail to serve the different needs of its users.  In
+addition, it must be delivered so that it is affordable to its target
+audience.  [These problems and the solutions we chose are described in
+Mylonas, "An Interface to Classical Greek Civilization," JASIS 43:2,
+March 1992.]
+
+In order to achieve its objective, the project staff decided to make a
+conscious separation between selecting and converting textual, database,
+and image data on the one hand, and putting it into a delivery system on
+the other.  That way, it is possible to create the electronic data
+without thinking about the restrictions of the delivery system.  We have
+made a great effort to choose system-independent formats for our data,
+and to put as much thought and work as possible into structuring it so
+that the translation from paper to electronic form will enhance the value
+of the data. [A discussion of these solutions as of two years ago is in
+Elli Mylonas, Gregory Crane, Kenneth Morrell, and D. Neel Smith, "The
+Perseus Project:  Data in the Electronic Age," in Accessing Antiquity: 
+The Computerization of Classical Databases, J. Solomon and T. Worthen
+(eds.),  University of Arizona Press, in press.]
+
+Much of the work on Perseus is focused on collecting and converting the
+data on which the project is based.  At the same time, it is necessary to
+provide means of access to the information, in order to make it usable,
+and them to investigate how it is used.  As we learn more about what
+students and scholars from different backgrounds do with Perseus, we can
+adjust our data collection, and also modify the system to accommodate
+them.  In creating a delivery system for general use, we have tried to
+avoid favoring any one type of use by allowing multiple forms of access
+to and navigation through the system.
+
+The way text is handled exemplifies some of these principles.  All text
+in Perseus is tagged using SGML, following the guidelines of the Text
+Encoding Initiative (TEI).  This markup is used to index the text, and
+process it so that it can be imported into HyperCard.  No SGML markup
+remains in the text that reaches the user, because currently it would be
+too expensive to create a system that acts on SGML in real time. 
+However, the regularity provided by SGML is essential for verifying the
+content of the texts, and greatly speeds all the processing performed on
+them.  The fact that the texts exist in SGML ensures that they will be
+relatively easy to port to different hardware and software, and so will
+outlast the current delivery platform.  Finally, the SGML markup
+incorporates existing canonical reference systems (chapter, verse, line,
+etc.); indexing and navigation are based on these features.  This ensures
+that the same canonical reference will always resolve to the same point
+within a text, and that all versions of our texts, regardless of delivery
+platform (even paper printouts) will function the same way.
+
+In order to provide tools for users, the text is processed by a
+morphological analyzer, and the results are stored in a database. 
+Together with the index, the Greek-English Lexicon, and the index of all
+the English words in the definitions of the lexicon, the morphological
+analyses comprise a set of linguistic tools that allow users of all
+levels to work with the textual information, and to accomplish different
+tasks.  For example, students who read no Greek may explore a concept as
+it appears in Greek texts by using the English-Greek index, and then
+looking up works in the texts and translations, or scholars may do
+detailed morphological studies of word use by using the morphological
+analyses of the texts.  Because these tools were not designed for any one
+use, the same tools and the same data can be used by both students and
+scholars.
+
+NOTES:
+     (5)  Perseus is based at Harvard University, with collaborators at
+     several other universities.  The project has been funded primarily
+     by the Annenberg/CPB Project, as well as by Harvard University,
+     Apple Computer, and others.  It is published by Yale University
+     Press.  Perseus runs on Macintosh computers, under the HyperCard
+     program.
+
+Eric CALALUCA
+
+Chadwyck-Healey embarked last year on two distinct yet related full-text
+humanities database projects.
+
+The English Poetry Full-Text Database and the Patrologia Latina Database
+represent new approaches to linguistic research resources.  The size and
+complexity of the projects present problems for electronic publishers,
+but surmountable ones if they remain abreast of the latest possibilities
+in data capture and retrieval software techniques.
+
+The issues which required address prior to the commencement of the
+projects were legion:
+
+     1.   Editorial selection (or exclusion) of materials in each
+          database
+
+     2.   Deciding whether or not to incorporate a normative encoding
+          structure into the databases?
+               A.  If one is selected, should it be SGML?
+               B.  If SGML, then the TEI?
+     
+     3.   Deliver as CD-ROM, magnetic tape, or both?
+
+     4.   Can one produce retrieval software advanced enough for the
+          postdoctoral linguist, yet accessible enough for unattended
+          general use?  Should one try?
+
+     5.   Re fair and liberal networking policies, what are the risks to
+          an electronic publisher?
+
+     6.   How does the emergence of national and international education
+          networks affect the use and viability of research projects
+          requiring high investment?  Do the new European Community
+          directives concerning database protection necessitate two
+          distinct publishing projects, one for North America and one for
+          overseas?
+
+From new notions of "scholarly fair use" to the future of optical media,
+virtually every issue related to electronic publishing was aired.  The
+result is two projects which have been constructed to provide the quality
+research resources with the fewest encumbrances to use by teachers and
+private scholars.
+
+Dorothy TWOHIG
+
+In spring 1988 the editors of the papers of George Washington, John
+Adams, Thomas Jefferson, James Madison, and Benjamin Franklin were
+approached by classics scholar David Packard on behalf of the Packard
+Humanities Foundation with a proposal to produce a CD-ROM edition of the
+complete papers of each of the Founding Fathers.  This electronic edition
+will supplement the published volumes, making the documents widely
+available to students and researchers at reasonable cost.  We estimate
+that our CD-ROM edition of Washington's Papers will be substantially
+completed within the next two years and ready for publication.  Within
+the next ten years or so, similar CD-ROM editions of the Franklin, Adams,
+Jefferson, and Madison papers also will be available.  At the Library of
+Congress's session on technology, I would like to discuss not only the
+experience of the Washington Papers in producing the CD-ROM edition, but
+the impact technology has had on these major editorial projects. 
+Already, we are editing our volumes with an eye to the material that will
+be readily available in the CD-ROM edition.  The completed electronic
+edition will provide immense possibilities for the searching of documents
+for information in a way never possible before.  The kind of technical
+innovations that are currently available and on the drawing board will
+soon revolutionize historical research and the production of historical
+documents.  Unfortunately, much of this new technology is not being used
+in the planning stages of historical projects, simply because many
+historians are aware only in the vaguest way of its existence.  At least
+two major new historical editing projects are considering microfilm
+editions, simply because they are not aware of the possibilities of
+electronic alternatives and the advantages of the new technology in terms
+of flexibility and research potential compared to microfilm.  In fact,
+too many of us in history and literature are still at the stage of
+struggling with our PCs.  There are many historical editorial projects in
+progress presently, and an equal number of literary projects.  While the
+two fields have somewhat different approaches to textual editing, there
+are ways in which electronic technology can be of service to both.
+
+Since few of the editors involved in the Founding Fathers CD-ROM editions
+are technical experts in any sense, I hope to point out in my discussion
+of our experience how many of these electronic innovations can be used
+successfully by scholars who are novices in the world of new technology. 
+One of the major concerns of the sponsors of the multitude of new
+scholarly editions is the limited audience reached by the published
+volumes.  Most of these editions are being published in small quantities
+and the publishers' price for them puts them out of the reach not only of
+individual scholars but of most public libraries and all but the largest
+educational institutions.  However, little attention is being given to
+ways in which technology can bypass conventional publication to make
+historical and literary documents more widely available.
+
+What attracted us most to the CD-ROM edition of The Papers of George
+Washington was the fact that David Packard's aim was to make a complete
+edition of all of the 135,000 documents we have collected available in an
+inexpensive format that would be placed in public libraries, small
+colleges, and even high schools.  This would provide an audience far
+beyond our present 1,000-copy, $45 published edition.  Since the CD-ROM
+edition will carry none of the explanatory annotation that appears in the
+published volumes, we also feel that the use of the CD-ROM will lead many
+researchers to seek out the published volumes.
+
+In addition to ignorance of new technical advances, I have found that too
+many editors--and historians and literary scholars--are resistant and
+even hostile to suggestions that electronic technology may enhance their
+work.  I intend to discuss some of the arguments traditionalists are
+advancing to resist technology, ranging from distrust of the speed with
+which it changes (we are already wondering what is out there that is
+better than CD-ROM) to suspicion of the technical language used to
+describe electronic developments.
+
+Maria LEBRON
+
+The Online Journal of Current Clinical Trials, a joint venture of the
+American Association for the Advancement of Science (AAAS) and the Online
+Computer Library Center, Inc. (OCLC), is the first peer-reviewed journal
+to provide full text, tabular material, and line illustrations on line. 
+This presentation will discuss the genesis and start-up period of the
+journal.  Topics of discussion will include historical overview,
+day-to-day management of the editorial peer review, and manuscript
+tagging and publication.  A demonstration of the journal and its features
+will accompany the presentation.
+
+Lynne PERSONIUS
+
+Cornell University Library, Cornell Information Technologies, and Xerox
+Corporation, with the support of the Commission on Preservation and
+Access, and Sun Microsystems, Inc., have been collaborating in a project
+to test a prototype system for recording brittle books as digital images
+and producing, on demand, high-quality archival paper replacements.  The
+project goes beyond that, however, to investigate some of the issues
+surrounding scanning, storing, retrieving, and providing access to
+digital images in a network environment.
+
+The Joint Study in Digital Preservation began in January 1990.  Xerox
+provided the College Library Access and Storage System (CLASS) software,
+a prototype 600-dots-per-inch (dpi) scanner, and the hardware necessary
+to support network printing on the DocuTech printer housed in Cornell's
+Computing and Communications Center (CCC).
+
+The Cornell staff using the hardware and software became an integral part
+of the development and testing process for enhancements to the CLASS
+software system.  The collaborative nature of this relationship is
+resulting in a system that is specifically tailored to the preservation
+application.
+
+A digital library of 1,000 volumes (or approximately 300,000 images) has
+been created and is stored on an optical jukebox that resides in CCC. 
+The library includes a collection of select mathematics monographs that
+provides mathematics faculty with an opportunity to use the electronic
+library.  The remaining volumes were chosen for the library to test the
+various capabilities of the scanning system.
+
+One project objective is to provide users of the Cornell library and the
+library staff with the ability to request facsimiles of digitized images
+or to retrieve the actual electronic image for browsing.  A prototype
+viewing workstation has been created by Xerox, with input into the design
+by a committee of Cornell librarians and computer professionals.  This
+will allow us to experiment with patron access to the images that make up
+the digital library.  The viewing station provides search, retrieval, and
+(ultimately) printing functions with enhancements to facilitate
+navigation through multiple documents.
+
+Cornell currently is working to extend access to the digital library to
+readers using workstations from their offices.  This year is devoted to
+the development of a network resident image conversion and delivery
+server, and client software that will support readers who use Apple
+Macintosh computers, IBM windows platforms, and Sun workstations. 
+Equipment for this development was provided by Sun Microsystems with
+support from the Commission on Preservation and Access.
+
+During the show-and-tell session of the Workshop on Electronic Texts, a
+prototype view station will be demonstrated.  In addition, a display of
+original library books that have been digitized will be available for
+review with associated printed copies for comparison.  The fifteen-minute
+overview of the project will include a slide presentation that
+constitutes a "tour" of the preservation digitizing process.
+
+The final network-connected version of the viewing station will provide
+library users with another mechanism for accessing the digital library,
+and will also provide the capability of viewing images directly.  This
+will not require special software, although a powerful computer with good
+graphics will be needed.
+
+The Joint Study in Digital Preservation has generated a great deal of
+interest in the library community.  Unfortunately, or perhaps
+fortunately, this project serves to raise a vast number of other issues
+surrounding the use of digital technology for the preservation and use of
+deteriorating library materials, which subsequent projects will need to
+examine.  Much work remains.
+
+SESSION III
+
+Howard BESSER                      Networking Multimedia Databases
+
+What do we have to consider in building and distributing databases of
+visual materials in a multi-user environment?  This presentation examines
+a variety of concerns that need to be addressed before a multimedia
+database can be set up in a networked environment.
+
+In the past it has not been feasible to implement databases of visual
+materials in shared-user environments because of technological barriers. 
+Each of the two basic models for multi-user multimedia databases has
+posed its own problem.  The analog multimedia storage model (represented
+by Project Athena's parallel analog and digital networks) has required an
+incredibly complex (and expensive) infrastructure.  The economies of
+scale that make multi-user setups cheaper per user served do not operate
+in an environment that requires a computer workstation, videodisc player,
+and two display devices for each user.
+
+The digital multimedia storage model has required vast amounts of storage
+space (as much as one gigabyte per thirty still images).  In the past the
+cost of such a large amount of storage space made this model a
+prohibitive choice as well.  But plunging storage costs are finally
+making this second alternative viable.
+
+If storage no longer poses such an impediment, what do we need to
+consider in building digitally stored multi-user databases of visual
+materials?  This presentation will examine the networking and
+telecommunication constraints that must be overcome before such databases
+can become commonplace and useful to a large number of people.
+
+The key problem is the vast size of multimedia documents, and how this
+affects not only storage but telecommunications transmission time. 
+Anything slower than T-1 speed is impractical for files of 1 megabyte or
+larger (which is likely to be small for a multimedia document).  For
+instance, even on a 56 Kb line it would take three minutes to transfer a
+1-megabyte file.  And these figures assume ideal circumstances, and do
+not take into consideration other users contending for network bandwidth,
+disk access time, or the time needed for remote display.  Current common
+telephone transmission rates would be completely impractical; few users
+would be willing to wait the hour necessary to transmit a single image at
+2400 baud.
+
+This necessitates compression, which itself raises a number of other
+issues.  In order to decrease file sizes significantly, we must employ
+lossy compression algorithms.  But how much quality can we afford to
+lose?  To date there has been only one significant study done of
+image-quality needs for a particular user group, and this study did not
+look at loss resulting from compression.  Only after identifying
+image-quality needs can we begin to address storage and network bandwidth
+needs.
+
+Experience with X-Windows-based applications (such as Imagequery, the
+University of California at Berkeley image database) demonstrates the
+utility of a client-server topology, but also points to the limitation of
+current software for a distributed environment.  For example,
+applications like Imagequery can incorporate compression, but current X
+implementations do not permit decompression at the end user's
+workstation.  Such decompression at the host computer alleviates storage
+capacity problems while doing nothing to address problems of
+telecommunications bandwidth.
+
+We need to examine the effects on network through-put of moving
+multimedia documents around on a network.  We need to examine various
+topologies that will help us avoid bottlenecks around servers and
+gateways.  Experience with applications such as these raise still broader
+questions. How closely is the multimedia document tied to the software
+for viewing it?  Can it be accessed and viewed from other applications? 
+Experience with the MARC format (and more recently with the Z39.50
+protocols) shows how useful it can be to store documents in a form in
+which they can be accessed by a variety of application software.
+
+Finally, from an intellectual-access standpoint, we need to address the
+issue of providing access to these multimedia documents in
+interdisciplinary environments.  We need to examine terminology and
+indexing strategies that will allow us to provide access to this material
+in a cross-disciplinary way.
+
+Ronald LARSEN            Directions in High-Performance Networking for
+                         Libraries
+
+The pace at which computing technology has advanced over the past forty
+years shows no sign of abating.  Roughly speaking, each five-year period
+has yielded an order-of-magnitude improvement in price and performance of
+computing equipment.  No fundamental hurdles are likely to prevent this
+pace from continuing for at least the next decade.  It is only in the
+past five years, though, that computing has become ubiquitous in
+libraries, affecting all staff and patrons, directly or indirectly.
+
+During these same five years, communications rates on the Internet, the
+principal academic computing network, have grown from 56 kbps to 1.5
+Mbps, and the NSFNet backbone is now running 45 Mbps.  Over the next five
+years, communication rates on the backbone are expected to exceed 1 Gbps. 
+Growth in both the population of network users and the volume of network
+traffic  has continued to grow geometrically, at rates approaching 15
+percent per month.  This flood of capacity and use, likened by some to
+"drinking from a firehose,"  creates immense opportunities and challenges
+for libraries.  Libraries must anticipate the future implications of this
+technology, participate in its development, and deploy it to ensure
+access to the world's information resources.
+
+The infrastructure for the information age is being put in place. 
+Libraries face strategic decisions about their role in the development,
+deployment, and use of this infrastructure.  The emerging infrastructure
+is much more than computers and communication lines.  It is more than the
+ability to compute at a remote site, send electronic mail to a peer
+across the country, or move a file from one library to another.  The next
+five years will witness substantial development of the information
+infrastructure of the network.
+
+In order to provide appropriate leadership, library professionals must
+have a fundamental understanding of and appreciation for computer
+networking, from local area networks to the National Research and
+Education Network (NREN).  This presentation addresses these
+fundamentals, and how they relate to libraries today and in the near
+future.
+
+Edwin BROWNRIGG               Electronic Library Visions and Realities
+
+The electronic library has been a vision desired by many--and rejected by
+some--since Vannevar Bush coined the term memex to describe an automated,
+intelligent, personal information system.  Variations on this vision have
+included Ted Nelson's Xanadau, Alan Kay's Dynabook, and Lancaster's
+"paperless library," with the most recent incarnation being the
+"Knowledge Navigator" described by John Scully of Apple.  But the reality
+of library service has been less visionary and the leap to the electronic
+library has eluded universities, publishers, and information technology
+files.
+
+The Memex Research Institute (MemRI), an independent, nonprofit research
+and development organization, has created an Electronic Library Program
+of shared research and development in order to make the collective vision
+more concrete.  The program is working toward the creation of large,
+indexed publicly available electronic image collections of published
+documents in academic, special, and public libraries.  This strategic
+plan is the result of the first stage of the program, which has been an
+investigation of the information technologies available to support such
+an effort, the economic parameters of electronic service compared to
+traditional library operations, and the business and political factors
+affecting the shift from print distribution to electronic networked
+access.
+
+The strategic plan envisions a combination of publicly searchable access
+databases, image (and text) document collections stored on network "file
+servers," local and remote network access, and an intellectual property
+management-control system.  This combination of technology and
+information content is defined in this plan as an E-library or E-library
+collection.  Some participating sponsors are already developing projects
+based on MemRI's recommended directions.
+
+The E-library strategy projected in this plan is a visionary one that can
+enable major changes and improvements in academic, public, and special
+library service.  This vision is, though, one that can be realized with
+today's technology.  At the same time, it will challenge the political
+and social structure within which libraries operate:  in academic
+libraries, the traditional emphasis on local collections, extending to
+accreditation issues; in public libraries, the potential of electronic
+branch and central libraries fully available to the public; and for
+special libraries, new opportunities for shared collections and networks.
+
+The environment in which this strategic plan has been developed is, at
+the moment, dominated by a sense of library limits.  The continued
+expansion and rapid growth of local academic library collections is now
+clearly at an end.  Corporate libraries, and even law libraries, are
+faced with operating within a difficult economic climate, as well as with
+very active competition from commercial information sources.  For
+example, public libraries may be seen as a desirable but not critical
+municipal service in a time when the budgets of safety and health
+agencies are being cut back.
+
+Further, libraries in general have a very high labor-to-cost ratio in
+their budgets, and labor costs are still increasing, notwithstanding
+automation investments.  It is difficult for libraries to obtain capital,
+startup, or seed funding for innovative activities, and those
+technology-intensive initiatives that offer the potential of decreased
+labor costs can provoke the opposition of library staff.
+
+However, libraries have achieved some considerable successes in the past
+two decades by improving both their service and their credibility within
+their organizations--and these positive changes have been accomplished
+mostly with judicious use of information technologies.  The advances in
+computing and information technology have been well-chronicled:  the
+continuing precipitous drop in computing costs, the growth of the
+Internet and private networks, and the explosive increase in publicly
+available information databases.
+
+For example, OCLC has become one of the largest computer network
+organizations in the world by creating a cooperative cataloging network
+of more than 6,000 libraries worldwide.  On-line public access catalogs
+now serve millions of users on more than 50,000 dedicated terminals in
+the United States alone.  The University of California MELVYL on-line
+catalog system has now expanded into an index database reference service
+and supports more than six million searches a year.  And, libraries have
+become the largest group of customers of CD-ROM publishing technology;
+more than 30,000 optical media publications such as those offered by
+InfoTrac and Silver Platter are subscribed to by U.S. libraries.
+
+This march of technology continues and in the next decade will result in
+further innovations that are extremely difficult to predict.  What is
+clear is that libraries can now go beyond automation of their order files
+and catalogs to automation of their collections themselves--and it is
+possible to circumvent the fiscal limitations that appear to obtain
+today.
+
+This Electronic Library Strategic Plan recommends a paradigm shift in
+library service, and demonstrates the steps necessary to provide improved
+library services with limited capacities and operating investments.
+
+SESSION IV-A
+
+Anne KENNEY
+
+The Cornell/Xerox Joint Study in Digital Preservation resulted in the
+recording of 1,000 brittle books as 600-dpi digital images and the
+production, on demand, of high-quality and archivally sound paper
+replacements.  The project, which was supported by the Commission on
+Preservation and Access, also investigated some of the issues surrounding
+scanning, storing, retrieving, and providing access to digital images in
+a network environment.
+
+Anne Kenney will focus on some of the issues surrounding direct scanning
+as identified in the Cornell Xerox Project.  Among those to be discussed
+are:  image versus text capture; indexing and access; image-capture
+capabilities; a comparison to photocopy and microfilm; production and
+cost analysis; storage formats, protocols, and standards; and the use of
+this scanning technology for preservation purposes.
+
+The 600-dpi digital images produced in the Cornell Xerox Project proved
+highly acceptable for creating paper replacements of deteriorating
+originals.  The 1,000 scanned volumes provided an array of image-capture
+challenges that are common to nineteenth-century printing techniques and
+embrittled material, and that defy the use of text-conversion processes. 
+These challenges include diminished contrast between text and background,
+fragile and deteriorated pages, uneven printing, elaborate type faces,
+faint and bold text adjacency, handwritten text and annotations, nonRoman
+languages, and a proliferation of illustrated material embedded in text. 
+The latter category included high-frequency and low-frequency halftones,
+continuous tone photographs, intricate mathematical drawings, maps,
+etchings, reverse-polarity drawings, and engravings.
+
+The Xerox prototype scanning system provided a number of important
+features for capturing this diverse material.  Technicians used multiple
+threshold settings, filters, line art and halftone definitions,
+autosegmentation, windowing, and software-editing programs to optimize
+image capture.  At the same time, this project focused on production. 
+The goal was to make scanning as affordable and acceptable as
+photocopying and microfilming for preservation reformatting.  A
+time-and-cost study conducted during the last three months of this
+project confirmed the economic viability of digital scanning, and these
+findings will be discussed here.
+
+From the outset, the Cornell Xerox Project was predicated on the use of
+nonproprietary standards and the use of common protocols when standards
+did not exist.  Digital files were created as TIFF images which were
+compressed prior to storage using Group 4 CCITT compression.  The Xerox
+software is MS DOS based and utilizes off-the shelf programs such as
+Microsoft Windows and Wang Image Wizard.  The digital library is designed
+to be hardware-independent and to provide interchangeability with other
+institutions through network connections.  Access to the digital files
+themselves is two-tiered:  Bibliographic records for the computer files
+are created in RLIN and Cornell's local system and access into the actual
+digital images comprising a book is provided through a document control
+structure and a networked image file-server, both of which will be
+described.
+
+The presentation will conclude with a discussion of some of the issues
+surrounding the use of this technology as a preservation tool (storage,
+refreshing, backup).
+
+Pamela ANDRE and Judith ZIDAR
+
+The National Agricultural Library (NAL) has had extensive experience with
+raster scanning of printed materials.  Since 1987, the Library has
+participated in the National Agricultural Text Digitizing Project (NATDP)
+a cooperative effort between NAL and forty-five land grant university
+libraries.  An overview of the project will be presented, giving its
+history and NAL's strategy for the future.
+
+An in-depth discussion of NATDP will follow, including a description of
+the scanning process, from the gathering of the printed materials to the
+archiving of the electronic pages.  The type of equipment required for a
+stand-alone scanning workstation and the importance of file management
+software will be discussed.  Issues concerning the images themselves will
+be addressed briefly, such as image format; black and white versus color;
+gray scale versus dithering; and resolution.
+
+Also described will be a study currently in progress by NAL to evaluate
+the usefulness of converting microfilm to electronic images in order to
+improve access.  With the cooperation of Tuskegee University, NAL has
+selected three reels of microfilm from a collection of sixty-seven reels
+containing the papers, letters, and drawings of George Washington Carver. 
+The three reels were converted into 3,500 electronic images using a
+specialized microfilm scanner.  The selection, filming, and indexing of
+this material will be discussed.
+
+Donald WATERS
+
+Project Open Book, the Yale University Library's effort to convert 10,
+000 books from microfilm to digital imagery, is currently in an advanced
+state of planning and organization.  The Yale Library has selected a
+major vendor to serve as a partner in the project and as systems
+integrator.  In its proposal, the successful vendor helped isolate areas
+of risk and uncertainty as well as key issues to be addressed during the
+life of the project.  The Yale Library is now poised to decide what
+material it will convert to digital image form and to seek funding,
+initially for the first phase and then for the entire project.
+
+The proposal that Yale accepted for the implementation of Project Open
+Book will provide at the end of three phases a conversion subsystem,
+browsing stations distributed on the campus network within the Yale
+Library, a subsystem for storing 10,000 books at 200 and 600 dots per
+inch, and network access to the image printers.  Pricing for the system
+implementation assumes the existence of Yale's campus ethernet network
+and its high-speed image printers, and includes other requisite hardware
+and software, as well as system integration services.  Proposed operating
+costs include hardware and software maintenance, but do not include
+estimates for the facilities management of the storage devices and image
+servers.
+
+Yale selected its vendor partner in a formal process, partly funded by
+the Commission for Preservation and Access.  Following a request for
+proposal, the Yale Library selected two vendors as finalists to work with
+Yale staff to generate a detailed analysis of requirements for Project
+Open Book.  Each vendor used the results of the requirements analysis to
+generate and submit a formal proposal for the entire project.  This
+competitive process not only enabled the Yale Library to select its
+primary vendor partner but also revealed much about the state of the
+imaging industry, about the varying, corporate commitments to the markets
+for imaging technology, and about the varying organizational dynamics
+through which major companies are responding to and seeking to develop
+these markets.
+
+Project Open Book is focused specifically on the conversion of images
+from microfilm to digital form.  The technology for scanning microfilm is
+readily available but is changing rapidly.  In its project requirements,
+the Yale Library emphasized features of the technology that affect the
+technical quality of digital image production and the costs of creating
+and storing the image library:  What levels of digital resolution can be
+achieved by scanning microfilm?  How does variation in the quality of
+microfilm, particularly in film produced to preservation standards,
+affect the quality of the digital images?  What technologies can an
+operator effectively and economically apply when scanning film to
+separate two-up images and to control for and correct image
+imperfections?  How can quality control best be integrated into
+digitizing work flow that includes document indexing and storage?
+
+The actual and expected uses of digital images--storage, browsing,
+printing, and OCR--help determine the standards for measuring their
+quality.  Browsing is especially important, but the facilities available
+for readers to browse image documents is perhaps the weakest aspect of
+imaging technology and most in need of development.  As it defined its
+requirements, the Yale Library concentrated on some fundamental aspects
+of usability for image documents:  Does the system have sufficient
+flexibility to handle the full range of document types, including
+monographs, multi-part and multivolume sets, and serials, as well as
+manuscript collections?  What conventions are necessary to identify a
+document uniquely for storage and retrieval?  Where is the database of
+record for storing bibliographic information about the image document? 
+How are basic internal structures of documents, such as pagination, made
+accessible to the reader?  How are the image documents physically
+presented on the screen to the reader?
+
+The Yale Library designed Project Open Book on the assumption that
+microfilm is more than adequate as a medium for preserving the content of
+deteriorated library materials.  As planning in the project has advanced,
+it is increasingly clear that the challenge of digital image technology
+and the key to the success of efforts like Project Open Book is to
+provide a means of both preserving and improving access to those
+deteriorated materials.
+
+SESSION IV-B
+
+George THOMA
+
+In the use of electronic imaging for document preservation, there are
+several issues to consider, such as:  ensuring adequate image quality,
+maintaining substantial conversion rates (through-put), providing unique
+identification for automated access and retrieval, and accommodating
+bound volumes and fragile material.
+
+To maintain high image quality, image processing functions are required
+to correct the deficiencies in the scanned image.  Some commercially
+available systems include these functions, while some do not.  The
+scanned raw image must be processed to correct contrast deficiencies--
+both poor overall contrast resulting from light print and/or dark
+background, and variable contrast resulting from stains and
+bleed-through.  Furthermore, the scan density must be adequate to allow
+legibility of print and sufficient fidelity in the pseudo-halftoned gray
+material.  Borders or page-edge effects must be removed for both
+compactibility and aesthetics.  Page skew must be corrected for aesthetic
+reasons and to enable accurate character recognition if desired. 
+Compound images consisting of both two-toned text and gray-scale
+illustrations must be processed appropriately to retain the quality of
+each.
+
+SESSION IV-C
+
+Jean BARONAS
+
+Standards publications being developed by scientists, engineers, and
+business managers in Association for Information and Image Management
+(AIIM) standards committees can be applied to electronic image management
+(EIM) processes including:  document (image) transfer, retrieval and
+evaluation; optical disk and document scanning; and document design and
+conversion.  When combined with EIM system planning and operations,
+standards can assist in generating image databases that are
+interchangeable among a variety of systems.  The applications of
+different approaches for image-tagging, indexing, compression, and
+transfer often cause uncertainty concerning EIM system compatibility,
+calibration, performance, and upward compatibility, until standard
+implementation parameters are established.  The AIIM standards that are
+being developed for these applications can be used to decrease the
+uncertainty, successfully integrate imaging processes, and promote "open
+systems."  AIIM is an accredited American National Standards Institute
+(ANSI) standards developer with more than twenty committees comprised of
+300 volunteers representing users, vendors, and manufacturers.  The
+standards publications that are developed in these committees have
+national acceptance and provide the basis for international harmonization
+in the development of new International Organization for Standardization
+(ISO) standards.
+
+This presentation describes the development of AIIM's EIM standards and a
+new effort at AIIM, a database on standards projects in a wide framework
+of imaging industries including capture, recording, processing,
+duplication, distribution, display, evaluation, and preservation.  The
+AIIM Imagery Database will cover imaging standards being developed by
+many organizations in many different countries.  It will contain
+standards publications' dates, origins, related national and
+international projects, status, key words, and abstracts.  The ANSI Image
+Technology Standards Board requested that such a database be established,
+as did the ISO/International Electrotechnical Commission Joint Task Force
+on Imagery.  AIIM will take on the leadership role for the database and
+coordinate its development with several standards developers.
+
+Patricia BATTIN
+
+     Characteristics of standards for digital imagery:
+
+          * Nature of digital technology implies continuing volatility.
+
+          * Precipitous standard-setting not possible and probably not
+          desirable.
+
+          * Standards are a complex issue involving the medium, the
+          hardware, the software, and the technical capacity for
+          reproductive fidelity and clarity.
+
+          * The prognosis for reliable archival standards (as defined by
+          librarians) in the foreseeable future is poor.
+
+     Significant potential and attractiveness of digital technology as a
+     preservation medium and access mechanism.
+
+     Productive use of digital imagery for preservation requires a
+     reconceptualizing of preservation principles in a volatile,
+     standardless world.
+
+     Concept of managing continuing access in the digital environment
+     rather than focusing on the permanence of the medium and long-term
+     archival standards developed for the analog world.
+
+     Transition period:  How long and what to do?
+
+          *  Redefine "archival."
+
+          *  Remove the burden of "archival copy" from paper artifacts.
+
+          *  Use digital technology for storage, develop management
+          strategies for refreshing medium, hardware and software.
+
+          *  Create acid-free paper copies for transition period backup
+          until we develop reliable procedures for ensuring continuing
+          access to digital files.
+
+SESSION IV-D
+
+Stuart WEIBEL            The Role of SGML Markup in the CORE Project (6)
+
+The emergence of high-speed telecommunications networks as a basic
+feature of the scholarly workplace is driving the demand for electronic
+document delivery.  Three distinct categories of electronic
+publishing/republishing are necessary to support access demands in this
+emerging environment:
+
+     1.)  Conversion of paper or microfilm archives to electronic format
+     2.)  Conversion of electronic files to formats tailored to
+          electronic retrieval and display
+     3.)  Primary electronic publishing (materials for which the
+          electronic version is the primary format)
+
+OCLC has experimental or product development activities in each of these
+areas.  Among the challenges that lie ahead is the integration of these
+three types of information stores in coherent distributed systems.
+
+The CORE (Chemistry Online Retrieval Experiment) Project is a model for
+the conversion of large text and graphics collections for which
+electronic typesetting files are available (category 2).  The American
+Chemical Society has made available computer typography files dating from
+1980 for its twenty journals.  This collection of some 250 journal-years
+is being converted to an electronic format that will be accessible
+through several end-user applications.
+
+The use of Standard Generalized Markup Language (SGML) offers the means
+to capture the structural richness of the original articles in a way that
+will support a variety of retrieval, navigation, and display options
+necessary to navigate effectively in very large text databases.
+
+An SGML document consists of text that is marked up with descriptive tags
+that specify the function of a given element within the document.  As a
+formal language construct, an SGML document can be parsed against a
+document-type definition (DTD) that unambiguously defines what elements
+are allowed and where in the document they can (or must) occur.  This
+formalized map of article structure allows the user interface design to
+be uncoupled from the underlying database system, an important step
+toward interoperability.  Demonstration of this separability is a part of
+the CORE project, wherein user interface designs born of very different
+philosophies will access the same database.
+
+NOTES:
+     (6)  The CORE project is a collaboration among Cornell University's
+     Mann Library, Bell Communications Research (Bellcore), the American
+     Chemical Society (ACS), the Chemical Abstracts Service (CAS), and
+     OCLC.
+
+Michael LESK                  The CORE Electronic Chemistry Library
+
+A major on-line file of chemical journal literature complete with
+graphics is being developed to test the usability of fully electronic
+access to documents, as a joint project of Cornell University, the
+American Chemical Society, the Chemical Abstracts Service, OCLC, and
+Bellcore (with additional support from Sun Microsystems, Springer-Verlag,
+DigitaI Equipment Corporation, Sony Corporation of America, and Apple
+Computers).  Our file contains the American Chemical Society's on-line
+journals, supplemented with the graphics from the paper publication.  The
+indexing of the articles from Chemical Abstracts Documents is available
+in both image and text format, and several different interfaces can be
+used.  Our goals are (1) to assess the effectiveness and acceptability of
+electronic access to primary journals as compared with paper, and (2) to
+identify the most desirable functions of the user interface to an
+electronic system of journals, including in particular a comparison of
+page-image display with ASCII display interfaces.  Early experiments with
+chemistry students on a variety of tasks suggest that searching tasks are
+completed much faster with any electronic system than with paper, but
+that for reading all versions of the articles are roughly equivalent.
+
+Pamela ANDRE and Judith ZIDAR
+
+Text conversion is far more expensive and time-consuming than image
+capture alone.  NAL's experience with optical character recognition (OCR)
+will be related and compared with the experience of having text rekeyed. 
+What factors affect OCR accuracy?  How accurate does full text have to be
+in order to be useful?  How do different users react to imperfect text? 
+These are questions that will be explored.  For many, a service bureau
+may be a better solution than performing the work inhouse; this will also
+be discussed.
+
+SESSION VI
+
+Marybeth PETERS
+
+Copyright law protects creative works.  Protection granted by the law to
+authors and disseminators of works includes the right to do or authorize
+the following:  reproduce the work, prepare derivative works, distribute
+the work to the public, and publicly perform or display the work.  In
+addition, copyright owners of sound recordings and computer programs have
+the right to control rental of their works.  These rights are not
+unlimited; there are a number of exceptions and limitations.
+
+An electronic environment places strains on the copyright system. 
+Copyright owners want to control uses of their work and be paid for any
+use; the public wants quick and easy access at little or no cost.  The
+marketplace is working in this area.  Contracts, guidelines on electronic
+use, and collective licensing are in use and being refined.
+
+Issues concerning the ability to change works without detection are more
+difficult to deal with.  Questions concerning the integrity of the work
+and the status of the changed version under the copyright law are to be
+addressed.  These are public policy issues which require informed
+dialogue.
+
+
+               ***   ***   ***   ******   ***   ***   ***
+
+
+                Appendix III:  DIRECTORY OF PARTICIPANTS
+                         
+
+PRESENTERS:
+
+     Pamela Q.J. Andre
+     Associate Director, Automation
+     National Agricultural Library
+     10301 Baltimore Boulevard
+     Beltsville, MD 20705-2351
+     Phone:  (301) 504-6813
+     Fax:  (301) 504-7473
+     E-mail:  INTERNET:  PANDRE@ASRR.ARSUSDA.GOV
+
+     Jean Baronas, Senior Manager
+     Department of Standards and Technology
+     Association for Information and Image Management (AIIM)
+     1100 Wayne Avenue, Suite 1100
+     Silver Spring, MD 20910
+     Phone:  (301) 587-8202
+     Fax:  (301) 587-2711
+     
+     Patricia Battin, President
+     The Commission on Preservation and Access
+     1400 16th Street, N.W.
+     Suite 740
+     Washington, DC 20036-2217
+     Phone:  (202) 939-3400
+     Fax:  (202) 939-3407
+     E-mail:  CPA@GWUVM.BITNET
+
+     Howard Besser
+     Centre Canadien d'Architecture
+     (Canadian Center for Architecture)
+     1920, rue Baile
+     Montreal, Quebec H3H 2S6
+     CANADA
+     Phone:  (514) 939-7001
+     Fax:  (514) 939-7020
+     E-mail:  howard@lis.pitt.edu
+
+     Edwin B. Brownrigg, Executive Director
+     Memex Research Institute
+     422 Bonita Avenue
+     Roseville, CA 95678
+     Phone:  (916) 784-2298
+     Fax:  (916) 786-7559
+     E-mail:  BITNET:  MEMEX@CALSTATE.2
+
+     Eric M. Calaluca, Vice President
+     Chadwyck-Healey, Inc.
+     1101 King Street
+     Alexandria, VA 223l4
+     Phone:  (800) 752-05l5
+     Fax:  (703) 683-7589
+
+     James Daly
+     4015 Deepwood Road
+     Baltimore, MD 21218-1404
+     Phone:  (410) 235-0763
+
+     Ricky Erway, Associate Coordinator
+     American Memory
+     Library of Congress
+     Phone:  (202) 707-6233
+     Fax:  (202) 707-3764
+
+     Carl Fleischhauer, Coordinator
+     American Memory
+     Library of Congress
+     Phone:  (202) 707-6233
+     Fax:  (202) 707-3764
+
+     Joanne Freeman
+     2000 Jefferson Park Avenue, No. 7
+     Charlottesville, VA  22903
+     
+     Prosser Gifford
+     Director for Scholarly Programs
+     Library of Congress
+     Phone:  (202) 707-1517
+     Fax:  (202) 707-9898
+     E-mail:  pgif@seq1.loc.gov
+
+     Jacqueline Hess, Director
+     National Demonstration Laboratory
+       for Interactive Information Technologies
+     Library of Congress
+     Phone:  (202) 707-4157
+     Fax:  (202) 707-2829
+     
+     Susan Hockey, Director
+     Center for Electronic Texts in the Humanities (CETH)
+     Alexander Library
+     Rutgers University
+     169 College Avenue
+     New Brunswick, NJ 08903
+     Phone:  (908) 932-1384
+     Fax:  (908) 932-1386
+     E-mail:  hockey@zodiac.rutgers.edu
+
+     William L. Hooton, Vice President
+     Business & Technical Development
+       Imaging & Information Systems Group
+     I-NET
+     6430 Rockledge Drive, Suite 400
+     Bethesda, MD 208l7
+     Phone:  (301) 564-6750
+     Fax:  (513) 564-6867
+
+     Anne R. Kenney, Associate Director
+     Department of Preservation and Conservation
+     701 Olin Library
+     Cornell University
+     Ithaca, NY 14853
+     Phone:  (607) 255-6875
+     Fax:  (607) 255-9346
+     E-mail:  LYDY@CORNELLA.BITNET
+
+     Ronald L. Larsen
+     Associate Director for Information Technology
+     University of Maryland at College Park
+     Room B0224, McKeldin Library
+     College Park, MD 20742-7011
+     Phone:  (301) 405-9194
+     Fax:  (301) 314-9865
+     E-mail:  rlarsen@libr.umd.edu
+
+     Maria L. Lebron, Managing Editor
+     The Online Journal of Current Clinical Trials
+     l333 H Street, N.W.
+     Washington, DC 20005
+     Phone:  (202) 326-6735
+     Fax:  (202) 842-2868
+     E-mail:  PUBSAAAS@GWUVM.BITNET
+
+     Michael Lesk, Executive Director
+     Computer Science Research
+     Bell Communications Research, Inc.
+     Rm 2A-385
+     445 South Street
+     Morristown, NJ 07960-l9l0     
+     Phone:  (201) 829-4070
+     Fax:  (201) 829-5981
+     E-mail:  lesk@bellcore.com (Internet) or bellcore!lesk (uucp)
+
+     Clifford A. Lynch
+     Director, Library Automation
+     University of California,
+        Office of the President
+     300 Lakeside Drive, 8th Floor
+     Oakland, CA 94612-3350
+     Phone:  (510) 987-0522
+     Fax:  (510) 839-3573
+     E-mail:  calur@uccmvsa
+
+     Avra Michelson
+     National Archives and Records Administration
+     NSZ Rm. 14N
+     7th & Pennsylvania, N.W.
+     Washington, D.C. 20408
+     Phone:  (202) 501-5544
+     Fax:  (202) 501-5533
+     E-mail:  tmi@cu.nih.gov
+     
+     Elli Mylonas, Managing Editor
+     Perseus Project
+     Department of the Classics
+     Harvard University
+     319 Boylston Hall
+     Cambridge, MA 02138
+     Phone:  (617) 495-9025, (617) 495-0456 (direct)
+     Fax:  (617) 496-8886
+     E-mail:  Elli@IKAROS.Harvard.EDU or elli@wjh12.harvard.edu
+
+     David Woodley Packard
+     Packard Humanities Institute
+     300 Second Street, Suite 201
+     Los Altos, CA 94002
+     Phone:  (415) 948-0150 (PHI)
+     Fax:  (415) 948-5793
+
+     Lynne K. Personius, Assistant Director
+     Cornell Information Technologies for
+      Scholarly Information Sources
+     502 Olin Library
+     Cornell University
+     Ithaca, NY 14853
+     Phone:  (607) 255-3393
+     Fax:  (607) 255-9346
+     E-mail:  JRN@CORNELLC.BITNET
+
+     Marybeth Peters
+     Policy Planning Adviser to the
+       Register of Copyrights
+     Library of Congress
+     Office LM 403
+     Phone:  (202) 707-8350
+     Fax:  (202) 707-8366
+
+     C. Michael Sperberg-McQueen
+     Editor, Text Encoding Initiative
+     Computer Center (M/C 135)
+     University of Illinois at Chicago
+     Box 6998
+     Chicago, IL 60680
+     Phone:  (312) 413-0317
+     Fax:  (312) 996-6834
+     E-mail:  u35395@uicvm..cc.uic.edu or u35395@uicvm.bitnet
+
+     George R. Thoma, Chief
+     Communications Engineering Branch
+     National Library of Medicine
+     8600 Rockville Pike
+     Bethesda, MD 20894
+     Phone:  (301) 496-4496
+     Fax:  (301) 402-0341
+     E-mail:  thoma@lhc.nlm.nih.gov
+
+     Dorothy Twohig, Editor
+     The Papers of George Washington
+     504 Alderman Library
+     University of Virginia
+     Charlottesville, VA 22903-2498
+     Phone:  (804) 924-0523
+     Fax:  (804) 924-4337
+
+     Susan H. Veccia, Team leader
+     American Memory, User Evaluation
+     Library of Congress
+     American Memory Evaluation Project
+     Phone:  (202) 707-9104
+     Fax:  (202) 707-3764
+     E-mail:  svec@seq1.loc.gov
+
+     Donald J. Waters, Head
+     Systems Office
+     Yale University Library
+     New Haven, CT 06520
+     Phone:  (203) 432-4889
+     Fax:  (203) 432-7231
+     E-mail:  DWATERS@YALEVM.BITNET or DWATERS@YALEVM.YCC.YALE.EDU
+
+     Stuart Weibel, Senior Research Scientist
+     OCLC
+     6565 Frantz Road
+     Dublin, OH 43017
+     Phone:  (614) 764-608l
+     Fax:  (614) 764-2344
+     E-mail:  INTERNET:  Stu@rsch.oclc.org
+
+     Robert G. Zich
+     Special Assistant to the Associate Librarian
+       for Special Projects
+     Library of Congress
+     Phone:  (202) 707-6233
+     Fax:  (202) 707-3764
+     E-mail:  rzic@seq1.loc.gov
+
+     Judith A. Zidar, Coordinator
+     National Agricultural Text Digitizing Program
+     Information Systems Division
+     National Agricultural Library
+     10301 Baltimore Boulevard
+     Beltsville, MD 20705-2351
+     Phone:  (301) 504-6813 or 504-5853
+     Fax:  (301) 504-7473
+     E-mail:  INTERNET:  JZIDAR@ASRR.ARSUSDA.GOV
+
+
+OBSERVERS:
+
+     Helen Aguera, Program Officer
+     Division of Research
+     Room 318
+     National Endowment for the Humanities
+     1100 Pennsylvania Avenue, N.W.
+     Washington, D.C. 20506
+     Phone:  (202) 786-0358
+     Fax:  (202) 786-0243
+
+     M. Ellyn Blanton, Deputy Director
+     National Demonstration Laboratory
+       for Interactive Information Technologies
+     Library of Congress
+     Phone:  (202) 707-4157
+     Fax:  (202) 707-2829
+
+     Charles M. Dollar
+     National Archives and Records Administration
+     NSZ Rm. 14N
+     7th & Pennsylvania, N.W.
+     Washington, DC 20408
+     Phone:  (202) 501-5532
+     Fax:  (202) 501-5512
+
+     Jeffrey Field, Deputy to the Director
+     Division of Preservation and Access
+     Room 802
+     National Endowment for the Humanities
+     1100 Pennsylvania Avenue, N.W.
+     Washington, DC 20506
+     Phone:  (202) 786-0570
+     Fax:  (202) 786-0243
+
+     Lorrin Garson
+     American Chemical Society
+     Research and Development Department
+     1155 16th Street, N.W.
+     Washington, D.C. 20036
+     Phone:  (202) 872-4541
+     Fax:  E-mail:  INTERNET:  LRG96@ACS.ORG
+
+     William M. Holmes, Jr.
+     National Archives and Records Administration
+     NSZ Rm. 14N
+     7th & Pennsylvania, N.W.
+     Washington, DC 20408
+     Phone:  (202) 501-5540
+     Fax:  (202) 501-5512
+     E-mail:  WHOLMES@AMERICAN.EDU
+
+     Sperling Martin
+     Information Resource Management
+     20030 Doolittle Street
+     Gaithersburg, MD 20879
+     Phone:  (301) 924-1803
+
+     Michael Neuman, Director
+     The Center for Text and Technology
+     Academic Computing Center
+     238 Reiss Science Building
+     Georgetown University
+     Washington, DC 20057
+     Phone:  (202) 687-6096
+     Fax:  (202) 687-6003
+     E-mail:  neuman@guvax.bitnet, neuman@guvax.georgetown.edu
+
+     Barbara Paulson, Program Officer
+     Division of Preservation and Access
+     Room 802
+     National Endowment for the Humanities
+     1100 Pennsylvania Avenue, N.W.
+     Washington, DC 20506
+     Phone:  (202) 786-0577
+     Fax:  (202) 786-0243
+     
+     Allen H. Renear
+     Senior Academic Planning Analyst
+     Brown University Computing and Information Services
+     115 Waterman Street
+     Campus Box 1885
+     Providence, R.I. 02912
+     Phone:  (401) 863-7312
+     Fax:  (401) 863-7329
+     E-mail:  BITNET:  Allen@BROWNVM or           
+     INTERNET:  Allen@brownvm.brown.edu
+
+     Susan M. Severtson, President
+     Chadwyck-Healey, Inc.
+     1101 King Street
+     Alexandria, VA 223l4
+     Phone:  (800) 752-05l5
+     Fax:  (703) 683-7589     
+
+     Frank Withrow
+     U.S. Department of Education
+     555 New Jersey Avenue, N.W.
+     Washington, DC 20208-5644
+     Phone:  (202) 219-2200
+     Fax:  (202) 219-2106
+
+
+(LC STAFF)
+     
+     Linda L. Arret
+     Machine-Readable Collections Reading Room LJ 132
+     (202) 707-1490
+
+     John D. Byrum, Jr.
+     Descriptive Cataloging Division LM 540
+     (202) 707-5194
+
+     Mary Jane Cavallo
+     Science and Technology Division LA 5210
+     (202) 707-1219
+
+     Susan Thea David
+     Congressional Research Service LM 226
+     (202) 707-7169
+
+     Robert Dierker
+     Senior Adviser for Multimedia Activities LM 608
+     (202) 707-6151
+
+     William W. Ellis
+     Associate Librarian for Science and Technology LM 611
+     (202) 707-6928
+
+     Ronald Gephart
+     Manuscript Division LM 102
+     (202) 707-5097
+
+     James Graber
+     Information Technology Services LM G51
+     (202) 707-9628
+
+     Rich Greenfield
+     American Memory LM 603
+     (202) 707-6233
+
+     Rebecca Guenther
+     Network Development LM 639
+     (202) 707-5092
+
+     Kenneth E. Harris
+     Preservation LM G21
+     (202) 707-5213
+
+     Staley Hitchcock
+     Manuscript Division LM 102
+     (202) 707-5383
+
+     Bohdan Kantor
+     Office of Special Projects LM 612
+     (202) 707-0180
+
+     John W. Kimball, Jr
+     Machine-Readable Collections Reading Room LJ 132
+     (202) 707-6560
+
+     Basil Manns
+     Information Technology Services LM G51
+     (202) 707-8345
+
+     Sally Hart McCallum
+     Network Development LM 639
+     (202) 707-6237
+
+     Dana J. Pratt
+     Publishing Office LM 602
+     (202) 707-6027
+
+     Jane Riefenhauser
+     American Memory LM 603
+     (202) 707-6233
+
+     William Z. Schenck
+     Collections Development LM 650
+     (202) 707-7706
+
+     Chandru J. Shahani
+     Preservation Research and Testing Office (R&T) LM G38
+     (202) 707-5607
+
+     William J. Sittig
+     Collections Development LM 650
+     (202) 707-7050
+
+     Paul Smith
+     Manuscript Division LM 102
+     (202) 707-5097
+
+     James L. Stevens
+     Information Technology Services LM G51
+     (202) 707-9688
+
+     Karen Stuart
+     Manuscript Division LM 130
+     (202) 707-5389
+
+     Tamara Swora
+     Preservation Microfilming Office LM G05
+     (202) 707-6293
+
+     Sarah Thomas
+     Collections Cataloging LM 642
+     (202) 707-5333
+
+
+                                   END
+      *************************************************************
+
+Note:  This file has been edited for use on computer networks.  This
+editing required the removal of diacritics, underlining, and fonts such
+as italics and bold.  
+
+kde 11/92
+
+[A few of the italics (when used for emphasis) were replaced by CAPS mh]
+
+*End of The Project Gutenberg Etext of LOC WORKSHOP ON ELECTRONIC ETEXTS
+
diff --git a/test/data/paper-100k.pdf b/test/data/paper-100k.pdf
new file mode 100644 (file)
index 0000000..b3325e4
--- /dev/null
@@ -0,0 +1,598 @@
+     </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=10 M=100 Y=50 K=0</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>10.000002</xmpG:cyan>
+                           <xmpG:magenta>100.000000</xmpG:magenta>
+                           <xmpG:yellow>50.000000</xmpG:yellow>
+                           <xmpG:black>0.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=95 Y=20 K=0</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>94.999999</xmpG:magenta>
+                           <xmpG:yellow>19.999999</xmpG:yellow>
+                           <xmpG:black>0.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=25 M=25 Y=40 K=0</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>25.000000</xmpG:cyan>
+                           <xmpG:magenta>25.000000</xmpG:magenta>
+                           <xmpG:yellow>39.999998</xmpG:yellow>
+                           <xmpG:black>0.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=40 M=45 Y=50 K=5</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>39.999998</xmpG:cyan>
+                           <xmpG:magenta>44.999999</xmpG:magenta>
+                           <xmpG:yellow>50.000000</xmpG:yellow>
+                           <xmpG:black>5.000001</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=50 M=50 Y=60 K=25</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>50.000000</xmpG:cyan>
+                           <xmpG:magenta>50.000000</xmpG:magenta>
+                           <xmpG:yellow>60.000002</xmpG:yellow>
+                           <xmpG:black>25.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=55 M=60 Y=65 K=40</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>55.000001</xmpG:cyan>
+                           <xmpG:magenta>60.000002</xmpG:magenta>
+                           <xmpG:yellow>64.999998</xmpG:yellow>
+                           <xmpG:black>39.999998</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=25 M=40 Y=65 K=0</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>25.000000</xmpG:cyan>
+                           <xmpG:magenta>39.999998</xmpG:magenta>
+                           <xmpG:yellow>64.999998</xmpG:yellow>
+                           <xmpG:black>0.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=30 M=50 Y=75 K=10</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>30.000001</xmpG:cyan>
+                           <xmpG:magenta>50.000000</xmpG:magenta>
+                           <xmpG:yellow>75.000000</xmpG:yellow>
+                           <xmpG:black>10.000002</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=35 M=60 Y=80 K=25</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>35.000002</xmpG:cyan>
+                           <xmpG:magenta>60.000002</xmpG:magenta>
+                           <xmpG:yellow>80.000001</xmpG:yellow>
+                           <xmpG:black>25.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=40 M=65 Y=90 K=35</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>39.999998</xmpG:cyan>
+                           <xmpG:magenta>64.999998</xmpG:magenta>
+                           <xmpG:yellow>90.000004</xmpG:yellow>
+                           <xmpG:black>35.000002</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=40 M=70 Y=100 K=50</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>39.999998</xmpG:cyan>
+                           <xmpG:magenta>69.999999</xmpG:magenta>
+                           <xmpG:yellow>100.000000</xmpG:yellow>
+                           <xmpG:black>50.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=50 M=70 Y=80 K=70</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>50.000000</xmpG:cyan>
+                           <xmpG:magenta>69.999999</xmpG:magenta>
+                           <xmpG:yellow>80.000001</xmpG:yellow>
+                           <xmpG:black>69.999999</xmpG:black>
+                        </rdf:li>
+                     </rdf:Seq>
+                  </xmpG:Colorants>
+               </rdf:li>
+               <rdf:li rdf:parseType="Resource">
+                  <xmpG:groupName>Grays</xmpG:groupName>
+                  <xmpG:groupType>1</xmpG:groupType>
+                  <xmpG:Colorants>
+                     <rdf:Seq>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=0 Y=0 K=100</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>0.000000</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>100.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=0 Y=0 K=90</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>0.000000</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>89.999402</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=0 Y=0 K=80</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>0.000000</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>79.998797</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=0 Y=0 K=70</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>0.000000</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>69.999701</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=0 Y=0 K=60</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>0.000000</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>59.999102</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=0 Y=0 K=50</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>0.000000</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>50.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=0 Y=0 K=40</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>0.000000</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>39.999402</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=0 Y=0 K=30</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>0.000000</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>29.998803</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=0 Y=0 K=20</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>0.000000</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>19.999701</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=0 Y=0 K=10</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>0.000000</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>9.999102</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=0 Y=0 K=5</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>0.000000</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>4.998803</xmpG:black>
+                        </rdf:li>
+                     </rdf:Seq>
+                  </xmpG:Colorants>
+               </rdf:li>
+               <rdf:li rdf:parseType="Resource">
+                  <xmpG:groupName>Brights</xmpG:groupName>
+                  <xmpG:groupType>1</xmpG:groupType>
+                  <xmpG:Colorants>
+                     <rdf:Seq>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=100 Y=100 K=0</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>100.000000</xmpG:magenta>
+                           <xmpG:yellow>100.000000</xmpG:yellow>
+                           <xmpG:black>0.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=75 Y=100 K=0</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>75.000000</xmpG:magenta>
+                           <xmpG:yellow>100.000000</xmpG:yellow>
+                           <xmpG:black>0.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=0 M=10 Y=95 K=0</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>0.000000</xmpG:cyan>
+                           <xmpG:magenta>10.000002</xmpG:magenta>
+                           <xmpG:yellow>94.999999</xmpG:yellow>
+                           <xmpG:black>0.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=85 M=10 Y=100 K=0</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>84.999996</xmpG:cyan>
+                           <xmpG:magenta>10.000002</xmpG:magenta>
+                           <xmpG:yellow>100.000000</xmpG:yellow>
+                           <xmpG:black>0.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=100 M=90 Y=0 K=0</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>100.000000</xmpG:cyan>
+                           <xmpG:magenta>90.000004</xmpG:magenta>
+                           <xmpG:yellow>0.000000</xmpG:yellow>
+                           <xmpG:black>0.000000</xmpG:black>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xmpG:swatchName>C=60 M=90 Y=0 K=0</xmpG:swatchName>
+                           <xmpG:mode>CMYK</xmpG:mode>
+                           <xmpG:type>PROCESS</xmpG:type>
+                           <xmpG:cyan>60.000002</xmpG:cyan>
+                           <xmpG:magenta>90.000004</xmpG:magenta>
+                           <xmpG:yellow>0.003099</xmpG:yellow>
+                           <xmpG:black>0.003099</xmpG:black>
+                        </rdf:li>
+                     </rdf:Seq>
+                  </xmpG:Colorants>
+               </rdf:li>
+            </rdf:Seq>
+         </xmpTPg:SwatchGroups>
+      </rdf:Description>
+      <rdf:Description rdf:about=""
+            xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
+         <pdf:Producer>Adobe PDF library 9.00</pdf:Producer>
+      </rdf:Description>
+   </rdf:RDF>
+</x:xmpmeta>
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                           
+<?xpacket end="w"?>\r\r
+endstream\rendobj\r145 0 obj<</Metadata 144 0 R>>\rendobj\r1 0 obj<</Contents 3 0 R/Type/Page/Parent 102 0 R/Rotate 0/MediaBox[0 0 612.28302 790.866028]/CropBox[0 0 612.28302 790.866028]/Resources 2 0 R>>\rendobj\r2 0 obj<</ColorSpace<</Cs8 117 0 R>>/Font<</F2 122 0 R/F3 121 0 R/F6 118 0 R/F7 125 0 R/F8 56 0 R/F9 70 0 R/F10 71 0 R/F11 61 0 R/F12 65 0 R/F13 72 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS1 113 0 R>>>>\rendobj\r3 0 obj<</Length 8934/Filter/FlateDecode>>stream\r
+hÞ\94[MsÜF\92½ëWð\bn\90m\0U(\0s\99\90e{¥ÝñØkjw\ e²\ e`7ÈÆ¨\eh\ 3\9cÝ_±\87ù½\9bïe\15\80&\9brl(BÑÄG¡ª2óåË\8fúæ_o\92\8bûáÍ·\1fß|ó\83»H.>Þ½)V¥sæ"\96\7fþ§ËWq\92\X\17¯âØ¥\17\1f÷obÞïïåÇÇ5þ{|ó)ú¥^×íxy\9dºl\95D\8f]ÿE~gÅ*\8dvMû¥Þè_YôþÇA\7fÚ¨jqÕÙèÝ·?ób¾*¢]ýPïøW¹rÑØñ\89U\19Ý×m\1d\9e©\7f?ôõ04]\8b»±\¹}ºüüñßÞ\¯Ê²¼¸NVIîd=ßɼöuÕÊp6wòñîN~¹re¢ß\8eU;6c56\ f\96\ 1\7f\ ec³®v¸\84uì»\rg\83¿\8aèS\9aü3Í>_áïD\1604í½¬î\1e\7fçQw\1cñ#\8d*Îåã¿È×\87\93ÁL\81%´ÇýmÝË_9f\80¹\98ÜÊ0Ü\12\93\17²^YצY\8f\1cÓ\14N¾9nëpsìe)ë¾9\8c²ò\8aÃ&ò\84\80O\9b"\96Ý~lÆíüýms¿\95=2yT­×ǾZ?­ø'\ 4Ñ=ÊV÷Wø;\93ù¨`L)·T0¦XåA4&ÅåÝ\0q\18\ f»êIGJd½×©Å·\ fÍC7bb©1QßíêðtÓrJ1EãÊ\ES·Ã±çR!â"º«dîwÇ\9d
+?\89ÖÝþ°«G\15³\bÞqÏ p§Û¢\1aõÝ_ßâ§\91«}}Ø\89øü+.ÅDûö\1cA\ 4èþ¹\98ɤ$&þ¼
+*÷vÐo\88¼:UçTæ¿i\1e\9aÍ\91ksØô÷?ây'ÒÛV\83^4Ñm]Oß½ë\8eA½©Ä\19$x\8bI;#\8f\8aú\8a¹4Õ.|ö®ëý®oîý\8eQ\88wÇv­KÊ,Ä\83ñ2kd\876ÕX\8b\0³,\96\894#.CÍ\9b\ 1¿ ²]ó¥Þ=é\8bF6­\1aõw¡â\96QD1ü{\16\e~Û´Õ(\13\10µ}ÒËE´\9cK_ß\1fw\95*hZ@CtûEAËgÛ/Ê)rjöòìJÿ´Ñ\87vS×\eè\a¼\f\v#\9fxhêGý­F\9aæØ\93õ¶ïöøØü}l¶\8dcY\8ch\9d)\13ùª¨â(»·Ç\8dTþæN\9aÒÉþ¨ñÈSb\94²áû[,Ê\94¥W%üÊ£MswW÷\ 4/S\162²¨ÌXËGåO¨¥ªáï5\8c´Ìåþr>ë®ýû,\9e\84Ø\a\v¼Îb`\1f'\90%ÉóÍÅE,Bþ>ö|$\95G0§,1\ 1\9e\11@ÜèÏT\ 5/¿2\8e\87,\9eBQC)e\ f¸\87\99]\85MÎR\99ض\e±~\98R\1amê[Q\9e\8d¾\90
+P\f\b\v\83]\vî©QÉkO\87NF\19\9aáJ_¶Ø\ 1ù\95É\87\1e·Íz{θ\87C½nî\9a5\94ÚÉ<Âòe\92\83ÚH²\98¥\82\ fQ`S\8fu/JCSI£cÛüvôf\93F·M·ëî\15¡asÖ£ßpΪ?\99ä\9fÆÂ²ó\14\1f\e·Ý\11\80\98'°#\91ó¡\e°\aø;¥nåi*s¨ð#\96}ðêÞõO¸\82\9dß×ëmÕ6Ã\1e\17 º²\88Y\e\82Â^\8fõ\1e\r.R`cß­aôXg\1e|_\8e½~¬á"ÒÜ\10h\1ejñ@÷þͼ\fú,\8fÎø\7f=\7fqr\ 5\82Ðf²Î®½Â¥\8c\9a\ 240ÆP\93Ûu}\80\9e\e`\18\91Ë\18@\1d\18\vë;ÂzRìÏ\97¶{\14í»¯u,\0"ÞM¡ØOµ\1f&SÔ\9b&´©÷"a\99*W`è\9dÕ"I\ 6\88\16F$\97,Ñb¥OÚè¦\16És=\19<¦Ò\b#\1ajáâå\17¬ú{\11\88\9b\1frå-"ß"· .êYF}V$¹[ù'=ù\ e\8f\9eªJ\92}\16ÛJéZÄg\8eÂ6`v©õÆ&v\97\8b¬Àeø\9c¬z|$Üã¥l\ 1Ur\ 1«»«iÚ\83þ]ªÀ³\14ø\8e=X\0ê\ 23M\ e\98\89-ÉuÕ®\90\95\fÛîQ/ç1y\ 1°Ü8âöî8\88Ñ@\9a®ôv\85\97\92å´pËÎÓ:c²\15\91È\98\89\85\80\1aei\11$\88\9feTW=]C
+Çè]\95¼E³Á;ÍÈ»p×~Í
+åU{¯»Q*0÷5á.õxr"Î\13C\8e¾ë»¡;l\9b]uùñï³$ÍJÄ\98\ 6\91C\85\128Þ÷22´?¡\ 2Õá×@\9dHr\85\fü4Aï\13ØÉð$[\88­Z«ë3\89£X+!M²·Í?8\126À[T\ 2°¢>\90yúÙ\9ch\15×\8f\aÝÒ°q        ¢Pç$\1f\7fá\eð
+\8cY¸p%\16«\1föb¥#X\8a5¡|\96b¥^Q*B;ó\13N\99\15\0º\13\9dËJ:\94à§3RÕÿ\1cüã\85ò»¬Èå*<a_o\85·©j\14Ø"á ÕÒ\1fîvµw\87\8e\0T·xMÜ/Gt\16ÖRf¸\9b\ 4àwÄ\11î\96#£TÖ\89ß\ 4λ\86\91KÂ"\9c    ®mú°0õïÿúî§ï¾\a\a\87\98使×ëQɽÀt¯A\0\94mS\1fjù¯\1dõR.Ìÿ¸ijòüsê\b\83NR¯j¯©£]¥\89\ 4JúÌ\1a\98.wŽ­\8c°áS½\10­©áLm\ 6¤\80\8eZ\v\ 6\ 6JÖfT3^\87\0îdS½ñã\82X±F-\19ÐB¼ã@¯ú'½+Nä×Kü\ 4ü}À\9a¬Õ8¢÷ïP¢x´`\18t}\ e\væØHM[\94Q}÷¶9¨Õf\v\b4ð]ÊYR»4{\15$~çSd§È±x(àá3÷}\8a\8c±Ã\9ePKÿ\8c?\81\81\rW\9a\96ÐÍï`Éq"ß\ 1W\81ÍÄö\ 4\86u\ 4²Ý´,\95×\9d²]<\11\82\9f2\83Ñ.\û\13%\ 6/m£\r\ 3\ 3øfå-T\1aïÑÁê|Ð\94Ó1tbùOtúò\97\98¢\84\ 5\15\ 3å\1cÖ¡¾\1d3Ý ôl9½Ü2f\ 2¯ãòÿ¼0k]³\89a\1a\7f#ùâJÝ\8b\95Ê\87Ǿ¹=\12pâ<ø1\13\ 3$÷Ý\0\f\8c¡hD\91\98\8eG\91-.8ÓYàÜp0\82æA?nuÃg\16â·<\ 5\8f;Î"\ 5í«\ e\aESÄí\12Ãwûúú±ÙÔ\182ÅLtÄTl¾Â<¨\eópÓ`      vû\96\171Sd\ 3új'¨¼YÌ\ 2\81\8f\ fUßtÇ!låÚ3,Èf|:ÔÃ\9fñ\17\18èßjý%¾j³ANAiWª\11æàï
+Uì\9avôã\15ÑqðQk\19ýE\80­\v£ý\1aý¥®dc§\19½½\1dº\1d%`\19\9fÞl%ÞýRÝ{\8b÷J£?oê   8-ã¹\9f\ e²DÑÎ_/    \15\19\1f\7f\ 6LÂW\8aÂyÐùË  \1e       ®¥Ö1U#RÎ]q\91\ 2;$ƺH\ 4X\859\94HæD       Þz\99÷I\ 5\9bò\<Z"Æml\92ãáOÑu«\91V\16\93l*v\\v@º8³§\10²«zÊç:/su\95B\1dð\17\ 4ÈÄ\8aüQÀ\12?\99\8c,½Ä\1a!\92¼L^8d\8c"È%ìðIG-\82\13=\83\1dK\ 6\83\\8d¸\83î\11¹\17ë\92E\16h\11úY\a\14\19\8e·B\14\0\9aÎø0J\9f\x\+aJº07ë\144\16>ðÄ\9b\179"\89a½­÷x¼pNA
+\ 4è
+\7fS²b'\r\96Uäp\8b~tÜ\85å6ûC×\8fä\ 2s$\8c\9d\18t\ 2\80Wh¿eÞ¢»\1d+\9dhªq²,\1a\fGFÙIHÆø[W5\87SØa<\8f\10\8eìßXÝî¦ÝSq-¾Í\98Ô1æ\7f¨+\1f£"G\ 6\86\91!\ 4&f,Ý­pág\91 âä|\11ù\9e\89ùç­v\ 50EÂQÍ\9d\8eI\bYZå)\8e+\90S\vÄÔåð\88wMïï¹@Å]ÁàÚçG\¡Ñµc¬v[\9f\ 4øCÝ?0\98!ÿ¨Öâÿ\198\15\1aäÖC\b1Rµ<\81*\97ªåù\9f`yqY¦\17\88!K\ 1\115¦_¨\ fÑq7\ eß|\aèM ¾õQS\9b:¦Y0âÂ\14ªÞ\1f°\ 2YuÈIaf>]"\ 3B\9d\94\e\1aç] <-W½{0psõïÛæ¶¹¼f^HãGØè¾Ñ¸ÍÆÁ\86dV`)0¥ÉÐÒØYohjVÆBÕè¨\85ôù¤\90aRpvã\1c)\8føP¬¾\1cßO¢ûÓ\10í%\18\19\89Ãâ̹\vW\88-%\ 1\8c~©×\97      >ì-\18\9c@¨Üe\82\\9b\10\19\91Ô\ 1¬\ e¸\f\87+pÌX\ eÈËðI\94ûRt/\8f\80·¸'\ 3\bÓ\16\a\9d\18O\80.©áXI\ 2Mh=N\14`B\97\9aû©epxc\9a_\81\f±¾~¿»dâ¦~\96§\9eÐR\84\87'%¤ÚWº(\r&­£o×·+,Ny\ 4L'³$RxÜa9\99KB\88\9dYX\ 1W\9d2\a¿ÆòÓ¨ò³/0Ã,sJý1yX>(\7ff$\1aÆWò(»J
\87\8b®\8cÃ\8fD~ä\9f1R\1e­ÎáîûîQg#¨p©øp\15\9c2 :\ 1}R·\8aHX0\f\8f\8bâ=\r\10\16³#Î1pëë\90:º­\ 6]\ 5\9d³cö®ÕQ3&\9fs\90\ eëÙÖ̤j¸¾×íoF?\9d\8d¦\1eÛË8âV&Ñþ\96Ó\92\99â\16ñSnÞ\9d#ÅÂ:t\ 5Âb0£2\12.£»±¡×Â\9e\1fz\95\95D-º\8b;\0\84¸+,ø=ß\83`®p©ð!jΰL \ 6\93D]asÉ \14\9bÀäáF½cÊÌT \1eóÊ\0ø¦>I/L\1aPaªf¡¿ rF\93´\v\rHKìØ\99e(ÕÎçO/ìe£ì;ex\ 6~\9dÎZôYï    þP\8eÉò3c³»d|¾¸Võ4\ 5ádOÐ\87Ò)óñZ~Fë$¸Ö\95K$tI¦\89@[µAuÆ0\¼d\82 \ e\99FdõÕZ\1f¸s\12Ëj\86?K\0~ºo\eX\8eå&=xÕ\ eï\1f ìØ6U8¬~.PTZ;@\0°WaNCnuÿ\ 4\9bðùè¡\ eùPä(Ψ\1d\a-ñ&âfM\92¿\ 2\17Ȳ\13ñ!<\99ó±×\1f\ 2lÿ×ÈÄømC\r\0ãåÑ5c\1e\81Â^A®Ö\8d\97Y\8b1xU\10\962Ðg¦t´i\11¦´\18Mc¡\ 2¾%='0Ä\19>ÿâ·¢ÖÚ\93\ 3uWHh*ZC\12\91w3ÿ¨\0\82ÌH£¶ÛVwA\ 1ûðкÛa H\9c¯\89Êð\93*^\9d¶I\98ؽSÄ®¡lÖ«p*>\9dQ\84!:M\1fÖ¥¥\80Ml\14±µ\92\8d\99¡\17Õ²"rÙ9ù1\1cLAé\19ë\18\8bm]XØ\86¡\10IÓ)Ñ\17W\94'Szó»¾S4C\1e\85\89\13\15\87\99&6¼q\93j¦È\82\9f©:î\ 6\r·\8a\94H+z·ý ãG?_KtÉ\8c\19b~£Ùî>\f4=t£\10Uÿ¦®\r  *¡8g2a¨\1d¼\8a\1ej£D\ fÖÒ&§üý_ß©Büô\1d¬å{õ
+\99\ 4\rÅg­B$\1aE»Ä³Mõt\a|G\v
+þǨ>#\ f\1c!\9b8ÂJM:\8d>\9e\84\133ðw\95Îy\17².ê#®­Á\92\983\97\9f:0QãIó.\8eµ8k±"\12t\9bNÈZ\ 3}\ 4õGÍøØ%@i"ç\ fÜ·µL¥\9e\80·5)³\1c½w\ e\ 3?\1f/Æ>Ñ+ú\b$´.\13&\8e¡NØô3ê\94\88{[ª\93-R\ré\9f¹¡\15n\ 1\ f\16u\9a\8d\ve\b\9bã\89\ 3P    4~ð\80z¥£åZÝË](\9ciæîð\12~ð|¢M\ 1áë\r6A8°*¡\9fî\89\ e®;Ù:±üMãõ\ 1ê\87ùh\82!÷¥GͰþÁÖ#;ÌB­Î\b¡\ 6±jPë\0Día\1d\95¦h±¶S~\82¯È\97wjyÇ¡Q£|¨ÃãáE\89½êQ÷©ú\a'ࢳ\19»ª\1dX
+Î|J1c@«Ø"ëA¾'cÝeI3È\8a°Z²G£\ 4#s>]\9eME÷Ì\ 1nó,ÓÑR\\ 1ÉFuNT':ò\83\eö\9dj\9cD\93J\1dÁXI\ 4\7f\85\ 4¹\81gc÷\1fëq«¸Ðm¼\86\07ó̰¬\8e\14\825\1a\93\8eD\ 2yò®Öý¬ú¶\81F\vÇAN;·etS?L°£óÙ\851g«\9dB\86üÔþBÐ@¨Ï3V̶\9eº\9e\7fD»|±\8f\93\14Ão\82nh®ÓAìJ\ eF*§\83\ fgyÆhL\8f¤\93V\ e¨\81²â±VÎ\ 4\17Bb¬eh£\14¿¯\82Ì×\94\86|é0*n7A\1d\18HRiDª£ÆH\8b\82§Ä*ÎH,puÉ¢\97)?\ 3\ fËe\f\ 2\13\97÷°;\9a\1eÐ\18ÉÍ<h¯).x\9eA\9c\ 6\180z]\87\98\8d\9b»!<?\85\10Z<²\19\93q\9fÕ0W\9a\9cÉ¢\ fôÍgt«Úl¸ç\14G«Ö\ 4&î Ç8\9a\ 18gÒf_ý]×<Y:\8a[9ó$\98@îàË\7fúå\1d´\ 2ìåVü\ fì\81X,æ"\1f\1a°\97°\1eH2gÀÙipä¢~W\1dð\1c¼ÿÔ¸ó<\13ÿ\a²c\ 6Å¢yIÕº\87á\92O\9c|Y³+¿
+*\13Tnn\ 6\1d\ 2¦\95qO\9biÓ&÷\0b$qðÌ;\94\7f¡þ\81\91­\10¹\9dÒ¨\17îb.\86\88êX%8ì²Éb\18Á\ fHJ\10±\8f\ 1ÞµÆÊ\ e0\r     P-PJ!\1e$ËÏR\8a¼bk­Fs/\82\9b\ 2|æ±\ eA½2ëbö\8f\ 2Ðè,\ 2\13öÁ\ 5\92M\95\8eèËû\85\7f\9c\95~\ 1µ
+Iy|\1cÁ PPu9U\9azFÄZ5εñ Cr6J´Ðn¢/·¡¾òØx=ØHÜ!Ïc<öÜQ÷\97¡¢\96U:ÊS^\86&7ã\10ÊÏ\1fonBYw\89Äò \ 4s\16}W\1c\93­QYêt\ 3ÏÆa£ºÁú^AÖo\11Ú/r\14
+5y\81\18Öh"Àë1\e/`\95÷2gÊ&\8bZ\ 5êå\b·O¡A\ 3\89[5H®\eRA
+(O     ìÕ-øE§ü2Øn¡\ 6\98\16¬ñ¼\8c&'i\1c\90è\11\1dºëtrý~Ð\18E\80")ñÚ#g)\7f°k­ñ
+\f\ f\9b\94@êmS+Ô÷U¯.j½Å\1c"ô­P©\10\88àõ\fµ{\95À0z\ 1Ò\19'eÌò=\14MP´S\95+5ÊK
\19èçQ\1eÞ\ 3æ\9cF\17;ïø\16`\8e\8c £!\9eñ׺ÿh'pq\16*bY    \82øP{bÙ\80XÀ!²0\e[¦´'\8fȱËó3Ä-sjärMÃ:\1f\93\ 57¾¦ì³\12Ï}i;\8dt\1eÏ\ 2;2Ùj\bݽ\82\14Á\0bóÍ\9c\19¼¦~³S¯é&\ 6¨©h\9bi\91é\./·Z×S¾ä\93\8aZ½a\8e\8a\11¢f \7f\8dn\8eêÍ\ f\a¬\ 4H±÷y\9fvô{Ô?\9d\1f\9aû#Ü\93#2¹\1c¨v\93Ðþ\9c³\8cNè%ÑÞãÈ!\88;NÜ\97¢\8es\9añ}\91.ÔLxFfè\1cxá¨a/·Ø9\80Ï\1a`\ 5C\19\86ë\a¥OÕ\ e©(²\ 3Õ\8bü|\ 6F\18Ã\ 38\81P\13µ¶,ò\9d\ e\94§2î<b\ 1È$\1a\80ß÷êCj\88%\9bÈ\ fqrÉí¨
+\fV\99\86ѨB\9b6\16ùCíÏ\0+!Ô\99Ä.\94{
\1aÕ\r¥Ù(
+é¼\1eÏã2\9d
+«õVr}PUê»ß}*pÏ\1cRiæ\9cóKÇä\8bÙ³c"l®´\10+\8c\ 2\ 1¥8&æy©²ÇݨDoÐô\9a\99\ 4@hr-Ùu8S\19d)ÆeW\88ìD
+þú\0ÁÚHË\a±¶\ 6MZÃ\ 1s\r\8cXìUî©\82;\8dcbøðC×éRúÐ$³L\e\85Í÷ü·\9fÄó,Ü:»Ueé»StsÛûsê\a\93Ã\0\11\r\ eâØ×­O\8b\ 1\821]d\16X\18\10#»d?\r\vli\f\»I\85\a\90
+ TÝ4>55§îåÎܬ\18Ó_ë\10\88\89\18\1e¼SíYéMÙ\88 tþ¾mî4\84BXIâÞ\8eA\85\17õ\95<.}ûú"!\87.ðüõÌd>?3Aq«ÝæÌ\8bxîHÁã\97\8a\9et}        lh*\a\84®ðLPô3ÉC{ËA+Í¥Þ[Ù²Ìü\9d\a½\93Äþ\16ê\1cz'ñw\92\97/ýéÙKi\9e\84·\8asoÉ\ 3Eúú\9b×óý$ö\ f¤¡(\9e
+{giÉÿ´â0sä
+\10úäIÌ\13\ eÑ\7f\9f\8e\9b¬â8õ48²'eö\97ŪLL"\8fã\F\14\v_¬BO\1aù!¬óÑ'o¯=µ`$\9e\86\b\fÏ̵õ4ËÝ©Â#,$Y\18¡·\10\18\86×\14\1a»ÛØãÛµì½ÈR²\85Gíª,|{`²\8c§öWlÐ\8c\9a\95/\86¬Âpïí¿«a\14Õ\9a\ fÉ%ã/\19·÷\8a\97è[Ó$¦G\92¢R\9f"/\9fAØiô\8c£;F«ÓË6ä\94\92+um`P­þ,ÎåÑ\1c\8b\80À\a\95\95\ 2¿¥\91\8a\8c^T½tÄÇfT\88\82'Íã)É{.\90\¯Ur!|©ÖOÚÄ
+ÛùÙS¹ª\1fÔËvíÿ*
+\r¡\9dó«\85Å\90!Xwµrñ»»Fá,ÄûäýXÑ\95vvºhë\990z\r+õ'wJ)s²\ 3\füüî]hµízoá\89/1#\17\9c\97AËû\13-\97ø+\ eÆ/\1aÇÎ6ñ=ân\96ò\84f©Ý\98`7\89µötÄòå\88\8f/­-óÉî(þ\7fÀ\86¨\8f¿e\9eÍ>Î\8ae£h"ÙAOàä'Þê¡ñ¶yôá\ fm(\87K@\v®\ f6\ 2®~J2U#\9c
+Òã<\8bâ\86²\8dÖãrñJqÃä¢óé[ä\r\1e\14$ÊÓê\82o0-ó¸xf>f¥A´Q'n¼C*Ë9»Ṳ́Ç\a\1f\10\96\9cè VJ|×v\9c\9cØ\82ðª?2*\14\12\93×(\rX\8a¦dø\îÓ0)IPÐù«sföèO\88\18\9c§ñ.Í7Î\17'\ 1\87\16£N£
+\84àÅâ8É\ 2ltGÖ\9a\ fÈü®\15\9c¡\8c¬Kñ\89dîÆG\1f´ÆdO\9a\ 4H^e1g³µ\9bp\bÆ\135ö%Æ\8b$æ$¯Aé¤/9h\19oZK\1a¿Ä`_Z%SæBõPV\81çß[þZ¦ì´P7\91ô/¬¥±\8ewV\95S6p½O®´\87Quîl6à\f×\94 \98­F±akï×\8a¬\96'd\16§yvÕèyi¸ù*m4,Å\7f\9d\16>éÑ ÜG]\1a\81\9e\93Õ    9D7ÿ"\12\e\98¶*\99é\9c¨ºWíA\ f\aØh8ªD\ f\a\18\1a\9b1¥q\9auÄ51Ëc¯\83÷u«YÔéñ\ayÜתkÒ\bæÌ\8cÏݱ\ 5+ez\ 2u\9c\88Ý¡80T,\95\8aÉÀôäÜJµ®\99*y\82+\9a¢Â\94L^5\95³Fæ\96µ¿îzï\8b¦ãV1àÜ\9bgª¼ì¡eþu×­µL[yzÝü#ä·\90¦c\83ñ\8cA¬m\93´×GôüDÛþL-d>ô©\9aâ{[sG\9eíÉ\95,£ê5yþ¥i5,çiKàèäÖç ôv7eÈä\99W
+ïĺ\89ái´\94[v¡\9fªx~ÊÖe@Up\9eé\b\90RDOÿï¢ÂUhâåV\95F;\80uCǾ\1a4Ö&Èä!\88Ö¼æ3Ð,§3xeÁ(ÏCH\8d\1dϵÍìÅ\ e¬\ 3,Ì{Ë¢j   ¯ð\16AsùJè6\17ǯBäõ\vO\14Æ\10ÌÏ\1d\80+\ 6\9c}ø \17ɯp9)\11êÈe\9a\ 3;Á)¨g\85ùäe»\ 4\ fÓr\9fb\ 6­Z«Ã\917N}Ç£4)[V~¥ñæ\9a\8bãóVû\ 2\12\87\9b¿©P?\9c\7fýÏ_~\b\87
+\97%\12\8aø_ßþ ëæ¼-wQ[\9e\fól\87¯²\11\136bÙ¤çåjc{޷뫾ÖÀs\94ÈÉøLÆ2\0=éÂÿZ%Ë\91H<k!+c5½\93Z\82\18}1\1f×Ñ\9a3Ì@K     @\8b\975g!2n*"LL\vÙ°8\8d¾­µº1\971\99ILõ ÛóÜ\b\8c4\83¡kjr\89»\83\83\87(Òg\14«»\rUêÞ\17\10É{XþeÅÕ0çÜ\1dU\11\86\99\81g­mó)¼mã¹Ñvç\e?î·>\a0èÛi4>v:ò26¿
+#\9cDiæyé
+m\97È8#\b\88\ euïK\98\80àhÑ\19æK\13#ziT\94\Ýûá =\1fe̽òݲ±\9e%\9c>â¸'o?þ¬\13¹Þ¨'\96{H4Ày±'\13\9b\9dªõ\95L\9f=ÇÌëÞ\87x\8b\8c\9f¯\85\9fÇ\8b»jí\1d\8d\121|}óc£ª\91^i\8b¾ïÝÉÕù\1ctB×}¥[Ñ~\81¾\84VÀ;-9¼l¯ÔNï§[pô#[rÂÙ\96øùäë\8d\ 4«s¨\ 1n!à\86¹O\8c\aEt\16\17ôp·`ÓÜôÖí\1e|v\15+bþ\90E\82\ e\ e\9ayoXT\80`Ûãz§\1aUw(#\17äE¸\v¥\9eRõm÷à3Oý\95\16+´©-ÖÍ\18BoU`úÇÆ{Ìmó\8aäÎU\ 3Ðî\94\a\9b0ÎvU0ù{òÜ\1fÕØÓ4\1cAÔ#x/kqC8\ 6øÉ&\8b(\8e£/^Ôs²ä\13ÓY×g2\9bê"@grÞ\1e½É6Ò\ 6\15\99\99â6\98\ fÚðÕÑL9À9·.o³\15\9cMP\ eºW\atôu)="\12kúÔR\ 5fH©ûkßÊÓoØQ\8bΤļB[ÎHi\18}?Üqí\8bsS\81\16\8ag\93°©èxËOh\1cï¢ý\94\f­S \10)·C¥Ìa)\9eÔºYð:ìk=\8dƱYóÅÑ\97".òS\7f²èar/{\98DÒ¦Lç¢t:µ\rh¢MlÈæÏÚ²\ 5\ eKL¾\8cb\1cxD®ºÑÌAÆ\ 2\90'\18\96V\98å¥\1e#\94_lÇ×wŨ\8e{\15ù-\ 4\93å\99\ fP3\ 6´¯°\14\8c\12ÄÚç\84ô09úp\8c\9c,\86\bÿsÕ\8f¾;Ð+\9aW!À\13EëÏ \16_Ehí¾\16çÔ­\95D6\95vÃ$Ñtxéd\9bô\8c¢ß&ÜwÑc£my82Ñ+pÔÕFO)\8aW\ e%_6\91A\88gYý<ÈUÈ*<n½åø´\aÄ3êM\9cni5Ó½\19ÂqÀqb½\8bÃp\1f}\aã\r\1fK\17äWégà\99¾[úP\1duWõ°X¹li\9c
+&¡åÁ~&\r.XÒ9\ 3\1cw\1auãø\1fÛ÷¨K!^¼¿÷aëÀ#I\8c<\97ù\ 2Ës\95'\1eÛ\12õöÍýV\8b\98þ©"ºÕ\9aµ\ eòÜwh\19×\92oðäPªÑõ½?K1ù!\9d\87\ 5\97\1d\85ÏDõ¬éÂÄ!¦0ÙÊüQ.        Ý·\8en@Ïú)\b`\88\89Î-\86\r½ÛðM<pRé\bÅiç\8cOE\1cð¡\84\1f
+åáë\8dï\ 4fÇ(<ØIǨ\85\98 <ÛºñÕ~S=7½W\8a\81\r÷´¬ÕÐXbÑ\95¢\85yåè\84ÀFTÿ~ÐjlÝû¾çE\1ac§à!¦ÐùBä\17\ 5\e°üР \8d+Æ«ÀâhÀo*\85c\13Z]6Úܬ½ª)\8f!oB9¼jv¾A\9a­\9c\80ÿrªk\9f.«d)\92\86¿p\15ó\98õïkÕ\8eÝq£\84\vÖË2\85\ 6oÜu³hÐ÷ÞtT¿!N±ó]ÌÓ\8bó¡\8dï?¾ùæÝP\¬\87\8bUv1¬Û7è;Î/laW±µ\17è3OLr\91fñ*NÜE_¿¹{óíǯ\9dßBY!ͳ\8b\1càdK\1eß\8aù@\7f\8fc\9eG\1e°\12¦ÀX\9e' n\8e{ÄÂz¤ëéô0×Ë\9aÑô\ 1\ 1$\89kS-\19}[\v³D3Z\9c0%,?\8c¶p£w1\8eÙÁü ¨\88Р'EgñÛ\95`®zÚVo\b$\1cÑ\9f\82\97\1cÏѺ\92mK\95D\82wÇÝIì\97¤þ\98Ùæ¨G·\b\ e¹ï`vÌ´ÃQ[û|"\96ç¯2\7f \93\84`WG\89lôÔeégmÙ»-â¬\9b\a\7fx\929¦Åçc\97éçëßyZÛ÷­w\87'¥k\89¯\e\13Ï·¾É \10XÆANÖ4\11èÕmÍ´\ 4z\ 2\90\96\90y4Õn¥/ZX\9bØY\7f¥Ã'ªÔg¶@Hã\1a¹ Áp\r\f~\13k!\13"\19\17\1eÜ\1f\ f¡ª\9fù#£È\ 6\17óIÆ+}ºÔÙ"S\9d.\ f\16Éw-¾Ã3\¢¨Þ~lÌ®¢aì\98\805(~u\12¹1\0\85u%â    ;\9e«²1(\9c\907­n[fDæAî\8eíúô£Û\8a\87d\1d»´'\ 1ßÖÚK     þYm\1a²×Ühh$\91\175Â1«p';ûXõ\eä{Ðü\89ä({½\1dO\ eøó©èIß6õC½9'éQ¶Jt\ 5©\ 3ç{\90Kl&B\15ö\8cdeÁ\8a\9f\17\86ü\89\86 ÇV\1fÌ\18îe%âH=ýVúÐË\9f<<).L²}Ü2A
+\ O\92¥Õ<åm\19Õ©&\17P\9fÛjàBXd`´\87®örq~V¯ ö&\14¼áQÝ\95\ eä¢\ f\8bÝ®\8f_ªþId7LµÒ`§&K4ª       \93Ö*m\8aÖÎ\9e\f\13½ã!O­á!\fkZ\1aIÆV\ 5\19êzþØ\1e\ 6`i2ÂÓÃ\89[\eg\88\94a\<ÿ¦e¾XÏÏR¦<Åû\93þ\8d?y ±¡õÇ\81æJ8Âf\93s²­qxY\ fëf9{\9f\84\80*ðo9\8f¼.\ e\rç\88 æ\ 3Ã9´v_µ­\12fë}Ê\19qò@é½\9ev6\1a\1cee°%´f\99g\vuiPPVËy$[\ 1w       e\99Õä>:p|+ó<ö\ 4\eá¬ðºîµ\84Æt}8\85,!e\84óÉ\ fü4@\báË\12\84R\7f\s!{ô>ú%!\96e
+éÌþ¶\1d·É0ÒZw\e\8d?\8cO~cÇ=L"RÈ'mSQhk\9f£\18Y¯ð9\v
+¨ë\9f\v\9eÿ>·ç}½¯T-\8cw\ fÆS0k Í»ªG\v\f®\82\18Ý÷µÿKâËV6Uøg½\81\92\19l×û\9aç"ñªcéOG\e\9e\ 6Q¢ëe÷âtd=ÎÙyyÜ<\85*\91J-V\9bÞ©Òoq\80   z\7f[\8f\8f\báå\ f\1e\85X@4\12¯Va`ñ) \82º? Ù-a\10oN`,\90\87Ýiî\9aÙÀ´*¦Í\81\85æ¿ü\99v6\12j\9bøi\96d\12ç\ 2ØÅS\854D\1cÎõ\9a¸ \1d:Q\14ßæÜð°\83>ü·Z\8b¼l­êúQ]g\11üÎõY\ 3êà"ÁïÍb}$\7fË\15\86 âP\8d\ 2\14\99è\89òq\8ac²¥\1eÍiGY^;ò;®äaEv0\16Ì\ fÐqà²\99±Þ\95\93¢º¢\f-\8c\85¡øª^ÌJ\0÷\1fd49[\9fºaArë]½÷ î\8cvFMT\ 5QÒ¨8\90ÃvǾ¹=2I\9eÇ>V´l\93¹;öãVy\fÈg½;®\9b\8d¦Ó]á\81â\8c(\97f\84¤¬7#6vûæ7Ãã\1f[M\ e\ 3    Å?oª} 2´
+\80£\8cCf©\r\19\rôst\ 5hC\93ÿ\89BV.ÿ]àXA\99+Yý\14ýDZ\92mGÓ'Ì\87\r\90\ 6\98ó£Li7\81\8cõÓ\82F©¾¥ðÿ\9cè[\8a½ÿ¨Ð¤§­ E¦¼¸.e\91ÂQuù?ÿå§\9b°ØwÝþp\1c9\0\17\96bË¿¥÷\84I±)ÿ\7fp6\0»ôøø¸:ìºA(?\8f\ f𳫮Ç\99
+ÇtZzy]:\16\9cþ­j\8fZËM±\97i\9cX\19\90§e§\ 1ÿ«Û\1d÷µúï\12=arÝ?`KhÅ\87aÀ       &ˤk¢¯%óûu\12ÇÆ&e\b/þO\80\ 1\0¦±.µ\r
+endstream\rendobj\r4 0 obj<</Contents 6 0 R/Type/Page/Parent 102 0 R/Rotate 0/MediaBox[0 0 612.28302 790.866028]/CropBox[0 0 612.28302 790.866028]/Resources 5 0 R>>\rendobj\r5 0 obj<</Font<</F3 121 0 R/F6 118 0 R/F7 125 0 R/F10 71 0 R/F11 61 0 R/F12 65 0 R/F13 72 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS1 113 0 R>>>>\rendobj\r6 0 obj<</Length 7551/Filter/FlateDecode>>stream\r
+hÞÌ[Û\92äÆq}çWì\8b#0\8e\99\16.u\ 1\1cá\87%)YT\90\12¥][\ fK>`z03\10»\eM\0=Ãa8ü\19þ^ç9Y\85KO/I\85eKÁ\b\ 1\14ª²2O\9e¼Ô¯þí]öæaøäÓ÷\9füê7îMöæýý'å¦r®x\93Ê\7fáÒ\96\9bÔ\16ö\8dÏ\8b\8dI3óæýþ\93\94\ fô\ frñ~\8bÿ=\7fò!ùíp¬®2¿©\92ôê¦0~S$õU\9a\føC^\95?ø«Oöu\7f\95Yù廦Ço©üÖÝã*ß\94I½Ý^eÕÆ&Í0´W\99Ì"¹Ý5ú\9c\8fòn±É\93n_ã¦KÆö°\91»\85\91ë·»\1d.½Üo\ fxÅÈ8õî*ËäßÝ5~±xåñ*Ëå£\1cÕ'»v\8f1ˤ\1d\9b«ÌÉ\a﮾}ÿ;Y×M¶É¼\13Á|.ë;ö\r\93»Vfhäý±}\9a\ 6\93\ 5\1f»g,-O°2\97æae¶²r5È\9cø\9d\a¬ÇVF.ï\9b\1a³\939\9dz½h\ 6¾\99ìøµLæ"\7fZ\99ÿI\85éÒLÆ\1få\8f\ e\7f¤Éã˱\83Ü\8by]Cû#\84\93Í\13\e\1f\9bÅ\9aÊÜè\9a\9a\1fZÌ·H\ 6,=\13\ 1\1f\90
+¿Ì=\91\81-·.Ï!þn\8fçmrÛ\1ej|T&ÞõíU\9eb·!|Ñ\12\aáËSU26ý\11S2É®ÖMxÁ\90\95Ìñ¶\19\9fu¨¦ÁVe\90ÆÅÝÕéøË¢Â\9aÞÿ3V\82ù@Ínwøº\93A\1e®n\8cLÇR\r\ fú\87\9bõëÔÇñ\1aÜ\83îÝÉ\88\19\9cG\91´ÇQÅÒv\18 Ãh\10\8b\91Éy
+\95ßl{\1d¡Júf\87Uù¤\1e[Ì¢HºÃð\bI\89J\1eã\8bÏ­l\15\873òÆQÕj×^Q\b7ó¢¶\1c\ 5âÂçó*\95Ï\8fí\9e\93Ã\83(~^z\19ä\vÞÎ\96\9a\9dWN\9e>4?\8cx\88{ÜLzÛan2Âp\8d\9bXé3^)ñ©\11\9añbå©jaØVU\10ϹIïÌ,\87¡\1d6\9cý¯~S(\9eT\ 2"¹#\\84Ë\88'N.r\97åÀ\93\ fÉg¢X7NF\85b\8d¢ÙX`ßR¥Ä´\vÑ¼ÃØ··'\99\94LÎë\86è-Å\8eT^\16ý\11Í\11\99ñu>\80½\901ïÚÃÃl\0y\96OFÝaûK*í à!Kîp\ 5E\90ÝÙq¸\92\9b¡\1fUÅÜcÈðaÁ\ 6A\ 5\9d[ƹ©\14>\8aªÎoÒ,{ãd~E\9az\15Â\1f\ 1;$æÚ\8eØ!\ 35z\82\ 6Ð\94\8d\87þí»;H[6y§\bÁy\18g¢n:(âB\13ôµ¥frûË\84\9a      ¡S3]%\1f\16³ÄS\99èC\83©8\1a\8e;7Í\9csÔUÞlªªZÃÊeT\vø~Àë\ e¸VX\|þû·ºQåÒ\16¶Ðñ|9Yu\1f\15\18«ò/ðÚ÷úÚI\fQ&]->7k³ÂB\96<D?Ô\896OnG\90í\16Ú\fqÖúàÍ%/@¸Ë\fÁ.O!Øc=â£\16h'\9fð´\90,\95\að\98ÿ\18¶å)\96rß(<ÖãIÇê1m¬\ 4&N     ~¡ \96\8bS\91O=¶øJ\9a%\8f\80\99äá\11\7fAéï \1dìis\18ZÝÁ\ eng1ááX«¸¶Íõ%§Ð=5\9cj\95ÜÜãÍvT\14\92= ì²%jM\13m\ e
+\99ãÚág\0\9eö\ 1ÏdÉ¡½×\vlo!ÿÖ\87Q­X\90³\1d¾\83ÿ\0 Ô\ahGQÐW\a\9bû\ eûîäJí4[\99\ 2U\b7\1fN*Þ\ 5\8eîê\9e\98i\93\1fW\88\15¿6k$\ 5\15Q\a\aÐ\r\83\9b§Zõh×Þ)°¯USFª\92º'ðV\974\12£§ê0q\ 5\emîï\e\ 5â-f\85ï=ÁJñü\8b>.k¤3M\ 4n~Ôå7óºÚq£c\95ÉûGhå       \80.\80\82]\17Ó\ 3~Óäjuk»\17ø·\ 4º\83·\96W·õ 3\9e\12Â6-     S
+0\1aF(=8G;\8cqKkÕol\ 5a\10»\93§º7\19ÈÛ\97ø\86x\89\ e\13\ 3¤~\93|Ù(       ¨e\98\vÖöövнév'U\83\91Ô       ÊøN\rJ¼ïá;%\19õ\ 3þ­fÖC=ÂÓYò.Â_³\1d\95ä\11Ìm\85Ë?\1c1\8d¤\87ç\11\ 3î¯\95Y\r\r?f\93¯\9añQ\97ÛÝ\rJÝLrßõ\97¬ç®\19ë\80O»AÅöÍ\95`h\ 1Úö¡°zïÚXE\9bo¯õ\1eȲp\88\8a\1c"ªðN\99²\b÷ÇF©ã\1d\9e\ 6K Ë\813oj\92\ f\e<C\10¸)È\15\1eÃÆ\8f:v\99\1c\9b\83²\8c\1c± Vê\f\96æ4s\90\8e»FïþÐ\8eúièhî\96\ 4¡ïNP0ÀQA\f­£'ô\91\ f\98Ê\8b\e\14Q%_^½ÿËì#Å\fr£LA¨£wå\9bÌ\bUÈmþÆZ\81D'NF¼d\92á­×\ e5\93g\84N\18yX´?Ä)\1f\92C\a\ 4ë÷J;«åú\15\97M\9cëÛA5wÅw\ fê\87\a5è29Å\ 1\0\9eÄ\8bj¡×ô\87¢ë¾X+Ŷkî5æ¹\aôÁºÚæ0*|\90Q\91@\13><öy8ªo¯ûA\19A£D­\fd6\ 2\96üvÉyè\88¹L{§`Õ\0aÈÒÉ$=`\81.Ä;JEA§\87N\13\ 5ö\8d\9a\ 4\88ß^UñHß\f\ 4mÇÝ\vÖâ\93ëK¶{_ouêí\ e
+S*\9b\99¹¹Í¡C+\b·9 öuôÐ7£ZË
+s1@µ4)\17Lj\83{ØÑ?5\ f\13â\ fÑ\ 3è<ð\16 gó\9c²z B\eÄ\9bªè\91¾\9d\19ö\1e\93\80Ø\1f1eø  è\8bÅj\1eE<µZÀ\93\\ 2\85¦\1aÅl )\1449ªkÁv5Om \ 4§\0r;\18\94ávíuáÇ]§\18÷BX6y$§\ 6\v½k\87­FÈtÙä¢\ 2Ö=ù\8bpÿa« Ñ\v¿ãþ\8eqi´ìi\83\84Óİ\19T9p}eW\19÷hTÊ×Þ\ f\91S\7f0^Åþ­ò8{¦\98XG¾D|á\ 4ÉsÍ÷AO\ 2Ç0\ 4\11\83}Àd\12\1a\ 5~\9eeQ\1f\8fø\12 /8\8bix\8d\82§\ 5]\88Ðe\9bK°§?\81dZ\a\vn~8FF\11¨Ë\0¥\82á\1côñs#³´¥cØ·nß©\84F,\ 1ûp#Q\ 4\ 6È\93\1fZ\1dh\ f¶e= ÿXËöæiäéÖ\vÛÓÇ+1©\vvóÙ§_\ fjìYÂ\81å\85v\17<Û Á\9c¨½)¿UKÐ\88+\92ð<\vêú\9böá\ 4 °\fZ3,?Ëè\95v§At\ 4ÄX~\82<I\15,áM̱ÙéD¹\90û¾Þ7Ï]ÿÝF\9f02n?\8c×z_\fëÐ~\7fj>\16\aÈôEw\9a~ÐðØHT\81)\19æ&zñÎÝ\1eûl\18E\1eë^Â\1eÑP¨ºÉ9×\ 3\94Ý(¯ìëö ¡NVEßn¨\18²\94QG\ 5P\8f\8b¬À7êÃ\8b\14 \0/.þû\9b«\8dÒ\98\ 2êIÕ$AçÒÉ\87l\98g\91\1aM\9d\1c"ïá$\94!¹)\8e\17ÂÇ,Âáæ¾Û\ 5öT%Û\1eÜñÂþ>\89ë½\v±¤\82\1c\8c        lW.á_æõæ\ eþB\16\86\ 1\83A9¥ÇDqGl9õÇn\80[°þg\ 6Ã%Ô\a6y\ 1íæÝQj»Ú\9d"ÍÂÞ@²@ê\83òH        ~N·Ü\ 2Þ)56OI\80¿?1\9a\1d\84Ðlt\9c÷"Þk}\b\ eBwChh½}\9c÷QxÅá.z@\8c\99{È\e,\7fà\ 3+¹Òbe²ú\8e       Ó£P\12â\10\86ðÂ\98± ¸AË\9ca^2½vê\ fú\84\10Ç[|a\9a\99\8c
+\81[Q\86ÇvG\81ç!ß&¿æJ\83áÛrËÌ\ fGsHyî\84¹!üÉ­Rm<P-_ì\9bý¼k\01¹æM&sTÎ\e}\8fb¼¤l\82q§Ý¨X^Î[U\12}¢Â\97@þ ò%\90ª\16\1f¸Óe\19C\16\8fùw·cÍ\94\éBâ'\fÆ­¸   \12jî.:P|\8f¾\19Áñ×\9a2Q\16\9e\93¿l·§¾Þ¾(\ f°*+\vB+Ã\9e8ª N\198\f¼\7f\98\81%        Q\14°Ìíq¯-Y
+pbÚ­»æ>Ø/· \ e\1e<\v+±Pª¯?ûL½uÆ$¥¦'\1d<ܾ©\aÁTf.`­\1a¦rÛB\ 2H\87&\13Fâh»R\96\90\80ÀNp\9dz¯Òùs\13³ \12\õ:\92ºdØ`\91j\1c·{ù18æ c1;¶×ÄYL\99\ 1\9cÚ§&f³\8eÝ3y\ 2\93åbF\1f\81mx Ù'\97#\8aû3áÏѽÉ\rü\f\9a'*\8f#ySåq9¢¼¿t\ 2\r\0\ eGç(\14zhïäþݵ\ e\19\91¸¨qLû#FßÊÀ\94¢Ód\11·Ê,\94£p\99&§5°ÈB¦QX·\80r\11b\8b^c\8b\9b\e\89
+²pë¿Â­4ÜÂòõN\1aîdá\8e©*\enýËÙK¹Ïâ[6]Å1\12HI|¨÷à\80¢\1f.\\91d\9fª\92EÕ!æ¿;\1d%´Ú\vó©û\97\10A\14\9bªtÅÚ\94ç\81ÀÉÞ\15\95y\99äSuiÖ³\ 4"NîÄ\0Ì2Ro\1f\ e­\ 4\1dµî\89¾üØ><R\11ø\88D\89ÊO\97V°P\9e\v¦\1c\14)çç\89Ç\ 6\9bõ\82\9f\94êܵOí\1d\11\1fxe5ÑÚ\ 2ésC\1cRÇe\81k0o\0\9b©\92ùÇalQÍÉ\rV\ 55\19èÿ\f&÷þ\91\89\ e\19\19yë9\1drx\92§Ú\87\0\15Ìf??\8a×Ç\m\89\8c\83â\85\80\\95Ôwwm\80\9f*\rå\ eKÖµ\ad\ 6ó}jt¤\12\ eOPq»\86\7fùi\8f©\18Ã\1c\b\92¥Ñ2\8d\ 1\93\94\88j¯×*(Ã\ 4óÐ\88YÜÝtý\1d¦f\8a\8a/OãÇ\11\ 5V»Ó\8e1?Â4qâ\ 3\a.\ 2U¸\¥\9a\8c\ 2hÒ½Bõ#\vS@°\1f\8c\1c\99\83\8cà\83\94\81\93ùÒÓ\9a¼$ºÖ!sà$`ÞuÏÊ¿rð\e\84\8a¼ôÂ\rÚþ\19S» )ËU\89Ñ\97¹&\99\15V\9dÏÃLpm_««Ó@u/ÚCTp~\ 2k<_¾Æ\8f\88\12*±o\923\94\10\14+\9cùÿ\a        ·\ 6\89\ f  \13@ ÷ÑÀ¡".É>Óß#Ó-\10Ϭ±\82?\9e¿'ÀðÍ\95\ 6ä7^\96dÏÀ}8=<ÀJÈñ\9d\87·¤\1fÔ½°\8eé A     Üp)a|áa°5Ö!\f\9cÊ2\8d>hÈ\15\10he\93\86*\83k\1e$\bW{3\95\96EMY2\83<{J¹\95²´ \8e\92\7ffÉï»±¾Ý½@P\95 9ay\19ó\8dHf*\18ÛEÐ\9aMC\rÁz\13H¤u&j\13~D¾m\1cõ\91lòMò\14\12Çí â*\93C7Æ\1fk\È\83ô~x\89uªA¨nÃ:*~R³·>ÕLóE\13ÙöÂ,èõ\18J\88¬e\97\7fhGl1³³$*\95\99\9ci\94\16o\92cW,Ý=¶ý\84*E¥\9cva\7fsB\9c\1fc>GY|Å\072²A\ 3\9c\b\0\ 5£¬»öN\9fô*\ 2\r¡¶]ß7"·F\93¼\95z\ 1aù°r
+³`\8c©¡\92\86\v\13\8fZhÇB\a\é&\1dÀ_@»W\86,ð䫵\1dGÛòyZFãú׫\9bÌ\81Â
+¶e  %\88Ô\99\19¹\12û\1aÍÈ\95 :ê_qÇ&\9fÁ¿Ò \ 4§«ª\«Õûú»\86ô\1d¯\8dÝ\ 3ý\r½\93S\98\1eHÚµ\ 6\a6>¨ã,è%·\14]NR ÒÎY\15\vY\0KbÌØÇfÊw[:^Ìø\97ã®I¡é[úù\8aL[`~¤\ 2)\90CY2æ=+Ø$T¿çÌð¦K^\1a>\9c\18\ 5\9c\95fVàh÷á3×\v\18>
+`ÿÐîe\ 4\92\8eÂ'\85ý§ke\9eZ¥D\16È.)ìS-È\12\ 5\13P\9a\7f*×Ú±,¿þâbsfÜ&­¼û[\16\9b\85À\8c\8c0Qäb\98\85ê3\ 2fµ"\12ñ±»Tzþ?.-gð÷E¨,ÿÛ\ 2q¢6\ 4à:\ fñ\ 4¹Ò¼\e¸Dø¢`=<¢6l\99X\9cܶ-\10cýö+\\116C,`\v­6Ý},°ÐR/CÇõ\9e\96ä¡\11õ\8b\12\16ð6\84¦EÐÐ\12\16\ 4³¸\9eCV\8d>mðN1`-dnC\fLOêô?Û-\93?\e]CÎøY.í"n"5,à  \16\91)\858\87)\96e\1d\ 57[\14\14\v%\ 1
+´°%\99s\7f5lQ\9còrYx³\96è\ 4Z,\96"¾p¹      \9b ?¦¯9\ 3~\9c9\83Ë!`\80Ýç¨R9r@ø:Çìü\9a\8e\1d½®æ\9d4~@\ 2K`^!ÌAòl)±ôÊOmw\1a\0\ 5¸\13³\bL¼8\13³h®\9c@/ª\11okÆÄ\93\9bö\9a÷*ÖÜBÝ6àÚúW\f\92¹é8ag*Æ\1e\98°³Y̸9ëÖìA\1e,gê\8caa÷NóÑ\87\97Kê´\fy
+cÐ\ 31\8a\88Ù\9b\ 6Gù6¤¾ý\12ôf\f)J²ý»\80'Ú^\ 3çÑNï\1d»a\ 4\87ÒÔ@©õ=-\9b
+[w®ÌÞ\b\8bI\r`\ e3¢&"ÚBSݨ±Sñ\9aÈiHÅÜ\97\81h#ScÞɦÚ\96Ŷ\9a\83>\f¦Ðm\9bah\86\10Î\15q\ f%\82«\17ÂqUHnÈ\1aoÆî\86K5%\89»ø\b\8d&èb'l1´}`\8b)Í4ÙàÅÊ\98Ðá \12H´Ý®{\90½Þ-?ZÄ>\86Ó(ï³¼i,\8b¯Ù\7f\17\ 5\v®Æ±Å%\ 6fH\1d1ë̾\90)d4lc\88\9cKgËÂËY\80xaÁë\0Ot\9buê¥K\16{\99W­ú­\eÆ\84m\88û\90¢\15\ f}êuB¹OIé\94/j®ñ\8cg/ò$ÄYú«2\9dÔÎ\97êSh\91úP1eæ\8a\12Þî\8bÃv'¨©À\9cF\7f\14Ø\8c¾µÚ\9c\vò¿\98z`\f\er\1f~\99p\bl\e\7fT¯²=÷¢\80çù\1e1\0ëýG°43ö"\96ê\80etÉËÀPøAþ×\8dV\ 5`\96wK³ÞÿeÞ\aV\97}
+\80½æºW!Xá³)\ 4CÎKÛf\9cÓ0`\95Ô#¨R\89\8e»\1a¢ñ&4RB\87.l\0ø¡ì±71\13ï\r \8f\8b*\ 6\84¶²\93òxüíÕW{6Ý®|µ'\D\8eâ\8d¦{ÖUþ\951$\9f÷ÝÐ\1d\1fÛ]½\12«|¤p\93ÇÛh»®\11GLÄ3\91-kÓn\16\85¦uPäíño©ì\8aT)Ö\81ðk9\e1\8a¦Ðpî\85)\88²\f¯tóÂ,Vr[*6\11.Àc\11k*ä?\9aÙQøÓ\14\18`û<w\94\e5ÑE`\96\eCz{\16\98\9d\9c$a]E6íZÛUL\ 4\at¦Ü²ýà 3\17>\12úY\X­­^yµÔÐ\8fh\1c\\15´èú£ºÃØ\ 2Ø´\9aì&\96#þpÐÀ¥XV\9a\86zßè\ 3\16=*\ 1¤ÊàÅ¡~\v/\1eØ\9cÖC"]\b\19(¸þÉ¿\9dÉF\13\0¾Z,\8fá°_\16\11\f+9\8cZ\8d\19¢VÃÒØ\194\19\16}g\5\1e(ÿ¿¤oP;\80Ä\ 5ú6Iù\8c\9b\15)¼zD\ eôHYr³_\83\9b\15)
+é;\8d¨\18ÏQ¦\15ÓÉZ63ëô\ 3îÙE   ®Ö\86°)krA²\11\85Cl\1fó\10\eýü"¹\9c\96S\e"
+\7fÙl­,ðµòfÛ\84\84oi5qõ\bk\17U\ ft\8eáS\16²\eÙ\84[2FÒüðØÞ¶cì\1aßuÏ\9a\163¾Ö\9f
+\r#S7©cÁÚ\7fHG°[ »\1d\9aþiáÇ.ãØ\aMï2ùùÔ>uë8Lt¼È}T\80\8fS¹:\akyh\ e¡Í<G\aB\8fÓ\rÔÙ"\v]\8bSv\8c-\90\1f
+C¦\92#6­c'ûSô_®\11Ô\16Ý\12ª\úõs\14;\9eF\ eªî£`vFB>å\94\16y\95áQÀàNÝî\94îa¯Ö\92À\80\9dlb©`æ«Ö\a¾z­\7fdè \Õý\16ä/vZÎ1²þ\ 6Î\e\15C|ÊsÇlÑâ+©'!\15þu"Ù,\18\8eïë\97Xe\1fN÷2`8²P-\92Y\90w\1fÒRêU/hÚá´¿Õ\82\98\8dç\1d\18\bË,ï\9b¾ÑæTÜÚ¶ýöÔ\8e¡A¼\bä>Fé\89\18S\8b\14e(´áxÄ \7f£ñéE\9d\13\1a6ªo×­\1as\14\87ö}_!ô\1aNû½@Á5þFã\10\97Õb§ôwÝ)y'xsvä\93\19ã~\16óD¾d\18³Ì\13ÍaùB¯W¹"ÃV-f\94IÿÕ\9b\18záUyÁ¸\18\94áÒ\9ferY\e\8a\98j\8a\14\8dÉC²áÂ\960\9f8\1c;íØG\96Yk,1)Ý\1e\9eºÝS¸\a\8d\ eu\fK\85Tò`\9dSµ! iþzA\1f¬ËW)\99Y\10!!¢åß\90g\ 6Ù`I\93&³.ªÚlv§\85\8d\87C
+SM\99t\14è|,\14ç1=\80î¥jù+õÖ\16!\14¹$\97°¡Ú\14-s\10\1fY\1fH\90\8bP\8b)
+=\80ò\91\\99ª²Yfy\7f6}\86ÔmZUù\el_\99föRþ,ä\8bçc\,Jp#´ÝYãÛÀ1\99\1dË\92\88\ 2\83\86Ç!Ü/X2;?Å1çÎxR\82ä\bP\8cfw]\97×V)\14\18\87Wy3\15öZ.&ã1\18ôVßTÚ\8e\88Tãä\17\98È\82\97<\ f¬B\1anûòsY¸\ 2Q\81\e´(åÞ\ 6ѱs\87F©d\15Í\n&«zPgÙ\ 1¦i\90²\8aI-üʲËSó¢§\7f²I\1dF\1d\e|\1cätn>¸`óL´Ûô\2\8eƯ\1a\7fj ìlºì\7fÒ\euÌ¢\84F*Ç8;p\b¼áٽࢠ    í^.\9bü"ÀÖ('Æ\99\8eÇÚè\17\9cÕ¾¥A]YÐ5\87i\84T\v`\0\91\93×^
+çÙ¤}\8a\95öu\94µ,v\bß¡\1eã\91\9c Êø\9cr_æ#
+\8f\1ca\a\93÷YÄâ\82åK5y¯\9e?2\17_ÒÃúâB\8eíL>»\00ÌÈ\9d÷Ùв2\94T\ eÚ´,äöûS­]*\ 5ûZû\9eðÀúï7ÉWï\94M2M\18Jÿy9Åây\19û\82.ñî¸ý\9e©$\86\83\ 5\1c»®Ü3°ÁǼ\99²°\b\1dAÀ3í2\87ÆxÊKh\8cùx6tª\a3\ 1|ûæöå#\89\1d!XPq-c¥<JpFÖÝ&õçí ?\97jõlDCèrNÌI4§\90>Å_ïÌ[
+R\eì)<FjS\ 4\13u¬|vf{\93\93\98Z°(Ï\89ÝÓ\b£
+²]¢\vÇ\9fÌʯ¼Z´p[ç\9dý»7Á\9cÕ·5²?\97©\9dÒÐÚô"0]¹³ø¨ r\80{\18*\96\93\8a¥ý\15\17ö½(]öw¨ðg?Yá7öµV\19ö¶Lå{&'Þ\15\9f³\9bG\13\93¿\15Ó\7fBj;T\1f}jýy(Ü\86\94y51\9e\9c'\0cu1\ 4Þ<`\92\93ų\97S[s<Ëk3\9b@\\9e\92Ùì\8f\16iyëcJâ\82y>?¶ÛGT\10à\fØÄçØÍ;¥1Q[\0Õ=\1e;mts9\ 2\8a<ÓxÇi\1f_\88\8d9xqy$ìò¢      ä\f¯4r¨wìfc\83é[\1eßqó\1d=Pm\95ï"c\92\7f«G±íªôÅ\ 4ÌÜ\b\88\97ç\92×\99 \90ãÛ+Jç<dÈ\9c\9aÙÊëæ\85_zݼж\fzx¦þY¹ÍÙÒrË\ 4T\89Ææ\83\ e¦}\8cya¹ékÏ\7fNpo»Ó¨üÆ\9dSEø§5U\fþ\92ç\8d´vÌã\0Zýç*n\9bÈ;%¦ÝÅÞèÂMm\8b>\96X´Þ\11\12Í\17d\15ZºÐ\8e¤© m\18¿G·¹F¼å¢\95P£êØh\15N^O;jòé,ln\97Ï\ 4f\82wÍìÌtðË\ 2cÇ#\96Q\85*çF\17<÷-\17\1a¤\15ìµ\8a\85\ 4ýkÎAro\94\aäå\82\ 50{ª\1d\13lõ¹ØÀ2'FB'\17\ f`,ú¯\ 2[
+Mb\v\9d7,¤ÿû!t\99\97\18Á®*L¸iWý^jôÚat¦ßQ8ZêÌÍDG-;F\17tÔæZø\98\95\92?\95\8b\ eÞ\95\16\ f\8d\86 Ïâ\ 4×ÇÂÄÝT>.\16\89pV1Ì\94É*\97a«Ò¶2\9f:0½\ 2à¤:¨lh³\ f*%\19ÔºA[ïæ¢r`Ùýа5I{©\9e\e\rTmd\9eø9
+\16mQFëæ¬ëLusWÄî\fíª\9ab\17ë4\ 1²î%>\ f\rc\8c\9deS¶Dí \ 38iHc\98\96C"\89]:\88m\98ùL1\91\ 5\ 5Õã\16eìøðÁhC3\88vø,     Î:Õ/ÞX\1dd\11\1d¤Iÿ¦-¹6µåÇ|±³15kÜG}1\9d«c>ñ­\1e\13¥\97iw\9aG÷S&óZ{\9bmr×\fÇvlôn¡¾\89ç\Cq\98GyWYö,\v¦\1a*\fÖV«
+Ã?\8a\98\8aì'ÄÄ#>È£h\e>ۼ纽å\11Úgö\86ë¹¢Ð9\98©\15èÉ£\9cý\17ñùR{\ 3y\88jÖð,\96Ä_        ë\95\17gÉ#4¼¡'7¶ÿ³\19$vë±\9c<a»­0·H¬Q1!Ì\94\81¿lbóï{\85P[ú)st¹¦9§\91pî²\ e¥Í]X\ìë\9aú\90µ\r,[DøÌF-NyHXÜww§PÂÀPá\84\8b5\vê\951q\8e²Ï\ 5\1cB¦·îÑ")&Jî\17;\85§ú°\úóô\1d{΢Oq¡7\98¯\9fµ';3W¯o.#Pè2«\96\Éð\8c\94J\19×eò\85x"\9e\ 30<ã\13\L\1aû\ f\07Ìmüåt\88%\1d\9eD_BØ\85¦·\8f%2        \9eºª)\7fb\1c¢Eö?\1açBÊ\18\88bØá\19i\ 2ß×´®qQ\7f1@5ë¯ñz\8aô\17!4zdª©ß\85]\1e±\93\86\ 4~.^iáÿu|'üË\17\7f\87C\ e>ÿ©è\ 6\ 1G>×­\1c\9a\ 6\19rJkÙ!¤Y,Ë\1c\ 2\1aü!Ñ\98\97ÿ\88ÎÄU?¹tVQ×%»\8c½Tyåbê7gÎþ¬è¨Ï\82,m      'ÕÔ\e\94\13\92.\9d¨ºàL> £Ã\12\0ã¡8\8a\bTrïBS6*\9f±wÚó\88mèv6Þ/\922x¡dR\ 6fëµYì\80V¡k-\8c\96JÏ}\11Ùî\ 5C\´Ð°eg>;Àdìy\91Ü0U¨\v>³a\1e\1e\99!ÅfT 9+K\16\97û     M
+VÏB\85¼ Ñ\9fâN½7\97y\vÖÞxúU³csÉ\86G$\98\95Ï\17\8dåJìÍ/3÷\8dÚÅ"\88\ f\98>\11
+Dãv\ eË\85\82<4Ñ\98Î\9b\80`íܾÀyæl\[æ\0>\1a\vkû¶\a¼k\0\9aSiø%\8dMB!\16\89MB¬\99k\1e\9f\9dñ\fË_´·Å_È\95²þr\9e\r\1adª>Í\990\ f\97 ê^þ÷Æ\8b\90*_\19M\98ÿñ\84\11gÃëx\94\rîè«é r\91ÇCH\ 5»\17µÉ4\87¨þ´\8ap¹Åï\15\8aiLèÛÍ\8aêÍ\8dØ[é\ 5[(¨¯¿üû\98\13ýì¬\86Êüê§ì:{ÑÖ5\93ü§Ð\86\14NåùùysÜuÃö\8a4Y^E\7fÚ¦ëÑ'ãx\88¹¸º©\\85³¤¿«\ f'M\83QGó438Å\80­\9f\ 6ü\8fnwÚ³c\ eAX\96â÷ð\80©°%_\f\ 3\ e\ f¹¯¯eóûM\96¦\85É´Mé×ï?ù\1f\ 1\ 6\0W)Ý»\r
+endstream\rendobj\r7 0 obj<</Contents 9 0 R/Type/Page/Parent 102 0 R/Rotate 0/MediaBox[0 0 612.28302 790.866028]/CropBox[0 0 612.28302 790.866028]/Resources 8 0 R>>\rendobj\r8 0 obj<</Font<</F2 122 0 R/F3 121 0 R/F4 120 0 R/F6 118 0 R/F8 56 0 R/F10 71 0 R/F11 61 0 R/F12 65 0 R/F13 72 0 R/F14 80 0 R/F15 83 0 R>>/XObject<</Im1 14 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS1 113 0 R>>>>\rendobj\r9 0 obj<</Length 4318/Filter/FlateDecode>>stream\r
+hÞ\9cZÉrãF\12½ë+t\99\bpF\84Q\ePð­7\8fíðÒ¶\14¾´ú\0\92 \ 57\bÐ\0(Z\8e\89ù\8cùÞÉ\97YÅÅ-M8&\1cÑ\ 6\vµdåòòeB_üóV]oÆ«×wW_|\95_«ë»õ\95OË<7×\19ý\17\1e\9dO3gܵ*ò´4>¿¾Û^e<aØÐÃÝ\12ÿ\1c®>$M7ÕCµ\9c\9a¾\egs£UZ&\8bz:Ôu\87\9f6uÉ×ßã\8dr©Iî\93ÙÇ»oé`eäd¥R\9d\17\96ö½{{\95\f³»_ñRËËÔ¹L\85Wÿ\ e¯²°.ÍH¾ð.\vïTXfËÒ\85W_^.£Ã\\1e^\15VÞå\9fïø!¹\81Ä:-\92Ûýn×ÖÛº\9bªá   7*R\9b|ÕlöC\8d_&õÉ­}}?»á\8bÍ\15]¸4æz®Rå}!\9b-ûnÝ\fÛ¦ÛÌæÚ*RIß-i¹6\8e\96W\9bªéð#Oódz¨&<\ez\96Ñ"é÷\ 3\1e,\r­\87j[\1fúá\13¿¡\81ÝP¯\1aÖ>o\9dTËå\9eÌÑÔ#Ës÷w:¾\12Q-é¿ë'1E\9eT\18Ót\99ñ¡®\a\8c\964J¢\8eõoû\9aå3ÊCÖ5\9e
+z\9a\1ej1q\91tûí\82\16§)ëº\9aH5c\1a_Ý6Û¦­\86öéæ$Ðz?ÐV´Úæ9­©\7f\9fênä+XW\92\9d\8e\1a³2\1aÜö«ºÅ\ f\95,\9eð¾ û4ݲÝ\87¥¹\vÂÊÒ\9f\7fx5¿­\7f\9b/ª±^\9dÎÞÔ\1d.A\935\1d\ee¹ÉuÒÖ\8fu\v\8bT\91®û-=\93D:ùà²\8f<\87\87ø´Ý·SóX\rM5\85=óäëfµb×'¡óäûjøÔ?\9eNÿ\1e\97\b"Í-9\8bN\96\ ftN5ÁØ6Ã\9dÆ\89\eåWA'«\e§?â§§\9f"\94ÍJz&\8d¼ûáÍ\8foßÉ\80¡¹æãé¬U³bu\91\11ØìÐÜØlºfÝ,«nj¡DºF\994ÛÝÐ?ÖòóÒ¥0b¢S±Ö\1d-ø,\8aÉ%èöêÅ(ÎíóQ\9c\96\7fÄp¡âªBÿ)\86­³\11\15ªn\85\97síRE÷¸\fÉU5q\0dä3gA1>ô\87î~\96F¼º«>±1   ¦T2õ\9b\1a~{#Ábá\9d#\87INÖ O"w\18ãNMGJ\14¿ ×*\ 46ÞùäÍë÷çáIrÎ\9dFô1R:m%d\9dƾբųÉè|þ?GÌ®eÐpÚ\93\v\8dm³y`\83:\ 2$E\8e!ËáMt.æ\19\Àe\7fÃ0\19\8bãÄ\19\1d\82ú(\8b8s@\13\84HÄ ·?¼ÂPFÖ\1fê]\8b«\85Y\86d\9c\9a\bnpz¾\906p×q¿ÙÔã$°ç\8fèVÒ6Ay²çtèe\9c\9eÎ\94\ 39óL#\1c\ 3²à·¥ß\84T\93è \84êvÕ05U\v%Ä÷ÛsàÎ3h¦éÖý°\r²c\9e î\196\1d\1eØà\ 6[üÚ7\12'\86.S&Ëj\a   V7<\90Ô\9d\98Æ\10\18a{ÓÚâ,\8a\b\v%ZB°Ðås\9ds.\r\8fð\8a¬,)^r\9fZc9Û~Hî\1eH)9ùÙÐï7\ fØ\18N\17pÐØ\8c\14]µOc\ 3\9f³\8a-óXW\f`F°|»\98Í=é½éª\98 \rÃ+\ 4Ê\10\11Zi%\11ñÐ\8c\13´¢2º\r\fã\11\0tZ3\9bÃ.ë`sÚD\970àC5,ú¡\91%E\ 2ó\97
+¨Ø³ÁKh\10æÓ>Ä
+\ 6á-b\ 4ìJjcS\9cÄÉ\b*X\9cjA\97G®Ý#lÈS½ø Ý\9bÜòè\83t8Ò\11#8B\84\ 6\b\18á\8c¢ó\17   \ eòaærzOæ#XS¢ó¯k
+\1d\8eg²².,\1d{\98\8fÜ\92\8f3\r/oV4\91$\91i!Ua\92O¾«Æ\99¢Ä
+\9f¦T¢¡Å\99ÂÕa9\9d\ 3\ f\16\98£\91\84\10,9ìÅñT\80\1e\10@@\b\8alÞ=DTnÉË\9b\99\ 2¢\ f\87\ 6;z
+\17!\1e\f¥\80¸"\ f\ 6\9d\80\9fÍ8×\90²år°¢-\1dm\ 4®6SH\9dÌØl\898\ 5\ eÑî\ eJp\19ÒxP\82-=\8cF?:HO±Þ>ý1S`"@\9cÌÁQxªÂ=\10±3"\11êô\96\92\rD@\1a%\ 4V$ʲ\16YhzØô,]\a-ã*`cÍ\1aÑh!ÚØ@Ç\14ã8\8a\92غ©q\94¡Õ4#¿Ô:\87\b\1c\92B\96Æ \8e±\84[$j/>E<lù@[\96ÐÄc\1dO©x"\90\8c¦î!\ 4\99n\9cÄt\95\88EñUµ\12t\1a\f\rºv        Å>N7â\9b\10\9at¼XàR\9eÈ\10n\90ð\ 6¹Ä÷ÉW\8caª¶\bH'Ð&ëuÉT\14 ´\87\1e <à/¦\ 3)\ fx\8b\9b\10¹\90\95D1 *å\83\86y9b\9b\10\15Û\91ëʾdCámð\90W-î\96\10\ 4\91º\ 2ü\18¦\8dÇ+lkÞ\93L\11\14Ã<3\aî3!ÌáJëç\Á\14\10åyW0\ eZ`PË\1ds\17H0É¢\92\0ý\96I½d÷.\13\ 6hæsÕcÅ\16$mV\v¬bxÎ\91\ 6×ÌÚ\1c²å1:oιÒ\1aZ$~Åñ\8f\ 1Ä\98üU»Ý \8eÑ\93\8fàPr\11D&S¼%ò«f^´\0\ 28²Ü\16ú hm!;=<q\90;\ eA\80\ 2ÉA·~¬Ù8%\80:\84 ¼CR\86\ 2´\83æ\9a\11ú\ 5á«S\1cª¸\0\19fLPÆóÜ%>U`óMÝsxÔ"É44\12ÐK\9aàa!\ 2\84ô0±B)ª\9b\82I\8c\87Ó7,\97Jvý(\91\89{\18\8f\1e8ª8G;ã)\7f÷í^\10\81¡\9d\r\1c6ô Ib=8=Ì      »\96\1c¿\8c)´%$\10\809f\ 5åuÈ
+\rÇ;Ü¢á\90 <\81\99\18\12\9fõ4ÍX=R,\91 æä4B^2\88òÁ:l©\93\8fP¯Ê(ï²ò3\98t\17"®'×TÌÎñ\8aE_Õ;\1e#tZñ|    u­$\e\b`Õ2`Pä \9ejv+böeD\83wwW¿]YhÇjNPTm§%UÜ\\82Ûkà\90ÊÜõr{õÅ7[uý¶¿úI\8a÷À¯i¯"\93¥á1\16ï\bsJo^R[,Z-Wu*Å\13nt»|¨A\89\96RcX$W²\13\88\13$\ e\85À\915ZuLç\96£\9f           Ó?ËP#5ª\98\97+U«A)8\87Y\ e2\10\13P\92^\0r`ø\94Y\916q9Â1±ë\ f\*rÉs\12à¼lR°ñ©ò¼`[\14.\99Ïb)q\9f¼º\9fqU\10Çá^D<Ž.T\91\ 3Ø[*/§¡âÄ\89\0èDI¤
+rѵü(\836²âB\e¦ô\E\86\8a\1dúÎ2\1aa\1ac\15ôy¢1è\83°ûX)5\ 2¡¶\99Ô[wýÏ7²\9e2v»¯ãÁtRM\17biË â\8cU\1cÔ#ù©\13eÚ¨$Ì\ 2Þ£\1cdÂh3XòX×yÑ\9d3i\96\15±¬[_\96ad\9bÂ\97ìváÑ\120(\93\97Äg)®¼+àw\89²Ï}Ô\92\97[\ 2¸k.\8f
+bd\98|\13롱
+¤¤*ÇÓ\1c\85¶Ó\87$Mg(Ï£\9dO\1d!¢Ña27¨âfþX6fæü*\9f_\80\19
+âåâ\ 2\9dlc^\8c60P\95]Þäñ\0d\93 .\16OÂÔ(¿\95ª4\97\9e·\19ªUÃà`
+Ãl»m\19l\v\89ÈåTu\9b\1ealS\00\ fõPG\bþmOT\ 4\f\b+r\90sÉw\1eì¡FÒb`¥\8cD^ÑOܸ)l(ïä\88\8aÑ\9böRÂ\1dlòi\81!8ý\81îÒ\1f$·SäÕhù\89pÈ^Ìox^#\99\ 3\ 4ýîöVv\86WIA]\0cï8Ey},\98%T
+ÃÂìö!ÏÛX {\94»äÈCó{L\ eL\r
+x?WëgiÂ\ 4æ{\9f,úiâî\8dwD\ 2Ö\13ús\9ch,
+<V\9c÷'Ð\90ôdO\r \8f¬'}3ÎNu·¤¸æ+£jA\ 3Ê\94\0\b"\ e \fl8\ f¾³ìÛ~À\16%8å@V\93\ez\90õÐR*5]\ fÈ\b!4Ù^\9a¥\9c!9¯ò0©8åɤ\ 1Rç(ãGÃ{Ç\ 5µ¬Ä8\9dµê·Í\1f\92£3á\8dý°
+ççg[WgJ\v.\98ìêa»\9f¤\1ec\87·Ç8W¥\ f\81óþ"\16Ò\ 2\899tL¥F)8Ý\12ªMRÕ\84\ eB\ 1Ï"\1cm:é\13pßélÅ$M\82¼àò?\95ºÉ\88·è\9c!ö´¸È0\v/\80t\9c«\vÐñý(µTÁ½\1a©Ë¬,\94]
+x9Þ\97 -\\9e\15R±®¤0Ã\ f"Ôá\14ú¡²ùºoW±h[\ e=çÿ\ 2\96~¬Úf%\99\ 1\19¿Kå\85M^A6\ e7 =-ÍÂx\b·ñX?EÆàþæ\176\a!}Á\9d\91Qº¸¦ª4U¹7×\9a\£´Fÿ/@\8dI_#þ|Y\b
+±Ís$\87\17O)H_\ 4\9c\1a\1d\93\859á~ÆpK\1axþ8òg­\9d¾8.\13\80\96`c\93W¿]À\83\9c\e\9eU'\8fD\8a\1aé\ 3\eî\ 3/j\19§RlDfbGvåÙ\1d\84àò\94\93\17kÅ#P\ 6à#â­\96\9f¤§;\126\ e\9c#ñÒ\87î-7­\9eÝ\96\1d\11Ãùå\96\87\87f
+ÕD~Ü\14ñI|_@-÷1ýKí£\93C5ʾ6\ 6j\ e8\13\19çB4ÝZT\91I\K² \༾Ì\15\97\r8'T;6àÊÐ\8e×|\ 5Á{®x\87Q<ÑIDºcC\1f\15\87\8a\11è\90<$º¸H       \9d\as99ú²³\\8cÆî°vÌ\99¸rñTEWí^\12 &\1aJ#\13¢ÁiÎhã\ ed\9cO\14ÔC9¥qJ3È
+\8f>g=4èáI\81)ý=,AiS\8dûAv\97\92V Hº8\91éøé'\15
+\18Æ.\94{\9f¼fgÉ@\97Þ Þç\1cè3\ 5î%×1\19\a\95_É}\1av\88\95´ÀÐq\19ØÏ2Ø\12\ 1>ÿþö\9dl\8b\90¯B\ fM>Âd(§Öû.~Å)\8bøE%Ó¢\90Ø8\eê;­\86æ\8f\12TaW\81brRÇÚ\9c\ elûÍ\vÁ\8e´\94\17\99¿\ 6Øeʪ¿\18îÈvEiòk¸\10q\a\7f\8cw°F!mæH´\8e\1fôÚË|aË¢\8cùâ~\16õì\ 3[ÉP\0\9c%T¨ÖE¤6Ì\9dÙñFùå\ 4\ 3Dë(äÄ¿\82Öj!\ 6\9e48Ù\85\91\ 5ÓM       Ö±<ÙøXï¤\92\8dËHWà¢\15\95ëÕ\86\7fÂ5Ŧ\9cXÑÊ\18ãvä\86ý ^â\81v\f\ 1%\9c\97
\86OEÐ\80¸ßDÚ\11\ 4÷0\1eyl³Ýoe¹\93ø\ 3\a\ 1\vú=¼)
+Æós\ 1VCuè\84u\98³3WÕø ²¸p(wxJ4l_Eâ@\17£\92\87[X\9e\9b'4íÔT\18\90Ä\ 4\8&+\89Ô\93\ 6\0       &!\fxd|0\8c0Â}G\89D}\8e\1d@\85:Fh¨\81Ͼ\a\13þd:\7fÞ}\8a\©è>áS\ 2¥\aFYlWD\ 6ำp\84\14\93Ö<\0Ê\9d·æ1\84¸\16b&ø\15\1a¹`«D\9f\0Thc\88o\8a\1a
+i\8c×m*\87ùHTÔ%#\842¼|Ð\bÊ;!óñs\ 6{)º\14¹).Xl¤3\99\84\aZËÅ%ò~F¨\86pÇâ¼ú\80\12ÊÏ@\9fï×Ö¤\9bU*\9d&\v¤ú\ fÃ\14\ 1~ò^´$
+E\99Nn2îGÑù\vÀÌiü¯\ 3\a\95\97¢½\90\8f\8e½  Ùßq7\9a\ 1\9etï|,ðÆXãóØEì\8fÛ¾\9f\1ed¹âæ[Ëêå´´Â\87èé)6ëF\12[\80ÕB¼]ÛO©¼Sò)WÞ\94Ϲ\94Ðt<\17G\ f\É|s$\99Üë\1cëeß­æÜ°\eV|\1c\aÍÙ\9fVHÓ\7f\8c¹ïø\a\16¸B.ß\13Y,\80ÿñëâçèo\89\11+M\ fÚd\94ûJFñD¿P¡\83\18\12\87¾Ö\9a¤ô>|!¹\11GwÉ\eæy$\81\14\vÞó\8f\17è¬&ÃfäÞ\7fåtþ²\99[÷ÌéL&Þβ\84]Õq©Ö­BqM\80V^Â=KÄõþgÌW#§\9164Íδ9ÉC\80ä^ª÷©\8eõø^¤ñ\a\ f&\93&Á?.\91Ê\91ò"R\ 5ëä\9e¹À;f\8d þÇ\10\v\81QJÅ\16ÿ|\83\84\98.Tò¾®\86\91gæJ\80©\8d1\95k.<ëõºYr\13A!âÇP\90\94É\8f(Ck\99h%\vÄ/M§ÏÔØö,þþ\®ÜH=§¤~fÈe/\88\19\ 6ð\94£\8dñ\14\8b·x\ eóßós\98nF\82K&ðê\82à&\8b\86"bê\87\8bö\8d!ÚRÄ6ÞÓ\9fþÂàÄ+â_\18øÓ\1fõDLøý%\13\ 5:HÅ$]é\12,V}ó%)SQ53ã¯\9c_üÚï\87®jÓÝrѤ<è\13:\ 3\r\91\94¥-\14m\81¯z\9eÎç­~â\1eÍ\84 ¯¤¿\89\ fÅVpD
+\99ÓßÒ\18\14\9fò½S£\ 3øó9\86\1aþÈ\7fw"·óxà\1cM\87"\9eøþ»\1foå3Q\91¼é·»PÝs¢×@æ×\r\ 6\7fÖÁ4ä_øF\87û\1c\ e\87\94°n\\8a#ÑÒ\ 5ÍLû\81\84¤\1c\8cd`gó2/\91]¿­º}øÓ(@\93&R\89ïy aÇ\r\7féÛý\16]G\ f\9eF\1c\93¿*ò\ 4ËÌö\9bqä¦f\89\86\92\92eê´¾V¢âØ0ÿ¯\0\ 3\0¹ à\16\r
+endstream\rendobj\r10 0 obj<</Type/Encoding/Differences[46/period]>>\rendobj\r11 0 obj<</Length 214/Filter/FlateDecode>>stream\r
+hÞTP»nÃ0\fÜõ\15\1cSt\90mt4¼ä\ 1\ 3µ\9b]\91hW@M      ´<øï+)N\82\f<\80G\1eîH¹o\ f\0ò\8b\9dî0À`É0Îna\8dpÁÑ\12\94\15\18«ÃÖeÔ\93ò £¸[ç\80SK\83\83º\16ò;\ eçÀ+ìNåÛkñ\ 2ò\93\r²¥\11v}ùs\8eD·xÿ\87\13R\80\ 2\9a\ 6\f\ eBîß\95ÿP\13\82̺\aÙ¯\1e¡Ê}¹Y;\83³W\1a\88PWØ\\ 1É<Ïn\8aË \7f\15\8bëfQTÇFÄÝ\8dMªtÌ=\81^\98c¸|q\8e\90Ì-áý)Þùä\95\v0\0fdi`\r
+endstream\rendobj\r12 0 obj<</Length 117/Filter/FlateDecode/Subtype/Type1C>>stream\r
+hÞbd`ad`dd\14ò\rðò\rðÑvL)\v0q6q5µ\ 4\89\8aþ\90æ\11ËùÝ÷«æg\13ëyþ+\82Ýßy\85@\12ÜHê\80\80\91\81\9f\81\99\91\91IH\8bïû¢ï³¾ÿ\17mXñ»Ärj.+\88\1fr@tEñâ¼¼ââ¼¼ÅÅ+V,^¼B\8e\ f À\0ªÅ'c\r
+endstream\rendobj\r13 0 obj<</Type/FontDescriptor/FontFile3 12 0 R/FontBBox[-31 -250 1000 750]/FontName/MPJMPL+AdvP4C4E59/Flags 6/StemV 0/CapHeight 677/XHeight 431/Ascent 694/Descent -206/ItalicAngle 0/CharSet(/space/period)>>\rendobj\r14 0 obj<</Length 409790/Filter/FlateDecode/Width 2032/Height 1612/BitsPerComponent 8/ColorSpace/DeviceRGB/Type/XObject/Subtype/Image>>stream\r
+hÞìÛO«+ÇÁ'àû\11Älf\98Í+È:AÙ½\8c\rÖÖÆ\ 3zg\166Yi\93\90¥ !Û\83\8d÷\8d?\80£\ fp\rZ_o´t6\83\fáÞ\85!Èp `\b4'\v\83Áp¦¸\8d\8bvWÿÓ¿sԭ硸Ü#u\97ZUÝ­î_U?>\ 2\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0p6»ÝîE\83étª}\0\0\0ÆêîîîÅ     æo-\97Ëõz½ßïµ'\0À¥\85\96˳ív«\89\0\0\0FéÄ<¿"Ü]Jõ\ 1\0.'ÏóÉdÒ~=¦\95\0\0\0Fé¼y~\10n0×ëµ\86\ 5\0¸\84p¡Õy=\96ç¹\86\ 2\0\0\18\9f³çù\ 5\91>\0À%ÌçóÎ+±,Ë4\14\0\0Àø\(Ï\ f¶Û­æ\ 5\08£ý~ßç2l:\9dj+\0\0\80ñ¹\\9eïF\12\0à¼V«\95\99\15\0\0\07«)Ï\9fN§ó.\9d7\92ëõZ\v\ 3\0\9cK¸Bë\99ç/\97\ 5\0\002My~x½ÏêÛív6\9b5ÝH.\16\v-\f\0p\16\9bÍæ \87%ó<×h\0\0\0crb\9e\1f\84[ŦH\7f:\9dja\0\80³X,\16µW\MWbY\96i4\0\0\8019=Ï\7fl\9d\85\ 1\0N\97çyíµÖd2Ùï÷fV\0\0\0Ü\82³äù\81<\1f\0àr²,«½ÖZ­Váݦ)úÛíVÓ\ 1\0\0\8cÆEóüÉd¢\85\ 1\0\94Øïv»ðîz½®}w¹\j:\0\0\80Ñ8K\9e\1fn$k+Y,\16Z\18\0àDM×ZÓé´X Ïó¦\87%Ã[\1a\10\0\0`\1cÎ\92ç/\97ËÚJÖëµ\16\ 6\08QÓµV\96e\a-\ 3\0\0À \9d\9eç7Õ\10'\8c\ 1\0p\8aÉdR{¹µßïã2ÛíÖ%\19\0\0À¸5¥ñËårÛj½^¯V«p\87Øôp÷f³Ñ¼\0\0'
+\17]µ×Zóù¼²dÓ\85Y¸rÓ\8c\0\0\0\94ç\9fh¹\j[\0\80ÓÍçóÚË­õz]Y²e\9e\86f\ 4\0\0\18\81Käù¡N\r\v\0pºý~ßtÅ\95çù)\v\ 3\0\008çÍó'\93I:U\f\0\80ã\1c:å¾i2\7f\96e\1a\13\0\0`è.1?\7f±Xì÷{m\v\0p¢étZ{¹µÙlj\97_¯×µË\87z4&\0\0ÀÐ]"Ï7\r\f\0àtÛí¶é\89ȦUò<\ fïÖ®\15jÓ¤\0\0\0\83v¹<?\b\95ka\0\80ã,\97ËÚK¬ÕjuÄZáuM
+\0\00hMyþ|>¿k\15n$Ã2³Ù¬=Òoz\18\1c\0\80\16y\9e7]_ív»\96\15\9b\a¡N\r\v\0\00\My~ÿ©õáÆ0,Üôd÷t:ÕÈ\0\0\87Z¯×g\7fv2Ô©a\ 1\0\0\86ëô<¿°ÛíÜ9\ 2\0\9cKçS\90G\bujX\0\0\80á:W\9eßRÕb±ÐÎ\0\0ýµÌ\948Q¨Yó\ 2\0\0\fÔ\19óüý~_[Õt:ÕÎ\0\0ý­V«\våùËåRó\ 2\0\0\fÔ\19óü éÎQ;\ 3\0ô7\99L.\94ç\87\9aó<×Â\0\0\0C$Ï\a\0¸*ëõúÅ%\85ú52\0\0À\10\9d1Ïßívò|\0\80\13-\16\8bÚ\vªét:?DX¾¶\9eÙl¦\91\ 1\0\0\86è\8cy~Ó½g¸\9dÔÎ\0\0}ì÷û¦       \12\9bÍæ ªZæZ\84·45\0\0Àà\9c+Ïϲ¬é\86qµZig\0\80>\9a®©&\93É\11µ5MÑ_.\97\9a\1a\0\0`pNÌó·Ûíz½\9eÏç/\9a\99\0\ 6\0ÐÓy\13ø\96Ñ\81<ϵ6\0\0À°4åùç2\9fÏ52\0@\1fÛíö¼\13$ò<oªp½^kp\0\0\80a¹t\9eor>\0@OËå²ö\82j:\9d\1e]çb±¨­s6\9bip\0\0\80a¹h\9e\1f*×Â\0\0}äy>\99LÎ~MµÙlÌ»\0\0\0\18\87ËåùËåRó\ 2\0ô´^¯\9b.«öûý)57\r\13¸Z\ 3\0\0\18\96Käùá\9e1Ë2m\v\0Ðßl6«½²
\9fXójµjºfËó\Ë\ 3\0\0\fÅyóüpW\18n\18O\9cB\ 6\0pkò<\9f7Øl6'V¾Ûí\9a*ßn·\1a\1f\0\0`(Öëõü\ 4«Õêî­,Ë­¢ö\ 4\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\0\0\0\0\0\0\0\0\0 §\87\87\a\8d\0\0\0\0\0\0Wîó,ûòåKí\0\0\0\0\0\0×ìÍë׿ú\8fég\9f|ª)\0\0\0\0\0à\9a½÷λ¿ú\8fé\87ï\7fðæõk­\ 1\ 35cu\7f\7fÿÕ«WÚ\ 1\0\0\0\80\16\7fýâ\8b_ýÇ´(\9fgÙÃÃ\836\81«õáû\1fx f¬Þ{çÝp\12Ö\ e\0\0\0\04¹¿¿\8fy~(ï½ó®9¢pµ¾|ù²x &\1c¹Zcd>ϲй¿ûècãª\0\0\0\04ùÝG\1f\97#ý"PúÛ×_k\19¸6\ f\ f\ fÅAúÛ_ÿæ¯_|¡AÆ$\8e®\86ÎýòåK\r\ 2\0\0\0\98ñ\9b\16©>\¡?þþ\ fñ ýðý\ fÞ¼~­MF#thù\fì)\f\0\0\0\80\91ùêÕ«ß}ôq,\9fgÙ¡å³O>­Íó¥úp!á \8bÇì¡3±Ã!_9Hÿò§?\v~¯Ä\9bׯË'äCWOGWîòðð a\ 1\0\0\0Æáó,kIãÏU>|ÿ\83CSG Éï>ú8\1e\10>tõßþú7\95#4¼\12ê\11ü>»¿}ýu¹_\ e]=ô`zúÕ¹\0\0\0\0£ñ4y~\8c\95L\16\85Ó\9d\98çÿåO\7fn:B\ 5¿ÏëÄ<?øãïÿ s\ 1\0\0\0Æê)óüß}ô±Yúpº\13óüJh\9c\ 6¿\7fùÓ\9fïïïµóÓ;=ÏÿêÕ«ÎAU\9d\v\0\0\00P\7fýâ\8bJä~Dé\9c\96/\1e\843*\1ftáÿ\9fgÙ¡¥ç\0ÜW¯^ií§ôåË\97å.8¢g{vî\1f\7fÿ\a\9d\v\0\0\008§O\a½¿¿oIò?ϲ\87\87\aí\fgÔ9\88vÆòÙ'\9fjð'ó\94\ fL\85óó_¿øB\9b\ 3\0\0\0\fÈéy~e\86¿$\1f.í   òü÷Þy7\1cÚ\ eá'ö4y~èÜ/_¾Ô¹\0\0\0\0\83sz\9eÿÞ;ïVÂ"I>\ÔEóüPù\97/_jägqé<?tn8çkg\0\0\0\80\81:1Ï\7fóúuyõ?þþ\ f÷÷÷Z\15\9cç¿÷λáÏ\83Êo\7fý\eaïuª<îth϶\fôè\\0\0\0\80\1181Ïÿì\93Oc¨øÕ«WÚ\13\9e@9¶ý<Ë\ eZ÷ááAØ{µN<!ßßßë\\0\0\0\80\11;1>zï\9dwÃZ\7fùÓ\9f\1f\1e\1e4&<\8dSòü/_¾,\1fòá\10\ e¯hÒ+qâ      9ì\f\95Î5Ì
+\0\0\00&§ÄG_½zõÛ_ÿF\18\b\94<ÿÃ÷?(¯k$îª\9ce\80õ¸\1d\ 3\0\0\0\80ëwJ|ôy\96½yýZ\eÂ\13;:Ï¿¿¿/Öúðý\ f\1c¼Wè\94\13rèÐb­°{\84\8eÖ\98\0\0\0\0ãsâtPàé\1d\9dç\87\85Ã*\9f}ò©6¼N§\9c\90ÿò§?\9b\96\ f\0\0\00nò|\18\9c£óü\ fßÿà«W¯4àÕ:å\84üÞ;ï\86Õµ!\0\0\0À\88Éóap\8eÎóß¼~­õ®ÙÑ'äû·4 \0\0\0À¸Éóap\8eÎó¹rNÈ\0\0\0\0´\10\1fÁàÈóÇÊ      \19\0\0\0\80\16â#\18\1cyþX9!\ 3\0\0\0ÐB|\ 4\83\1f+'d\0\0\0\0Z\88\8f`päùcå\84\f\0\0\0@\vñ\11\f\8e<\7f¬\9c\90\ 1\0\0\0h!>\82Á\91ç\8f\95\132\0\0\0\0-ÄG08òü±rB\ 6\0\0\0 \85ø\b\ 6G\9e?VNÈ\0\0\0\0´\10\1fÁàÈóÇÊ    \19\0\0\0\80\16â#\18\1cyþX9!\ 3\0\0\0ÐB|\ 4\83\1f+'d\0\0\0\0Z\88\8f`päùcå\84\f\0\0\0@\vñ\11\f\8e<\7f¬\9c\90\ 1\0\0\0®ÄÝÝÝ\8b·¶Ûíõl\95øèP¡û\8a~\f\1dª5x\16òü±rB\ 6\0\0\0nÙ~¿ß6Ëó¼iÅÍfs÷Öz½\ e\95t~Ðn·+\96ϲ,ü¿v\19yþÑBOµôcK\aõé\97Ê\ e\13\96,Viê&y>ÏN\9e?Vò|\0\0\0à\96Å\b½Vm`»Ùl¦ÓieÉÕjÕô\11»Ýn>\9fW\96\ f¯¤\83\ 5òü£Å\b½Vm®Þ¿_
+áõårYY>ì       é(\80<\9fg'Ï\1f+y>\0\0\0pËÒD·=Ï_¯×åì7\98L&Å\9fËå2­\7f·ÛÅ\ 5f³YX>\8e\ 5\84?+ѱ<ÿhíã2i®~P¿<¾\róÃë1Ã\ fËÇ?C=\95H_\9eϳ\93ç\8f\95<\1f\0\0\0¸eE\9eß3wÝív1òÝï÷Å\8bå¤w½^\97\97\ fo\15)ñd2)Gôq\9awe\b@\9e\7f´¢éBoöYøÐ~      \16\8bEñVV\8aFãàN¨­¼°<\9fg'Ï\1f+y>\0\0\0\8aÜu³ÙôY8Næ¯ÌÇÎó¼\98ì]Éuc>\9f%yZ¬*\8e\v<Êó\13ëõ:´I¹\89Ú»fµZõ©öÐ~\89ùüb±hªª<\94#ÏçÙÉóÇJ\9e\ f\0\0\0ܬ<Ïûççûý¾iòv°Z­Ò¨¿\98\ 4^  ù\v\9bÍ&\8d\94kóüíÏ\ eúja3\8aµÂw<±\95\9e1>*Òõ>ß½xD¢g~~h¿ÄyûéÈBÜ\85ÊQ\7fm\9e\7f\\8f\84O,Öê3¨\ 1\91<\7f¬äù\0\0\0ÀÍ\8a¹k\9f\85³,k\99Ì\9fF¸»Ý®x¥iÒxñî|>\8f¯\94óü<ÏÃ\8aÅ´ÿBø\7fX M\83ãG\17o\85eÊk\15\ 3\10§¤ú\83Èóû\8fË\1cÑ/E{Îf³\96\8d,ïE\95\9d!ì9Å\bB¹Gjóùò\ e\16þ­¬\15>¨ò`\b4\91ç\8f\95<\1f\0\0\0¸Yëõºi\9evj±X\94cóT%\anÏÿ\1fërà\98ç\87U\8a       ç©ðze\ 3bzܲÖd29:
+¾þ<?>:Ñg\12û¡ýÒ\99ÿ§OU\94óü8·¿O\8f\15\84\9dÖ\91K'yþXÉó\ 1\0\0\80\9bU$±\93ÉdþÖb±\b¯4åÞEÌ\e\16nª­\98M\1dgqÇ\98·©Â\98ÙÆ|>®RTU\9e\8d¿Ùlâ¬ûJ°\1cÓã"Ì\ fß"ÆÚá£c:Ý4½¼Óõçù±\ 5æ?\v\14×\1fÚ/±ò¬!\14-F\85Ê\ 3\ 4q\95¢\1f+=\12Ç\Ò\1e)÷cø7~ñ°zèô8\10ÐgØ\82\e\1f+y>\0Àà\84ÛÀí/\9d¥ÚpǺM\1c\18ê   wµáF8¦\añþ:Ü\876ÝY×
+\9f\1en\9cÃ-pyªa\11¹´\84-íM\17V\f«Ç<$V\18¶Í\ 3ì\15\95\9d¡i2êYv¶gü\8ea\1f»ûY9l9ñ@\0\86¢i\16tøih\9a;\1d§ß§*óºÓé÷\15é¼îøJí4ìp:\8a?aåSSL\8f\83ð\8dÒ\ f\8a¿¤ÇMí¾þ<?&ê\15Óé4½ö8´_Ònª(ÏÆ?±GZ\9eÂ\bb¤_['\94ÉóÇJ\9e\ f\008\95\9c¼ånô ñÙó²Cï\16C%娼ÿ\9duE¸\81\8dw¬-jÃ\96Zᶺ<(вmÏ\98-_\9b\9c±eÊ)Ç\19÷á\83ÜÝÝ¥ûjü\8e\95£,æ3Àø\94\aõ\8a1ßò\80oåWæ)óü¦O\89Áuy\8a~<¯\86\1d~Ýï÷§LÑ¿þ<?\Z\94ûq±X\94\95Ìü)óüC{¤óg·\98ð_~¦\ 3jÉóÇJ\9e\ f\008\17Êókãîp\13Ú¿\86¦)\8eµZF
+Âýi\9fì½eúbE\9f¡\81²rBrËF\9cç×\8e^\1d\94ç\87\9dd^rÜ|Wà:í÷ûÅb\11ÇyËo=e\9eßtb  ¿\92éfÄójËÏküm=¢M®?ϯm¨òÃ\ eåÇ\19\9e2Ï?´Gjw¼²xUc\ 6\ 2íäùc%Ï\a\0\18\9cKäù»Ý®)Üî\9cK_8(Ìo¹Ã=4Ìï\8cô\8fØ0\8f±\17F\9cçÇÉ\8dGçù&ðà¤g\9bþÇl<ÌË?1O\99ç·\9c\1c\93S§äÀO\13\1f\1dúcݧ\1fc{\96\7fÙ\9f2Ï?´G:÷±paæ§\87>äùc%Ï\a\0\18\9cKäù-3Øû$ÛM\81Él6+f/\97\9fyoÏáËSéÊâDè¦í,ϻ묭¼m§¤\ 4ã6Ö<?ì*és(ÅΰÛíj\8f2y>\fÔ)y~LMÓ\1c¸eît1\\18~b\8a?ãÏPí\8fÔciÐ9ÏóÊ*-gÝ4\8eî\93\1e÷©¹Épóüø8C¹×\ eí\97ؼMó\aÂë\95Y\10G÷Hg\9eß§fx\94ç\8f\97<\1f\0`p.\91ç7MW.¢Î\182ôߤÅbQ¹GÞívéb\95H$|P\9aü\87ÛÕÊ\ 6\84\9båt\83Óq\87Ú\87\ eBýY\96\95+\fÿ\ f·áµ#\ e1ݽMcÍóÓOO;:ì\12w%éw\97çÃ-H\93ÕÎyÝ\95U:#ô´Â[Îó[¾ì)¿AG4re\95ÎæM+\94çóìäùc%Ï\a\0\18\9c³çùiî]        ·\9bf£Ei\98ß\7fãËQj\1a´f\rw\1f\1fþìü¬°LSD¿ßïÓ1\82\96»é[p;yþé\87¡P\ 5F)ýQ\8b\ 1lí¯Iü=\8dç\84xÂiú9+~ËÊ?7}R÷b­ø\14Àc¿\8c7|\91£Oz#ÈóË×       GôKû\15NÚ¶\aõHy\9a\15HØæ³ÿ.3Jòü±\92ç\ 3\0\fÎÙóüøPy\f½ã\rfg>ÿX\97\8e¶Ü`¦c\aåÁ\82\18bôùjñ~6*?\11\10þ\7fè|ûÚùü\95§\fÚ\85ûñmIü¸PIøjó\9f\85ÿWª-\9e\11\b\1dQ,°Z­6\9bM\9fO\fõ\84\15Ãò±òPIh\99þO\16´lÛAÝ\1aV\fûIQIøOø³e\eú'êEË\94¿`gåíûj\90î9±Ëb¢\12ê/wel\93ð\9fâ\95ÙlVy<¤ÒéÀÐ¥á|ùÅp^JW©\8dâÓì=ª\8d|c%MQsí6ĪZ~²[¶¤Ó óü4\9c?¢_j³÷B\9ccPþ\88£{¤i\96B\9f-\812yþXÉó\ 1\0\ 6çìy~e¢ûr¹\¯×\95\8fh¹gL³Ùö,zþKíy~Ëçîv»JUå(5­*|¯Î¦¨\fm\1c:ïºÒ\14Å}ýjµzQ'~ñð\9fJ\17ÄÕ[¾þ~¿O·¶²z{ú\11*oª¡È\88úäùE/4mÃl6«]«O\9e\1f6¯©é
+Óé´ç¨Gô¢KÜÚ¦é÷é~å\99\ e\18«\98\9aVÆé\8a\87¹Ây»r\8a\ e\7f\16o\85\7f˯Ç3mz>\8c\1fQ\1eä\8dç\99J=éZå
+ËçÕÚ\81ÅXíqÏ\13\r\8f\95ñ\91Cû%^\1a¥\r\18?¢|ISî\91Ú¹\ 1q­J\85í\8f(ÆjýÜÐI\9e?Vò|\0\80Á9o\9e¿ÙlÒ4>Ïó\96\15i6{ô=f\1a\96\1e\17;Ô¶R\9f\89Óé\14ý\83¾K\9aç·'Ò¡©Ó¡\93J\1e^\eé\87í¬\1d\ 2h\19\bÕVf\98§Ã\1f\9dy~ûÆ·lCg\9eß¹y\a\rÓDò| "\9cNk³Öx\ eLO2ñÔWy+®R9éÅçÅ*§ô¦zÊç\99ðVåW ¾[9Û\94Ï«á\83*_*~V:\fÑÓ\95çùÅóqéëñ\8b§\83#\87öËci(§|E\11\7f\91+\1fÑÞ#ñÝ´GâZá­Ê\97*ÿú\9fòÀ\ 27B\9e?Vò|\0\80Á9o\9e_\89mãóÝqrZçÓâ\8fu1i¸«Í²¬6$i\91ƼEd\11\ fÍ\1fÒíé¹bq·~\óV¶¿3rO?«iª|Yÿ0¿%Òo\99\99u\17z\86ùµÛÐ\99ç\1f´y-\83M\9d;ª<\1fn\ñ#8\9bÍÂÉöî­ð\9fx\8em\1aT\8d§\88p\1a\8a¯Ô\9e\ 4â©#Ô\|PüñMãÜbáðÑÅ\ f\88¸mq 3¬Õ\94\ fÇeÂGT¶íE×\ 3t-®<Ï/~\92B[Åo\1dÄ\1fÙJ\ 2\7f\¿<þòÇ«ø òÞRÙ¸pñ)a±¸måK¬´Gâ®UÔ\1c¾~±Vù\82-½6\80\94<\7f¬äù\0\0\83sÆ<?Ü«V\92á8\e-Mk[ÂùJø_\99a\1eî:\8b9ÿ}6©%©.niûLHK\9f\9f²¦ÍÛ\7f(¡v<"F1-­T|µ°X\9aðÇ\11\96(\9d¸\1eS\82¦\1a\9a&j¦ÛP\ e@ZòütÏ)\ 6}*\89Sy\eÊÍØ\9eç§ïÖÆYG\fÖ¤\91H\f[
+±¡\9aòü°mµ­\14[¯ÿà\ 2p\rZÎÌá´Ótþ\ f¯×\ e;\86Ú\9aV©}\+\9cÐÒ\9c¹\88\7fCý¡ªÚÍK'{?þ2=®=É\87óðÑaþãÕçùY\96µü¶\Àôï\97BhÛô篶mc\8f<6\8c\ 5§Óï\v\9b\86ï\8f~t\91[#Ï\1f+y>\0Àà\9c1ÏOoùã\ri|\ e\9ao\ 4jsì\96l¿e\93:ç?\97ãÓ¦Ûít{úßü¦\eÐÿ\91öôs+Ï5Ô\ 6\ eå\86Íó<Í«ËADÚei|\94~J\1c¦)¤\1fQI¡ÓÄ»Ò\ e\95VJ§>¦ÛY\9e\9eçW>=\1d\8bI¿`Ó\9eг\9b:\8f²tÿé\\0\18\8ap\ 2)\86\ço\85ÿô|¾,\9cLÂùªX+\9câ:\7f,B\9da±bù°bÓð_1n\18ß\r\7f\96×jú\r-çù\95Ï
+ßè\88ÇÜ*\9e1>
+\e_\1eomiÞÐq±GÚ¯\13\8eè\97(´dø òÞRÛ¶¡Úb\9c·üg\9f\1e)ÿö\95?+8âÉGn\99<\7f¬äù\0\0\83sÆ<¿2ñ¯2\15¼\92ú\86?[ªª\9d\rØ$|P¸«mº\93­\r\93\9bL§ÓôÖûzòü4I¨ÌµKç\96§-YÞ\80\84Õk\9b1\9dÒ\19\17KGj*i\7f!\9d¥_Þ\8cÊ·¨M?ÒÌ¿¥¡ZöðÚ¾«l^vÈ]ª<\1f\18\9fJ\9e\7fvâ£'Ó4\96\r\87\92ç\8f\95\132\0Àà\9c+ÏÏó¼=×MgA·Ï
+Ûn·i\bÜ\1eÅ7M\9c\v\1f\8cyËtýr¬}=y~g÷\95g­7U\127 ÿC\13¡a\9bfà÷\9cÜ\9e.\167£Rye\18(J·6~ÐAy~¨?\9dÇ\18ªÚ\96\1c4_Q\9e\ f\9cÅß¾þúó,+Ê\97/_>ïÆÈó{
+=\15{-|©+ÜBy>ç"Ï\1f+y>\0Àà\9c+ÏOç\81o6\9bò\ 2ýÓã²ív»\.{\ 6û\93ɤi\96\85\8bÅ¢g°_¾ó\1dP\9e\9fnXK\9e\1f:¨O\14_¨´[\1c8\bÿé³ÿ¤#\ 2M\9b\11úú®AÓ\ eÖÞPé\8añ \91°ña¯hùÖOÖMò|àó,\8bqÊï>úøy7F\9eßÓõ'\9cò|ngoç8ò|\0\80Á9W\9e?\9bÍ:gYW\96\99N\ f¸bÜívëõº3Û¯<\14Pk»ÝfYÖ\99íÇ)èéHDX·çf\87%\ fz*¡²\9d\17ÍóÓ »ÿ~\12\93\81¦×Sý7£§øeÛ\e*Ïó>\838¡§*#POÙMò|@\9e?Dò|n\87<\7f¬äù\0\0\83s\96<?M¼kgYWòüö   á-ò</&Û×NÑ?t˳,K7¬\12Ú§S»{Ö\9fÖÜ\7fÛäùgÉó\1fß\ e\ 6õ|Ä#ôסû¤<\1f8\v\10Éó¹\1dòü±\92ç\ 3\0\fÎYòü,Ë\8e\8bdW«Õ)\e¿ßïÓ\9cö¸1\824\95-\ f\r¤±|\9fiöy\9e\1f=\10ð(Ï?_\9e_h\1a\ 3Jû=tÜ\13w\93<\1f¸ª<?ü\92Îß\8a\8fª\9d\97<ÿÉ\14ýxâå\16\fboç8ò|\0\80Á9K\9e_;¿½\8fé´zѸ^¯ËSú;\93\84°@KP\\16_o²\.\9b\9a\b7\85É-Ò¤ú \eêKçùiÓµ\fRTÆMB[Õn@Ú¡\85ô       \8e¸\19\95Á #æ\10öÌóËË\87\86Z,\16\93ɤv·\8cßîɺI\9e\ f\U\9e\7fiò|°·s%äù\0\0\83sz\9e¿Ûí^\9c 2\9d¾²=åIòµZòêÊë\8bÅ¢½ª\96ùêéwì\9cÅ\1dÞMãâ\83\9e\1d¸t\9e\9f~©¦Ñ\934\8dÏ~¾\8fK\e­vP eØ¥²\85\9d=~PC\85^ØþRº÷\86ïRé©\83¶A\9e\ f\9c\85<\7f\88$\9cÜ\ e{ûXÉó\ 1\0\ 6çô<?\9d»~\90Ê\è4\1fÎZo\19ÒO\8f1{úÕÚãôÊS\ 6áÏ\96w\8b\ 5Z"ýôÓ+\15vºt\9eÿ\98̺o\9a\eß\12Úo6\9b>O.¤­\117#´aå­PgZCøÄÊ\ 3\17q\eZ\1a*}«v¸!ý\16OÜMò|@\9e?D\12Nn\87½}¬äù\0\0\83S\e´ö\11£ìJ&\NÔkµÏ\85NÓѰ@S¤\1f^oÉÌÓ\14:lj:Cûñm¤¼\.+\v¯V«ö\r+>.\1d#Øï÷iø_     Òûx\82<?m¢Ê·®­¡\1cû§\8f!\84?+m\92NίlFúPF%u\ f\9f\926iÜÍÚçç·\8f\1fÕná³ÏÏO{\ 1\18=yþ\10I8¹\1döö±\92ç\ 3\0\fN\9aç÷T䱻ݮòúb±hÿÄ49¯ÌÇ®\rçÓiX1ÎÍ\ e\9fR\89\91\vëõ:Ö³ßïk\97 õ¯V«XUS\v¤\13¹Ó-O+¬Ýø¦\18¹Ý\13äùi\1a_Äõ¡\19Ãb¡_j¿re`"]¦\18\82i©¡RIí NhÒbä(T\95\8e\19\95\13ïö\86Jû7¼Rl^±\85¡ªJ#tîÃgï¦tD£Ø£Êû30nòü!\92pr;ìíc%Ï\a\0\18\9c\13óü4­íL 7\9bM{Ö½ÛíjsøNi\f[;3¼\8fÚ'\ 2jg\89÷\11Öj\7ff¡Ö\13äùµÝÑ.\9d:^;(Ðsÿ\89\9abÿ>íÙÞPµ\ fV\1c´mOÐMM\87aùQ\b`ÜäùC$áävØÛÇJ\9e\ f\008'æùi\90Û'¸®¬\15þ¬,pD¤ß\94\99\1f\11é·Ì¥?"Ò?.Ì\7f|ª<ÿ &jj\99Îþ
+\eÖ¹\19=#ýétZyt¢³¡\ eÚ\aÒ\ 1\8b'è¦,ËäùpãäùC$áävØÛÇJ\9e\ f\008§äùéÔît\86|­4¹\rUU\96Ùï÷ý·-\rH˦N§Ó>õL&\93tKRi:}Ü\86µ{²<ÿñí,ýö&
+-Óþ]Z"ý"!ï¹\19íã\ 2a\aK\aGú4TgÍÅwì|ºäBÝÔ4N$Ï\87Û!Ï\1f"   '·ÃÞ>Vò|\0\80ÁY¯×wGÙï÷\9bͦòbmH\9b
+\8bUVlJÑw»Ýjµj\9a\12\1f^ϲ¬2[»Iø\88årÙ\94Z/\16\8bÐ\14ý'Ò\87%ÃG7\8d8\1c´aMÂê\95Vêì¾´ýÓJZ¶*Ô\16Ú¡ÜÚ¡¹Âw\fߥOË\84eBýqõÉd\12j\8b\9btèf\94{*lCØ\rÂÎptC\15\9b\17j\ eû@ew
+\7f\1eÚûg隸\8b\86¯9/9ôa\ 1`¸äùC$áävØÛÇJ\9e\ f\0Àåìv»íÏ\9a¢Ý\9e¶%'¦îçÝ0\0n\93<\7f\88$\9cÜ\ e{ûXÉó\ 1\0\0\80èþþþó,\8b¥çbåòåË\97Mkýíë¯\9bÖ
+o5­Õ´J(a3\ eݼs\95rVöÞ;ï\9e½þР×SþúÅ\17åøèª¶í òáû\1fÄoñ\97?ýy(\9býððàÔÄ¡äùc%Ï\a\0\0\0¢\9eAAe±ri\99¬^\9eÓ^)-qSÓ*E°|èæ)ÊÍ\96¦c³åxi:0[\8eeå¢=Ø¿üö׿)\8f9\1e´®rÍ¥<.Y\1c¤Ê\8d\97/_¾|®aåûûû¦U\9af\\14?:µåÍë×M«\84·\9aÖjZ¥²m®ð\ 1\0\80±\92ç+\8a<_\9e¯(\8a¢t^n\9d÷º®å\ 2²üÀQ¥ô¼æt\85\ f\0\0\8cÕEóüÏ>ùT\9e¯(ò|EQ\14E\9e\a\0\08ÝEóü\96Û1y¾¢Èó\15EQ\14yþA\17\90M«Èó\ 1\0\80\e1¬<ÿáááÐÍS\14y~ÿãE\9e¯(\8a¢Èó\ 1\0\0®Ö°òü#6OQäùý\8f\17y¾¢(\8a\a\0\0¸Zò|E\91çËó\15EQ\14y>\0\0Àõ{óúu¸i\8a¥çbåòÙ'\9f\15ÞjZëË\97/+\vo6\9b»»»ívÛ´Êq\9b7\94"=Päù\8a¢(\8a<ÿQ\9e\ f\0\0põÖëõ\8b\9fm6\e\rÂ-{óúõß¾þúô\12ê©­ÿáá¡i\95ûûûÚUÂëgÙ$¥\7fùêիϳLQ\8a2ô1kå\8cå½wÞ\95çwn\9bk       \0\0\80\8búß\1f~øß&\93¢ü×bqhÐÑ\14B\ 2\0\0\0\0\0gÔ2\11ë\94\89d\0\0\0\0\0À\19Éó\ 1\0\0\0\0àúÉó\ 1\0\0\0\0àúýßÿú?ÿó¿ÿ\8f¢ü¯ÿüÏß}ôñAåÍë×Ú\10\0\0\0\0\0.m>\9f¿øÙÝÝ\9d\ 6\ 1\0\0\0\0\80+$Ï\a\0\0\0\0\80ë'Ï\a\0\0\0\0\80ë'Ï\a\9eÑ~ÿãrùÝ\8b\17ÿ¯(áÿá\15Í\ 2\0\0\0\0)y>ð\v»\1f&\93ob\98_\94ð\8aH\1f\0\0\0\0Rò|àYl6y\1aæ\17e6{£}\0\0\0\0 B\9e\ f<½õú_µI~,«Õ½V\ 2\0\0\0\802y>ðIJìûö0¿(\9bM®­\0\0\0\0 \92ç\ 3Oi¹ü®O\98\1fÊdòM\9eÿ¤Å\0\0\0\0  Ï\a\9eLÿ0¿(óù·\1a\r\0\0\0\80\e´Ûí¶Ûí~¿/¿(Ï\a\9e@\9eÿ4\9b½9(Ì/ÊÝÝ?µ\1e\0\0\0\0\ 35\7fk·Û¥oÕ&öå\15ÓÐ^\9e\ f\ÚÑa~Q¶Û\7fkCèo¿ÿ1\1c5¡ìv?h\8dJˬV÷óù·E       ÿ¿»ûgKɲï\8b\96t\16\ 2\0\0àhEö¾ÝnÓ·j\13ûöwåùÀEív?L§\7f?:Ì\ f\9eç?iIh±ßÿ¸^ÿk¹ü®r¸ÍçßJõ\vYöý\89'¢Í&×\8c\0\0\0\1cJ\9e\ f\fÅn÷ÃdòÍ)\19ZQ\16\8b\7fhLH\8f¯,û>\1c\1díGYx×\88Øf\93\9f~"ò¸\10\0\0\0G\90ç\ 3\83°Ýþû,a~Q²ì{M
+=3üJY.¿»ñv;ñ)¡ò,};!\0\0\0\a\91ç?¯Í&_,þ1\9f\7f\eÊrùÝ~ÿ£6\81Ôzý¯\9eùØlöf·û!\1cP\9dK\86Å4,7(üÐÜÝýóÐ\fßásÄé¨O    }a\9f\ 4\0\0 ?yþ3Z.¿«Ü×O&߸µ\87\8a\83Âü<ÿ)¬\12þíÌ*ãÂp;V«û³¤Ðóù·7Û\86ç\9a\9c\1f\7f÷\9d\88\0.'Üçn6\9b»_
+/îv;\8d\ 3\0\f\94<ÿ¹dÙ÷Mw÷Óéß·Û\7fk"x¬\eöj        \18˱X8\88:W        \95kanǹÂü¢l6ù\r¶áy'ç;\11\ 1\B\9eçY\96Íf³\17­&\93Éb±X¯×Z\f\0\18\16yþ³è\13\b\84\e|sö¸qýÃüÚ@¬Oz\19\ eFíÌ-Øï\7f<o
+=\9dþý\ 6\9bñ¼\93ócÙí~°\8b\ 2\9cÅf³\99L&/\ e1\9dNÃZ\9a\ e\0\18
+yþÓ\v·í\93É7}nðÃbÂFnVÿy°-³[g³7\9dGÙ~ÿ£ÖfôæóoÏ\9eBßÝýÓIé,%ô\8e]\14àtëõºv\1eþü\97¦Óiº\98\89ú\0ÀP¼8\8d<ÿPyþSÏ0¿|\9b/oä\ 6õ\9c\aÛ>æ\15\8e\9dÎ#n6{£µ\19·íöß\97H¡ÃÁuSÏ\91]hr~Q6\9bÜ\8e
+p\8aív[\9er\9feYí¤µh·Û\85ef³Y\Ë,}\0`\10äùO)Ï\7fê\9c-l\1a$<ö\8e\1fû<À²Ùä\9dõ¬V÷Ú\9c\11»\\10ÝòtÌÈtNÎï\1c[l_=ô\91\1d\15à\14\8bÅ¢¸\ fͲì \15Ãòq\14@3\ 2\0×o~\9aÊc\89òüv\8bÅ?N\89MÂÍþvûoÍ\88\83¥\98\18Ü\7f:ërù]çñåàb¬²ìûCgÝ\87\ 30¬µÛýðØc,àF\8e\9dövè\93ƯV÷\ 6î\ 1.§¸        ],\16G¬»Z­\8aÕÛ§ô\ 3\0\8c\8f<¿E\9fD±OY,þ\91ç?iOF¬s"ëdòM\914öÔçÑ\98P§#\8bñ    {uØ·û\8c\17\87\1f©\98á\97u>,3\9f\7f;úf¼»ûg{#ô\19^ìì\vg!\80£m·Ûâ&t³Ù\1c±ú~¿w\ f\v\0Ü&y~\93õú_g        óã-\7f\96}¯U\19«öèìÐ0¿\10Vé<²n!\96äÖtΠ   \ f\vì÷?¶W\12\ e\8döJÂoÜ\88Û°3\87ï\7fêè\1c\17X.¿³Ó\ 2\1c!æùGO°w\ f\v\0Ü&y~­ÎÉ\8dÇ\95ùüÛ#RM\9eW\9eÿtw÷ÏÐwE1.Sk:ý{Ë\9e\7f\85\15;\ f«Ð;Ú\9fÑè\1cÆ
+ÇZ\9fz:\1f\99        õ\8cxbyg\b\1f~åû×Ö~~\vÅ/;À\11b\9e¿^¯\8fXÝü|\0àfÉóSáÆ¼}^_\9c!Ù9\8bò\\13\95\9da6{SéÄðÊ\88s°#l6yûn\7fJs-\16ÿè<¬\1cS\8cFç¼úp¸õ¬ªó\17j¬cag\9c\9c_è<ÅyP\bà8ÅMèl6;bÝpëzâô~\0\80\81\92çWäùO\9d3ñBY.¿+\96¯Í{oyVä\98¬×ÿj
+\85â\ eÀcWä~b[õ9$Ã\ 6è\ 5F༹qg¬\1dÞÝï\7f\1c_3\9ewr~¡s\9cå\88:\ 1X,\16Å}høO\9eçýW̲¬Xq2\99hF\0àÖÈóËòü§>á|X¦²b\96}ßgJÿègE\8eIçÔVMTØï\7f¼tÌ\15jè<¦F\19Krk:\87®\ e}\14%ü6õ\1c\9b\1e\8d³OÎ/\84\96ï\1c©·\ 3\ 3\1cj·ÛÅ[ÑÉd²\.7\9bMK°\1f\96ϲl:\9dƵÂ\9f\9a\11\0¸5òü²åò»>a~íìúýþÇöYÊ'Æ2<\99\9eÃ:fc\16Ú§Â\9e+ãê\9cp»ZÝßò\1e\eî}C\13Íç߯$3ìÃáEûçh\ e¥£³÷γÙÈNe\97\98\9c_è¼BȲïíÆ\0\87Z¯×/êÌ\7f©\9cáGËåR\ 3\ 2\0\97sÐó\83OI\9e\1fu\86\0¡L&ß´çð\9bMÞ9Á²i\92?×`»ýwÏG-\8cÈ\14Úwøõú_ç;Y}Û~lÞÚ\8e\9aeßÿ\7föÍ/Ä\8eì<ðzôCD*\ fa\87!       Å&\ fÆ,¤À;\10ì\97ÆYðî\12ãZ{`½YÖS/Æ \ 4»\1e\82Ç\f\98fÈ,fm\87\82\18d<ct\1f\12\13\94\1aB3a¼ZߨòÎ8\9aõ\94¤\16-wãÛÕ²:\1d]O«ë¶ºu{®tWw?éx\8eÏÔ\9fï\9c[\7fOU}?\8a¦ÿÔ=uêü«®ß÷\1dÛ\1eáíßç0G»\90f\95Ã_SCÉ*C\ 5_Êòå«·´\19\8bÜlu}D\10\ 4Ñs\82 °,ëÔ2\18\86A\99ù\ 4A\10\ 4\13\86á`0X]]\85¯ð=~2Û\12hÛ6üסçí\90Ïg\f\ 6û*
+W%¯\ f^çUB\ 3pÀi4¡´ÂóÆ\8aÛ+úf\8f³ðý¨6»%\95i%Æ\ e4$\b¦p\83®{KeóHL`\92\1fiîw\91ç\85tïXgæNuÉù\8aåS\ 4\8d \b"7ÃáÐq\1cÃ0p\93oY\16¼_k\9b,G\10\ 4A\10\84n\ 4A Úo\86뺱\7f'Â0d\ e?öß\88\9e7E>ÿqÏNU´ØRÆ\ 3ÊÄÓ\89Ù\11\863\9aY:\10Es©ò¢XL\12¼Ñ\1cg§ÜËáγKiÆ|XzÞ\18îKqÏHÖa\9aë´\9dDg¤Ï èÁ"åÃ\83F\1a ì@ЧÒä|\8et\v\1e=Ö    \82 
+\ 2oÓÃá\10^¨W\ 5\ 6\83\ 1ü²ÒëÂKý\90 \b\82 \88á0\b\82.ý_\91\95-`Y\16SúðÕq\9c¬-\81\17ùü \98ª¸²|IwREÜ=\ 3ÙF¢h¾TÎsé\9aº¥H%aé\ eYª=»dÒ\14\97&õ£Ûû\17Z\8d4øëûQÁKH\13Ë;\10£¬:9\9f\81oJ¢Ç:A\10DKA^ö      \82 \b¢\87¸®Û\8dG<÷Þð w\1cguu\15nÍ4M~\9bQ\14%ÿ\a°,\vþäû~͵\1d*g/ôÜç+\8aÜÜþV\9a.\b\87ç\8dé_èfQ\97ùÐ\9b$E9¸=\83V­¿³òÅÝ4$\fgåÊ|
+EiK=~XåaÔêpX=Éù\fiü¥\94À\ 1A\10\ 4Q'ð"¬"7~ãÉßþÜK¯f\1d\7fôg/\90ÿ!\b\82 :C\a\9eïa\18²{á©ø\1c\9e\90oÛ6ûÆ4M×u\87\15ï\aD\80KC=\15Oî¹Ï\97¾\953-\19EóÜ\97\90º\1aøҥ¤âÖá8;\8a.Ô4×KO8o5Рõg\83C±ølêÏÒ\94ï(¸ \115Ï£\125;>wà°íQ{\9b±\9eä|\86\10ô)\rl\82 \88rñ}\7fõ1\83Á\0ÞÍK/\1fñù\1f8ýëO?ÿM8à\9bG¯Ì?øÙWß~'õ\80?µQ×\9c>}úÌ\993O=õ\14\99«¶C]I]IèÆ\93O>Ùê®ìÀÿ\ f\9eç±{IýçATâ\8eãÄ\84\7fý°\10\83b@¡Ï>_jÚ\99\1e,j®Ä¼Ab)¤\82K4]dAÕ§O)\13'\v<\v·\ 3\e(<o\\91Ìç½CùÃ\9a µÐån9\91îEjéÀ¨39\9f!\r\ 4ÓÎ;\82 \88¥\80·ìÁ`À\8c}lo;üh\18FÌ0À;l\10\ 4%V\80û|(9ö§µ\9d#¦ë/î\1eÃ\8f\17F\87Y>\1f\8eɬ}ï\vÛÛÛë\8f999¡¡Øj¨+©+     êÊâ\f\87Ã.ù|×uS\1fî\fø\1f#ëé_?|+\81ã8*ç÷ÙçK5»a\)%\1f;\fg¸j\80Ã÷£^5¾\ eHs,ù±ººGÍ\15öGH\8b9ÎNu\97vÝ[\1d\8e\8e©,\17¥\1cä\e\eGj¡K\8f\8b\r\87w¥Û7ÚØ\92u&ç7Õw\ 4A\10]%\8a"ö®-b\9a&ÓõüE;\89a\181ó_\ 4Äç_Ü=f®þüÖ\ 4~¼<\9e">ÿÚ\9dGÆææÑýK{÷6'íØ\82½¹¹ÉtÓññ1\rÈVC]Ù\19666¨+©+\9b¢c>\9fIï,Ý\rÿ\84°;õ<¯ñª\8a[\ 5U¶"öÖ竸Ü\12\1d»4á\96ÞýkFjc(\93\19!\fgx»\95\12\bÓóêU#\8d\87i®«\9fì8;´ì4H#9Þx$®\8d;\¤!°\8ab|5ï­ \b\82è*âÛhL×Ã[¶i\9aü7\96eÁÉðU<Gå\85W\ 5Äç_»sÂu=üx{ú\0ñùk;Gp\8ewu¿Eéú\87\87\87ÛÛÛ»»»4\1aÛ\ eëʽ=JE£®$¨+óÓ+\9f\ f°;\85»n¶\9eð?\8f¸\eQÅÏ÷Öç×/R¤\9aζGýiÿƱ¬\r©í\84s°\1dy55\83gÈ×\90â\8bϦJw\aT\8a\97*ðaé\80\ fòÀ\13Þ;ÉÎjuø£½HSå¡g«¸®4\1cÖºà²ôi^Ý2.\r\9fÑ\13\84 \b\ 2g0\18\88r~å1¢Àçß\88Þ\1e¾ç\7f\93.\ 5ñù¢À\87ï\17\82®O\1e\1fÀ  ±t}\82 \b\82h\väó\e\8f\88g5¨ÜZß|~\14Í¥i«¥_TjQÊÝ\11@ Hý\ f\85WpðlØ\1aò{á\12ÝÛí"M3æw·²²µºº\aËEÖmÂ\9fT\8aâ\ 5ÒÊS?Ò\bou;\83¤\89åpB\8bfMýOsq¢áW¯hk\0A\10Dg\10µ<\7fo\85oàGü\95VLÝ\97¾ðª\80øüEÂÏ\9fß\9a )ú\93ÙüÜ\8dHL×'\b\82 \88¶@>¿\11Ä\r\89\8a\8a¾\9f>\1f·\19\86\91ë²\84Ì6zÈv\81«`\9e´L\1d\91¯\ 1ksé\8dÇ\14JG*x\97Ê¥\873U6¡´Qáöa\15ªÔ\ 3Ã\fíLby\83Éù\8aÓ¶º¸\fA\10D\a@\14:\7fKÍÊÀç\99l¥¼\83ã>\9f\v|æç/íÝC|þædvq÷XL×'\b\82 \88¶Ð1\9fÏ2\ 4LÓ\Í\80ÿ³±\9a\95\8c%ç+¦è÷Óçã&°R¯%5l®{\8b\16\90ê\b\82©Jº²º5í!¸¿ª4\eV\ 4f
+®¾ÛÕª\9e7\96\8eÌe\87e\14Ím{¤®ô¡g)\8cU\ 3:èti@¡\15O¢f\93ó\19ÒgJëÖ"\82 \88ÚàÆ\0^c\93\7fõ<\ fùëâq\8a~\89ï°¸Ïç\ 2ß»ú(cäæÑ}Äç_Ü=Þ\9cÌÄt}êk\82 \b¢-tÌçóç{\11*­!ü?c\18Fêuñÿpzèó¥\1e£R\91¢â\93)\9d¯²i2ÇC9ìðý¨\9eúÀH\83¾nWwK\ 5Zm¡\10}jRʽHGfî8£J¤@\ffÕ6þ{\8bt£V=.\1d\ fÌU·O­D\1aOÎW¬F\e·\v\11\ 4\07\ 6©      öø_\19µù|Qàß\9e>\80ß >ÿÜ\8dèdþ\90ÿxíΠ    õ5A\10\ 4Ñ\16:æóyz\80¶>\1f\898\18\86\11\86\a{èóñ\fù\1aÒù¤2Ç4×)K¶þ®¯aw\ 6\aúWT@\86\9eë\16G«¬xMv
+T}#Å\ev8¼«\12É\12}2-A\15!\8dÝÀ_ëi|\18\15­¶Ð:$ç3¤\91bx¦ÓÈ'\b\82\8d\81ïûÈ_uðù\80wu\9fùùËãG\19#ç·&\88Ò?\99?<w#b߯í\1cQ_\13\ 4A\10m¡c>?\fÃÕÂTZ½¬ä|\86ã8Y\9fí\9bÏ\97\1a\8c\1arzáÝ\1fÞîuÈÏì\15¸\88f\87m\8fj¨        \f\80ÔÈB+ü3®­j\16\80¾\1féàE\v¢\92?_|]
\99J<K\8c ´h\83C\8b\80E\ 6oy\18\ fµU\ 6O,_YÙÒ¹%¥Kz=Éù\fi\98\9eRô     \82 \92À;,ò®Ê_À³2Ó¸p\18\f\ 6Å+#õù\17F\87ÌÏ\9fß\9aÀ\8f\97öî!>\7fs2»¸{̾?{ý\80ú\9a \b\82h\v\1dóù\9acÛ¶tw@VbCß|¾&úB\1aV¨'²Ð\1f\ 6\83}\15\81Y\8fþEÌ\ f\f\8cö6c#þ\1c\ f\8déïФÙÚ%î\19\89í
+Q9jsËÐ\ ep\9b\0ßÀj캷à\97¾\1fÁ¼¨ÓÍV\87tå¯9\91[\9aâ®s³ã\13§þð(¾\16Ѷ;\82 \88TLÓdï¡A\10,ûYþ
+\9cã³I¤>ÿòxÊüü\85Ñ!üxóè>âó/íÝÛ\9cÌø\8f\93\19=\ 2\b\82 \88v@>¿\91¦F°,+õã½òùRwQ§ý\93æ\16\ 6\rïR\b\82©T\99      µ\ 5PVV¶Z\9a\10\8bÔ¼©M%xZ¬þ\93\boÒ*nA%¶\15\e\93\95zHß\8f¤)ë¢\14\85ú8Î\ eô;ÜHë<¿tgVý\11=\r'u)øþ\81!­RY\819\82 \88.Á-:àºnV\ 6Z\8c(\8a\1cÇa\9f2M³Ü\9adùüÅã\9cüµ\9d£ÛÓ\aðýÉü!âóÏoMÄ\13®Ý9¡¾&\b\82 Z\ 1ùüz\80\7ffxV\83\94T]ß+\9f\8f\9a\13#£h.u;ôú_O;ÃáûQmUÒMè)¢g*¯´V:oyð¼q#a&\95\b\1a¥O\10è8X\90\97ª\ 6rØöHÿ\rMxì\89ÝEýµ\92nºÑ³1ñ0DýÉù\füYÓÈ\ e&\82 \bý±,Kå¥uñè\9f\87Ðu]ñí\15ð}¿\94j¨øü\18çnD\88Ò\17O¸<Öú¿\94\83\83\83õõõíííù\9c\9e\86º\92º\92Ð\8dýýýÖueß|~\10\ 4\9eç9\8e³ò\18ø\7f`0\18DQTõuyfB*|\13"'¹\e±?>\1fÞ£qwT¿<÷ýHê©ô\97T\9a\7f®¿ëñ*i\9b¢\8f\87Ã\1a¬6\9eÝÝ\94Ù\93\12\863©Íö¼qEW\87õPejÄZ²¸\8d\84\12\ 6\83}ËÚ(EãW\1dt¨¹»\9bÚk\80W¬Îmkê\8d©gKR\8a>A\10D\ eà\959öÒ\9aõN\9aÜ\96\ eoÜeU#\87Ï¿¸{\8cøü\9bG÷oO\1f\9cß\9a¬í\1c\9dÌ\1fêÜ\ 5\e\e\eë\8f9>>¦\ 1Ùj¨+©+      êÊâôÇç\aA\10K\12à\18\86Q©!\87\7f`øµ\1cÇñ}?öOÎâq\1a\83çy<íÁ4ÍX\94¡\14\9f\1fEsÏ\eÛö\b\ eøFÏ\f4i\16b#ÕÆU¤Îv7F\18Π\85\1dg\87\99:¨¶\ e#\ 1WÐMåÄJÓtõL)×VúIãbz®HR\9d^ÃÜ\97\ eÅä&¦Ü\11F\18Õ°>\94\95\90ß"ùÌ\90\r\9a^mCum¬0>¯)E\9f \b"\vx\8d\85÷YöÒªâóá\1d6\99¨V\84\1c>\7fs2C|þ¥½{miü\9b7o2Ý4\9bÍÚRgE¢(\1a\f\ 6l[\a\ 3\86\99çya\18"\9f\82¡5DÁÇ\1e\14>\94QQæg\87»2uA`\1499G§ÔÐ\8fÀöö6ôãÆÆ\86JWÂ\80\84\15̶m>ÎáG|ï\92Ê(Uo\87\1cÓ¤?,Õ\95úL®>ø|\98#\86a\9cB\81\7f\98æ0;àÒ0UÅ\8d\0I\9f/\9e\ f\ f2Ó4a\9a\8b¿/îó\83`\1aS4ð£\86Y妹®a\12¯t×\80æ    ÆÌá#mkÛ£¦\92f¥©\92pXÖFývEÚé\1a
+4i8LçÙ]]\96{n JÒlózr\8ca­Æ[¯ y\86»\80\9b\12E\ e×½¥[w\ f\87\81\92\ 65¯¶éîY輡@Ú×\1a\8eO\82 \88\10\86!\93\8cÍG\ e\9f\7f2\7f\88øüó[\93\16µíññqÇ\fp\14E\8eã \96\ 6         e¥kÆR7¡üÔ¡ÈÇ\12\ e\EÑE÷¼+³XÊ7f\9d\88çyÒr`Ì\88\1f©¢\a\97êJX\ fMÓDFi\96âS\1c¥¶mgÝ£ÊÇY\ 5ª\8b\85ÖÍÊ>ø|X½¹Ì\87o\×e\19òÀ`0\10\1f\1f1\85^
+©ÿÉ >?ë\83\ 5}~\96\99¬MF)\ fÈ»Úú
+iv±VJ?\b¦l/ÆRy¶¦¹îº·êläd\98)u\946\15x\92æEë\16\11Ã\93N\e7Tx{ÂðÓª1a"H\ag\9d1\bXÆa\85\99Ãx\806g\a|\16~L=ªÎÆG\16L}² ¡&ÒpFSA϶Lp\11Íc\8b\v\85­7ºÅG\b\82 ú\ 3\92wÍ^Þ?øÁ\ fJ}þÉÉÉ|þË\7f3Î^?@\94¾´>bQYÀ        p\1a\15µTQ,õQE6\ e\ 6\83d9*>\9f\97\90\f
+(\9aR\ 6¯\0õà²EáÖ+V\94\8aÏ·,KZ\94ëºY>¿þ¶Â#Vbä(iÔs\8cÒX­Ô?\9eÌp¦Ñ®yQ}ðù|\9d\87I\9d\1ar
\90í\19\14\17êJQñùYw\91Ïç#Y¦Z\19\0üýºñthÛ\1eé¬ôó9ü¬¦®!yruuO¥ª\r¦qJSôµÚ\94¡\7fú®´\86Ãáݶ,GM­H¾\1f5¥ß«8\1aÙz\93µ\1ciØÝ1ô\97ä\8aÓG\87\7f<¤ù\ 3Úî¹#\b\82è61\11\97Êúúúk¯½\86\14²··\açlll°d˵\9d#Äçÿô\9fßQ/*\15ø\13\9c\0§ÁÉT\94bQ¯¿þº(ó\1dÇ\11¥+üõÙg\9f=}ú4\92\rÉÓO?½\9a\0\ 6\12\97<Léïï¿ï¥RÜëñÜsÏ\9d\17¿øE^\82mÛb\r¡\ 2Ô\839\8aB¬W²¨Ô\93ᯱ\15 \991\e+*\96\fÏ\aOýmõ©O}\8aW\ 3j5\18\fxå£(ò}\1f\86\99¨ôc%ðQú\91\8f|$9D\81XTë\95W^\89ÕJ´\88\fq´Ç¦\89X\ 1\1aíú\17õòË/wÛçÃ\1cá2\1f?\8dMù*Rô\93\14ôù\9f}ƹøý\7fdÇOÞÎ|\7fççÀñûÖeÄ\00\9d\ eÅ\8f\88ÇAÆÖ\e¸zêù\8aµ\12\ f¸ºÔõ=ÿç?ª¿Vâi*ùºY)»ÕÕ\8aeíV¡ø L(9\96\82®X+Nê¸\82®|â\89·Têð©O¿Yb[áµJ\1dWRË÷ÚkWë¯Uê¸\82¶R±\915×*6Úñ\fó\8f\7füÇ\8dÔ*y2\12\ 3E67Õ³\8a\9eÿ\9b\1f"Kzë\8eßý½·¾ýâ\ f\e_Û¥õ¼qã°æZ¥\8e«_ûµÿ«\12ý¬¹V±ãí@2}`\f×_«ä¸\92ÆèÅz¶íÿ_\82 \88¶¢\92°½¾¾¾½½\8d\14²þ\1eÇÇÇðãµ;'\88Ïÿß?\e«\17\95Êx<fç,U«>\17õÆ\eo<ùä\93<+8\99<ÏÊ\81Ó>ô¡\ fq\17\1aKÎä\86ä\95W^ɺÜp8äA\ 1ÏóÄ?qS
+ßdÝ \\91ÛN¸\1cõ`\8e¢\10ë\95,*õd^\b_\1cb]\19+
+\86Sì|îókn«¯}ík*I¹/¼ð\ 2?-k\94\9e9s&«Vb~òÇ>ö±X­\92Mº¿¿\1f+j0\18$c\1fÌ\18ã7\98,*\15*J½¨ÍÍMiQ\a\a\aì\9csçÎuÛçû¾Ï&r\94á\abgÖÓ\ eZù|n\0\1a÷ù¸è{â\89·\1a©UìL©åËJ)¯¨Vp¡\1a\92u-k\ 3n\9cÅ}
\95o¿¸\84\8a\843\ew>Ò\14ýÿü\99\9fÖ_«Ôq¥(ú\9aõùÒ\9cØWÿþ\a\8dûü \98J§UjØ®ÎUô³Ï¼Ù \84\87öYYÙ\82Ã4×\8b\97\ 6CWTúõ¯íÒ½\18ÐÚ\8d<q\92ãJ1l׬Ï\7fæ\99\85½A\9f/\8dã|ô£ÿD>\9f \b¢\ba\18ò¤PÅ\8f(æç\7fç;ßA
+a)\8e\9b\9b\9bóù£÷\97Él\8eøüW¶"õ¢RáÙ\92±\fp**«¨3gÎdYúXQpE\9ek\1dS\9dÜ\90¬­­!µúÊW¾\92\9aü,ú|ä\ 6a\fó\81ÇΡ\1e\ª(\95ü|^\14\9e\9f\ f\ 6\83eYHQ|\rq\1c'5?¿\9e\82\81Í\ 3
+ßøÆ7ð¢\9e}öY\1e\83H\1d¥Ï=÷\1cR+Q0Æj\95lÒÔ\eämÅ\13¡i½ª¨¨ñx¬R\94J~þ+¯¼Òm\9fÏÆ\7frßJ*Y;¹J§~\9f\8f\e\0Ó\_4íóß\ e~\86\v´/=û\7ftðù\v\ 5ó\93ªôK¯U\18Î\14kRâá8;Ïÿù\8fbÆUÑ®À§>þñ\1f«_ë\89\8a]¨)ç#MÑOæi×P«Ø¸\82     \82Û×Fj\95:Úq\ 3|æOÞhÜç[Ö\ 6ÞãÜ\9aÖY«d\ f~ûÅ\1f*îs)7º\a\8b\e\8bîq`
\85w    \ 6ág\9fy\13\1e7¿o]þÝß{kY¥Ï\17ù\9a×vß\8f¤kQ\83O\9cظ:ÿ7?TY\8e\9aõùxl1ù4ojm_<zyÙÁÛ\13\ 66ù|\82 \88Ü\88¯½¥\14Èí\96â\v>çìõ\83,\9fï]ݧ\9eª\13Ñsª¸\17\9e<\1cëtnHðBø D|>^\ 1\9eü\9cz!ø¥çy,h\ 5UMî5è9K­\0Y'ó\1eä®>\fìB¸óç]\9cÚq0\ eá÷<àèû>Rf\r\8b\15\8f[\89µU\1f¥xÓIÛ\9f§7§Ö\16F5\8cmÖP0ÚkP¦\84
+¥?au\83|¾¢\ 1\18\ eï6ëó¿ðÅ˸êI:ä¦ìJ\14Í¥º/©ôË­\95ç\8dkHËÇ\13,ÏüÉ\e0®Tì
+ôÝg\9fy\137<x¾n³ÎG\9a¢ï8;õ×*6®p}꺷\1a©Uj\ fâ\9b\b;qê÷ùÒð\r\fÎ7Þ¼Ys­²ÆÕ²a²")ô\9fúô\9b¯½vu©9\bÕûÖ·~ª¾X1Ó[çÚ\ e³[ºÅ\80\19]M|¾tÃ\1d\9bì\rú|<¶\b\ 3©©(Cj\ fJSôùn\82vý÷K\10\ 4¡      úøü\v£C$Eÿöô\ 1uVmp?\9f̲N%\8a¢\95÷\10\7f¯è󹨴m;u,IMiÖ\85<Ïã\ eV\ 4Î'«Ï)×çCænÖà\88'dù|\18Q®ëò \92\88ã8QÆÿüâ\0\11ïe>6`\ 4ªÜ;T\98\15\vå/;J¡Î©éýêí\9f\15ö\82ßóx\96\bÜ\9dâ}\11ÕÑy\9fÏVïä¨F&~¹Q9i³çðù_þò\97áµ\94\1dw\8f\8e²>ÂÏa\a\9eËmÛ£\93\93\93ØGøñàAú\7f8põÔóÕkÅ\8fßú­\0©Þ\9fþiØH­ MRÏ\7fç\9d
+(¦ô˪Õ÷\87{\7fð\a×\1a4ùIûúÌ3ë\7fçßÊj«o}k7G
+ñK/Ý®´\a\97\1díùRô«®\15\1fW0*Ô«W[­²z0\8aæxmÿê¯nÕ_+\ 64\94T>\7fýëÿ\s­¤ãêoÿö\9dê\ 2|ðtðýBs0\b¦\8a\v&\1c\9f~úz\9dk»tjÃí7þÄ\89\8d+XT¥\9bqê¯\15?ð'TêÓ¼Áµ}¡\90¢\ f\ f¸\ 3Ù\9b\1dA\10\ 4\91
+¼b§\9aØÜäöù\97ÇSÄç_»sB\9dU\e\8eãàJV\11E\9foÛ6;MÔ¤\8be|>\17³¢¿å\89âYP\ e3£\\9f¿\10ÒïSK\10\13ø³|~ª æ\18\86\81+}<í\9f\ 1\12ìùV<|\94ÂTâñ\88|íÏ£lbØ\8bDz\90Î\1d¢R:ïóy Jú°`ë<,\ e57{\ e\9f\9foÖø~\94CHÖ\83ÎuË"\b¦\8a\ 2MÌÒ/\88T=5x@k8Î\ eÜl\14Íß\eçwñ(\92J2¹6+IÎ\14ýzÀ}\14ô\82\89WضGMU\f.\8d\ fN\r\e\93\ fÑ|Ó-ë0ÍuÏ\e\97µöªokb³\89/#\95"ÍÍ\86Y¯áÓ\aÀ\97£\12\1f:¥7©\86í)]Þµ\9dõ\ 4A\10=dY\9f\7fíÎÉ¥½{'ó\87·§\ f\10\9f¿¶sDm[\eܦ\164ÞR\9fÏÒ°³ö\ 2(\9aR®nD1Ë\7f  Å\8aYÊð{\1e>\90\9ePºÏ\17\8d\ 4Ñö§\8awþKè)\1e \81\9e\82~ä#\13_^T|>7á\ 5C\99*£Ôó<¶×\0¾&ÛD±ýùlââ\14Ú\84\17;\18\fø`\86Fãµ¢¸Un&³ùÍ£û\ 5\vé¼Ïç#\93\r¬sx\8c\18\16\87\1aªÔ\88Ï\7f¼¸a\19\92««{ÍõÑ\96\9er\ f§N¥\ f×R·a\88\9b\82Æô¼ñpxwñXb@Å\8a\17\9bj?¤\19\8f-\92ù\8c|)ú5 \15h\rʽì5ð®\86\8d\95¶v\97\ 3³»øü\85ÉË\96\88r\81\ 5G\1a\a¬K5(}i\ 4¤ÁÇ"\ e¬\93zúgm+\86#]Þ5\E    \82 úÉR>\7fs2cºþÂè\10~ô®îgùü³×\ fô¿÷ù|>\1e\8fwww\1dÇa\9eMg \86Yj\85\9fSPwsCbYÖJ\ 21\a\e¾O^KÅ\94\ e\ 6\ 3ÞÔbæ3×G©J9kG@¬+\8f\8f\8f³®ëºß7\8c¿<uêë:\1fPCÇù\87(z\17ï&Þ\v+
+¨øü \b²Rvc\7fJ\15ïLø§æñ á{1R{66r Ø¬®äç\14\14\8c¼\1c¨\18Þb0PÅý#ÉöϺ\ 4Ü)\1f±â\8dó\8cýÔa\8cì\bh)ÒYY"7\8fî³GÏÅÝB\97ë\83Ïç\93\9aÅà|ßç\8b9\8cU\18\9c|ÎÖ\16BmÊçãªÇ0®4ÔASü=º
+³Tbå\15\95>\9c\99ï\12Q4Ç\r\89¢ÃG*\0\7fr\9c\1dÅ\e©îXYÙÒY\96j\9b¢\8f\87N\9a\9a×R4\f/Jc[0\8f´\1d\9fâtÎÒæ0ÅR\ f\18BÐàp\88ûk\1a\19®±\r\ 2¹\97M\15àf¥\15ж\97µM\83×vã\0\8ety×y0\10\ 4\8a¥|þµ;'ÜØÃ\8f\17F\87H\8aþdöè_ \93ùÃ\9bG÷Ù÷º±½½½¾¾þÔSOinòERefY\ 2J4$80l\10\9f/5¥ISÄÿ\9aª\8f\82 `%dù|Ö\95ÀÉÉIò¯®û}ÍM¾x¬¬|\17ï¦|#'µ\10>ëÅ$ü÷7ÝûR÷S}~Ö~\r\ 6t\19ë»T7\1e\e9PlVW*îþP_ñ¤Ø¶\9d\1a\83Àã)Ü\85&kË/-î@\89M@ \9e\8cèÚ\16جYY.\17w\8fÙsçüÖ¤H9}ðù\v\84G\90\919[.Mù|é\ek#ïÚ¸Þ±¬\rÍG\97¢Ò\87sr¸©áð.®=³Ì\ 3´*îð3fʾ4aµ\8a\ 3*¬sÔ\86£a\8a>Lê\96îwÀÃ\8bõÛ3if»¶©Å­C*Ò\v.\9b\8a\13Gºnk¾(áku#\13\1fïYmc\8b\fJÑ'\b\82h\ 5KùüÉlÎuýædviï\1eâó¯ÝyäpÎÝ\88à{ïê¾\86J\7fssóõ×_o\91ÌÏr\1dõû|&íc¶GÝ\94&M\11Ïg\86ord\84BW2s\98\9a\fÜ"\99Ï\8e\9cd\15>?æí91Ï\9fêóù\86\8bÜVM,vcc#µ+ë÷ùl &CHê\1f\8feÚó\f|hÏÚLi\83due\15\9c½~@ùùËÞi,ö\84/ïUW¦\11\9f¿ÐO\9eKmd+Þ «PúùÒò¡\a\8bë¯0\9c­®îå\88#äÛ>Ð\8a\9cgÞ2øíÔ\9f¢¯a\88A}\84ã³Æ÷#}*£sK¶\11XØÕ7\ 4\14\90®®¶=Ò¿\ru\93ç\1a\86\18\96Z\ 4ð§\1e¥è\13\ 4Ap|ß\87\17Rx?µ,+öZ\r¿´mÛó¼\8a\97òù\8b÷k\93\9b\11\9fϼ
+ÿñòxªS\93?âðððµ×^#\9fÏá\86D´µ"0\ba(r\7fk\9afêXB\80\11îºnÒØÇ|\ e\eóYÕHíÊíííÝÝÝÔ¿¶Îç\a\ 1ö:¿Tw+ú|èYö\ehv±»c¿Lõùb¿ÃØp\1cg0\18,µ^\89Ų®ÜÛÛË:§,\9f\9fUN\18\86P\7fq)\8eÅ8T¢\00\80\93Iø0ìùÜas\ 1ê\0·\9c#\80Õ
+²º²tb\81æ"EuÌçóÑ\9eu\ 2\fu\98°\ìÃ\98dó·æz6èó¥B²æ\8cDÜFj\9eÎ'RDéC§@³Ã\ 1­\ 1\87ëÞZYÙR\97]¼døl¹7åû\91m\8fª\93ùp§Q¤ãnV\ 4<"V³õ\95Zèúã\v%6f\9dBUjwK\9f\\84â\9aYÅH\86KK\97ÓV,MZm¸\93þw¡\7fDLºs¤EÑg\82 \88\8a\80÷PÑðH3¢K\7fÑ^Öç¯í\1c1mrîF´\10t}ò`'\9cß\9a°\1f/\8c\ eõì\ 2$GQCR»\89»Ç\82A\1f©ÏgDQÄ\eM\1c\90\ 5\8d+\14\95:\17\98Û/â<WV¾Û"\99o\9a/â·S\85Ï_$Rñ\17iIû©>_<3¦µ\93n0&îÔ\ 3X¾ïóñPÊ\8a'\1d¥|ÏH,;\88ï\85\19\9aºà0·\1f\v\1c\10ÉÖKýýåñ\94?w
+^¢o>_\13\1aôù\vY\ 6\ 2\10O\87k\97C\93:"n\8a \và°¬\8d²Ä8\94V\9d*\89¢¹ç\8dña£U\85+E«\14ýö&ç+N\99zê/­\ 6,S­\v<µeÍT_\ 6á̲zAº\9aµEÛâq(¸ÍÞV&7øÿ$m    ô\10\ 4ATA\14EÉl|\15àS%æs.ëó7'3nN&³9×õ©\a\9cÀM\8bwUÓMâA\10¨\87T\9aÅ4ÍT£ÅÅc2%8\v.\15Å\ 2\15}>ày^Ru\16Ï \86\81\r%§Î\vè£ÜÁ¬ \18\9bæ\8b­\90ù\86ñ\97xrþ¢2\9f\9f´÷IÃ\9fåó\17\8fÓÚ¡\84TY-\8eÛÜ>\9fo\16\10ë\83\ 3\ 3&\19\ 2P\1f¥ü\8a±}(Å}/T\8cÏÙ\18Ð\86ôpL\85­N°\ e$\1f\7f\17F\87ì)\ 3Ï£\82W!\9fß\bÍú|ß\8f4q\80Ò\¸Ö)_é\1d\95~\18Æ\95ÚÔS\14Íá\ 6\1dggÙ½\ 315Zó\1e\90ÒÑ$E¿íÉù\f\çÖ\93¢/µ»5ç9÷
+\18ÆêJ?u\7fÓ²HWi¨O[ZO«\94x­6\vT7<h«\ eA\10ý$&ó\rÃ\80\97Sx'õ<oø~\ 6\83\ 1üÞ¶mÑ9\97¨ô\97õù'ó\87\×_»sriï\1eâóá\84ÛÓ\aüGø^Ûî\18\81¬ú§Úu\840\f\89ºÏçúE\1c6Å}~¬G \9c\98Û\97V\f­óÏõ?¢è]é\8dTäó¹¾\86á\94ü1ÖÅHGÀèò}?æö¹\86\85bW\12ð3¡»\93\7få%ó5P1\8f\1d¦Cr@.5JS[¯Dß\vÍ\bÍ\esûŧO÷\10\97¬äØó®î³GÌ[\9bo\16ï\11òùõÓ¬Ï_h\93\15\8fk\9cVØÈ$u*}Û\1e5\15ò\18\ eïºî-| %]\7¼¨Ô¡Õ\93\89Úöä|ÅùâûQ¥\15\90Æ7Û\92WÜ^¢h.\8d\91\95µ\8cH£`p´+à\88G£`\95Öa"C\9b·¨I)E\9f \b"   \7fË6MS=ëØ÷}.¾\14Í­zM\14}>pîFÄäÉÚÎÑÍ£û\88Ï\87\13\16\82l¹´w\8fº¾
+DÙ¥¢:y&¶\98·¼XÆçÃP¬ÔçÇî\8e\8bÙ²\86}«©Èç/Þ\9f\90\9fL×_¨ù|\91 \bxD\ 6\14\8b]j\18DQÄï]Ü\84¢>JÅ\12r·¿"lgJêv\0B\1c\8dÉü|ñ\194¾ðo\16?)´Á\81|~#4îó=oÜø«÷px·KRE¤\ 6¥\ f}TµçT$\fg0\9cl{$Íiì\92\ 3\91êÇ\1aF/®%ëÉl/\8eÔ¯\9aæzu#\aJ\96Ƥ\8a'\84\13¥Ì©R4µô*­\8b#k"Ò5    +\94\82ô\9f\13JÑ'\b¢\870o\96T\13Rà|®ô\15\93Tqrøü\8b»ÇL\9e\9c½~\0?">\9f\9d°¶sÄ~<¿5¡®¯\b.7b\8a>    \f\e\9eç\1cÓ§ê>\9f\9bU×u\93c)\87]a\99Øbi±a¿ì(í0Õù|Ñá\8bn?ÙÅ|\84ð|û,]ÏC?ȨPôù¢ô\13\15}*ü^b÷¨>Já\8eø®\81Üí\1f«RlÇA\f\1eû A\1e\ 3       dÿêyôOo/Î\9fZ\,´D\90Ïo\84Æ}~\14Íñ×Õ\1aò¨q¯Òö\9cØJ\95¾m\8f4tãP%ß\8f [cz¶ÁM\ 4Õ!MÑ7Íõf\aX\8bÂaRÅZ\9d\f\94îqhé.¡\96²Ô²   Ï\88e\97Aé^\8c\96¦^ã\11±\1a\9eæÒõ°u\8f\0<<ÑÆ;"\b\82(\ 2Ϧö</Çǹ\1fSOìGÈáó7'3nì'³ùù­     ¢ôá\84kwNø\8f\874\0ª@ô!Hör\14\19&{\ÑçsÏ\99\95¼\9dîðZ¥F¸¸Ï\97F+ú@u>?\b\ 2>\84Rר¤xç]\13\93ÞÉõ
+YîÔÓþù\105\f\ 3Qúâ\10\8d\95©8J¡p\1eö\8a­´E|>û ´       2\vàº4ȳ\16·dÓñýbO?\7fdþfè\7fû\1f˺V\a\9aN\9cY¹©¹\8b\eñù\v\99C³¬\8dJ[@úú_\83\82¨\9a*\94¾i®·ÂÓ\ 6ÁÔóÆÐ\ 2\1d\96\1eR\v]i\ e'\9eUÞ®p\98t5¨(I\1e®\8b\8bÐ\96ÚÝVãû\11Þ)±õPe`À9®{Kº\11\ 3\ eXµÚØhpwÍ®\ 6\8dW t¤)ú\14é#\b¢WðW×ÜoÊ%¾Ãæðù'ó\87ÜÏß\9e>¸´w\ fñù×î\9cLfsþãæ\84\ 2¸UÁ»\92õfR|\r\ 6\ 3®(á\9bäþ\ enH<ÏK\15;P\82hQbéôE|>ÿ¬ã81¥\ f?r½\J\f«íTçó\17B"tê& Tñ.\ e\9bXiðq\1e©Aö\13©û|\18\fâ\18\86\ fÆ\8a\85\1fmÛÎ\1a¢±\91\96:Èaâðñ\96\1a§Èí{ùÊ\ fe&[\ 3ZO\1a\8fë'¼;`p&ÿÊ\1f.\1fþÄ»Ð'\ 5wðtÕç\17¡\86zêàó\83`Ú`~/\9e\16[unsm\94«ô]÷\16ÙE}\80¾hÊ\ 6w)9_eA¨(ÂhÛ£NÚݶ\ 3Ï&ènÅU\11fYVð7\f\83*\1a¿í\9bÂ\1aO\8fo|\83@\15P\8a>A\10\ 4§í>\1f¸vçäüÖäâî1|\7fóè>âó×v\8eà\9c³×\ fØ\8fì#DE\88\1e\92w+CüeVnsì4\1c89&Þ\8bøü\98§\85\eY}\f\7f\9f\95\ 1Þ7*õù<\87<µÁSÅ»èâLÓ\84\12Xßá^]Zl\16bæ<¿(\eä±`Dª\18_ÊpB\81É\99RÄs\8aS\fÚ\875\144\ e¯yj ­Ï\88+Cê(b\ 1å/¼\1c}àôÃÇ>ÿÝ"\97#\9fß[\9f¿\90½®V\97~&\15¡\95&6×>&÷ú\93\96ß7¤\9d[Ñ$êRr>_\13¤Þµ\».Í¿íLT±\8dÀx\90F[²\1e\19Lã«G\ 4\ 3R\eøÓÜuoUwi<¼\bÏú\966©4ç¡ÒV%\b\82Ð\8a0\fU\1cW\16¾ï\97\98«\9cÏçÇ@|þÙë\apÂÅÝcöãù­  \r\80J\81á\11³\9dI\ f\9f%\f\15}¾i\9a©þ¤\88Ï_¤yZ\11˲bá\83ÞR©Ï\87\1fIæÛg\89wX\8b\90\ 1#M8_Êç/\1e;^1X\90\ 4\ 6R²ò±ká° Rê\90+â9¡@¾a!õ¢©\81¶>#\ e­¬Æ\89þÁ\81Þ`ÇÊÊõ"\97ëªÏ_)@\rõÔÄçK³|+J?\83·`üº\1dËBw\9c\9d\1c\ 2\7fee\v\ e\96&7ö\ 4©\85.]\12v/9\9f!\15ì\86q¥Ä\15IÚq\14Ak\9c¥\82¡¶=\82©!Í©îª\9b\95Jõê\9eª\r\86\12ª\ 6\7fv·wC\aA\10D\ ex6æ²öFÔA¥¤q\96âó/\8c\ e\11¥?\99ÍoO\1f\9c½~à]Ýß\9c\eëàà`}}}{{{>ïÚ\96íÁ``Û¶\98®\fýëº.>ÞàS«(\9eç!%\f\87CvZî\8d'0¼á㢨1\f\ 3nD\1aºêpW¦ÎYF\91\93Ù/S\e\96\7f$¹Âð.Nþ    ~ã8\8e(«aøÁoT\ 6\83X¬zWÂÉ0¤ÅÑ\ 2Wd£\ 5    ýðk!àu^ªý³&\1aT[\8c\8f0¹:\16±*eVòÀ\r²=Ç\7föW>ÿ\eöKEêÜU\9f¯y=5ñù\v\99Ôª"O^jíªÛ\17Р¾\1f\89Mm\18W\98®\87\9b\85F\86\ 3\9a\ 5\8eV'\88ö\13èY|<\97î|ðÄãVg\95K#_¶=*åB\9e7®çBDñù\85oæ*å¨Tw×\ 6ÞP\15Å\85ÃpÖHV@=àwG>\9f \88^!æ\88¦Ê±T\ 6\83\ 17´eeÍ\95âó/\8f§\88Ï¿vçDÏ^ØØØX\7fÌññ1\8dÉVC]I]It¯+ù^¶ÔÝ"¿ä pÿ½÷\9eÏ?|Ëû\9fEêL>¿-Täóñ\ 4HøRú\8dà6²í¯ÿD\ f\91¦\ 4û~TÖµ¤á°Vïæ\88¢¹TÞ\16oL\95«Ð*¤\ fA0\95n¦(xtc\ f\14¾ñ\r\9e¼õ_´\ 3Æ\e     2zÞ\98¦'A\10½BLdeÉ\87®ë²ÔP\11\962mÛ¶\98Ì    ß\97\92\9c¿(Éçß\9e>@|þÚÎ\91\9e]póæM¦\9bf3úOµÝPWv\86íímèÇ\8d\8d\rêJêJÑ®gn^¸¶jþfÈ|þï\9cú_ó%·¼!Wì@\17\90Ï_\96(\9a×):ðð\ 1\11m$\b¦ø¨.1g\1e\8f\1d´:9\9f\ 1\v\8e´1\v¦RKw\ 1T±/\89(\ 2ô¸4j\96ûèÌCG\9a*_Åþ¯F6\ 5Ôܪ©÷Ø\8d=\1d\ 4A\10K\11E\91mÛ§\96Ç4Í \98²\10)Åç\ 3ÞÕý,\9f\ f\7fÒ¶\17\8e\8f\8fI\ev\ 3êJêJ¢{]麮eY\99Éù\8bÅÎËÎ{Éù\8bÿj¾T°ÂäóÛBE>\7f!³[%&õe½\17\8bÇpx\97\96\11¢uàIªe)ân'çs¤æ\16Z;wá*Á\17Òt-\9de9\ eÛ\1eu©»ñ¹\ 3Ïúr/\87GߪØß×\b°hÄþu\81\1f«\b\8e\10\ 4\ 2ß÷Å×R\1cÃ0à½53M1\17eùü\v£C$Eÿöô\ 1õ5A\10\ 4Q.\83ÏÿÊç¿â|³`iäóÛBu>_*¸Êrì\95j:\82h\90(\9aã±*øk\18\16\8dÚw>9\9f!M3.\92i,]\85|?¢ñ¬-\83Á¾4(¬rÀd\81ÇMñ)©aûà«P¹Á\v|6ué\81\ eíæycÛ\1eÁ\ 1ßPÈ\8f \b"\fCÏó\1cÇ\81WTÃ0bÙøðKx]õ}¿\8aK\97åó/\8f§\88Ï\87¿R/\13\ 4A\10åbÿÇè=\9fÿó_\f¾[°4òù\1a2\18\fàF kÄ_Vçó\17µ$õù~\84\v\16Ú½N´\1aÏ\eã#¼à<êIr>cuu\ f¿Ù|û\86pÛ     \a¬\844\925'\99,½¬Æïvf5Þ8%®\12Ò¸[÷Â%\ 4A\10\84\ e\94åóoO\1f >ÿÂè\90\9a\9a \b\82(\17Ãøerþï\9cúá÷ý(\b
+\95Ö1\9f\ f·³ú\98\ 5S÷±»¨ÔçK5WÁ\17siö2¥Å\12\1dÀ4׫ÛêbÛ#<\1cÖ·Æô¼ñ²«\90´Ìn\9bÞÎ\0]iY\eê\1a\1ff\87ãì\94µÑLs\÷Vé\81°\1c\17¢Ð\18A\10\ 4Q\11eù|À»º\9fåóáOÔÔ\ 4A\10D\ e¢(bIÚ\9eç\85a(þéÔ©\9f\9f:µøð'Þýw\9f¿÷ôóG\1fýãé\7fú/ÿïý§,AÇ|~7¨ßç/döluu¯Háø\8b?½û\13Ý@\9aB\9f{\9cKSa\vÎÐ66¦a\Y*Î(Íù\87e\8aÆp\8bp\9c\1d\15\8dß·HqmkEm\e\ 1\b\82 \bB¤D\9f\7fat\88¤èß\9e> Ö&\b\82 \96b0\18\18\86qJÀu]þ×\7fuúò\17^\8eÄgÍê\ föÿð¿½\eEy®E>_C\1añù¸ì*\92ý\e\ 4Ór½\1cAh<y·ðÑ\9eOsáê\12fP\14Í»×\98RakÛ#Å¢¤\92³«mØm²v\96ÁÀè³O\96®BÅc\1cø\9e¾îm\17"\b\82 ô¡D\9f\7fy<E|>ü\95Z\9b \b\82PÇ÷ýSi0¥\1f\ 4\8b\98ÌçÇÿøV\9e\b2ù|\riÄçGѼ
+\ f      XÖFßR\8b\89Þ"õƦ¹¾¬7îar>_\94ð\1c`E3     \rhÛ#¼\1cÏ\eÓèm#A0u\9c\1d\98V0T\98Ƨ¸\f\99o\87v+r      <d@[]\b\82 \88ê(îó'³ùÍ£ûðÍíé\ 3Äç_\18\1dRk\13\ 4A\10êX\96\95êóÿõ¿ýh\14E/¾:Ëzâ|åïò<qÈçkH#>\7f\86µ¬\8d\1cezÞ\18\17\vù\8a%\bmqÝ[åê÷~&ç3¤f\12\89\8fÀïáãÒ\eZ\85\88î!\r\84Á\98ϽnH7ÎÐ\86;\82 \b¢:
+úüÉlî]ÝÿêÛï\Ü=\86\1fÏ^?Ȳ+p\1aµ6A\10\ 4¡H\10\ 4©2ÿ\v/\ fá\99rîFô«GYO\9cÕ\1fäyâ\90Ï×\90¦|~\10\97ôe3úà¥^j\15\86ûÔãD\97\90f\95Ã_Õ}Wo\93ó9R!\9fL\ 6öýHª\1ci\15":\8c4\92\ e\87m\8fr\94,\8d\84¥ö'\b\82 ª£ Ï¿<\9e\8aº~mç\bIÑ¿=}À>5\99Íù÷\r2\9fÏÇãñññ1\r\83¶ÓÛ®\8c¢h8\1c\ 6\99;
+Ãpmmmk\vû\a\18nÙuÝ\95ÇÀ7ð\91\8a*\ 3\r;\18\fVßÃ÷ýê®E³2  tnRæ\7fhå?ðgÊ\97Ö\ e\90'N\8e+\92Ï×\90¦|þB¦Î\1cgg©Òl{\84¿ø/[ A´\ 2iV¹úÈ\97\ e'ç3¤\11\r\83`꺷¤1ÄR¬&Ah\8eÊÎ\94\81Ò\95\r\ e8\87\1a\9f \b\82¨\8e\82>ÿöô\81¨ë¯Ý9AìÊ¥½{ì#bJ\7f\83loo¯?æää¤íýÈåÆp8Ì}²hH\1cÇQ¹®i\9a5H\95^ue\8e~\1f\f\ 6ü7\HªÌè¬\93ù²\0@\17«Ô\ 4\ 6\fÿH¾Å\84ñ£\1fý\bJ8}úô/~ñ\8bÔ\13àfùUØí\e\86¡2ìÕ\89¢\bZ@\1cÛ"\96e\89\r\1eã\94\f(\16Ú*«Ââ\1cÌ\ 2ÎA* \ fÅg%ôlòöÿèÏ^@\9e2üøëËyÔ(ù|mW¹F|¾ôm]]\1eú~\84\17e\18W:¯"\89ÞbY\eÅsÂ¥©þ=\89\88­®îá\8di\9aëp,¥ñsì\95 \88\16\ 1«\87ʤ\80'µb\81*2\1f&\14µ<A\10\ 4Q)\ 5}>Àä<\1c\97ÇÓÉl\8e\b\96ó[\138ÿÒÞ=1¥¿A677\99nê@^wé>ß0\fi9A\10\88\9e­A\9fߥ®TÇ÷ý¤o/Ýç\ 3*ùÿ¢z-âó766>ùÉOB!®ë&ÿ\1aE\11\Ȳ,ø\86ý&\fCøQ1è \ 2Ül\96É\17±m\9b×Aä\942©!3\15\9fÏÃ
\15Ð\aèÊ"³\92\rï$_Z{[Åç¿~9ÌqQòùÕ1Ì\v\fõ¦|þâQÌz\1d÷\87*\12^Å$P\16\1fÑéé\7f\17\1fÿ\96µ!-Dê±ûã¢óéúÒó\93      ¢E\ 4ÁTÅÀÃiÒ¢Td>M(\82 \b¢\ 6\8aûü\v£CæOà\eøñìõ\ 3ıÀ 7\8fî\8b\rÞûáááöööîîn\aú±t\9f\ fø¾\8f\97㺮&>¿K]©\b3Û±äüE5>?U­\8bÄÔk\11\9f\ f]ÉRôSã\bìB±\91É2öU\82\ e\90X`Âó<î\15¡Y\98ZäF=Y\82øÙ$±HA²aù\1c\84ÂSK\88)}\9d\87èÁÁ\ 1Ìʽ½½¥Úß¶mÇq`xÃ7I\99ÿ\eOþ¶\8aÌ\87ãÆF\9eÕ\80|~u\9c*FS>_ª\10áõ\1fÎÁ­¾ëÞÂ\vYYÙ¢\11Bt\eÛ\1eå\bi\85ál8¼ëû\11Ì2JÎçHã#9\ eÓ\§-BD·Qñð\96µ\81O\ 4E\99/-\87 \b\82 \8aSÜçÇòí×v\8e\10Çróèþâý)ýÔ\ 5¥P\85ÏOÍ\1f\16\89ÉÉ\ 6}~ogn2/½
+\9f/Í~\87¡R\96Ï\17\vL\96Ã*\96z\17*#\1f\87\87HØ-g\15èy\1e2æ¥68\fCÑTÃ\8fËNd±\ 2±hNgÖ±Ø\bä|ô\8f?¯"óÿûÚF¾
+\90ϯ\8e\96ú|x\1fWysG¬¾JN`\7fò\8a\89Þ\ 2\83\:\89<o\fóȶG++[˦ ÷m\129ÎN¹>ß÷#\1a¥\ 4M\1c8`    Êú¸¢Ì\87Õ\8c\1eë\ 4A\10D\r\14÷ù±|ûkwN\10ÍriïÞBHé?¿5¡.(\85r}>ó\8d\86\85\ 4\9eL>¿NÂ0dmîy^ìOåú|Þ¹xö;Óàüäâ>\9f\8f.\15_Í®\eEQÁ\8bò¨\84eYxilG@ª\90W´Á<\16\16ëAÅ\89\|ÝÖ\10Þé¬\vR¥îç^zUÅçÿõ\95wòÕ\81|~u¬\16\ 3\89>WýèQ÷fLHÆ>nY\eø§VW÷ôê*\82¨j\11Ø+=«¼\87Éù\8c(\9aã\e\16\96ÊÌ'\99O\1c\1c\1c<xð \ fw*}(g=\97Õe~\10P¾"A\10\ 4Q\a¥x!nQ.\8f§\93Ù\1cÑ,Là\8bÎÿdþ\90z¡8åú|®+}ßÏ*ÄuÝØÉ\88T     \82\98\98ü$òÁÍsR;\97ëóyçBwg\15\ 2\83$v2ri¨ðð=ðº1£\8bo\r\80Ò\98ÌGª§\b\ f\91H\83\17±É\12\13ò\8a6\98·pVÖ1Þ>bm\91Îe\14\8ftÔ<ª\rÃ\88íýa|àô¯«È|8®\8eþ%_\1dÈç·\85:}¾J\82}L\8eÁ[?û¬ç\8d¥'So\12=¡D\ 5M;\\16\8fþû\8a\8a4\1aô\85ãì´Îä\1f\1d\1dÍçs\9aM¥ó½ï}ïàà\80\16¢¬\1d+\8aÓ\8dd>A\10\ 4Q'¥øüó[\13fQÖv\8eàdz×\ f\10Ór2\7f(:ÿÍ      íG+\81r}~\14\eÇq²
+aÂͲ,nÀ\92R%\b\ 2îè8\86\99mq\8c\1a\82÷N¹>\1fN\90zu1¸\80\Ú󼤤\853³F,\9c\8f\f\16T\92í\vÀe~\18\86©ù½1x|
+\19ó"<xaÛ¶øûz|>r!ß÷EÕÉ\80\96WÙéÐì¨f½\89\7fø\13\9fQôù{?#\9fßqêôù\8f\95#åÕóÆRi0\1cÞ¥Þ$ú\83b\82ëR\aLÏÞ¶g\8e¥       \ eÛ\1eñ\98cë¸zõêÑÑ\11M%¢\b*azÑÌÃ7*!\0\92ù\ 4A\10\94âó/íÝc\16åìõG\91ýµ\9d#Ä´0\81Ï\9d?\v\ 1\10\ 5)×çÃ÷,íÙ0\8cÔ\12\82 àÉÉY>\9f\vÏTLÓ¤\ý|ð\86M5´¥û|îÕ³²Ö\99\86eZ;µ´(\8a²\f-¢ãx
+zR°û¾Ï.
+\7f\92\8e"$Þ$Âk\88ìIQAÑ\ 6óËÅZUq"óÐIìBÉðY,z¢ÿ¨fõL­ÿÓÏ\7f\93=5V\7f°\8f<bþâÍ\7fÉ]\ròùm¡f\9f_0\ f6ëp\9c\1dêJ¢oXÖF¹ó¨ÏA±0\9c©oy\80\96÷¼q\14µ;¹\9d|>Q
+*±E\9820_Hæ\13\ 4A\10ÚR\8aÏ¿yt\9f»\14øqs2CdËÅÝc8\a¾\8a!\0¢ ¥û|®×Rõ&Of\ eÃ0Õ\97Âï\99q\85¯pòð=à\1c\9e¤mY\16u\\ e\855~ò¯¥û|îÕSÓàax\88Á\85ÔÒøh\81ßÃil$À7¢|N\1dfl¨Ä\82J¬4(J1\1e¤èó˲¸*å\88\r\92o"óé)\96Àû\ 2Ú\8d\ 5Ú\0ø%\\8e§¾ã{\19\1a\84\a\9bä>\ eÆç^zUÅçÿý\9bÛ¹«A>¿-Ôìó\17\15ä\15û\7fÛÅ\1aAä`8¼KÉù%²ºº'Ý+亷Â\90vC\13Äûp\9c\1d\95\15\86d>A\10\ 4¡-¥ø|àÜ\8dè«o¿s~k\ 2ß\9fÌ\1f\85       |ÑùOfM¿ÒÞò\17o:\8b\8b+Z\1f?q\17·\87YwÀå\86ã8«2¸.C|>O\0NfG/Þ\13­LȧúRn,\93ZRÌÖ.\98\v­\ eÔ\ 2î\ 3ƸÎ\aÔP¥=XÓem\9dàÝ\ 1}$\1d  Ü¨#>\7fñ\9ek\85\ 2\93\97ã%@·.Ò|>\1fH©+\f÷Ò©Á\1d\1e¹àIìlcHê\98Ìîz¹Ï\17\e­àH\13\1dcj\83\8bñ,Öh©s\10ñùð'îç=Ïã¿gÝ\ 4\7fJ\16\víÆ?\92ükãðý>l£GÖþ\82\ f\7fâ3ð¼øÒÚÁ\17^\8e\90\8f\14X(Èç·\83ú}þãáq\17^íËò\90\83Á>õ#ÑOT4\1a%ç«cÛ£TÁ\bíL\8e\91 \10JÙ.D2\9f \b\82h\8a²|> jy¦÷³\ ev&ÿñæÑÿgßÜ£âªÎþ\9f?»Þµº^úÇûG»Ö»Þù½ï\1f]ËÚ\16Mâ-\17È\8dÜu\f     !$$\93û\9d\f¹z\89bÔÞMÆK\8d¶VÆKÒX\15'*jm©\18£F£fL\88¤Da A\1a,r \10\bad~Ï\9cÍl7ç²çÀ\9c3ÃÀ÷³\9e\95\ 53\873ûìËs2\9fý\9c+©ì\823%\91ÃcÒ&jý\86\17\rëH|~$fSõÞ\98Ë7æ\12\r}©æT\1ax!q²ê*#Ô\90t y\97ðÎ7[°¢\90´\8eÜçÓ@k¼:\87Yb\9a*ìWýÙâêt¾¹#ÉNÜZÓ+ô\89\95F\98iêAùüÄÓ Å\ e§«Ðwf$ÞÆ\9c×ëåÝÅv\1fÄ«\96_\82d\8b-åð]!ê\16ñ©\r\85.Ïd¿äæRrì˾\ 46,àóÓ\85\94øüØ$±Á꣨\18\8cfB¡\1e+%¯Ø\14³NII\133\93Ô±nwm   O\0\88\8b¢\84\13ÏEXn\0\0\0R\85\8d>_äxÓ%\89r9Ù\1cÝÅ®hìdåúÝá¾\94]\7f\8f\92N2\9fâ¨qý°\13>\9f×Nkªè¹\18\f\85B\91x>?ɦÅ\90\8c\8ctòùr\8fÈ{\9b+t³\ 3lôù4Ðý6Õë\15\ fãû24UØ+\12\9fïr¹Ø\84±\ eßGà³H2ÏÍ4õðôùfM²¾\90õ;\ 2q»bxÂ\9fà`»\18ò«\ e>\969gQ\8däæòè±\84j5áóÓ\85\14úüØTIÈê\87B=\18D0\9a))i\1aZ\1d,­;·»\96þ\1c\8b\b\0\908Á`\17v\15\ 1\0\0¤)\ eùü\8b\12åRVÛ>\1c®½µµµá£§ÓÌç\1f6¶L\nø|¾Êxð\12_¹Ïç\9eÍãñ\88\87¹\.z\91NÂ~5ô¥|/\80\1dI­2¬F¶q(«ªªêêêÂá°þÝô\92ù\14\12\1dË\17¬\99ÂâÃAÝ\1ew&pa.÷ù\91X\15=\r½x\18·¯¼JÜðllÂðêë@  \98WP\8bC©×ì4\8bÌ®e¸Õç\9bµ\93\9a!ÖØkZeÑç»Ýnýæ\88(Ãé\0Z\83\83Ý@IæªÔw>ë\rÉUS¿\ 5\1fÈ\9e·³SrsÙ±ÿr"m\86ÏO\17Rîóc\13f(V¿¤¤  #\b\80DéÓ²¢ðz/Ð1ô_\ 6Zh°÷\0\0\87ðû[ ó\ 1\0\0¤#\ eù|ÂwºÅL¹Ð[ÃáÚ«\89\1faõùVJsÍ\ eÖø|Âív3\rË_  \ 6\83\80½bæK\rKmé#\9cpû4\92U*\9d\9d\9dúwÓ«>_èlÙ\82\8dëó­¬h³\83õ>\9f\9b\7fqìhbh\9e\140<\eý      ;RÄår\19º}q(\87 Ù³upyN\9f¨\7f\97]\ e\7f\0A³a1\ 4,Ú`Þ\9fÔ3b\ f\983;'\9dGÜ)àçO\95Û\97¯J±ÙlzÐ|з_äÁ\12\8f¯Ð»»¼Uâó7nU\12i3|~º0L|~lÚ\fÂê»\U\8a\12Æ\b\ 2\10\89Þ|{|¾æ\92\92\97Ö\11\ 5ú\ 4\0\90|<\9ezÈ|\0\0\0i\87s>¿¬¶]b]\1a:®¤üÚ\e\1a\1aªªª\9a+6¥\93Ï¿\10\16\87|>/³\ f\ 4ú?×ëõ²W¸\1e\94Ô?Ó[lGÀPìÛhõÙP\12==\ 6\15\~\7f:ù|j­\95\ 5\9bd\9fÏ\8d7M\0ö
+M      ö\8a_h±ÙG+\8aBçä\85ú\1aá,^K]]\1d\8dcuu5\rå\10\98AÂ/p°\16\97®\88o
+\186 î\19¸»æ\8b\vÙ\10\1a\ e3+îñx$OFØ\8e8\94q;\93²\ 1\9fcf(\7fóL¹ñ\13Ém¥è\88ò\94ïX"m\86ÏO\17\86\95Ï\8fM\9e\7f»\Uq\r\0\8c%\0\0\00ÜÈ̬\86Ì\a\0\0\90^8çóÏ|Ý-\11/\15\8d\9dÃáò;;;£®ébeäLI\1a\ 4µÓ\ 4\87|¾¢(Ü\ 4²W\98\92ÍÌÌäÇH|>?I \10 wE\ 3ÃD®\8d5ÃýCi\ 2](µnøGÜÑK\95Ï\8fÄü3¯`çÏ_\88\8a8îG\a\83A\9fÏG\7f«qû|\9b@\1cÊdú|>9E».\81og\fÙç\e\ eeâ>\9fA+Ëï÷S¯jܾ¸r\9d&\1c\ eËW¥\ 6¾Wh\88ÛíV^vO(è\92ÜV¦¯oU^\9e\9dH\9báóÓ\85aèó\19ô\1d_bõÝîZ\8c\1d\0\0\00ÜP\94pFƧ\90ù\0\0\0Ò\bç|~[OX"^JÏ)è|\eqÈç\13¬À>###¢ÊXv\80Ïçã\aÄõù"\8a¢\88õâÅ\ 5\9eO\95Ïç\1fÍ\1e¬ )Á,«ø\87\83J&t\1eQáêKÇ\87àó%×(\9f\9füê,~\16\7fðD3\87\87\89Ï\17        \85Btul¼¬oX$\1fÃÇ7DgëYôTá\ 1Ùc_\v\16TDNx\12i\ 3|~º0l}>ÃÐêgfV+J\18c\a\0\0\0\fC\82Á.È|\0\0p\14úº]¢\92 îðz½Ù*ÌM\8dZ\9cóùDé9Eâ^ºÃ}\98Ïvá\9cÏ÷ûý\\ 3rû*ÖÕ\eúR¶Héo\r\e@\7fîܬ\eÙðÞÖ\88\ 1¶û|>j4\rxuºf\88õgã\19ÛìY\f^ç¯\9fº|î%âë,ú|~uV\16\11ßØÒ¬\85È`|>ßÕ\12ûpÈ>\9f\9a!¿3ÚÒ\99ÎÁg\94!\19*ÔU\92\eJɱ\16ï¬}\91Z¿-ë\v>\7f\98S°8ÿÿþÇ5äøàÄ\89$4\92¾õ»ÝµÙÙçé_\18\0\0\0\0`\98C7k\89Ì÷xêÑE\0\0\90\b\865\8d\1a*cHÎãD\19dZ÷§\13fµ¢±S¢_Î|Ý\8dùl\17Îù|EQØ\8b\1e\8f\87\15Ðfffj\96\9b~I²#YU¿!ðùC#îV\88s>?\12SÐ4¸\Âk\8aêõgã\1aY|¦ÃÊg\89o\99ý­\15¬??Â/\8aæ­d\9f\97.\99«xú\13Ã\89\1d×\ 6ón¡Ï\12û0\11\9foq£gxú|±ÜZ\ fË'ÿ;î°ä\86Rx ½rï5\91ÎP"Í\80ÏO\17ÒÂç\ 3\0\0\0 ½ðxê!ó\ 1\0À!¬ø|+ßÇáó5ýé\84Y­ië\91è\97òú\ eÌg»pÎç\13\9b\89GC¹jè     ¹\1a54±ôbâ\9evÔÂ\ 6Âl¯ÄQ\9fÏ\a\8eµA¯\8eõgã\9eÙåriä\7fDuã\92­\1f\88D\9e¢²î±ycX{\f\9f.¡³\89Çè¯(îÝ\87®\85¯\ e\12¹1ñ\86\19v\97-\9dé\10âÃ\11\12\9f?og©ä\862v~säõÌ\ 4[\ 2\9f\9f.Àç\ 3\0\0\0À   ôJßë½\80n\ 1\0\80Ä\81Ïw¨?\1dª\94\96è\17ßi<~n\e\8eú|^KÌ\b\85Bâ»\86¾T\14ttZ:\ 3{d\86\9fb¨CA\¸\98Õ\f\84f8\9cðù\1aïª7Þ\86g\13ëÞ½^/\7f~\8a\9bD\86ù<îS\1eV\18T]z0\18äMb\1fM½]¢B­åeù\92\1aþ1\83Aó¨K$±\e\93¸N©Ï\ 3\81\0ëg\9fÏÇUÿð|"FÜà0\93ùDÑ\91\reåüÒÈ'Þ\ 4[\ 2\9f\9f.Àç\ 3\0\0\0À!*+ÿ]RÒÄ"\14êA\87\0\0\80-Àç;Ô\9f\ ey\9e²Úv\89\81¹ØÕ\8b)m\v\8eú|EQ$\ 6ÒÌ\97jv\ 14\98éP\10\17Þ±f\ 5äÎù|BtÚfÕé\9a³Ñaâ_éñx<ú¶ñ½\ 3Ãw­3(\9fÏ>\97/\ 4\89\877\9b½Öe¾×ëMp!ë\91\8bqjö0ÜA£&\89{(\1a¾óÝÿ\9cºp)ýð½\1fü·äV²»¼uç£\1f\95ý½!Á{
+|~ºPýÙg\1f\9c81ähooG\1f\ 2\0\0\0\0\0\0\80Ïw¨?íòùÝá¾ÃçÛ~qê_Ç\9b.ѯ'\9b»$\12\86\1d\ 3\12Çëõf«X\91äf\aó×%\7f¢wÈt\12³·hqéÕhFF\86Çã1¬-\aVàþÓívëßåÃa¨\8b-\1eÌ\1e£0\9cNü-3\1d\16µ\99R\8d^Ûfff\1aîJD\84m\8b\90HwIæ§\ 4úPþ\1c\84\b½(?Ov<hòÓ\19̼ú \16²Y¿ñ\82v±Ä\9dú\7fx>\ e#ÙøûÞ\ fþ»äØ\17t§XûÄѱóó%·\12\1et÷I¤1ðù\0\0\0\0\0\0\0\0\80íÀç;Ô\9fvùü\86\8e+\­Ð¯\17»z\9ds/ ]¨\8c\81\9a|[àeØÃÓÐJ\b\85B|2È\eÏJú].Wj\eL36\1d§.õ-ïça¾w¦ß}àL(XÏo\16\85\a\9e\91ÜJJ\8e}É~(«M¨î\1a>\1f\0\0\0\0\0\0\0\0°\1dø|\87úÓ.\9fßÖ\13æ\8e¥¦­\87^9x¶UâaºÃ}tÌ\99¯»égßé\96\86\8e+I»öp8ÜÒÒÒÙÙ\89e\95îÐP677\8f\9e¡\f\85BlÙú|¾\119\94ï¾û.»ÀA\15Õ\83´[\95¢?×Ã\1dþÚ'\8eZ\91ù\14'\9b»\12i3|>\0\0\0\0\0\0\0\0`;ðù\ eõ§]>?"\bü\8aƨÉ)¯ï\90¨\18æü\ f\9foc¿ÒÁI»öººº*\95îîn¬¬´f\14\ e¥×ë\1d\ eåë\ e\rå-·ÜboR\ 2ÃdUúý~\9a´4²ìé\fþ¤\89\9eï|÷?ùmBîóÅhë        'Òføütáþ}÷\16\1frT\7fö\19ú\10\0\0\0\0\0\0\0\92\ 6|¾Cýi£:ã\ 2¿ô\9cB¿Ö´õHô\v\13ø\15\8d\9dì×\83g[\93ví555L7¡D?Ý\19\85C©(JFFÆÈ«`¯®®~óÍ7\91\9cGÆPjV%\9f´ìÑ\12þ\98\89!cçç[ôù¼>?ñÛGÊ}>u\11õ\fÝ\8eyG\99!ù/Ðh `qþÿý\8fkÈñÁ\89\13\0\0\0\0\0\0\0\904àó\1dêO\e\99¯»¹ié\ e÷QHT\f30\r\1dWø+\17»z\93sííííuuu\8d\8d\8dXVéÎè\1cÊ@ 0òJôi(\17,X@×åõz1±Ó\9aÖÖVZ\95MMMü\15~»!\82Á ø«\9e\85û\1eaw\84¢#\95»ËOY)ÎgO\84%Bj}>õ       -ç1Ö\80Ï\87Ï\a\0\0\0\0\0\0\80t\ 1>ß¡þ´Ñç\8b\ 2¿¦­\87^)=§H$L[O\98\8eá¿\9elîÂ<\aÀ
+,\8f\8d¤\12}V³\9d\91\91¡(
+Æw$!\16ç³Û\8d¼\ 4½äØ\17ì\8ep×s/[)Îç·\9bDH¡Ï\17û\a>?.ðù\0\0\0\0\0\0\0\90FÀç;Ô\9f6úü\88 ðËë;è×ãM\97$B\86 ü²Úvöëáóm\98ç\0XAQ\14Ê`Á`pÄ\Q(\14¢+¢\7f1¸#\f±\1a\9f\86Øï÷KdõUÙ³ù\r¢ìØ3\16}~â\8dL¡Ï÷z½ìs].\17u\ e\96\80\1cÑçÓÏ\ fù|\83\8a\v\17\ f\ 1\0\0\0\0\0\0 iÀç;Ô\9föúü\8aÆN&X\ e\9em¥_/võJ\84LYm;\1ds²¹\8b¿Ò\1dîÃT\a\0\80\11\83¦8\9fß\82\rY¸ï\91þ;È\87§J߯\94Ü>v\97\87ÄûH\82¤Ðç»\.&óñd\8a\15D\9fÿ\90Ï\87\ e\ 1\0\0\0\0\0\0\80á\f|¾Cýi¯Ï¯iëá¾¥­'L¯øN·H\9c\f\1d@\87ñ_éÏ1Õ\ 1\0`d )Î\ f\ 6\83c¤ì.?Åî\ 5w=sÚ\8aÌçÏy%H
+}>ûP¿ß?
+§G(\14òx<\99\99\99Ô\ 3\19\19\19ô¿\91¸\8f'Àç\ 3\0\0\0\0\0\0@\1a\ 1\9fïP\7fÚëó»Ã}\³4t\¡WÊë;$Z\86       ü\83g[Ù¯t0¦:\0\0\8c\0\90¦8ßãñHd>\1dÃo\r\v÷Én\1cw\1eªã;Ålã8ARîóGá\7fHü~?\9f\1e\1cø|\0\0\0\0\0\0\0\18I\88þ¹Ä\ 4þ\95°Ä\1cöl;|¾C>\9f(«m\17\99¯»%Z¦¢±\93\8e¡\7fÙ¯\a϶bª\ 3\0À\bÀív\8bÅù\8a¢èý­\88ßïg÷\82]\87ë\v\ f´Kn\1co~úÕÅ®ÞãM\97ìz¤+\85>\9fÕ\18\ 4\ 2\81Q57B¡\10ïp\8fÇS©âõzãþa\82>ÿÅ\17^ ¿B \10,>8ñ\81Ck\1c}\8b\10#/ðí\ 6\004D]o\vðù\ eùüîp_CÇ\15^3I?H´\f\13ø5m=ü\15LõQ\b-F¶Ýæ÷û\15EA\87\80Ä¡\89T\19#nÑïÈ#\18\fú|>ZSôoJ.\9f\1a 
+ÛH¼\9bxFFFÿ_\9eð¸Ç\ 5$w\8d\92c-Á`»í)(U>\9f\92\9e\137âa\ e\7f\8aÃ\17IÐç\8b\7f\8e\1eò=èÐ\1aGß"\10\bÄÈ\8bÑö}
+\0`\17ðù\ eõg\124Bé9E"g.võòcè_LõAáõz³U\82Áà\90\ fæ¯\13>k\86Äãñð?ñûýCn¿¢(\99\99\99\1a­7Êצ\15\ 2\81\80fñÒ\98²á°âÇÌ\ e¦¡äÃÊ\1cl\hÂð?\19¬\9as\82P(DÍàÏa\89ó\8a\95\ 1Ç]\1df¸Ýn\89\e\17»Î\fú\b[ævÜ\8an.K9¾¤WÔp\9fO=¯¨È\8bóé\96Ô\9f\13\9er]\95Ý#¹e\14\1eøÊöM¿\14ú|\82åÀá°|\92\ 6\9f\f\83ÝÀ\85ÏG àó\11\b\ 4\ 2\ 1\9f\ f\0H#àó\1dêÏ$øüãM\97$ræds\17;\8c\89}0(\98Ù³8\9fÍ\ eæ¯\13.Wü;u(\142\14qC\80\89G\9fÏǬ\ e5,33\93 @\f®\19Ô9ÌW\8bãÈ\85¤\95\15mv°&ÍZ©ë\16ÍyÊk\8c­Ü&hÊ\19Î.q\15È1ô®ÖïPôA        No6|Ôó\86çaõÞt\99løè_·Û\9d\92[^ \10à[\18ô\83¼[ú'Û\85\80\7f½gá¾\ eÉ-cìüË\95\95\97ímjj}>ßÖdÛ£\95RFÀÃ&ü\ eBW=Ø¿\85ÏG àó\11\b\ 4\ 2\ 1\9f\ f\0\0£\96dúü\8b\129sø|[\92¯½µµµººº®®.\1c\ e§û8Úîó\89¸¥þ>\9fÏ.\9fÏÄ£ø
++ëµXó?\92\86Ò:L\8djV®\13>?nQ7¯ÁN<\99ÐPVUU%2\94\9a¢tjLI\f·Û-\16\87gffêM¸u\9f¯\9f´\91Aî8\e6`\b\vßpéÑ[ú]9öxBÒ\12¬f(5;\80²þ<áq\8f\vì.o\95Ü2¾ó]ê¼\91ãóÙ\83\87\17ìÊ·Ã\84A%+\r6úü\1f\8eýÑ\8ff\8c¿zÆø\1fç\8cÿIÎø\9fª\91\99\9a\99ã¯\9d9~ìÌñã¢1nü¬h\§Æõ³ÆÝ0{Ü\8d³ÇÞ¤Æ\84Ùc'RÌ\19;iÎØÉs®¥È\9asmö\9ck§Ì\8dÆÔ¹×PL\9b{Ít\8a\98¡FN42gª1k~4fÏÏ\9c£ÆÜhü\94bÞÍ?\9d\1f\8b\9bÕ¸E\r7Å-?¡¸U\8d\ 5±È\15Ã\1d\8d\85Ñø1\8bE±È\13b1\8f\91¯\8b%ѸÚ,
+\ 6\eî\81qËÀ¸\99Ç\8f\væ\ f\88\ 6ÆÜ\811g`Ì\1e\18³\ 6ÆÌ\81\9130f\b1Ý ò£ñ\93hL\e\18S\aÆ\94\81\91=0²\84\98¬\8bI\ 3\10\13úc1\8b\9b\ 6DÞM?e±hB\7f,T#W\17\v(&RdÞªÆsO>æÐ2ÏɺvF,¦\ f\8ci\14ÙÑ\98\1a\8b\18\9b\1d\8b,\8a\98\1c\8b\98¨Æ\ 4\8a©ã(n\8aÅ\8d±¸A\8dëYL\ew],ÆGc¼\18ã(¦\8f\1f\e\8bkcqM,2cñS5~\12\8b\1fÇâêéÑ\ 4Bñ#5®\9aq\1d\vö+{ëê\9ch\86\13!Õ°l\13\8d\99Ñ\9cÃÒε±ä3VHAãfõg!\1e<\1d]\1fKJ7Ì\1e{c,n\12\12\14ÏQ,MMRÓ\14OVY±\94\95=·?k©\89ëÛÜÕ\9f¾b\19L\9fÇ4©\8ce³Ù&9M\9fÖÌ2Û­²Ìf\9cÓX*\13Ò\97Q\9a²\9a\85ÔD4Ø\do:Òd¤¸IÉÆ¼d\98\9d$©I\9f\9dÌ\13\94>G\19¦©Üþ4õm¦¢pÇâ\96XÜL1©?æÇb^\7f\37\16s(&÷ÇìXÌ\8aÅÌXäPdQ\+É]\86é\8bg0y\12Óç1ÃT¦Ïf\86    í:]BëÏi&iM\92Ùâæ·«&fÂç\ 3\0Àp#\99>\9fð\9dn\91ø\99îp_2¯½ºººJ¥³³3ÝÇÑ     \9foX~,ÂJI\13÷KÌê\ 4\ 2\ 1ÍëÖÏ9\92\86Ò"\\8dj\ 6Ñ  \9f\1f·zVSt\9dH2Ip(Å\96¸ÝnÃ\1afñêô\93\94\14\89\14ÍaüäfS7\18\f\8a\rHÐÊò\11Ô_©ÙÕ%íé     ýPj¶ZL\8bó\89\172¾ÿCÙþoÑ\11%óª\1aÛÛ\9cB\9f\8d$ø|\e}þ5[æM{sÏÌ¿ì\99ó×Ýó+vßZ±sáßv.~kgAå\8e··{\8e\15¯9V¼þ\1dïÆw¼[ßÝæ}·hû{E»ßÛzÛû[ï<±åî\ f6ßóÁæû>Üüó\ f7ýêäÆß|´ñÀG\e\1eúxÃ#\9fl8øÉúÇO­{âÔÚ'\83k\9fútí3\9f®=tzÍ\91Ó«\9f;½ú\853«ÊªV\1d=»ê\95³+_=»òõ³\9e?\7fæùKõ\8a\8as+Þ:·¢òÜòwÎ-?þ÷Â÷j
+OÔ,ûðü²\8fÎ/ûøü²Sç\97~úùÒÓ\9f/­ú¢àì\17\ 5ÕµKÎÕ.©©]r¾vÉ\17uKjëòëBùõ¡ü\86úÅ\17ê\177Ö/þ²>¯©>ï\9fõyÍ\rÑøWC^Ë?\16Q|ý\8f\ 5\8a\85m\17\16þ[\8d\8e\v¹\9d\17r/5F£«1·[\8dË_F£çËÜ+ÑXÐÛÔ\1fa5¾Q£/\1a·j"b\16\1ai¼5ráÖ>\8a\7f,èkXÐW¯FhA_Ý\82¾Z5¾XÐ÷ù\82¾ó\14¹}5¹}\7fÏí;§Fuî7\9få~sV\8dªÜoNÇâÓÜo\82¹ß\9cÊ\r\7f\92\eþ87üQ,N.\f\7f Æ\89\85½ï/ì}O\8dw\17ö\1e_Øû\8e\1aÇ\16õ¾½¨·R\8d·\16õþmQo\85\1a\7f]Ôû\97E½o.ºòfÞ\95?ç]y#ïÊëj¼\96w¥<ïÊ«Ñèy9¯çh,\ 2y=/åõ\94åõ¼\98×óBÞåçcñÜâËGÔøãâË\87\17_>¤Æ³\8b/?³øòÓj<\95\7fÙ\9f\7f¹4\1aÝOæwÿ!¿û    5~\9fßý»üîÇ\97Dã±%]\8fÆâ·Kº\1eYÒõð\92®\87\96t=¸¤Ë·ä\12\8b\ 3K.=Ð\1f\1d\ f\14üû\81\82öý\ 5Êþ\82Ö\ 3K[\ e\97oéW¾e;eÿô-kò-k|pÙ\85\a\97ýã¡Âú\87
+C\ f\17Ö>\øÅÃË?\7fxùù\87\97·|\18ph\99\1f}ríK¥kËJ×¾PºîùÒu\7fò¯;â_ÿGÿúCO­\7fö©\rÏ<½áé§7ø\9fÞPúô\86?<½á\89g6üþ\99\8d\8f?»ñ±g7\1e<´é·\876=rhÓÃ\876?xx³ïðæ\ 3\877?ðÇÍ¿ùãæ_\1dÙüË#[~qdËÏ\8fl¹ï¹­\14û\9eÛzÏ\9f\8aJþTt×óE{\9f/ºãù¢Û\9f/ºí\85m{^ضëÅm;_ܶýEoq\99×[æ-*+ÞZV¼ù¥âM/\15o|©xC xÝÑâµG·¯>º}ÕÑí+\8fîXñò\8eå/ï(|eçÒWv\16¼²sÉ«;\17¿º3ïÕ\9d\8b\99[¾kAù.÷k»nym÷ͯï\9eÿúï\99óú\9eY¯ï\99ùÆ\9e\9c7öLÿó\9ei\7fÞ3åÍÛXPb\99þæ\9e\9c¿DÓˬ¿F3̼\8ah\92¹¹b\97»b\17¥\9a\ 5\7f\8bf\9b¼·¢\91_¹cIå\8e¥\95;\96Un_þöö\15oo_ùvñªcÅ«\8f\15¯}\87RPñ\ 65\vm>¾mËñmEïnÛönQñ{Ñt´ã½¢\9dï\15íyoë\9e÷·ÞþþÖ;NlÙ{bË]'6³ìt/%¨\ f6ßÿá&ÊQ¿8\19MS¿þhã\ 3\1fmØÿÑ\ 6JV¾\8f7<Lùêã\r¿ýdý£\9f¬\7fìÔ:ÊZ¿\8f%®ÒàZ\7fpíÓ\9f®}öÓ5\94¾\ eÇ2ØógV±$öRÕª@4\95­¤TV~våkg=¯\7fFÙlÅ\9bÕ+\84\84¶âm\9eÓþ^ø~Má\ajZ;©f¶Sç\97\ 5?g\99­@\9fÙ>W3[\88\10Ëlߦµ¯(­©9­õ\1f\8b(\9bµ«Ù\8c¥².5\83Qîb)«O\92\85\1abYÈZ"êã\89È,\17iÒÑÉÜð\87æé¨?#©éh°\19éµþ\8c\14MJ¯\by\89'%5/]æyéO&yé\90\90\97\9eÎ\8f\97\9aòYjú6;ýv`v\12\13\14e§ýÆ    JÙ¿ôk£\1c%¤©eõj¦ª\8bfªå_¨i\8aâï\8f¬8§Æg¿]qö·+ª\1e]qZ\8dà£\9eS\8fz>yÔóÑA\8a\95\1f>¶ò\83ÇV\9exlÕ{\8fGãÝÇW½£ÆÛ¿[Uù»UoýnuÅï£ñ\97'V¿ùÄ\9a??±æu5^ûÃÚWÕxùɵ\94¸\ 2OF\13WYéºþÜU\1aÍ]ÑôõÔ\80ôõ\94\9a¾¢\19ì\99o3X4\89\1dÚô¨\90Ä\1e\9fÄöÿ±?\8fýú\b¥²þ<ö³#[îWSÙ½ÑT¶\95RÙݱlv§\9aÐn{¾\88²Ùn]BÛf\94ÓÖGÓÚv1­y^îÏlË\84Ì\96¯f6\8a\85±ävëkÑüvókÑä6/\96ßf«ù\8dbÒC«àó\ 1\0\91d\9f_^ß!Q45m=ɼö\86\86\ 6¦\9bzz\92ú¹N`¯Ïg¢^_Ü+Â}2·úCöK\8a¢PK4\85ÊLõX¬Ï\1fIC9¨\11×\9bv{}>\1f\C1Ρ©"\1e\9cH2©««£q¬®®\1eÂP\8a2V>sè]3!oq)ñÃ4åîq}>\83\92\91\91\91àL`Ý®ïsj¿fÔh\89%³>_3\94V\8aóy*\b\14»§¯¿$¹YL(èº'wS¤5ho\9bS^\9fo\1d\8b¹qx"y\8cÅbö\80Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\a\0\80QK\92}~M[\8f\94×w$ùò;;;G\86\ 1¶×çsÙ\18\f\ 6ÍNÂ\8fá?ØX/J\rËPÑHþÑ0\94\16ûÇÌZÛëóÅQ6;       M\12ÍÁ    &\93!\ f%\9fÀq\1f-\89\bµâ\1a¿mq)\ 5\ 2\ 1y×Å]\ e4½ã®2+ð½     y\83\103ÿVR\84-\84Ãaq(­\14ç³\16Rϸ³*\8b\8e(\92\9bÅ÷\7fØ\eüùÿ\8bô(ö¶9\85>\7fT\ 1\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\0\0`È$Ùçw\87û$\8aÆwº\ 5#24ìõù¼\92VâEy\r?7`z\81©(\8aßï§ÓruIÇ»ÝnI#é£\99÷£?IÐs\8e\ fY\17é÷;ìõùt\0¯½7;     M\12Í´1üh\1aM\1aY^ÃÏ\ e£\ f²²eS©"\9f\ f|[Áâ6\10?^ó\1c\8aÅ¥\14·ëâú|³\ f\1a쪡ã\r7&Ä\ 3¨1ìl©*ê¶R\9cÏ·H\88ïýàkÉ\9dbwy«ë¿>\8c\7fÏ\1a\85>?ú4D `ø\16½Îg©<o\ fa>ÐÙø\ e ¥\85Ê\18\16Ó>|>|>|>|>|>|>|>|>|>|>\0`dC_\ fékc\89
+}?¥/\92è\13N\92}>qø|\9bDÔ\ìêÅ \f\ 1{}~DÐõ\86g\10\85¿\99ϧuÇT°!n·[#]éWf\86322,jÞÑ    ÷·Ô\87úwm÷ù¢®7<\89(üÍ>\9a\9fD\ f\r·\99NäX¹"Þf3­mxù\8c!,%®"5{^  úüÁ®\1a\ 6Ûß!ôïR;\99ɧnIá½ÏJq>ï\901c~0vþç\92Ûļ\9d\9dÞYû"ç|¶·s\14ú|6\93iÖi&\ f\7fîC$îR\1dZo\ fá¿\1fðùðùðùðùðùðùðùðùðùðù\0\804\85Õ1z½^ú2hXvÈ\8b\ ftÃê3\92ïóO6wIDÍñ¦K\18\94!`»ÏçºÒ°ZR|×ÐçÓÚäK/33³$\86 ì\ 6xW®1aòãÂ=\9bÏÈbÙîóy\1d»áÇiÞ5<\e\9f-\19\19\194èl&Ð\ f|\86Ä}\16ÃÊ\15ñ©\95 r´²\94èöÁ\8bç5·\12\8b>\9f\88\12~°«FßÃâ}\90ÎÆþÐív§ö~g¥8_<Æã).<ð\89ä6qUvO ø¦HkÐö¦\8eB\9fÏ&\89f^\893\9c¦"\9f\81\16\1f~\19loÃçÃçÃçÃçÃçÃçÃçÃçÃçÃç\ 3\0F ¼ìÐL\9e\18V\97\89\16\1fë\1eÙ$ßç·õ\84%¢¦ô\9c\92üNèS\94ÞÊÊá\1f}æ"\85û\16Z\17\95ñ`µ÷r\9f/Vàë?N¬Þ7ôù\0ê%0­;¾rù\1a¤\13:º$»Ã}\r\1dW\86\7fP;ã^\v/Æ6\14Î|8¨KãÎ\ 4>L\12\9f\1f\19X\81¯AS½ox66Üú\ 2à\88P¶mø¬\ 1ÇJ\8eÒOª¡!_J\81@\80.\99\7f\96~\1fÙ¢Ïç\17.öê`W\8d~ÐE+Ë\86Æp§;ÉX)Î\17\8f¡y"¹G\94\1ckÉø\8f\86ÈQG¾J$ÍçÓ Ò\9c\17·/i¤J\ 6\83\95­[+\18î\82ñáàS\91ïÜÙ8£àóáóáóáóáóáóáóáóáóáó\ 1\0£
\1fÐÈ\13±ºL¢ôQ    \9c|\9fO\1c<Û*Ñ5m=ádö@8\18T22ZÇ\8c\19þAí\f\9b¸J±\82×:\12\9f\1f\19(í5\8bKTý\86>_s*\r\8dý       3Evé)=\17»z}§[$Snø\ 4µ\93Z+¿\1c^Âmø®($­#÷ù\1ai¯o\f\97Òú³\19N\ fë\97cvZ³c\12×°Ö\97\92¡Øä]G7)Ã=\14:@|jLô¨\83Z5\86\97/®VºÁÉ÷\14\92\83\95â|º\11SkÿwÜ\84ïÿðjúµ¦­G²F
+\ f´ç\16×\95}üNÜ\952\ 4\92æóùÿO¸0\1fl\ e·kpõ÷\ 26\1cú-<öÿ.Ã'D\12ìmø|ø|ø|ø|ø|ø|ø|ø|ø|ø|\0À\88\87\171\8af^£VDáOßI¹3aEq¶\7f#N_\92ãó/võ\1e>ßVVÛÎ\}Ec§D×\9cùº;\99=\90.2\9fÅ¿M\86É  \9fÏ\17\9a¦\1eXóºÜç\eZzEQ\98Ûd~X¿¢í]¡¥ç\94´\90ù,\ e\9em\95_\8eÜ7:áóyi®¦n\ÿºÄç\9be\18:      \9b\fq/y¸ù|ºïè\véy×YA£F\aµjä\97Ï\87&îXÛ\88_Eó¢\95â|êÆy;ïgóÿd}sy}\87Ôç\7feq¥\f\81äû|þ\0Tª|>k\898p|\ ekF\93½nãü\81Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\a\0\8c\12\18÷!z¹AÇð\ 3\.\97¾\b\9f\7f]E\89~r|þáómÌÀT4vÒ¯òò˲Úö¤]~8\18L#\99ÏÂðB¸\v¢\15Q\12\ f^\1e,÷ù\9a:|\8e¦nßÐç\8bV\93þ<hòX\ 1?\83YSm)ÚO#\99ÏBRxÌ=­Ù\82åÃA\ 3\14w&p×*÷ù\11]\1d>C_·¯?\9b\98±éÏý~ÿ\10RnJ|¾ÙRr»Ýâ=H³:¬û|½\8f\1dÔª1k6û+\1a\11³A7|¬ÀÆ[\89x]\92m\ 5qG#:W\8f}Á&ÿñ¦Kò§i¶>þñ\bðù4
+4\8bhEðµC¯\94\f\ 6»\1ehb\15\ eÔ\12¶0iÈØô¦\7f\r\87\18>\1f>\1f>\1f>ß:ðùðùðùðùðùðù\0\0À ï¼üë¶\99\97\b\ 4\ 2q\8fáJÓ!¹\91.$ÇçózËÒs
+{E¢k|§[Ø1¬\8cÿàÙÖîp\9fC\rû&\14J/\99¯è\1c\vC^Ùkñ`\8dÏ\8fèÔ}ÄHò\eú|EQØß\8aÅÌt~:fP\96Ò\16ÒÎçK&|\\ 36(Efv°ÞçëÕ}ÄHò\e\9eMLÚ\ì{<\1eC·oh5%;\14¼\85ܱ'¸Ekq)\89î]ì\13\9a\99XºC\1962\91U3¨\f`;¢·w»ÝúVI\8aó©7®Ê\9eÍ'ÿÉæ.ÉÒ¸û\95O\ f~xJÜ\1d\97¤ùüá\ 3¿d6Ùø:Òï71ó¯y¨Ä\96\8f\86Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\a\0\8clÄâI³c¸zÊ0\91\9f\84Ïç\8b{\9eÑ@r|¾X\90ßÖ\13¦WÊjÛ%Ò\86\8e\8f\b\1aöds\97\13­
+\87Ã---_]\7f}\1aùüK\ 3\8b\81õëÂ^\9fÏ\97        ×\89úW\f}~D\95\93ô\8aXÉ,ZJzËÆGcØPvv\1aû=¶1\94.!\7f>%U>\9f\v[_L\9dé_\89\98\17ÒÓyÌÔ.½.Îø\ 6جÊ}\bB\9bï\1d\88BÞúyøÓ\r\86O¦èu¨\15\86¼jRèó©I|\7f\fú}\1cÃâ|·Û]xà\19^r/_­÷=úWþsCÇ\15Û¯e\14ú|q&\8b;núQfÓÒÆ\12\bø|ø|ø|ø|ø|ø|ø|ø|ø|ø|\0À(Á°$R\ 3/q\14\v\ 55$òEr$\91\1c\9fß\1dîã\12æÌ×Ýô
+ý+\916¬ðòðù6+\86sÈÔÕÕUUU}öþûJA\81\92\911ÌM~\9bËÕen\b\1dòùúj|}ž\99Ïç\ 4\ 2\ 1ús½§¥SÙ¥ôÙP\12ÝÝÝ\86\a\1coºtðlë07ù¾Ó-4óåO£¤ÊçGtÕø\86\15ûò\8f¦#}>\1f¥eQÿj\9e\93\9a4iÒÐ|>o\8fϲÜã'\11ç¡õ¥Ä\1f\ 4\13¯7A\9f?äU\93B\9f/Ú`~Õ\ÿÊ\8bóéÈüÂåâÖ­|\9dî|ºVó\18\97½¤Ðç\a\83AútÉ\7fl\1c\85\16 ËífÛFl¶Ó»6îÃÂçÃçÃçÃçÃçÃçÃçÃçÃçÃç\ 3\0F\ 3¼"TRx\1f\11,\8d\8cÂ2<=Éñù\11\9d\9coë      K¤ÍÁ³­tÌÉæ.þ\8a\13Mª©©a\12ج®;\8dpÈçG\ 6
+|½Þ\8fXðù"\81@ÀãñpÑç\e¼\87\19ñC)'\85>_#ð5z\9faý£\99Ûç{¯<¥¿ôÒK¥*o¼ñFe\f®²+upÿÉíº¸Ù$\81W\8fk\8e·¾\94\f{Ï.\9f?ØU\93*\9fÏ»]Ó\ f|¶È\8bó#\ 3÷vÅ'¹ôQt¤~ÿ\89\7f²\9fËë;\1c]_Éÿ\8f\ 1\eA+Ó\86­\1a\e'\98E\14E±wvÁçÃçÃçÃçÃçÃçÃçÃçÃçÃç\ 3\0F\ 3V¾ý\89ßÇ\83Á älðù\91$ú|.çy]eé9E¢nÚzÂ\17»zù¯\r\1dWloR{{{]]]ccã\b\18Gç|¾Ïçã«IüY¿âD¿Ä\«Ù\ 2´ýé\98\914\94q\91[kç|>ßN¥i þ¬o\9bx¶P(Ä&\83YY¯f6²¡ljj\92\9fÖ\10n¼yµ¿\95U ñ¢Ö\97\12_\ eâ\83`\89øüDV\rß\19±±|:.4¸¼Ïé\a¾·"Þ\85\r\11˼ù\8d ôã`EÍYÉMaÿß.h\9eó²\9d´ðùìÈ\11ðh!|>|>|>|>|>|>|>|>|>|>\0`4`åÛ\1f×)q¿\8fÃçG\92èóõr¾¢±S¢nN6wÑ1\a϶²_\8f7]Âü\97à\9cÏ\17kòÅZ}ýª\14M\14³|\92Jéä̺\11 7¨\86ï:çó#BM¾¦V_2¬\z\9b9v³Ï\1aÂlá§¢.\92oæòV\89byPK\89þ\8aõ\86æÒ\12ñù\89¬\9aäßΨ\aø&\ 2\11\b\ 4ø[âë\86ðm ñA­3åù¥ïWJn
\1fmá?w\87û\9c¸¨4ªÏ\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\a\0¤\ 5V¾ýq\e#ÿ\86È-%|~ÒÌ*\97ó\15\8d\9d\91\81\86_\1feµítLy}G\7féæ9\ 5ó_\82s>?\12ÓGÜ^z½^ÃU)\9a(·Û-i\ fÿ\13Í©À ÆZãÒ5}ë\84Ïç\1a\9f\8b}Í   õgã\95üfíá\97#),·xE¢aÎÈÈ0[\vâ\9e¯Og\ 2­,%z\8b\7f\90F¿'âó\87¼jøí,\99\8e\97·Vó\84\ 2ß+1C\9c6ü¹-\8a沫%w\84ÝåMO\9eúJ¼;8Á0÷ù4Ãù\ 4\13ûÜ\16èä4vÔ\fù\8e¡\13½-\99·~¿\9fÞÕÏy\e}þU3®\e»eÞø­ó®ß:÷\86­so*\9a3±hΤms²¶ÍÎöÎ\9eâ\9d=Ý;k\86wV\8ewÖ¬â\99³\8bgÎÝ\9e3_\8d[väܺ#gÁ\8e\9c\85;)fäí\9a±x×\8c%»¦\17ì\9e¾t÷ôe»§\15î\99¶bÏ4Ï\9e©«ÔX½gêÚÛ¦¬»mÊúÛ¦l¸}ÊÆÛ§lº={ó\1dÙ[îÈÞzGÖ6\8a;³¼wf\15ß\99µýά\1d{³vîÍÚµ7k÷Þ¬=wM¦¸í®É·ß5ù\8e»&Ýy÷¤½wOºëîIwGc"EÉÝ\13ïQc_ÉÄ{K&ÞW2ñþ\92    \14?cqÏ\84\9f«ñ\8b{nú¥\1a¿Ú\17\8d_«ñ\9bhÜø\0Ž߯þX\1c\88\85/\16\ f\ e\88\e\1e¼/\1a\ fÅ\8d{c±O\8d{n\8cF\89\1aw\7f\e\ fRÜ¥Æ^5î\8cÅ\1djÜ®Æmjì\19\18»ÕØ\15\8b\9d7EcÇM>\8aíj\14ÇÂ+ĶX\14©±U\8d-Ñ8°yB\7flRc£\10\eb±^\8duj¬\8dÆ~\8a5j¬¦\98\18\8dUB¬TÃ\13\8b\15j,W£P\8de±XÚ\1f\ fP\14¨±$\16ùj,\9e\14\8d¼X,\8aÆoÔøuÞ¤_åMúeÞd\8a_äMþùâÉ?\8bÅý\8b³îËϺ7?k\9f\1a÷äg\95,ɺ[\8d·^ô;´Ì7.\9fF±aù´õ+¢±nÅ´µ+¦¯Y1}µ'\1a«ÔX©\86gåô\15+g,_9£P\8de«f,í\8f\9c\82U9KVåä¯ÊY¬FÞª\9cE«r\16®î\8fÜÕ9\v(Öäܺ&ǽ&ç\9653o¦X;s¾\1aóÔ\98»vÖ\9cu³f¯\9b5K\8d\99ëf嬧\98M1cýìé\efOÛ0{ª\1aS6ÌÎÞ0;kã\1c\16\93\99¤ÆÄ\8ds&l\9c{ÓÆ¹7n\9c{æþ¸>\1aó®Û4oüæyã6Ï\e«Æµ[æ]³%úïX5Æm\8d¦\97ëb\19&\1aEso,\8a¦\1a\8a \94p¶E\13Îd5çDÃÛ\9fy¦ª1Í;\8b¥ \96\85r\8agÎ,\9eÉrÑ\9ch:\8af¤y±¤Dqó\8ehjrDzÓ\82\9d9¹j\82¢XD±«?Såï\9aÎ\92\15ËWjÊ\9aN)\8bby\7fâ\9a¶rÏÔ\95BúZ\13Ë`ýIì¶h\12S#[HeÙEwd\15©        Í{g\7f\889Í0­\89\99MLn,³í\e\98ÙÄ´&æ4\96Íx*Û\1fK\ÑLe\9c\85,'¢½\ 3\13\91<\17\11ËE\9at´Ý(\1dy\a¦#\9e\91Ô¤t`ËÀ\8c¤IJ\e\a&%!/í\1f\90\97&\9aæ¥\95\ 3ó\92&5\15jSSüì´x@vÒ$¨_Å\12\94>GÝ\9fß\9f¦î\8d¥)1SQÜ¥ÆÞ\82¬;Õ¸£ ëv\8a¥Ù·-ÍÞ\13\8bÝjìZ\9a½sé\14\8a\1dK§lW£xÙ\14o,¶©QT8\95bkáÔ-jl.\9cº\89bùT\96¸ús×r\9e»\fÒ\17Ë`\1e!\83±$¶l@\12\9bÁ\92\98>\8f-Zm\9cÊx6»eí·ÙL\93ÐxN\9b©Ëi<­M\8b¥5}f\9b\1cËl<¹EóÛ&ãüF\91\99?\ 5>\1f\0\90 ô}Sþ][<@þ½8\10\bèÝÂ($\99>_/ç}§[$\ 2§;Üwæën§\v2G\ 6\8eú|\8d ÓT>\eú|þbFF\ 6½ÎÍ3ý@¿r_dh¤\81Å5+VDë{Þ        \9fÏå¼\99\f7<\9b¸Ç*¶\99~æoy<\1eI;­_\11µ\90Ï.\96ÞéZ*cÐÏ|[ÊìCy\93èo³\8d\10Ï ï¢D|þ\90W\r¿\9d\ráC\87\868\13¨£ø^\fý ö¿!b\ 2¡{\ 1Kï[\1fo\98»¦Ir;øÍ¡jÍÓ[N\90d\9f\1fwïC\82Ù\ 3/Cn\89~àÄ\ 3hÖÑ@Ó1öÎ"¶¦\f7vÅ]3ýÚ·Ñç#\10\88\87|\ f:\94åз\b\ 4\ 21òbø\7f_\ 6\0\fO¸K1ô\96ô\r×L³hðx<V<Ò\88'\99>¿¦­\87\v\19ö
+7ü\86AÇ·õ\84Å_1ÿÍpÔç\8b\ f³hª\91#&>_\bÉñQ£\a®RÍ$\98s>?"d`C±lx6\8dc7,Ø\96\14çG\ 6ãóÙÇq\r(ÁìÙ\10¾
+âbø\b@">\7fÈ«\86?7¡Ùks\ eîíé_qìâ¶_Óíü¡­«²{\8a\8e(\92ÛÁËÇÿÅ÷\7fé¾àÐu%Ùçk6Ȭco\1d\ 2\9f?,Ã\9bÝ\bØÚ7ÜFt\ 2ö°\0»ûÀç#\10ðù\b\ 4\ 2\81\80Ï\a\0¤5\\17\18~\9fåßCåUdâwöQ.\15\93éó»Ã}LÈпì\15±ü^\1fåõ\1d\11¡\80³¢±\13óß\fG}>Á\ 5©Þ\82\9aù|6»\fE®ËåJ\9a\14\1a\910±¦ß[\898ïó¹ú3ÌÀf\1fÍ
+q\rÍ$¥t¹Ì\8f\fÒç3|>\9f¦\90\9eãv»%Ë$®Ï§)Mg \e\87\13ôùC[5ly\1aÎ\aç\b\85\8db'\887V³®ÓtÚÅ®ÞÃÁO\9f=üè÷~ð\8dä^PrìËP¨\8d\ e>Þt©¡ã\8as\17\95d\9f\1f\19¸Afe\v\89æ§oðúÚb\12àë°\ahÚ'ó\19\10>Uàó\11\bø|\ 4\ 2\81@Àç\ 3\0Ò\1d±T\98Õnñ·ÄÊ@IÕ½X,jïÃãéH2}>ÑÖ\13>ÙÜÅ«+»Ã}\12\87sðl+\1dSÑØÉ~=|¾\ró?íP\14¥²²²$\86ÏçKZ    ñ\b\86º1Éõض@­õûý|2\ 4\ 2\81¸&ßÞOÔøç\91±jx\8dwÒD«Y\9bãªiãÝó\8aì{rï\99PÐ%¹\17Ü\7f´19W\91|\9fÏa\e\1f\1f'Íö\9ca\ f°ÿ-¸Ýî$·Ð        \9f\7fÿ¾{é\f\b\ 4\82\v/8´~Ñ·\b\ 4\ 21òbø\7f\99\ 2\0\f[ÄgÃÙ÷Pú®§)hÔ\97_*\8a\12\b\ 4\8fâüHÒ}¾\1e^~o\18\17»z\e:® >\1f\0\11Êf,ãI6.Á(\81ÝÔô¥ï)i\86\ 4ã[Lg(rx\8cë¿B\85\aÚ%7\829+{\92s\15£Ðç³\87;4\8f~H|~òÿ«à\84Ï\a\0\0\0\0\0\0\0\90|Øsßfè\1d\17·ÖòÃF!)÷ùÇ\9b.I4ÎÉæ®\88\7f±«\17\83\ 5\80få¦Üâ\82ÔÂwv|)U\9a\81@`L<\8c\1f18SR¹7û;ß\95=¨Ur¬eÌ\98Ëɹ\90\14ú|ö \89¾\14ÁiØÅjÒ\b|>\0\0\0\0\0\0\0\0'0Tôf\96^\7f0d¾¦gRåó/võJLÎáóm\18#\0\fq¹\))è\ 5Ã\a\96Ài&¤°\r¡PHó|\9c\1eÓYzÔå\99ì\1f;ÿ²ä.°p_\87ËÕ\9c\9ckI¡ÏOm\1a±âóY\1d\ 5ý\9bä\16Âç\ 3\0\0\0\0\0\0ÀH"\14
+ù|>úv\99­âõzÍjÛD\9f\9f\99\99©y´|4\93r\9fOøN·HdNw¸Ï¡Ïmmm­®®®««\v\87Ã\98    iÍè\1c\1eGX\89>\reUU\15\15xq~ò\8bºEè\96*\97ù.\97\8bMÑ`0èñxèNÝ?c[\83Ê\13\19\19ÿ¡\14\1eh\97Ü\ 2ÆÎ¿ì]ûa2×Ô¨òùÌÒûý~ñE}\ fðÉ\96ü\rDø|\0\0\0\0\0\0\0\18\9dÐ\97\12JßXC¡\10zCd8øüòú\ e\89Ì©iëqès««««T:;;1\13Ò\9aQ;\94\1e\8fg\84\95ècUZ\87eïÔ>köÿÙ7ûà6ª{ïëOÊ\f\ fþhfîTÓç\8fÎô\99¹£ç\81ç\8fÂ-5}á5¡KH\80\84\84\bn)ÜR¨\ 2!ô¦´æ¥o\90\92\ 5J\1cHÀ"\ 1\93@\bJ\82\v\ 5LE0o\r/Â/ØØ\10oL\8c¯C\1d­\8c\15Ë\8a\85õü¼':9ìJÇ+k­]IßÏ|ÇcÉ«ÝÕ\9eõ9»\9fý\9dp8ì\9b\8dg\9f}\96-L£\f{Ge\ 26\11\8f\\17\94iIÿO¡\ 5¢«O¯Ì×ñ\82Ï\8fÇãÔ²\rR\82Á Sÿõt]$>saX\8f\0ohÚ½
+\1f\10ø|\0\0\0\0\0\0\0\0\v>¿óHZ"sZ\ f\8eÏÓv\a\a\a\999Ìd29PÍÔmSêºNÿÂj\ré¬\81\81\ 1\9e\9e\1eüWÎ
+µ;µ¾\8b³3Dû]\8cÅ\8b\17³¦\14\17æglÃYúw\e2\92þ\7få\861ÿÉ}¹Ý\81Ê\7f#Wþ\9dù#\8fYqð)^ \10`J\9f\10\8f\0í\15{n8\7f× ´       Út±'\ 5ðù\0\0\0\0\0\0\0\0\80\88\17|~:+«ÏlêNÌߦS©\14´am\80¦DS\ 2\aÑu]UÕH$"YÀï÷Ë\9ds0\18\1c\1d\1deËsSM\9fbÏ t}ÒçË-¹S6?ëôE\93¡³ïͽ\1f®Ì·vÑçÓ1¡ÃeÇäÓbt0¹{/\9fx<Î\9b2\10\bp{O\97\a\8a¢ð?Ñ/\8e\17çG£Qö4\81\ 4|>\0\0\0\0\0\0\0\0 â\ 5\9fO4÷ê\12¥321\85\96\ 2\0\80Ê ºåbJßN%9w³´\12kay,ö\99Ï÷^ã¾QIç\7fÒ)ÓÑÕgæFb\95ùâ.ú|>\16+\8aÂ\=;¢·WUÕï÷\a\ 2\ 1\9cÝ:µ\94üi\ 2mÔq\99Ï\1f\1c\88\9bÌ·ÏÿäËáø\91\ 35\9c\ fKJâx:l¤Ó\9cO)]_O·\18ýÓ\8f\84ô\bé=\9eO(\1fS\923é3Ò\9fÏ'F>Mö\7f:6\93\ 3F\ 6\8chcý\a\8d\fR¾ìûÌÈ¡/û\86\8c|>Þ7<þ1å\7fÆ?\1e\19ÿøpj&_¤>þWªw4Õ{\84r´7q´W?Ú\9b<Ú36ÑóåDÏøDOj¢çhú£\89ôGéôG\93é\8f\8e¥»§&»³\93Ý_MvOgºs\99®\9aJöð|um5v ê$\93ÅÒ=\93´½LHst¶¤º§g͸4_Î\961\eIJ£Ï\96\844GldT\96¯(ÿbù¨p¾°\97ÃÒ\8cHó?ö2,Íç³eÈF\ eÍ\96Ï\10Ç\82{%\0ÀÜ {ÛFGqü¾¸ºð\88Ïo\1f>*Q:û\ fOàÌ\a\0\80
+`*\14W\vÉR>pHà\1f\14\ 3\81\80°¡Éï5<.éùoÚ®ûO\1eÌíôWì»»èó\99½\17\ab«ÏÏ\19\ 5íó7^G"\11ëc\1a:\19¨¹­\9aÝ©CMç\ 6\7ffDß®à\92ÖG    eú|ñã\b\82< Þ?O=\e\8e-\82 Hí\ 5·K\0\80¹aG#\94\84\83\93Ö«úxºëóG&¦$V§¥?\893\1f\0\0æ\9bx<ÎÝ;s¹V\91+\16Û\17CQ\14¾¼X\86m\12¶{v·Kzþ³\96O\84ξ7÷v¨b_ßE\9fo\9d\rÁ\8e\9bUq³§-\ 5Õ·\83§AÌÀq\8dÏ¡3DòÀhVàó\11\ 4>\1fA\10\ 4\81Ï\a\0T\11ðùót<Ýõù\84Ú1*\11;éì4N~\0\0\98?"\91Ȭ2ß$ü\v\12\b\ 4ø\aECN£L_2ÓÒ\9fl\eJ±¿Ê»ýo~gê·Ûö?ÛÙ921U\99#àºÏ\17/HØè\1c\ e\87MK²÷C!g\1e\89\8aâs\84J~ß9\1fgø|\ 4\81ÏG\10\ 4Aàó\ 1\0U\84Éç7\94\8du\1ew}\1eÏÊûü\91\89©æ^\9dÂ\MëÁq\89ØéKfpò\ 3\0À<\11\ e\87M\ 5ös\93ù&)\1d\b\ 4Ø\9bôAMÓ¸À\1f\1c?Ö÷ÅaI\9f\7fÓö\91\85k>g¿ÓèP\99\83à¢Ïg\aV<tÑh\94=U1-ÉFm§\86lW.\0èD*s»ðù\b\ 2\9f\8f \b\82Àç\ 3\0ª\b\93ϧ[àP(4¯\13ÏëäxVÞçï:0&º\9aÎ#i\89Û©\98Ï\ 1\0\80ºB×uêÿÅ\81\95Æ\85\82\8bq9/Aü¬ªªâû\83ãÇx\97>21µëãAI\9f¿~ÃÃMÿü\80ýÎëùç\e\17}>k\ 2õëj\9aí\89©x\9eµ\82SCv0\18dS**ùeùqö\82Ïÿ÷+ÎùÞ\83×Ô@δæ¯39ËFþCÈ÷\8fçjÊÙùü\80òÐ\894äs\ eeãÕ?4ò£\8d!\96\1f\eùÉÆÐ¹\eWQÎÛ¸ê|\96¦U\174­º°iÕEMW-Ü4\93E\9b®ºxÓJ\8aòðL.yxåâGV^úÈÊ¥F.Û¼âòÍ+\96ÍäÊå\9b¯\±ùÊ\95[®¼jËòУ˯~tù5\8f.ûÙcË~þزë\9a\97]ß¼ì\17ÍWÜÐ|Å\8dÍWü*ry8rù-\8f_¶æñËnÛºô×Û\96®Û¶ôömK\e\9fXrÇ\13Kî~òÒ?<¹øÏ-\8bïyê\92û¶_¢nW\1eØ®<´CiÚñÓG\9e¹øÑg.\8eì\´mçÂ\96g\17nßµpçs\17=\17½pOô\82Öè\ 5\7fßs~ÛÞóc{Ïko=÷­Ö\9f¼S[\19êß6Oÿì5v ê+Ï\eÙ+dO>»ó\89Zò\>»fòö³Bv²\9c{"Ïäót>;òÙ~î[¦<e¤\85å¼\99<iä  !Û\8eçM\9e­ù<\9eO$\9fæóÍyÌÈ£B¶ä³Ù\92GòyØÈ&!MF6\16ÊCFþz"o<hä\ 1\17¢\1aÙ\90Ï}\96üå\82\13Yoä^!÷\18ùóñ´óü)\9f?
\83\91ß[r÷L^g¹ËÈ\9dBî`¹ðx\1a\85üÎÈo\85Ünä7\96¬c¹h&ÿmä×\17íc¹Í\92µBn5²FÈ-3yMÌÍFVç\13FJËæ\15\rðù\0\80ò¡Û@vûi\ 2b\7fn¸èóÛ\86RÌÕ¨\1d£ô2\9d\9d\96¸\9d¦î\ 4[¦¥?IËw\1eI£í\0\0 |D\99O#©É\1e3t]/8ò\9a0\8d#Üç³"s±ÏOO$$\1d>åé{n¨üü,\17}>;V\8a¢\88oÒU\r\7f\1aBûFW8¼±ÔÒ%vAØ,\0¢2\97O\9a¦Ñ\17\11O\8cX\9e\92&K:èóÿÏ/\176¼ôk/ç\9còòÃ\97n\13ó#!?¶ä'/\1fϹFÎ\13rþ+ÇsÁ+·]øÊZ\96\8b(mk\17¶­]4\93[)\17·ÝúÓ¶[\15#\97´­Yüê\9aK\8d,yuÍÒ\7f¬¹ì\1fk.ÿÇ\9a+bk\96ÅnY\1e»åÊØ-+b7¯\8cÝ|Õk7¯zíæ«_[};Õÿ¹oõµ¯Ïäº×Ã׿\1e¾¡\9dò«\eßøÕ¯Þ¸iõ\e7ÝüæMkÞ¼éÖ7o¼í­\e×½õËÛßþåoß¹¡ñ\9d\eîzç\86»ÿyÃ\1fÿù\8b{öÿ×½ïþ×}ï^¯¾{ý\83ï]¿ñýë\1eþàç\9b?¸ö±øµ\8f\7f\13\1fþì©\8eÿ|ºó\9ag»®ÙÝ}ÍóÝW¿ðQè¥\9eU¯ö®Ú×{Õ\e\1f¯|§\7fÅ{ý+>üäÊîO\97\7f|`Ù\81\81e\83Úå\9f\1f¼ì\8bÁË\12\87\96\8e\1fZ2ùù¥_\r\r_RS\19ß1_ÿó5v ê$\9f\e\192rh&Ó,\9f-\9eÉ \91\83B´|\ 6\8c\1c\10ò©\91O\8cô³\:\93>#\1f\eé\15Ò\93ÏG\97~Eé\16Òe¤ÓH\87\90\ f\8dÄ\8d|0\93,ËûFÞËç]!û\8düsÉLÞ9\91©·\8d¼eäM!o\18i7òº\90}Kgò\9a\91Ø×ó\ f\1ai\13ò\8a\91\97\8d¼4\93c/]6\93¿\eyÑÈ\v\96\91ç\85ì½,CÙcd·\90¨\91ç\8cì\12ò¬\91\9d3\99¤<#äi#;.\9fÉv!O\19i1ò¤\90'\8cl3²UÌ\15\93\8f\e\89\18i>\91ôcF\1e5²EÈf#\8f\18y\98eÙñl2Ò´l\82²QÈCFþjäA!\ f\18¹ß\88:\93£<\e\8cÜgä/È\òZø"ø|\0\80SÐ-!Ý\ f\97\8f\8b>\7fdbJ¬Õ¤wZú\93\12½CËì?<Á~oîÕÑv\0\0P>4h²Q \10\b\14\8a¢Ì*ói=º®\9b>HC\f\8dÈlµÔoóùV\9d\83½\92Þþw{?nkû½øÀ·2¸èóéª\86m\97öA|\93·Î¬\87zΰ§\ 6´Î
+\8\99¦XJ\1e\ 6É\81Ï\87Ï\87Ï\87ÏGàóáóáóáóáó\ 1\0Õ\vÄ~\99¸èó µc\94\19\9b¶¡\14½äº¾`è¯}É\f\7f\99ÌdËÜz6\9b\1d\1d\1dM¥R8\rª\1d4e-5åáÃ\87Ñ\94\95$\12\89PÿOÃe1EÌ«Äå2ßô,ÀÔ\94ÔcóÞ»óHº¹S\93ôöϼ¬5}p\80Ëÿ\8a\1d
+\17}>k\bëó\14zǤô­\87º|èJ)\10\b°g:áp¸±8âã\869\0\9f\ f\9f\ f\9f\ f\9f\8fÀçÃçÃçÃçÃç\ 3\0\0GÓ4º    e7¤\10ûöq×ç·\1e\1cgƦ©;\91ûzž5-ýÉtvZ4Ben}`` Ë \9dNç@5\83¦DS\82y\82\ 6V\9f\r"\91\88¼)©Ç>1Ùê_\9fHºzÊkí\87øï}ÉLž¬»>¿\18º®«ªª(
+\rÓô\8b\83\95ù\ 4­ÓW
+tÍààq\9eó\85\a|>|>|>|>\ 2\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\0¨%âñ8ľ}ÜõùÖzû¦î\84Dò¤³ÓͽºSE\9b}}}L7¡\18¸ÚASÖ\f===hJï`§2¿ Ì·6å®\ 3c¬ën~/þn×\8b\92~þ/Ïõ·\r¥ØïjÇh%¿¯7}þ¼\ 2\9f\ f\9f\ f\9f\ f\9f\ f\9f\8fÀçÃçÃç#ðù\0\0ï \11ûlF¹ã3Ö«\11w}>Á\1dÎþÃ\139¡b¿`ú\92\99öá£bI\7f9\8c\8d\8d\r\f\f\f\r\rá4¨vÐ\945C"\91 ¦\1c\1e\1eÆ¡p\1d\9b2\9f\16³Ó\94jÇ(ëºÛ_^ÛôÏ\ f$ýü\87ï÷:øÜ¶$êÐçG"\91ÆR Cäàq\86Ï\87Ï\87Ï\87ÏGàóáóáóáóáó\ 1\0  r±_çVßu\9f\7f¢h³WÏ}½bß\9aÖ\83ã\83ãÇøË\91\89)\9cÞ\0\0à8eÊ|\13b¿}×\9d;$\9d|ã¾Ïµ¾Qñ\19n%¿u\1dú|W\80Ï\87Ï\87Ï\87ÏGàóáóáóáóáó\ 1\0À&\ 5ž#ÅfÕ\8bë>¿óH\9a«\9bd&\9bÎNKT\ f«É7\95ô\ 3\0\0p
+]×mÊü`0hs\9d|^Uã¾Ñ\85kR\92N~ÏîvêØùK\1a\11*ùÝ=âói7f-\9b¯êK\17ø|ø|ø|ø|\ 4>\1f>\1f>\1f>\1f>\1f\0\0ì\13\8dFM¦\ 2>ß]\9f/
+üÁñcôNK\7fRb{F&¦xI?Óû\0\0\0¬P÷N\1d{8\1c¶ÿ\11\83Á M\99O\vÛ\í»\ 3½¬Ó^rçxã¾QI\ f¯uõóbþÖ\83ã\15>b®û|j2¿ßoçøÓ\92Õ{fÂçÃçÃçÃç#ðùðùðùðùðù\0\00+Lã\17¼M\86Ïw×çç\ 4\81\9fÌdé¥X\9ci\rýU,é\1f\99\98Âé\r\0\0"4ä\893Ñl\ esöe>\r¦\9a¦\95°C;ý¿¹ûÁ³\96\ f\9e¾hRÒ½?ÔúÁ´ñ\8c`pü\18\15.ÎϹíómN\8b\80ÏÏÁçÃçÃçÃç#ðùðùðùðùðù\0\80ÚE¢ñ\ 3\81@8\1c\8eÇãu~\88¼àóÓÙéÁñcLæ\13#\13S\12áÓÒ\9f¤eÔ\8eã\15\9eíÃGq\9e\ 3\0\0#\12\89Pgn\1aïì¸w\1a\rÅG\0r\99_ÚÐy \92\ 5N[çó\1d^r縤{_ÿä\90»GÏE\9fO\r'^\9fÐ¥K£\14§J\11èB¨¡\14h?\1d<Îðùðùðùðù\b|>|>|>|>|>\0\00 ñíã\ 5\9fo¥©;!q>´@ÛP\8aý>8~\f\8d\b\0\0\91HÄ*ä\83Á \1dñK\9f-8bÚ\94ù4àÒ\bRt`}!\18¹î\f\9foóI§LK:vÊ©\v¾*]Í:\89\8b>\9fÏ\8cP+{\b¬O\7f*0/\0>\1f>\1f>\1f>\1f\81Ï\87Ï\87Ï\87Ï\87Ï\a\0\0\ 6\1cð¦Ïo=(«áìKfh\99Áñc#\13ShA\0@\9dCݸÕäÓ;6K©iÜ´ér\83Á ®ë¦\8fÓØ*\eDFb¹\16_ð[«}¾\17O_4)éØoÚ®û|ô]&]<\92.ú|¶Q:\98\15Þ®}\9fOg\14êóáóáóáóK\ 3n\1c>\1f>\1f>\1f>\1f>\1f\0\0\8a\0\8d_\ eÞôù\9d\12íÓ6\94\ 1\0@îë
+Z4ùVñnEÓ4^\16>7\99Oã/_@Q\94\ 2ÛØ§Änÿ_>ßz\9f¯ûÚ-IIÇ~Öò    \9f\8fvÉ+\a³Â\9bf\eµ3\99ÂYè\ 2)&EUUv}åHe¾é8ÃçÃçÃçÃç#ðùðùðùðùðù\0\80º\82nBÃá°µ(\11\1a¿$¼éóÓÙi\89öiêN á\0\0 ÷u\ 5\1d\f\ 6í\97\a\v>\a·/ói\90åk _
+\8f¹û\14å\8c\90Ï·þÔ\ 5G%½:å¤S¦\83ßz'\97Ñ=r0+¼iö`%\1a\8d\1c£¦g»§\96nÎåÇ\19>\1f>\1f>\1f>\1f\81Ï\87Ï\87Ï\87Ï\87Ï\a\0Ô\ 3\9a¦Aã;\887}>ÑÜ«KÌO2\93-\7f\13\89D¢§§g`` \9bÍzê»\ 34e=7eWW\17\9a²$TU¥\9e¼¤ÒnÞóÛ\81F\a«Ì§wÄ\81Øú\1c\81\eÏ·\18Åù[ÏZ>!éÒWn\18óùr\91ëB¹\91\98\8bGÒE\9fO\8dXt\8e\83\a ++vX4'fPØñù´!É)í Ïÿ÷+ÎùÞ\83×Ô@δæ¯39ËFþCÈ÷\8fçjÊÙùü\80òÐ\894äs\ eeãÕ?4ò£\8d!\96\1f\eùÉÆÐ¹\eWQÎÛ¸ê|\96¦U\174­º°iÕEMW-Ü4\93E\9b®ºxÓJ\8aòðL.yxåâGV^úÈÊ¥F.Û¼âòÍ+\96ÍäÊå\9b¯\±ùÊ\95[®¼jËòУ˯~tù5\8f.ûÙcË~þزë\9a\97]ß¼ì\17ÍWÜÐ|Å\8dÍWü*ry8rù-\8f_¶æñËnÛºô×Û\96®Û¶ôömK\e\9fXrÇ\13Kî~òÒ?<¹øÏ-\8bïyê\92û¶_¢nW\1eØ®<´CiÚñÓG\9e¹øÑg.\8eì\´mçÂ\96g\17nßµpçs\17=\17½pOô\82Öè\ 5\7fßs~ÛÞóc{Ïko=÷­Ö\9f¼S[\19êß6O]G\8d\1d¨úÊóFö
\93Ïî|¢\96<\97Ï®\99¼ý¬\90\9d\9eÈ3ù<\9dÏ\8e\9fû\96)O\19ia9o&O\1ayBȶãy\93gk>\8fç\13ɧù|s\1e3ò¨\90-ùl¶ä\91|\1e6²IH\93\91\8d\85ò\90\91¿\9eÈ\e\ f\1a\92û\85¨F6äs\9f%\7f¹àDÖ\e¹WÈ=Fþ|<í<\7fÊç\8fBþ`ä÷\96Ü=\93×Yî2r§\90;X.<\9eF!¿3ò[!·\eù\8d%ëX.\9aÉ\7f\eùõEûXn³d­\90[\8d¬\11rËL^\13\91Õù\84\91Ò²yE\ 3|>\0 |¬\16\ 2\1aß\91ãé5\9fß>,+æì<\92.\7f\13===]\ 6©T
+gBU\83¦DS\ 2\9bÄb±\82\ fÄ\8b\11
+\85¬+á\ 5Û\92eXSþô§O\19>ÿ͵­   I\97~ú¢Iÿɺþx nëósù\12ý\82\aÓ\v8X¢/ñù\9a¦Ñ\11\10g\8eÐKëã$\a}>\82 \ f¨÷ÏS¿\81c\8b \bR{Áý\14\0`n\98|¾¢(\8dåáH±Y\r\1cO¯ùüÁñc\12ù³ëÀ\98\ 3\9b\18\1cdæ0\93Éà?«ªASÖ\f\ 3\ 3\ 3Ô\8e===hÊX,fÕ\98å@k\v\87þR å\v®G\94ùÅÆ\ eÖ\94\v\16<äó­?uA»¤?oÜ7êóåBgGro\87\?æ.ú|:°t0y\95\82üÒ¥¤é\18\8eÀöÍ\91K\ 5ºîbßÂ:­\83þD_\9fÞ×\rØ´\ 5ëFáó\11\ 4>\1fA\10\ 4\81Ï\a\0T\11Öúü2©üM±7\8f§×|>¡v\8c\16ó?ô'G6\91J¥ \rk\ 34em\90Ífë¹)u]\8fF£¼>\99~:¥ôK-˧M[]+\83v\8f/\16\f\ 6\8bí!kÊ\eo|Åç[\7fú¢\17$>\7fÉ\9dã>_.ºZÉ\8dÄÜ=þîúü\)W8´d\85÷\8d\9d?\15¸T0\9dQ\8a¢ÐvM¥\17ðù\b\ 2\9f\8f \b\82Àç\ 3\0ª\bøüy:\9e\1eôù»\ e\8cI\14Ðàø1ü;\0\0j\0MÓTUeõÏ\8e\8fP´rfDí\13\f\ 6ãñxÁµE"\11;2_$´tÓÊ\rÝ\92Îü»\r\99ÀiZn·ûw\aîú|qÖ\83×|>o÷P¨Òs(ØU\8aé\1f\ 1>\1fAàó\11\ 4A\10ø|\0@\15A7\95\r\8eRÌZÔ ^öù\9d\12\ 5Ô6\94¿\ 3\0 zÑu=\1c\ eKÊæm
+sÉú©\87g¥þöQ\14E²QîuíÎ\1dÈè\81ÓÖ5î+:Ù\8aþäóåÂ竹^Õõ\16qÑ竪*¶;\9d\18\8dR*V\8a@\e\12gd\14\9bµ1\7fСp¼>\1f\0\0\0\0\0\0\0\0¨^¼ìó\93\99¬Äç7÷êh>\0@õR° \9fëÜ2\9f5ÏÁä\13ª\r5JËØÙ½\91\89©]\aÆ\1ez¥û»\r»%=ùÊ\rc'\9d\87è\87ô{ûðQw[ÄE\9fÏ\8aó©É¢Ñ¨\17NÂbgfå\e\85\8e\89u»ðù\0\0\0\0\0\0\0\0ê\16¯ùüd&ÛÔ\9dP;Fû\92\19zÙÜ«KDP:;\8d\16\ 4\0T)&ß®(\8aªª¦:ä9\10\89D$5ÿÅ \9dq¶ä{×\81±|\ 5þç\92nüêköÞ|ÛÓü¥»-â¢Ïg\e¥\11¹ÂÛµïóË\9c-27Ø%\8aõ\19\a|>\0\0\0\0\0\0\0\80ºÅk>¿}ø¨X~ß6\94\92\88 Î#iþÁd&KA\83\ 2\0ª\85H$B\1do(\14rª${n&\9f=Jp\Õª\1d£\92Þ\9b'Ñôo-oìöȬ+×}¾³\8fTì0«Ï\ f\ 6\83\ e\9e¢%A\e¥\1d ­[ÿ\ 4\9f\ f\0\0\0\0\0\0\0 nñ\9aÏïKf¸çIf²âKkZ\ f\8e\9b>Ūú\ 1\0 ~Ðu\9dzò¹\99|¿ß?\1fªvdbÊ\8eÌß²7\96|æßøËý\87'Ü=\92.ú|æÕ]ÑæÞ$\1e\8fÓÉYlR\0|>\0\0\0\0\0\0\0\0\ f\12\8bÅÂáp\83\81¢(\8d\8d\8d\9a¦9¾\15¯ùütvÚT~/qAjÇ(ûTK\7f\92½³ëÀ\18Î\1c\0@\9d@\83B(\14òûý¾9AC\8cãeù\8cý\87'ìøü\97\9e\7fòÝö?ñ\97Ôÿ»{<]ôù\91HÄ;\ 3±ëÈe~\ e>\1f\0PÓP\1fHãÑ<\rÐ\0\0\0\0\0`Î4\1aÐý{Á¿Òõ\e+Õ³Bï;kõ½æós\169O?%:hdb*÷uw\94Ìdq\82\ 1\0j\9bh4ª(\8a\ 4\ 2\81X,æün\1d\88äzÕ\F\97÷Û<ZW\7fSwÂ;Oc]ôùD(\14¢íR³Ö¹Ã\99Uæçàó\ 1\05
+\rîâl»ù{ì\ e\0\0\0\0\0æ\80D¡Óe\9b¼Ø\92þJ\17{Ní\89\a}¾(çs³ÕyÒ_s_¯êgïØ!\9bÍ\8e\8e\8e¦R)\9c\90Õ\ e\9a²\96\9aòðáÃhÊbÄãqº»\9fsAþüú\81ÎÆ\\8bo&o\87Ô\8eÑYe~ã¾Ñá\9eOøË¾dÆõÃë®Ï'Ø3\1ajßP(Ô(Å©Ç1¬x\80V8ë\92´K´p±:\ 4\aÏp¿\ 1]çÄ\ 4L\95\fðù\0\80Ú\83\82C6\8e\f\0\0\0\0\80G\90(t±2?\10\bÐU\1c»y\ f\ 6\83¢ÒwªJß\83>\7fdbJ4<âKkZú\93ìS¦ª~;\f\f\ft\19¤Ói\9c\93U\r\9a\12MYÛP\87¯ªªX³77\14Eqv\86×       2zn§\9fùü\91¿/´S\9cÿôs¯·\r¥ØïjǨ\17\8e³\8b>¿Ø¤¼bØ1ðö·kgmlI:\85\9\ e¦=\84Ï\a\0Ô\1el\96\96\15\94è\ 3\0\0\0\0x\84b
+=\12\89ð\8b7Õr\8b\1a\8bŸÕwê\9eÚ\83>\9fhêN0ÉÓ6\94\12_\16L:;\9d³TõÛ¡¯¯\8f\99C\14\ 3W;hÊ\9a¡§§§\ 6\9a\92n½©kUËÖ\8cñxÜô0wÎP\ fo§¢;\1a\8dÒ\92\94l\ fxq~\8bïÝ®\17íøü×^ý\98\97ñ·\1e\1c÷BÃÁçϺ¤G.\15àó\ 1\0µG±\81À©    Y\0\0\0\0\0 L\8a)tEQ\8aÉ|\86®ëÜí8R­áM\9fßzp\9cI\9e¦î\84ø²`ú\92\19Z&\99É\9aÞ\99\95±±±\81\81\81¡¡!\9c\90Õ\ e\9a²fH$\12Ô\94ÃÃÃÕû\15âñ8/¤\9f\9bÒ§;÷p8\~5>\83\86\f\9b*\806:G]l\14çGWÿoÿÉw\ 5N[wß«\87ìøü\97^îá¿\8fLLy¡í\ôù\91H¤±\14\9cÒ;6}>?2ðù\0\00O\88£°È|M¬\ 3\0\0\0\0\0%Rì¾Øï÷Óû\81@@òÙh4ê`µ\867}~_2Ã=O2\93\15_ZÃ\v;MUý\0\0Paâñ8ëÆKõùº®G"\91P($~¼Lh(¡uÚÙº¦i¦Y\0\94ðµß\ fçZ|\81ÓÖù|ë)\8dû>\9fUæ¯ß\1e\7f½÷sñ¹­\17pÑçW\12:+\1aòð«\8e\86â\88ç\86ê\ry\ e\9f\ f\0¨=h,¶^\ 385#\e\0\0\0\0\0\94O1\85ÎÞ\ f\87Ã\92Ïêº>\97úÉ"xÓç§³Ó\ût\1eI\8b/­á.¨m(å5;\ 4\0¨\1f"\91\88x'N\9dꬳ¨èæ]UUV#í ´B\9b&?g<#\16w\9b~·ÿÙ\19RZ®Å\17¹î\f&ómúügZ»G&¦Ô\8eQÖÉ{¤\ 5ëÄç\8b_³$èÜpdb`ùÀç\ 3\0j\12ê\9fÅÙy¡PÈ#½.\0\0\0\0\0ÈÍæóg\15õ5ïó\89]\aÆ\98ö\19\99\98¢\97-ýI\89\1aJf²9KU?N3\0\88D"¢ù¤{ðY\97\17ïÙ\9d\82¶[ÒÔ­p8,~<\18\fÆãñÒ¾y[\83X\9cOùæw\1e[¹¡{mkBÒi¿Öþ\85\a\e±N|~.?\19°$\14EÑ4Í#û\ f\9f\ f\0¨ah ¦ñ\b&\1f\0\0\0\0Àk\14SèlV;êó\19\83ãǸ\96o\1f>*QCû\ fO°Åø;ôY\9cf\0\80Ê`\92ùòÎ\99nÒYWï ~¿?\14
+\95¤[­»1\97:ÀCÑ\\8bO]ù}.óóy±qßh±\1e\9bþt$®y®\15=ãói7è2\80ÏÚ\b\ 4\ 2ô»ªª\ eº\1d&\8bø9À\1e\ 3\15£äG<ó\ f|>\0\0\0\0\0\0\0\80
+SL¡³RIºy\97|\96\8b£h4Zþ\9exÙç\8b\8cLLI|~s¯Î\16\9f^¦³Ó8Í\0\0\15ÀTâN]t±%u]\ f\85\9aü`0H[,Õôj\9afz\1c Ùm\19»\ 3ú\96oøO¾Ëäó¿}F\Òc¯Ü0VÊ\1c\82ÊáºÏ§vä\1a¿àS\eÕiwÍ6çHy@%\81Ï\a\0\0\0\0\0\0\80*BÓ´\98£¸2\99\91ß\9b\87Ãaº\8fæõoôíèMúS±{vÚÛ@ À>^R)f1ªÅç\13jǨD\10ñJ~\0\0¨\18¼\v\9dUæS¯ÎºwG \81\80\86\8f9\8f\ 2¢¸\ e\ 6\83s/Ànñ\85ξÜR\9c¿~á\9aÏ%Ýõé\8b\18xK;,\95ß:\8dïvÎ\90P(äàFÙD\809>Íq\ fø|\0\0\0\0\0\0\0¨"Lò¤|bn\94        J\14\r¿\9d·\96ßÓ;Á`ÐYý^E>¿õà¸D\10µ\r¥ðß\ 1\0¨0¼\9aZRâN£\fïºË\84\12
+\85Ê\1f¶t]W\14\85F\9c2\v³ãÛ~a\95ù>ßæ\9b¶ë\92îú\9c\v¿òfkºëóÅs\89ÚE|ÈB;&Îì¨:ýî8ðù\0\0\0\0\0\0\0PEÔ\86ϧoA÷æüæ½ &ÍbZxîå\94E\8e§÷}~_2#\11DMÝ    üw\0\0*L4\1aõ\e\14ë\93\1d\19³\ 2\81\0\r\19Ö\87¼®ÓаÃêóO]Ð*é«oÚ®\97÷\fa\1eqÑçG"\11¶]EQ\8aM\e¤s\8c=ñ§\9f\7f\a\9f\ f\0¨a¨·wk
+9\0\0\0\0À<Q\e>_\84®Öh\1fè^\9e¾\1aÝÈso/ñù\ eÖæU\91Ï'Ô\8eQ\89&\1a\99\98Â?\b\0À#°\1aør\86§`0\18\ e\87\9dzzë8±Øg\85\8aó×\9f¾è=IG½pMÊíQWò\8d\óù¬ü>\10\bÈ\ 5\ eßÃùx¸C+o\94Bg£G¦\ 6Àç\ 3\0j\12êÛi à#\11õº°ú\0\0\0\0¨yølt¿ßO×?tgªi\1aÿ+ýN×Hô>+oóø\8cuºx\13w>\97÷ùôÓÙ\a\10ÕåóÛ\86R\12MD\7f-im\89D¢§§g`` \9bÍâß§ªAS¢)½F<\1e\ f\ 6\83sÓøÔ\e«ªj\1a\ 2<\88¦%\vúü\95\e\ eI:êo\9fq̳ßÈE\9fÏ\ 4\8e\9dË\12ö\90\88.f\1cÜ:] ðK#9\8dÞ\98\\ 1\9f\ f\0¨=èÊÁÚë:ÛÛ\ 3\0\0\0\0x\rºÚá&D^É@\7fåæßËJß\ 4]ãÍG\85Fuùü\91\89)\89&jêN\94´¶\9e\9e\9e.\83T*åýï\ eÐ\94hÊj!\1a\8dÚ´£\1cZ\9e\ 6&ú`uUâÅb\9f56¾\19Xp¯èó\e÷\15\9dHE\7fR\14/\7f\1d×|¾ý   \83lÔvpÈæWDv@}>\0\0Ì\13Åzc\94è\ 3\0\0\0 VÑ4\8d\ 4\83A\9b×<ü\92Éû5\90óJuù|¢©;!Qú#\13SöW588ÈÌa&\93Á?QU\83¦¬\19\ 6\ 6\ 6¨\1d{zzª·)y§jßä;åHiøSU\95:óJ\96óÅZ_\17eþ7¿ó\98¤\8b^¹aÌËòµ\ e}>\9d{lÓ\81@\80ÖL;Àæ\95Ð\89\14ËÃf\ 4ÐOï8%ø|\0@íÁæb[qvj6\0\0\0\0\80wàþ$\1a\8dÚü\bÝ\96²\8f\84B!\1cº*òùmC)\89,¢¿\96´¶T*\ 5\ 3\\e )k\83l6[½MIÃJ±\9bñb\84ÃaG\1c©¦i4\96\89\93\ 2*vûÿ\83ÿ÷gÑç\9fµüo\92.úôE\93ñ¸w[ÐE\9fÏÎ\1c;\ fb\98owê\91\rÛn \10àç!{Çtþ°K\85J>'\92\ 3\9f\ f\0¨=øds\13u^{\ 6\0\0\0\80\1a\86+\949|\8anc]Üsºe\ e\85\ f\ªÏZ¨É\r¼#;Pu>\7fdbJ"\8b\9aº\13øw\0\0T\1e\99hµ    u¹q'Ôv4\1a\10!^\11on*Χ¬Üð¾¤\8b\92ÉÁñc\9emD\17}>\e\8bý~¿ÜÛðrzûÕ\vrØ3 UPâ¬\1aßú<\88]¨Ä½ñ<\ 6>\1f\0P{Pÿ/>\97gP\9f\8c#\ 3\0\0\0\80\1c\9f_ùÛvN±2\8c`0(¹e®s\9fO4u'$¾¨/\89"m\0@E¡\1e\9b?\96\9d\15º[\9fõ¹­\9d\bRp£Ô\99W¾8ÿ¤S\1e8}Q\94\9cç<\91ªb¸èó5Mã§G±æSU\95-#\96Ó\97\89u6\a»* \9f¦%Ù\15\8bGJôáó\ 1\05   õÆâÈ\1e
+\85\9cêí\ 1\0\0\0\0<\b7ó%U\8eñ\12\bw÷¹\98ð)výV\87>?\99É6u'Ô\8eQæêÛ\86R\12SÔzp\1cÿ\11\0\80òá\96^®ßi1kA]1\82Á`ù÷æÑh´à¨A7þòêng\89<ô</Ë_rçÛvL>KK\7fÒ\9b-î¢ÏÏ    Ã1+ÈTU5\96\87þ$\1a\1e§\8aós\85|>\9b\ 2`½$`»ç\91K\ 5ø|\0@\r\15Ô-Ãä\ 3\0\0\0 æáwÁ¡PÈæGøm{0\18¬ü\ e³ûe.Òé%í\ fÝ¡Óþ\8bïË¿¬³\87ÎË>¿}ø(³@ͽ:½\1c\99\98\92\98"µc\94\7f0\99ÉRð\ f\ 2\0(\15S/]l±\92d¾ý\11J\8e8R°jmêÉç÷Æ?¥ÍD@×'ýþ\a¹Ï_ÛªÙ÷ùÔ¥{³ÑÝõùÖ\96-Hù\93;DXi\81¸N:\91
+\16H°%áó\ 1\0\0\0\0\0\0\08\ 2Ýu\96t«+\1a\18ë¤ò
+\10\f\ 6\8bím,\16ãû¦\16ºK­C\9fßy$ÍE\10óóͽºD\16±2~ú)¾\ 4\0\0\9b\98´j±a"\1a\8dÚ\97ù\ ejX¶]V\90ï`©vQ\ eDr-¾\99\1c:±­;nmá2ÿÔ\ 5\9bìË|ÊÈÄ\947ÛÝu\9fÏ\1aW,Å7=¸q¼¹Ãá°õI\13S÷t\82±º}]×ù¥\ 2\85\96\82Ï\a\0\0\0\0\0\0\80\1a\80Ý~ò\1aHMÓ
+.ÆnK¹\81¡_\\99Ì(WètÃ.Ù½:ôùéì4\17A\9dGÒôÎþÃ\13\12YÔzp<g©ê\a\0\80Y¡.W\1cM$2_,à\97C=¹©Ô¹\9aHÄs;ýÇ}~çñC¡uwp\99O9kùßìË|q
+\95×ð\82Ïç{B'^\83\81¢(ô;Së\8eÃÊ!è\14\15¯\9aÄã`¢ØÅU\85\81Ï\a\0\0\0\0\0\0\80\1a@×u^ôΠ\97ì.\98\11
+\85L\v\10ót\83,\87ß)KÊ5YÉ\9cµj.W\97>\9fhéO2\17´ëÀ\18½Lf²³ú"kU?\0\0H\88Çãâ0á÷û\8b\95\97ùÔµÚyj¬i\9ajàÊ#æ¢dôÜ\vÁã2\9f2\12co7\9cõ°èóWnxß¾ÏgÏ[½\89w|~%¡Ë\f:ñL¢¾à\19îà\1c\932\81Ï\a\0\0\0\0\0\0\80Ú@×uEQ¼_0É\8d\81äi\ 2}\17>\89À´\9fõéóyA>¯ílîÕ%ʨ/\99±Võ\ 3\0@1¨Cæ½.\11\b\ 4\8a\8d\11üyë¬X\1fÈ\9a MÐÚh[ö?RQÞ\ fçZ|ñ?.PÎ\b\85.¸M×'é½è\93/\8b2\9fb_æ{¼7vÑç³R|:\19<u4è\9a\8aýSÐ/®Ô?\14\ 3>\1f\0\0\0\0\0\0\0j ºå¤\9bb¹É\ f\85B.Ö@Úñù9¡:ÎdÚëÓç\8fLL\89®>'\18~I     (wþ¬ªßD6\9b\1d\1d\1dM¥Rø¯©vÐ\94hÊ2\89F£¦é]ÅÆ\b\1a>\1c\91ù\9a¦\15\1cª\14EñJc\1c\88äZ|ú\96o\ 4N[Ǽ½ª¾§ë\93\81\ 5÷\8a2ÿ»\rO\97äóÓÙiÏ\9e~.úüª\18\88½\ 3|>\0 &¡k\ 3ºx`\ fRéR¤Ø$A\0\0\0\0\80Z\85.\87"\91H8\1cn\10hll¤ë"\17M>ß7vç>k%\1e]ȱ%Å˹úôùDSw\82é ¶¡\19×\97Ìd%ÊHí\18Mg§Eço]áÀÀ@\97A:\8dêýê\ 6M\89¦,\13\17óð4vÈ\1f\16\8b¨Å\1d\87w¼V\99ïÖÄ13\89x®ÅGQÎ\bqu\1f\89tݱî\ 5SqþÂ5ûìËüæ^Ý˧\9f\8b>\9fÍ.ôûýè\ 4ì\0\9f\ f\0¨=ÄÙÙv.'\0\0\0\0\0@\85   \ 4\ 2ìÎ]þp\81»\ 5Z\92K\9eºõùmC)f\84\9aº\13ì\1d^~_0\9dGÒ¢ógUý"}}}Ì\1c¢®»ÚASÖ\f===®4%ï    \8bÝ8S_Í\1f°ÎJ$\12)¶!êÕYÿo\9a\85gÍ'HÄs;ý¹\16_äº3¸·ohØ¡õ\r\9ad>em«fßç·\ f\1fõòéç¢Ï§!\9em\97NEw\8f\0ý\v4\1ax¹¥àó\ 1\0µG8\1c.8¯\1cG\ 6\0\0\0\0À#pw\14\f\ 6éöY²$¿´ãJ¿n}~_2Ã¥P2\93¥wÄò{kZ\ f\8eç\84ª~öRdlll```hh\b'dµ\83¦¬\19\12\89\ 45åððpå7M\1d¬¦iÅþd-\99\9b\83Ì'Lë¡\1eÞC\1a\9f\91Ñs»\ 3¹\16\8f\vü'ߍ½ßÿ ¦%\95\v#&\99\7fê\82Möe>edbÊ˧\9f\8b>\9f 3\87\9d\1etV\14;\15ç   6gÄtr\9a\16\88F£Þ)\13\85Ï\a\0Ô\1eÅæ\0Êo\15\ 1\0\0\0\0j\ 6vãI7§\8a¢4\18pÁB¿ðBww÷P¼q\ e\ 6\83¡P¨`9\9c©(4dP\9f>\9fàRhÿá     z)\96ß[£v\8cæ\84ª~ö\12\0\0J¾̧Åhè\91¯\8d¯\8aº\/\fF\ 5èUs->}Ë7\ 2§­ãÞ>\1aý$Öúºµ8ÿÛg<aGãoÜ÷%õÀÔ\e{¼­Ý­Ï§­Ó%
+\9f¾AC\7fCqä\8f\8dJÝ´iÎHA\9fÏÞ¬ð\83\86bÀç\ 3\0j\ f~\8bg£W\v\0\0\0\0\0ÎA·\9c\ 5¯\85¸*g\95\ fôÓõ{Ò\82\8e¨Ø\97\12\95¾³¶¡º|~ëÁqS\91gK\7fR^\vJá/û\92\19ü\8f\0\0ì\13\89Dl\96åó)Trh\19êu\1d\94±Îs(ªoùFð[«¹´\ f\87ÿ¡ë\93\81\ 5÷Z}>eá\9a}×né\97ôÃk[\13 M¯\8aævÑç\17+Ë,FÁ\ 2\809@\17\18\æ³Ç\ 4ü \14ÜC\8f\94èÃç\ 3\0j\ fq\f\12\8b¾pd\0\0\0\0PÛHª(M>\9f¹\17×\8d
+{ú î³dIú
+¦oçÈ>T\97Ï'\ 6Ç\8fq\99Oì?<!ñH¬\1c´©;Á^¶\ f\1fÅ¿      \0À&Å*åæ,ó«æ\8b/ÝÄu}CÃ\ eÓ;\85ªôß\96ôÃwo=T-_¼\ e}¾ªªl\85ôÝù\9b\ 5\8f@8\1c¦7é§\17Z
+>\1f\0P\93ð>\99\11\b\ 4P\9c\ f\0\0\0\80ÚF×uQwÓï\8a¢p\eÃï|M~F¼\81u\11Ú\rº~\9bõö\9c¾c$\12¡¯ÀÊõ\1dÙtÕù|\13ÉLVâ\91\9a{uZ¦óH\9a~oêNÐÂøO\ 1\0Ì
+u¶öý*uÈ´|Í|wU}\8f\8bú`p«®OF6·Kd>åÇ×i\92\96û&«å»»èóãñx¬\14\9c\9acÈÎsÓåGÁ#À®\16\1c¿T /N\176lÒ\8a}m\ 5\9f\ f\0¨U¨{gw\85Ñh\14G\ 3\0\0\0\05\ f\17õbá=¿7\17ïUéMnþ\ 3\81@\9d\1f·j÷ù9¡ü¾`àð\ 1\0%\11\8fÇih°)ó©ç¬%\99\9f\9b\19\14Þd\96Þï\7f\92Zß ÿ令>\7fóµ[\92\92Nxõº¯ªå»»èóÝ\82]\ e\99Dze|¾¦iÖ§f6?\v\9f\ f\0\0\0\0\0\0\0Õ\ eÝ\15r\99\96\16ôù¹¯\17ósù_«Ð\97ee\1e\ 5awÓ+V¬X´h\91d%Ùlvtt4\95JÉ·E\vÐb´p%Wõü'£\12\95Ôy$íÊ^aUX\15\91UE£Ñ\82un\ 5WE#\828ÕKN(\14ª½Ã\1e\8f\1f\ e\ 6·Rè\97\F§_äÅù>ß\8b\92\1exmkÂ4ÆzùXµµµÕ\9bÏ/øe\v¾\19\ e\87\1dôùtÙÆÿÑè\17Zm0\18´¿ò2}þ³;wÒ§\10\ 4ayçíwæ©\87Á±E\10\ 4©½ÔÉE2\0 2¨ªZÐÛ\17óù9CÚ°?)\8a\aÇZÿf¥«««££C²\92\81\81\81.\83t:]l\99T*Å\96\19\1c\1c¬äª^éøDb\93\9eüè°+{\85UaUX\95\17VÅ$¤ÕO\16\\15\9f¯d\aZsÍ\1fö;Ö½0\9bÌ_ÿ\7f\7f|@Ò\ 3/¹s\Óæå\vÒ\9fì¬\8aþj\7fU[·n­7\9fÏ®\10ìÔç\a\83Añ´/\13\92®Áø\f\17ûS]ÊôùâÇ\11\ 4y@½\7f\9ez\18\1c[\ 4A\90ÚK\9d\$\ 3\0*\ 3Ý\ f²\eCÓ=©ÄççòÓÌ\ 3\81\1aï\91ìÔ\9avuu\r\f\fHVÒÓÓÃt\87¤Êqtt\94-SùUýå\83/$BÉ­½Âª°*¬ÊÅU½õÖ[g\9ey¦ØÑIV¥ë:\17\8cv\10'v%\12  ;{Õ××7ë\17ôÔªb/uÎ*óC¡\17/½í¨¤û½ôÆ´g¿ uUÍÍÍõæóÙ\ 3/>Ó\84a=\ 2üjÊ\91)\8dôïÆ+óí;|\11ø|\ 4\81ÏG\10\ 4Aàó\ 1\0Õ\ e/A7½/÷ùÅ>åeâñxC\1e\9b\1f¡»ï\86â\ 4\ 2\ 1:\ 2ÍÍÍkÖ¬\91¬$\91H\f\f\f\f\r\rI\96Éf³\83\83\83´\98D\9bÌÓªv\1d\18\93\b¥}½\a]Ù+¬
+«ÂªÜZÕ\9e={N9å\14îfý~¿ÉC\8a«Òu\9dÕ\1eÛ\81V\15\8dF­«¢-.X°@RÀìñÃNË\8bïëúd`Á½r\99\1f\fnU\94îk·$%Ýïêu_\15Ü«±±±9ìÕ|¯jïÞ½®û|:Q\15EaC³\84\82W5s@Ó4¶BU°â¦#@\17\1eÿ\9f\ f\92¢¼÷ýþ\19­JÝÎ\1f·êƪS\99:§NYÇ\9ch+\98\17_`x\15\15µ£øÆ\8b´ \ 2¢Ø\88\89\8e\10c\12£¶r\ 4_0Û®q\ 3\11±MÜ@<\87ã\B¼$\\93\ e,îÞŰÍ\ 2!ìÉ:=\9b\1dv\19\980÷7ýì>ôÎKOÏìÌÎtÏ÷S¿¢v\9a\9e~yúy~Ïô§\7fÍ\8e§lý\9e\ 5ÿmVö\v\92ðù\b\ 4|>\ 2\81@ àó\ 1\0~§q|>?£J\1d\fÛ\9a÷\a\ 4uÈþÏ\86\\84RÛá\81¼ß\8aÅb\1d\1d\1dÝÝÝ.\9e\aø\ 2\J\J'ªª:Íg(\14ÊzuË  w\95^\10E1ï¦h¡óM¨\0\\bé:­hq¾®\7fÚÔô\91Kî]Ó\16{î¹>\1f\8dÊ\8aϰ%QRW¬\94ÏO\8f\94è³\9f\ 1\9a¦qÃÏ\ e\89vÄûv¥vÊ\7fx\94½Á
+úü\v'|ù¢\19_\rF|yÆå\97L¿ü²é\97_>íò¯M\9bø\8d©\13¯\9a2aÒ\94        áð\84©á˦O¾lÆäË®\99té¬I\97^7éÒ믾töÕâ\rW\8b7^%Þt\95(]%~ó*ñæ«.¹ùÊKn\19\899vÜÊã\8aKn\e\1d·\ fÇÅU\88Ìöoµ\ f\80\1d\f\1dÛ7íã¼É\8e\eí\83\9f}uæDèt®µÏ\8bÎnæ¤Ké4§\8fÄ´ðetîSÂ\99F\98l·ÆÕS&P³\9eÂ\15S3MDñõ©\13©¹¾:m"µ\eÅÄé\97\9b±h\ê9Doq\89·¸Ø[|Å[üëôË7¼ùZ\95Ò\9aÿÇTV\^\8døW/1Ý-¾Rz\ì9¼ôÉ¢}»è\18q\19h\13
+ÇDgL;\17\97\97\10\99±\9f\e_ã1u8¾\9e\13ßÈ\17W\8c\8e+\9d1\85"\93\7f²âêÑ1itLæ\11ÎDxtL9\17\94è2éÎ\19Óx8²bnÌpÄÌáÈäÒk\1c\11×:â:\1ev6æ1{8D6Ѱ¸\91ÇH&¿id\ 2\92F¦!\1e7çLI·äLOÎ\19jôÄtq=\ 5\9f+³çPgÜz\85c¶u\9cà\9c\ 2-\90i\9c\91¶â\r\98\99\1cGæG{\8a\14¯Ï\99%3\13¥}­³fIê]|\8adó#u{63ÒøºøÊKàó\ 1\0UB\96evoH÷¡Îåî>\9f×\9bùèLáóó2\94:ëâ\946\1e\88åýVGGG»\8d{ý*¨\7fp)q)9|:à\ 5À.\15ź®;=¼;\856\95\vÕç×\11û#é]R:f\14ú\7fíµÝEe¾ª~Lñ\8f\13ßvɽsÖ\ e|ðA\97\8fFe\r}>u-ï]±²>?wÔä\85Ö©ÔîêÊç_zÿìð\aß
+FÌØñè7\7fùÈ\82_¬^¦¯Zý\8eòøÛ+\9fÞ|¿Úºâ\95\9f,×Z\96ýT[º­ùÞ÷__òÁ¦{>|uñîW\16ýöå»?Þx÷\1f\a^ZØùï\v\ f®¿ëÐú»\ e¿¸àÈ\8bó\8f½0ÿ¸:ÿ\84:¿W\9dÿWu^ßóó>{~\9eõ\1cÅÜøssû\9f\9bû·g\87\13w&ì8Y¹ ÍÒ¾h¿t\0\7f~aþ\91\17\17t¯_@GHÇIG»o\83üû\8dòï^¾ûÿ¼²èׯ,\8a¾ºhçk\8b\7fµé\9e_¾¾äç?^ònó\92·\9bïݬ-}ë\8deo´,ûñ\9bË^ýÉò\roÝ·þ­û¨5\9eݼâ\a\9bï\7f\ 3k\7fö\05Ñco¯|të\83Ô\Ê6åþwW-×W-yï¡Eï=´ðç«yÜÅâ\17«\17dâa\8aù£c\9e\1d\1f\8e;sâ\ e;n\1f\89ÛFÇ­#1§\8dâ\91[râf;¾IñËLH£bÍM#q#Åö57äÄì\91¸>\13\8f^7:®Ýþè[\aÿ³J\99mÊxuþ)\15\8c_\9d\8b©Ùñ(\8fi\ 5bº{ìÈÄ\8cÑ1st\S(¶?:Ë\11×:âº|q}&ØE?×\a²»\aë6vð\8e\83±\8e7Ò   oÎê\9cï?2\87ú­£\ f;;6ëí¬ó;\87ÃÜ_d\82\8d\1aç8ZðóÕ\vF\86\9bs\0Êï­¾Û\8eEöØd±ø½\87î±cÉHÜ«¯¢Xª¯Z6\124\9c\97¿»ê>;V\8cÄýÛV=°mÕÊ\91xp\9bBAÃ\7fÕH<ô\8e²:\13\ f>lÇ#ï<¸fk&\1eµã[[W~ëí\95ß¶S\aÅ¿Ùñ\9d·W>nÇ\13\8cü,\13Of"\93dÖmyà»#ñÔæ\a¾·ùþ§íøþæû)\11ýÐ\8eg6¯xæ§+~ôÓ\15ÏÚñ\ë\8aç[W¨v¼ÐºâÅ·V¬ÏÄ}ÿþÖ}/½uß\ 6;6¾ußË?Yþ\8a\1d¯¾¹üµ7\97ozs\19Åë-Ë\9aí \9cOÙ¯Å\8e7[\96ýä\8deo½A)qi«¶t³\1d[´¥?k¾÷m;¶6ß»-\13\99ä©ÿxÉ{?Î$Ò_¼¾ä};Ú^_²}\13Å=;6ÝCi\96f\90ÿØ´ø?_[LY÷¿^[L³  eàÿýê¢]v6¦øÍ+\8b>²c\8f=ËP¢Þ»ñîÿ\9b\89LÞþÃ\ 6ÙØ Ó¼³oÃÂý\e\16¶¿\94\9f¼´°ãß3ÓÐÿ³g"\8a?Ùó\11¥}óÅ\ 54+õÐÄôÂü£/d¦\ 3\9a\9bøôôßê|\9a&(bö\f\95\99\9eì\89©²óQI\91pÄÀpd&Ê¿9\82\ e²ß\9eL)¬áÈ\9cÂgö¹Püõùyÿm\9f`¯}¦ì\94ÿl·\0µC\8fÝ&Ô8ÔD\9fÚÍEM×a·$5é\1f7,¤F¦\ 6§\96ßc_\b>KÒµ£ëH×\94.ñ;Í÷nÉÌ\92\9f¼þæ2êH/ÙS$õCê\9fÔ\81©WS·§\11\86Æ\97ôÜ]ðù\0\80*¡iZÞ{C\17\9fÏ+Ðüå±é°##Td\83ÁðùDs§å¢\95N\f\9eÉýJOO\ f3\87Éd\12\83È×àR\ 6\86îînº\8e\1d\1d\1då]Ê,-é\9e'ùÄá\85B\96\89@\ 5\9dgUHZé\9dátkS&ÞËÿkÜøÍï\8aÊüpxK:£ O-^û\1f.\89÷\86e\7f+ûRÖ\84\1aú|>\17Sw¢¿³\8a\13Æ\ 1êÉ\85Þ\ e CRKwæ\85\ 6\1d\9d\1d\7f;\92þà?i¨ñ½o\a>\1f>\1f>\1f>\1f>\1f>\1f>\1f>\1f>\1f>\1f\0àwxa\eýk\18\ 6_îâóùí$Ý]6rÓ\ 5Æçï>~ÒE+íí\1dÌû­D"\ 1\ 3\1c\fp)\83A*\95*ûR:ý<Í\ 5îzÐKA2ßT¡i"ë\89@½Ëü\98\91qøLæSl\17sW1\8c^AXï.ói\ 5Ë:\95YûD´õ7ï¹$^å\99Äß\ 6Où¨ûÕÐçó\17\ 6\9d¿a*\bm\96fù¢/\8fP\vЯ\ 2I\92Â6´¾®ë.o¸\94
+ÿé5Æ7\ eàóáóáóáóáóáóáóáóáóáó\ 1\0\ 1ÀYÛÆ5N^\9fo\9a&¿£¤;h´[0|þ\89Á3.Z©¹ÓÂ\18\ 1 Øp»î.Ei
+\10EÑ»Ì/´©,\99\94Ö\98C\1a7ùÖ¦ó\ eoº4£÷GcY§Ä\7f~²hq~4z\84òmÏÀéôþ\88KÖõcϯö#!UUiûÔó³\96S÷¦³\1e·×\ 1h\98Ð\8f\rþ"\0ý\11\1e¡¤â
+ø|ø|ø|ø|ø|ø|ø|ø|ø|ø|\0@0pÖ}I\92¤Úð{d^uæ40%½ß\1dH|íó·\1dêÿþ\1fþÚz0Î>n<\10sÑJC©³\18#\0\ 4\eÊù\94Ó\䤮ëìe./\88¢X¨29«¼¿ÞßóÚ#s\99¯-\9dÈ´|$òѨu\92\96\14\95ù\8aòaW<É]}Q\9fOá£þSC\9fϺeI5ê%ÁæúÜ\89\9eýpªÞ~]\ ef,û\85Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\87Ï\a\0\ 4\ 3˲²t½{Õe\1d\1a\18:\85èhª½G_û|î\8bºâIúØvxÀÅ)íÿl\88}k(u¶gàt<\99Â\90\ 1 q ìª(J\93gdY.$ó\rÃð\8dÌOZéí"\97ùʬ\e¹\99\ f\87·8W\94çþ´¨Ì\17Å\96ôÈ\83T\8f\81ú|\8f°_/Õ{Ë\83\957ä¾\93\b\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\9f\ f\0¨9\9a¦ñW¹\vA7°\86aÔÉ\ 1Ó\91°7Ð]\1e=°×\r\\8aNËÆ×>\9f\17ä·\1d\1e \8f¼j4o°uø·Ô}}¨Ø\a A 4+\8a¢w\99ï®U)\15óä\×/yÅ\8côV\81\99|kÓyá\7f\94ó\9aÖÎW|ò\91Ö¢2_\10Ö\eF/­LÉÓ»Ïßy,á£~RC\9fÏvM¿^
+=E\1aû\10à\ fª\9cËáóáóáóáóáóáóáóáóáóáóáó\ 1\0u\82®ëtÓ\9a%pè¾UQ\94ú1ù¦iºhüB%£\95µú¾öù;\8f%\982R÷õ¥íÂ{\17­ÄÖI;ªúyÅ>\0 Àh\9a&\b\82÷4ë¥Þ>\1a\8dRò¬Æ3ÖJ²Kb2ßxú\82Ðÿ|ÌiæuýSGû´\17\95ù\14ì+î\8fMs\83½<å\17jèó  öþH\96o¯ ü÷\ 6\r\aÚKÄ\86Õ?Ð\7fE¼Q\91\aXðùðùðùðùðùðùðùðùðùðù\0\0àG\fÃ(I19Ëõ+øHÂ×>ÿÄà\99,k´íP¿\8b\198Më4wZY\15û\0\80 Â\1ciM²kíÙ\1fI·6iK'
+ç¯ãZ^\14[X\99=Ãøð\ 3/2\9f\17óSÚ,Éçûë5¨qðù\96eE\vÃ\94»(\8a\9a¦E])ãYRÙ¿:\9c\92\1f>\1f>\1f>\1f>\1f>\1f>\1f>\1f>\1f>\1f>\1f\0\0|\aÝ\89;o«%Ibeo¹*\89֤媪Ò:Õ\90N¾öùÄÆ\ 3\9cßÛ;èb\96v\1eKÐ:»\8f\9f̪Ø\a\0\ 4\ f˲Jz\ 1J\14Å@É|\9b\aï|©å%I·¬Sü\7f\8d\ f?pªþB!Ë;øW(mz\97ùÍ\9d\96¿\9ak\1c|¾s\17ãïÕé\17\85,Ëðùðùðùðùðùðùðùðùðùðùðù\0\80\9ac\18FØFÓ4\8f_¡5ÙWj"pø\rµ$IÞ«ì,ËâV¿RúÝï>\7fç±\84SÎÇ\93©¢rÉYÕÏ*ö\ 1\0\ 1\83\12{(\14òn))µR\82\rX#(Ê\87N-\1f\89|äü_Mk÷"ó%Iç_é\8a'K*Îg\8fP}Dà}>\83½#\10±aÃ\84~\0D¼A_\1c{#ÀçÃçÃçÃçÃçÃçÃçÃçÃçÃç\ 3\0\0¿Aö~o8öÛɱÀ\8aóEQ,㻼â´"O"üîó\9dr¾+\9e¤%Í\9d\96\8b_\8a'SiG\89éû\9fö%\12>3N \97T*Õ×\87K\19ðKÉ^Vòò\0TÓ4ç\vPEQK÷\81¾ \1cÞÂ\9c¼ ¬×õOG7Q{Q\93O!\8a\9eß0zé\8f¶Ã\ 3%ùüß\99'ü5*ÇÁçóò\831â½z¡X'     \8fÿ\ f!ø|ø|ø|ø|ø|ø|ø|ø|ø|ø|\0\0(Ãçó
+ùñ÷ùt;Ïv]Þý8ÿzE\1c\94ß}>±ñ@\8c¹£¶Ã\ 3iGÅ~ÞØÛ;Hëp+µÁøK{{ûÐÐ\10\ 6\91¯éîîn·Á¥\fê¥Ôu\9d)zú×}\v<§y!\14
+Õä\15­ñ!S\81\17Å\16ÃèÍZîEæÓw\99Ì\97å\1dì#\7f\12ê1þÐþ\89¿Få8øüzCQ\94
+>\1dð\b|>|>|>|>|>|>|>|>|>|>\0 \ 1á¯\8a\9c÷øÎ8ÝÀVä¥õ²\ f\9eíºì÷Ö+xä\ 1ðù\à«ûúècÏÀi\17¿ÔÜiÑ:û?\e:gø÷w ®Ûïtuu1     \8cKéw:::r/¥3c»\88V˲$Iò.óiâ ¯4Z\v{\97ùì)\80ª~Ì\96\\14þYI2\9f=-õרl@\9f_\13àóáóáóáóáóáóáóáóáóáó\ 1\0\rHI\15\98îèº>Î\aÏ\8dAy»¶,\v>ßÉ\89Á3Ü õ\f\9c¦%îE¤ñdj(u\96\7füõ¡¿`@ù\9dþþþîîîcÇ\8e¡)üN,\16£KyüøqöÑ4MQ\14³$|Þ/RbÌZÓ\ 5A\10\
+\92)+R>\1cÿ©a\1cð(ó)týÓtæu°^AXÏ\96\9÷\97^4þ÷ÚºY\ 6þøÈ_\9d\97Ò\17Àç\8f\ fðùðùðùðùðùðùðùðùðùðù\0\80\ 6¤R>¿&\12\9b\vyI\92Êøº¦i\15|\12\11\0\9fOl;ÔÏkï\89¶Ã\ 3.ºioï ­Óz0Î>Òw1 \0¨C(Å        \82àEÂ\97$óiMÃ0
\94¿í\15<£ûäcÛ=Ê|Mkg_\11Å\16¾pËc×µ}ztÃÞø\9cµn   öÍ\1d\7föo\13ÕÐçSߦ\9e©\16SÓ¦iR\17\r\85B¾~µ\ 4>\1f>\1f>\1f>\1f>\1f>\1f>\1f>\1f>\1f>\1f\0Ð\80Ð\9d\ 179t\93\eö\86$I.õ\99Õ\86\1f°Zâ}¨a\18\pUäv>\18>?\8b®xÒE71í¿·w\90}l=\18Ç\80\ 2 ÞP\14Å£\84/IæS¢+\949³¶C\99¶®\e(i¥wI\99H\98E×µ¬S\92¤\97*óey\a_¨Ìº1ÝÚ\94>\11U\94ô\92Mq\97\ 4»cû_ýÛëjèóé7\89Ëë'NèwNM^-¬ uåó/\9añÕKï\9f\1d\8c\98¸bö\15˯\ f/¿næÒY×/\99%Ý3sÎâ\99w.\9a¹àî\19wËÓïY8mÙ]ÓV,\98ºrÁTeþ\94Õó¦<2/üè¼ð·çNþ·¹\93\1f¿sò\13wN~ò\8eÉkï\98¼î\8eÉOÝ>ù{·O¢xúöIß¿-\13?¸mÒ\ f3qõ3,n½úG\8ex¶ÒAÛ¤}Ñ~é\18\9eº}\12\1d\12\1dÛ\13öAÒÑ>6wò·æ\85×Ì\vÓ)Ð\89¬\9a?\85Î\88Îëþ\ 5Sï»kêò»¦-]8mÉÂé\8båé\8bäéòÝÓïº{ÆüE3æ-\9aA­qû¢\99·.δÌÍ÷̤&ºqÉ57,¹æú%×\{ï¬kî\9d5séµ3\96^;uÙµS\1c\11\9cÅu\93½Å¤\9c¸:'®Ê\13×_\99\13W8ã¾ë¿\91/¾î!¾\96\89ÙYñÕûfoúek\95\ 6{\9d\ f\99Ërc\85×\98PJL,%./\14öÅÊ\e_+\18\99\8bþuo\91·_}#«ûåtÎ|}xT'Ï\1a\ 5\86\8fµÑ\ 3\90bª#¦9bº#f,=\17\83\86ö¬k\96fÆ8Ŭ\91¸Ö\11×\8d\ 4%O;®\99=\127äÄ\8d#qÓ=,2É\84Å7G\822ÌÍ\8bgÞ2\12sF\ae¡[\17eâ6;n\1f\89;ì¸s$æÚ1/\133xP6\9b\7f÷\8c\ 5vÜeÇÂáȤ;Y\9e\1d\8b\1c±Ø\8e{2\13A&\96dbÚ½vP¶\zWfv X~.2¹ô¾\ 5SWØA©õ\ 1;VÚñ \85\9duyP\12~h^&VÛñ°\1d\8fØYz\8d=Ñð Ôým{ÞyÌ\ eÊçß±\83æ 6\r±\88Øó\11\9b\92جô];ì¹éÜôÄf¨\1f\fÏPÃÓS5¦¤²'²¼A\13è3#GûÃá\18>\8b\1fÜ6<ç²³û\9e#èÜY#¬³Û\84µOd¤Å¨õ¾c·ç·íùñÑ\91)òaûº(\8eYr\85=KÒå¦>°xáð,I}\89O\91l~¤\8eM]ýºÌ´8\8bÆ×\15·M\86Ï\a\0T  ~\ f^ö½á8CwâN¿¤iZQ9o\18\86³pTQ\94\8a\1cI }>¡îës1Nñdj(u¶õ`|ã\81XW<\89\11\ 4\90ëç)õ\15Ê\90\94\18\99Þô\82KÚ4M3Kæ»Ôð×\9e\84\99Þ.f\ 4\9e"\ 6Ø0z\9d\1ee~$ò\11_(~i\95µé¼ôV\81öû¿þá¬Kj\8dìê«ÐÔT\ejèóY7öRfÀ~  øå×N^êÊç#\10\88\17Õ\17ª4ØÑ¶\b\ 4\ 2\11¼ðño}\0@ýá;\9f\9f\1e¹%Ï*@\r\87Ã\91ÑÐj´\90×äó5+R\9c\9f\ e®Ïo;<à"\9döö\ e\0P\9fð¤Ä¼º\8bát¾¯äNIÛqy\17 .\88\19\19µÎd>ÅïÝ\ 4º®\7f*\bëK\95ùô\a_(\9c¿Îxú\82Ì\8e\8efJÂ/
+»½ý4gí\80\87\ 2óú¥\86>\9fí\94\ eÀã\0ñõ\94m\9a\86þ(o\vðù\b\ 4|>\ 2\81@ àó\ 1\0~\87n     \99ýör/\?¨ªêQF9\91$©R2?\1d\\9fß\15w\93\9dV\90N\16\80 A\89Ñ\8bW/Iæ»lGÓ´,\99\ 4[y²dþv1\9d,x´Î\1a\10\84õÑè\91\91\86íuþ×°Ìß%¥3\8f¡ÓsÖº=*½(\9côP`^¿Àç×\15ôÓ®ÐÈ\85ÏG àó\11\b\ 4\ 2\ 1\9f\ f\0hL4M£ûb­¦ö\81=\89\b\85B\1eM~Å\1fX\ 4Õç\13ê¾>\17ï\14O¦0\ 4\0¨C,ËRm\¼ºw\99ïîç)ÿ;W\96뼸Ü!óµ¥\13\99o×õOóµá)IÒ½Ë|Ãèåß\r\87·\9c«Ø_:1³»÷Bì©\81 ¤×´Å\òêç>\7f¶Ü\82뺠\86>\9fý\fðò\83\84½Ü\17T\9f\1f¶Ñu\9dÿ.¢?r­þ\18}þSk×Ñ\16ª\1a\93¯¼\8a\1fá¥_¹¸Ú»CT$èJñ«FW°qN|ÛÖwª4¢Ñ\19\10Õ\ e§c\9c}íuE×§u\9c_A\ 3ú"0¥Ö[\ 4ò'(\0À_Ð=#+ݬ\87\83¡ÛUö|A\92¤°\ 3ºsgï\1dT©d4À>¿í°[\1déÞÞA\f\ 1\0ü\88®ë\1ee¾»\9f§¬ë\YQ\94º>í|2\9f"\12ù(kEÓ\8c\8bbKy2?\9dÑÅ;Ø\7f=yËÌÌîh§´ë̳\8fô\17/<ã\92T\97l¢ýú»kÕÐçÓÔïe"¦_\ 2¬óÓÜ\1dÈÑM- ØÐ0gW\84}Ìú        4F\9f?\ eÐQ9}Q /Vð¨ÿ~\ 5Ð\19@\16N9ÿÛ={\8a®Oë ÌØw`J\ 5\0\80FÀ4MfÅ\8b¢(J­nÛë\8a\0ûü®xÒE=5wZ\18/\0ø\8e¬\8aú²e~z´Ï¯í\8bZÅ) ósëó£Ñ#\82°¾l\99OXÝ¿¥]諾Ìv\97>4Ü2\92\94\9e¾ô¤KR½rî`\9d?\12)J\r}>ïØî]\91ÿtaº;x°B\vç«\88ªªæ6\v|>¨\ 6\0\9dÁwÀç7\ 2\98R\ 1\0 ðp5]\12¡PCOå\ 1öù\84º¯ÏÅ>Å\93)\8c\1a\0|D\ 5eþp\8aPUI\92\9cò°\1eI\98\85d¾¦µ\8f>\9d\8f=\9a|
+Ql±¬Syv·K\1a\14\9d*_LSÄÊÍ\96KFýâ\85gê¼!\8bRC\9fOЯ\11¶kµ\80;â2?À¿[\98ÏϽ(Yï#Àç\83j\0\85\vÐ\19|\a|~#\80)\15\0\0\82\8d®ëMeQïe\99U&Ø>¿íð\80\8b}ú¯?õvtttww§R\10ûþ&\16\8báR\ 6þR:_ªª\88Ì÷\r'¢Ee¾e\9d\92å\1dÞe>­\pw{äa\99¿gT3¾ülÌ%\9d®i\8b     \82ïGem}¾ógL(\14¢Ù9:\ 2u~nû\ 3\\9c\9f\86Ï\a5\ 5
+\17 3ø\ eøüF\0S*\0\0\ 4\eç­®(\8atKÈ\97Ð\1fá\11\ 4Aà«Ñ\r²i\9a\rÞnÁöù]ñ¤\8b\80Ú`ü¥Ý&\91H`\ 4ù\9a\8e\8e\ e\Ê:GÓ4\96\93Ýe{¡KIßò(ó³¼_\10HZéí¢\8bÌ7͸(¶x\97ùYUýyv·?â¬Ìgüñ÷\9d.étÎÚ\ 1Iòý¨¬­ÏO{{\ 3\85\ 48QÀç\83\1a\ 2\85\vÐ\19|\a|~#\80)\15\0\0\ 2\f¿\a\17\ 4Á0\f¾\9cÝ\18\8a¢è\Y×ufõ³\967&Áöù\84º¯ÏÅAíÝ\9f1NÉd\12=Á×ôôô0s\88KYo\98¦IIÆù ÕÝ\94vwwÓuìèèp^Jï2?¨ï[iZ{!!o\18½\82°Þ£É§5iýò\8eÁýu§\8bÂɬ¶Ï{)ë\9c\9aû|v\fì§K.¡P(À\95ù\fø|PC p\ 1:\83ï\80Ïo\ 4\ 2\0@\80áR:ë\8e\8f/·,˹Ü0\8cÀVr\96ÛtAòùñdªgà4ûÛÝAí>\12\83\ 1\ e\ 6\89D\ 2\97²®\88F£y=¼{ªI¥RÎKI©[\14Å\ 6\97ù\86Ñ[HæGÛ~-\9c¿Î£Ì\17Å\16Ë:å}¿C©³\94?)(£¦\8b=\e\8dìÊüïÞÞÁB\97Ò/\9d¶æ>\7fä¢\e4;óW\véïÀ\9b|\ 6|>¨!P¸\0\9dÁwÀç7\ 2\98R\ 1\0 ÀH\92ÄnÀ\9dÅùi»\14\9f-§ûÁ¬¯p\8fm\9af#7]ð|~ÏÀiæ\97v\1eKÐÇ®xÒÅA5wZ\18>\0T\16MÓòJxZX\92r§|\9eUØß\802?\9dñ\99GòÊü¬¢}÷\90å\1d¥îw÷ñ\93,On;Ô\7f\8cK"åÑz0îó¦®\17\9fß°Àç\83\1a\ 2\85\vÐ\19|\a|~#\80)\15\0\0\ 2\f\7f9=k9¿7Ï­Ã7M\93ý\97ÚØ?Ò\82çó¹\83R÷õ±%îe¥¬ôt(u¶gà4û\e\0P6ykòiaîCUw4Móhò\ 5A(uã¾#\12ù(\1cÞ¢ë\9f:Ú§\ 4\99¯ª\1f\97±S\9e9Y\95¾\17\9f¿íP¿¯Û\19>¿æ(\8a\92õkÄ0\fZ\92õÀΩÚÊ\b/Îg\8c@>ø\11(\\80Îà;àó\e\ 1\0\0\10`
+ù|˲ØrºCÌýV(\14
+\92Ç.\8fàù|g\1diÏÀiZân¢öö\ eÒ:\e\ fÄØ#\80¡ÔY\f(\0Ê\86gcfÚ)Ã\94ñ\ e\87\ 2\85d~ÖkY\f\92$ÑÁäý_¿ã]æ\vÂúhôÈè\969¥ª\1fG"\1fÑ\1f.»ØÿÙ\903\91º?\15åAßòuÃÂçû\ 5ø|Pí~\ 5\85\8bÎ\80Îà\vàó\e\ 1\0\0\10`¸AÊ\15G.²ºÐS\80\86"x>?="ç)v\1eKÐÇ®xÒE@5wZ´\ eÿH+c@\ 1P6\9a¦        \82 \8abV=­G,Ë¢ï\8eQæÓBú¯àe¶\91\16ö*óE±Å4ãÎïÒGZÈþW\96w¸ì¥õ`\9c¥DJ§î)Ô\19~\7f\1e
+\9fï\17àóAµû\15\14.:\ 3:\83/\80Ïo\ 4\ 2\0@\80áR:× 15$\bBî·àóÓ\ 1õù¼ \7fã\81\18[â^\\1a\9a;-ö7}\17\ 3
+\80\9a\10\8d\87/
+åv˲r7Â\1e(ðÕdY\ eR\13©êÇ\1ee¾,ïȪÀ7\8c^AXï\¡Ð^(%:ß`r\7fÅ)ëÙ¨ß{ |¾/\80Ï\aÕîWP¸è\fè\f¾\0>¿\11À\94
+\0\0\ 1Æ0\8c\9a\92$±ÿÒuݹܲ,ܶ§\ 3êó\9dÕ¤ñd*í0üycoïàÎc     ö·º¯\ f\ 3
+\0'\94TUU-¯ÞÞ#\94\90\15Eiò\8c\8bÌw®&ËrÞÕê\8e\84\99>\11\96,ïð(óUõã\9c\96\19UÕ/þó\93Y¶ß       O\98\94\ f)\85º?\ få±ûøI¿wuø|¿ÐñÉ'¿Ý³§ìèïï¯ö\11B>ø\11(\\80Îà;àó\e\ 1\0\0\10lB¡\10¿\r\ f\87Ã\=q½C+8Å\8e,ËÁóØe\10H\9fO8]}z´áÏ\8dÖ\83ñ\13\83gøGZ\19\ 3
+48ÌáK\92ä¬uW«sK«ëº3\81\17\85\8eÊ\8bÌW\14Å\1fm}HK·6eâ÷n\aì]ækZ»ûwåI·[\9bÎKïÉÿæÂPê,\17øm\87\aö\7f6äEæSP\16õ{·\87Ï\a\95\ 2òÁ\8f\ 2t\ 6ß\ 1\9fß\b`J\ 5\0\80`ã¼\rwÚi˲¸\8f¢?\14E\89D"¢(ò5«ZtZÿ\ 4Õço;ÔÏ]=[â^b:\94:»ñ@\8cýMßÅ\80\ 2\8d\ 6¥JJ\86\94!)\15\14\12é\94.*¾Sþ
+\95G
+\1dC\96Ì÷Mb\8f\19é­Â°ÏßY0      \97-ó-ë\94(¶8Wxò\96\99î»s
\13\83gx.u\ fÊ\9f\ 1\18\ 5ðù R@>ø\11(\\80Îà;àó\e\ 1\0\0\10x4MãêÞi§UU-¤\86DQlðF\vªÏw*©¡ÔYZÒvxÀEFÑú»\8f\9fÌú
\v©Tª¯¯/\91H )Ê\86¿²äR\15o\9af\ 5÷¨ëº³ø¿(´2}%ï¦\82 ó)\ ei\ 5.\8d'\99/\bë£Ñ#Î/\1aFo(ôÚ¹\15Î_§¯úò¹Ý\1dÍß\98Í\9d\16K\83OüÊúÁ³g=\16çS\82\rÀ¨\84Ï\a\95\ 2òÁ\8f\ 2t\ 6ß\ 1\9fß\b`J\ 5\0\80FÀ²,UU%IR\14Ź\9c>æÚ¡p8Lë7x\8b\ 5ÕçÇ\93)§«§%]ñ¤\8b\8cÚv¨?÷+À/tww·Û\f\ráÂ\95InY¾ \b´\90RD4\1a­ì¾h\83.o\ 1\14zöj\18FÞ­\99¦éw\99o¾ð\85è+«-ëTîZÞe¾aôæ\Ó-|\ 5ñK«\8c§/\186ù´ß\98Qè¸x\1a\9cpÃ)
+\97´ù@ó¹Ò}J°\ 1\18\95ðù R8åÃ¥_¹xîíw ê?èJñ«¶lɽèÆ\8d\8cÓçO¾ò*\8c\8eº\8d1ú|4 /\82Æ |>\0\042¦i*\8a\12\91e¹P\9d\11T\9f\9fvT\99î>~\92>\ e¥Ü
+MÕ}}ίl;Ô\8f¾á#ººº\989D\89¾\13˲¢Ñ¨Ç§\96\94\12\10K\8fªª\16\92çc\84òpÑ\17\ 1ò¾\1aàr\16N\aë\e\99\9f´ÒÛEf×\8d§/\10Î_×Ôô£P赬µÆ"ó  IÒÙ
+ÒDÙÚtް̧ý&ݺ\ 4K\83+7[MMé%\9bâ.i³eÛ ¶2ý\9b»\9d\8e\8e\ eß\8dJø|P)\9c>\1fáÇ\802jp²D1Â\17Q\86ÏG 9\ 3\0\0\0>%À>¿+\9eT÷õm<\10\8b'SlɶCý.n\8aÖßÛ;È?òo\81ú§¿¿¿»»ûرch\8ah4ªªª,Ë¢(òÊöz80˲ò¾'U\14ÊQE7Nç\e
+\85ü(ó­Mç\89_ZÅÍüè\93\1a\93ÌOg\9e\9eÄ\9f¼ãVuÁÕÃ&\9fb\8fì.óÓö£Ï\9e\81Ó\9fûüÙ/\ðw\97\84IñÉÎnZ\9fVλ\9dX,F£òøñãþ\1a>ðù "ÀçC\19\ 1_\ 3\9f\ f\9f\8f@r\ 6\0\0\0ê\99\0ûü\ö\7f6äâ¦Ú\ e\ f8køO\f\9e\0õ\8fi\9a4\8a\9d\ 2?\17\8f%úU\82öNG(\bB©&?\14
+E£Ñ\0\11\99O!M\94¹\99W\94\ fù*c\97ù\19öGÎ\99|
+úè\rMK75¥¯\9c\920\17<ß_ÓnU\15àóA¥\80Ï\872\ 2¾\ 6>\1f>\1f\81ä\f\0\0\0Ô3\råóãÉ\94\8b\9eÚx \96\9d\7fëÁøîã'Ñ7@ýc\9afQ+.IR­\ e¯l\93O(\8ab\ 5Ï\17§G9ö'o\99Éͼ(¶ðU*#ó\89]Òð¾¶
+飺÷c¤Ù ©)½r³å\920'Üpªv=«ZÀç\83JñÛ={^TÕ\ 6\89\1f\96`\9cÔ;[·¢\e72Ô\ 1\82=l'_y\95S\90\ 6ã¤\8e\1e=ZôÊÒ:HÈHÎ\0\0\0@\0h(\9fO4wº\19*Ôä\ 3\7fáÔ\8f\1cA\10h8+\8a¢ëz­\94¸i\9a²,\97\ 3[\96ÏØ\19f\8e]_õe§\99·¬Sìÿ+&ó\89\98\91ÙÝ.)ó\87g\f##ó¿pÁß]RedW\1f­\13¼I\ 3>\1f\802ȪwE\83\0Pÿ8_@xQUÑ \81\ 1      \19\0\0@ÝÂýs¥\b²8*¥=\eÄçïí\1dt\91T;\8f%0Ä@m1\fCUUMÓ<®/IR(\14¢ñKcY×uÓ4k{üÌä\97\9d\90é,\82Y\96Ï9ª§·
+ÆÓ\17\bç¯ãr\9e\9bùJÊür\91å\8cÏ\9fýpÂ%UÎY;@ë\ 4O\0Àç\ 3P\ 6ÐG\0ø\ eøü \82\84\f\0\0 n\81ϯR{6\88Ï?1xÆER5wZ\18b`\9c1MSÓ4EQh\f:S\93ê·Û+:\8b¬S(        Q\14\rÃh\84+nY§B¡×¸\9c×´v¶¼\1ed¾e¥\ 5!ãó×´Å\RåEá$­\13¼Ë\ 5\9f\ f@\19@\1f\ 1à;àó\83
+\122\0\0\80º\ 5>¿JíÙ >\9fØxÀÍSÅ\93)\8c2Pm,Ë¢¡G\83N\10\ 4\97Ju_\9c\8bi\9a\8a¢¸\9cHQ軾{x1\16Âá-\Î+Ê\87\99EI«\1ed>Aס©)ýÅ\vÝ\9e{FvõÑ:¡ Þ#Âç\ 3P\ 6ÐG\0ø\ eøü \82\84\f\0\0 n1M3Z\0Y\96\9d¥\9e\91HDÓ4þ¿¬\ 2\96\96;Ë_i¹eY\8dÜ\9e\rèów\1eK¸¨ª½½\83\18e ÚH\92䮸i\ 5Êuu~\16º®\8f¥ \9f\99|JA\8d\96\84¹\9c\ f\87·d>'-ù¦ï\97!ó5­\9d×öW
+\9a\a\9a\9aÒ³\1fvK\92ô¿´\8e¢\ 4ðÒÀç\ 3P\ 6ÐG\0ø\ eøü \82\84\f\0\0Àwh\9aÆ\ 5\91{É=ý/³ú´¦a\18\rÞn\rèó{\ 6N»¨ªÖ\83q\8c&Pmr58%%EQ(\8fÕ\7fRÒu]\96å±\14ä3h#\1e\9fY¨ª\1a$í/\8a-MM?¢\7f\94w\99\1f
+½æ\94ù¼\9e_U?®à±ÉrÆç¯is{\89é\8b\17\9e¡uêþqS9Àç\ 3P\ 6ÐG\0ø\ eøü \82\84\f\0\0À_X\96Åä\12ýëE\10Ñú\é£>¿Ñ|>¡îës±UC©³\18SÀ;ÑhT×õ\88\8dûÃD\8ea\18\92$ɲÌÞ\12òÅiVJã³lãñ±\ 5ÏÕÌÿ\a¨Ï\1cÉÈütZ\9eûS/2\7f\ f·É©px\vÿ¯Hä£
+\1eXÊ0ZÂßvI\8fkÚbMMiQ\fìX\86Ï\a T \8f\0ð\1dðùA\ 5     \19\0\0\80¿PU\95Ý\80k\9aæñ+¦i²¯D"\91FnºÆôùm\87\a\\84ÕþÏ\860¦üE,\16ëèèèîîN¥RUÝ\11å\r¦îeY¦!\93+·iI\90\1a\96Î\97²«$IM\15\82\1aÍýù\85óR\1a\86\11
+\85øwé0\ 2ÖoßøáKeÈ|VÞÏB\10Ö;\8böÇÎ\99htóóoº¤ÇÙ\ f'\9a\9aÒ^nýÇmTV\10ø|\0Ê\0ú\b\0ß\ 1\9f\1fT\90\90\ 1\0\0ø\v®\9bJ*¶ge\9fbP\v\r½Ñ\98>¿+\9et\11\ eõcLù\8b\8e\8e\8ev\9bD"Q½½8]\9f\v~oLÊ¢¬\14ßéÒÇ\ emÐKM>¿\94mmmÎÇ%\94¨\ 3ö.\95ñî3c\94ùâ\97V\19O_\90îTÇr\18»\8f\9f¤\8cwbð\fû\18O¦\r#Å\17/<C}ÜÃkpã4*«7Æ\e4\99\ 2P:ÐG\0ø\ eøü \82\84\f\0\0À_\84Ãá2nÀËûVÀh\1c\9f?\94:»·w\90ÕÞÓß.ÂJÝ×\871å/zzz\989L&\93¹ÿk\9afÔFUÕÈ\ba\a\8a¢\944Xò"\8a¢$Iº®û±\ 1©\894M\93e\99=å¬,´YÓ\8bÿµéîî¦ëøÔSOeUõ\aLæ[í[\84ó×\8dQæ[\9bÎK·6¥w\96\9fº)\1f²¤×Ü9ܼ;\8f%\rãÊÍÖ?N<\1dÙÕG\7f\93^.eGGGÞQY\9fÀç\ 3P\ 6ÐG\0ø\ eøü \82\84\f\0\0À_p3ïÝ\1a\11¼ú´\91\9b®q|~Ûá\ 1¦¤öö\ eÒÇm\87ú]´UQU\ 5ª\8deYÑ\1c\9cB\9e>:×O$\12\85d¾³Ì»\10Y[Ë\vm\8a%\rQ\14i¼Ð1ÐñÐ\17KJ;õ\ 3\1d9\9d\82$I^Ú§\fh³´ýR\e§¯¯oÉ\92%Y\8f\ 3\82Ö¹\ f\97VUFæSü^)û@6\1e\88eù|u_\9fKb|èñ¿<þîpæl=\18wßx*\95*4*ëyPÀç\ 3P*ÐG\0ø\ eøü \82\84\f\0\0À_(\8aÂnÀ#\91\88ǯ\98¦É¾\12
+5ôLÇ}¾ \beT,³Æ\ f»â}SYUÓ¹¨\9e\7fpj\9a\16\19Íãïþ\9ai¨çö\98ôñ»?Þ⢭Ú\ e\ f°í\9c\18<Óz0N\1f#\851\fÃãQÑ\9aQW¼ËO^s>öM9\8f*ï   zqÝ\1e¯ ÇÎàQÂ{iy§ s1Ï>uò%Aç¨ë:\e°MÕ\84¶O\ 3°\8c\v\9aõ\82\80êë{Ì\13ù\ 6\90'Ý^1\99¿§ü\87\1d¼8\9f\82½¸ä\\92\e\91]}Ñ\ f\1fw\1f?\19¼1\ 2\9f\ f@\19@\1f\ 1à;àó\83
+\122\0\0\0\7f¡ë:÷r^\14\9feYÜ\1a\ 5°ø³\14¸Ï/¯bÙ\8b,­ì¦¼\_Z'÷\8b\13\83\9b¨/\ð\ f\14.æJÝ×Ç6Õz0Î\96Ð×]\8eÊ\8b\rÎ{Tå\89e/ºÛ㦼\1c\95Ç\13\1cÿÎàeSÎÁ\1e
+\85ø\93\ 5\1aøü\81E\80e>\9d\9a¦it²üu¤êA]\8ev4\96Æt>h ­\95÷P .HZéíbÆ·ï\1cýÞSÌÐ\1e\98^\92Ì·\87Ã\91\8aË|¢¹ÓbÉmã\81\92¼ñÝ\96£Ná\1f\827^àó\ 1(\ 3è#\0|\a|~PAB\ 6\0\0à;¸­*j\81è\86ÝY\ 2Ú\bu¹.¸øüq¶Á\1e7UvIöç>ÿ?¸\89\9a¾t\r-yâW\86\8b¼:1x&íðù\v\9e\7f³~\1cu}nª\82\9dÁ²¬¼þÙù\16\89÷÷>\1a\8dñtø\fʨ´Gºjc<rI\92ø\ 6½¿öR\8fì\92\86\95{«C\v'LãÙ\8b\8aÊ|AXo\18½£GVoÅe~ÏÀé¬â|ç\92¼ñî«\7fâù°¹Óòãe))\1f"\93\0à\11è#\0|\a|~PAB\ 6\0\0à;\fÃpV,\87B!EQTU\8d\8e i\1a-q\9a|Bmø\1f0ÜçS\8bE\1cx\97iº®G\ñ¢\82\19t\8dÜ7Eûò~^á\1c\1eny\9fɨ5m\7f \15öö\ eºÈ«\9dÇ\12´\1dç:_¿zr8\1f\1eŲeY\W\16\82¶æqSY=y,\9br\1e\15m¶ì\13ôr\ 5ý-ië\15º\884ʨyéR\16}q£²\1a\9fRh\ 5\1f\89Ò¦è,|\9f\96\8fêçd¾£>ß|s\8apþº¢>_×?Íݤñá\aÑïüS¥d~Úñ¤\92\17ç·\1d\1e\87\ fo:|¸÷ïY\8f\0\82\a|>\0e\0}\ 4\80ï\80Ï\ f*HÈ\0\0\0ü\88a\18%Õ£Bæ§\1d>ߣþõ5]ñ¤³ü\9eÂÅ_1Í\15\ 2¯°\80\1f\89\94ÁdY.úd§þ5~ HZé­Â°u§?\12#­Ô©\86ÿeYQ\99\1f\89|\94\7f³|\9b\95\90ùÎRüÝÇOÒ\92¡ÔY÷âüWßèu>ܤõ\83:¬àó\ 1(\15è#\0|\a|~PAB\ 6\0\0àS,Ë\8aD"E+TC¡\90÷¢ñ`ÓP>\9fP÷õ9Ëï7\1e\88¹(¬\9e\81Ó´Ns§Å>n;Ô\8f\ e\ 3jE\r\ 5>AIU\92$MÓ ñ\8b°K:'Þ;UË:e\18½é\84\19];¡¨Ì\97$½àf+'óÓ\8eâ|Ê\87ÌÌï>~Ò%\13®i\8bu\eV#dBø|\0Ê\0ú\b\0ß\ 1\9f\1fT\90\90\ 1\0\0ø\1a˲4MË\15_ápXQ\14\98|'\8dæóÛ\ e\ f8Ëïw\1eK¸X,Z\99Öi\84ªTP\87ÔVàó´@)Â0\f\\ eO\1cÕÏ\89÷]\92e\9d\12\84õ\19Qÿ\r¥hq¾(¶Ðú\ 5·|HK
\ No newline at end of file
index 5c951a9cc2acad7931a193f0ea43e52026e6820e..935ebb9e1fec10a18caa030b57c1e0f374ffd42c 100644 (file)
@@ -265,7 +265,10 @@ void file_uncompress(char  *file)
  *   -d : decompress
  *   -f : compress with Z_FILTERED
  *   -h : compress with Z_HUFFMAN_ONLY
- *   -r : compress with Z_RLE
+ *   -R : compress with Z_RLE
+ *   -F : compress with Z_FIXED
+ *   -T : stored raw
+ *   -A : auto detect type
  *   -0 to -9 : compression level
  */
 
@@ -276,8 +279,9 @@ int main(int argc, char *argv[])
     int i = 0;
     gzFile file;
     char *bname, outmode[20];
-
-    snprintf(outmode, sizeof(outmode), "%s", "wb6 ");
+    char *strategy = "";
+    char *level = "6";
+    char *type = "b";
 
     prog = argv[i];
     bname = strrchr(argv[i], '/');
@@ -296,19 +300,19 @@ int main(int argc, char *argv[])
             copyout = 1;
         else if (strcmp(argv[i], "-d") == 0)
             uncompr = 1;
-        else if (strcmp(argv[i], "-f") == 0)
-            outmode[3] = 'f';
-        else if (strcmp(argv[i], "-h") == 0)
-            outmode[3] = 'h';
-        else if (strcmp(argv[i], "-r") == 0)
-            outmode[3] = 'R';
+        else if (strcmp(argv[i], "-A") == 0)
+            type = "";
+        else if (argv[i][0] == '-' && (argv[i][1] == 'f' || argv[i][1] == 'h' ||
+                argv[i][1] == 'R' || argv[i][1] == 'F' || argv[i][1] == 'T') && argv[i][2] == 0)
+            strategy = argv[i] + 1;
         else if (argv[i][0] == '-' && argv[i][1] >= '0' && argv[i][1] <= '9' && argv[i][2] == 0)
-            outmode[2] = argv[i][1];
+            level = argv[i] + 1;
         else
             break;
     }
-    if (outmode[3] == ' ')
-        outmode[3] = 0;
+
+    snprintf(outmode, sizeof(outmode), "w%s%s%s", type, strategy, level);
+
     if (i == argc) {
         SET_BINARY_MODE(stdin);
         SET_BINARY_MODE(stdout);