From e99f75c4735202ed54c8cccdee92b08861fc58c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Prante?= Date: Fri, 9 Dec 2022 19:48:06 +0100 Subject: [PATCH] use RecordLabel in leader() of MarcListener, set record length always to zero in XML --- gradle.properties | 2 +- src/main/java/org/xbib/marc/Marc.java | 4 +- .../java/org/xbib/marc/MarcFieldAdapter.java | 4 +- .../java/org/xbib/marc/MarcGenerator.java | 4 +- src/main/java/org/xbib/marc/MarcListener.java | 4 +- .../java/org/xbib/marc/MarcRecordAdapter.java | 6 +- src/main/java/org/xbib/marc/MarcWriter.java | 5 +- .../mab/xml/MabXMLContentHandler.java | 2 +- .../dialects/pica/PicaXMLContentHandler.java | 2 +- .../org/xbib/marc/json/MarcJsonWriter.java | 4 +- .../marc/xml/InverseMarcContentHandler.java | 6 +- .../org/xbib/marc/xml/MarcContentHandler.java | 8 +- .../marc/xml/MarcXchangeEventConsumer.java | 4 +- .../org/xbib/marc/xml/MarcXchangeWriter.java | 61 +- .../java/org/xbib/marc/xml/MarcXmlWriter.java | 37 + .../java/org/xbib/marc/MarcRoundTripTest.java | 56 - src/test/java/org/xbib/marc/MarcTest.java | 2 +- src/test/java/org/xbib/marc/ZDBTest.java | 5 +- .../org/xbib/marc/dialects/mab/MabTest.java | 7 +- .../mab/diskette/MabDisketteTest.java | 68 +- .../org/xbib/marc/dialects/pica/PicaTest.java | 3 +- .../marc/dialects/unimarc/UnimarcTest.java | 38 +- src/test/resources/org/xbib/marc/0.xml | 6 +- src/test/resources/org/xbib/marc/1.xml | 6 +- src/test/resources/org/xbib/marc/2.xml | 6 +- src/test/resources/org/xbib/marc/3.xml | 2 +- .../resources/org/xbib/marc/IRMARC8.bin.xml | 2 +- .../org/xbib/marc/amstransactions.mrc.xml | 2 +- .../org/xbib/marc/bad_leaders_10_11.mrc.xml | 2 +- .../org/xbib/marc/bad_too_long_plus_2.mrc.xml | 6 +- .../resources/org/xbib/marc/brkrtest.mrc.xml | 2 +- .../org/xbib/marc/chabon-loc.mrc.trans.xml | 2 +- .../org/xbib/marc/chabon-loc.mrc.utf8.xml | 2 +- .../org/xbib/marc/chabon-loc.mrc.xml | 2 +- .../org/xbib/marc/chabon.mrc.trans.xml | 2 +- .../org/xbib/marc/chabon.mrc.utf8.xml | 2 +- .../resources/org/xbib/marc/chabon.mrc.xml | 2 +- .../org/xbib/marc/cyrillic_capital_e.mrc.xml | 4 +- .../org/xbib/marc/diacritic4.mrc.xml | 2 +- .../xbib/marc/dialects/mab/1217zdbtit.dat.xml | 8676 ++++---- .../mab/DE-605-aleph-publish.xml.mapped.xml | 2 +- .../dialects/mab/aleph-mab.mrc.mapped.xml | 882 +- .../xbib/marc/dialects/mab/aleph-mab.mrc.xml | 2 +- .../mab/diskette/DE-Bo410-sample.ma2.xml | 17060 ++++++++-------- .../marc/dialects/mab/diskette/mgl.txt.xml | 2 +- .../marc/dialects/unimarc/periouni.mrc.xml | 6128 +++--- .../resources/org/xbib/marc/error.mrc.xml | 2 +- .../resources/org/xbib/marc/makrtest.mrc.xml | 2 +- ...rt_as_UTF8_from_connexion.mrc.indented.xml | 2 +- ...1280_export_as_UTF8_from_connexion.mrc.xml | 2 +- .../org/xbib/marc/summerland.mrc.trans.xml | 2 +- .../org/xbib/marc/summerland.mrc.utf8.xml | 2 +- .../org/xbib/marc/summerland.mrc.xml | 2 +- .../org/xbib/marc/summerland2.mrc.xml | 2 +- .../org/xbib/marc/zdblokutf8.mrc.xml | 2 +- 55 files changed, 16577 insertions(+), 16577 deletions(-) delete mode 100644 src/test/java/org/xbib/marc/MarcRoundTripTest.java diff --git a/gradle.properties b/gradle.properties index 24c1f1b..4a1463f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group = org.xbib name = marc -version = 2.9.10 +version = 2.9.11 org.gradle.warning.mode = ALL diff --git a/src/main/java/org/xbib/marc/Marc.java b/src/main/java/org/xbib/marc/Marc.java index d76378d..f7bee0c 100644 --- a/src/main/java/org/xbib/marc/Marc.java +++ b/src/main/java/org/xbib/marc/Marc.java @@ -1058,7 +1058,7 @@ public final class Marc { } @Override - public void leader(String value) { + public void leader(RecordLabel value) { if (listener != null) { listener.leader(value); } @@ -1066,7 +1066,7 @@ public final class Marc { defaultContentHandler.leader(value); } if (marcRecordListener != null) { - recordLabel(RecordLabel.builder().from(value.toCharArray()).build()); + recordLabel(value); } } diff --git a/src/main/java/org/xbib/marc/MarcFieldAdapter.java b/src/main/java/org/xbib/marc/MarcFieldAdapter.java index a0f7976..3a3f3d9 100644 --- a/src/main/java/org/xbib/marc/MarcFieldAdapter.java +++ b/src/main/java/org/xbib/marc/MarcFieldAdapter.java @@ -15,6 +15,8 @@ */ package org.xbib.marc; +import org.xbib.marc.label.RecordLabel; + /** * A MARC listener with empty methods. Useful for extending. */ @@ -34,7 +36,7 @@ public class MarcFieldAdapter implements MarcListener { } @Override - public void leader(String label) { + public void leader(RecordLabel label) { // empty by design } diff --git a/src/main/java/org/xbib/marc/MarcGenerator.java b/src/main/java/org/xbib/marc/MarcGenerator.java index fbc2aa5..9657185 100644 --- a/src/main/java/org/xbib/marc/MarcGenerator.java +++ b/src/main/java/org/xbib/marc/MarcGenerator.java @@ -275,7 +275,7 @@ public class MarcGenerator implements ChunkListener { } if (marcListener != null) { marcListener.beginRecord(format, type); - marcListener.leader(recordLabel.toString()); + marcListener.leader(recordLabel); } directory = new MarcFieldDirectory(recordLabel, this.data); if (directory.isEmpty()) { @@ -291,7 +291,7 @@ public class MarcGenerator implements ChunkListener { if (directory.isEmpty()) { if (marcListener != null) { marcListener.beginRecord(format, type); - marcListener.leader(recordLabel.toString()); + marcListener.leader(recordLabel); } } else { builder = MarcField.builder(); diff --git a/src/main/java/org/xbib/marc/MarcListener.java b/src/main/java/org/xbib/marc/MarcListener.java index 8244edd..d75acca 100644 --- a/src/main/java/org/xbib/marc/MarcListener.java +++ b/src/main/java/org/xbib/marc/MarcListener.java @@ -15,6 +15,8 @@ */ package org.xbib.marc; +import org.xbib.marc.label.RecordLabel; + /** * The MarcListener is an interface for catching events while * reading from ISO 2709 / MARC format family streams. @@ -54,7 +56,7 @@ public interface MarcListener { * * @param label the label */ - void leader(String label); + void leader(RecordLabel label); /** * A field. diff --git a/src/main/java/org/xbib/marc/MarcRecordAdapter.java b/src/main/java/org/xbib/marc/MarcRecordAdapter.java index 7476271..585f1f0 100644 --- a/src/main/java/org/xbib/marc/MarcRecordAdapter.java +++ b/src/main/java/org/xbib/marc/MarcRecordAdapter.java @@ -30,7 +30,7 @@ public class MarcRecordAdapter implements MarcListener { protected Marc.Builder builder; - private Comparator comparator; + private final Comparator comparator; public MarcRecordAdapter(MarcRecordListener marcRecordListener, Comparator comparator) { this.marcRecordListener = marcRecordListener; @@ -51,8 +51,8 @@ public class MarcRecordAdapter implements MarcListener { } @Override - public void leader(String label) { - builder.recordLabel(RecordLabel.builder().from(label.toCharArray()).build()); + public void leader(RecordLabel label) { + builder.recordLabel(label); } @Override diff --git a/src/main/java/org/xbib/marc/MarcWriter.java b/src/main/java/org/xbib/marc/MarcWriter.java index 145f0f0..b4ae733 100644 --- a/src/main/java/org/xbib/marc/MarcWriter.java +++ b/src/main/java/org/xbib/marc/MarcWriter.java @@ -19,6 +19,7 @@ import org.xbib.marc.io.BytesStreamOutput; import org.xbib.marc.io.DefaultChunk; import org.xbib.marc.io.InformationSeparator; import org.xbib.marc.io.SeparatorOutputStream; +import org.xbib.marc.label.RecordLabel; import org.xbib.marc.transformer.value.MarcValueTransformers; import org.xbib.marc.xml.MarcContentHandler; @@ -126,7 +127,7 @@ public class MarcWriter extends MarcContentHandler implements Flushable, Closeab } @Override - public void leader(String label) { + public void leader(RecordLabel label) { super.leader(label); if (exception != null) { return; @@ -136,7 +137,7 @@ public class MarcWriter extends MarcContentHandler implements Flushable, Closeab } try { bytesStreamOutput.reset(); - bytesStreamOutput.write(label.getBytes(StandardCharsets.ISO_8859_1)); + bytesStreamOutput.write(label.toString().getBytes(StandardCharsets.ISO_8859_1)); out.chunk(new DefaultChunk(InformationSeparator.GS, bytesStreamOutput.bytes())); } catch (IOException e) { handleException(e); diff --git a/src/main/java/org/xbib/marc/dialects/mab/xml/MabXMLContentHandler.java b/src/main/java/org/xbib/marc/dialects/mab/xml/MabXMLContentHandler.java index 61211a1..7e1d46c 100644 --- a/src/main/java/org/xbib/marc/dialects/mab/xml/MabXMLContentHandler.java +++ b/src/main/java/org/xbib/marc/dialects/mab/xml/MabXMLContentHandler.java @@ -78,7 +78,7 @@ public class MabXMLContentHandler extends MarcContentHandler implements MabXMLCo // create leader RecordLabel recordLabel = RecordLabel.builder().setIndicatorLength(1).setSubfieldIdentifierLength(0) .build(); - leader(recordLabel.toString()); + leader(recordLabel); break; } case FELD: { diff --git a/src/main/java/org/xbib/marc/dialects/pica/PicaXMLContentHandler.java b/src/main/java/org/xbib/marc/dialects/pica/PicaXMLContentHandler.java index 4fcfd0e..98329d2 100644 --- a/src/main/java/org/xbib/marc/dialects/pica/PicaXMLContentHandler.java +++ b/src/main/java/org/xbib/marc/dialects/pica/PicaXMLContentHandler.java @@ -78,7 +78,7 @@ public class PicaXMLContentHandler extends MarcContentHandler implements PicaCon // create leader RecordLabel recordLabel = RecordLabel.builder().setIndicatorLength(1) .setSubfieldIdentifierLength(0).build(); - leader(recordLabel.toString()); + leader(recordLabel); break; } case DATAFIELD: { diff --git a/src/main/java/org/xbib/marc/json/MarcJsonWriter.java b/src/main/java/org/xbib/marc/json/MarcJsonWriter.java index ce9e20b..32c4129 100644 --- a/src/main/java/org/xbib/marc/json/MarcJsonWriter.java +++ b/src/main/java/org/xbib/marc/json/MarcJsonWriter.java @@ -203,9 +203,9 @@ public class MarcJsonWriter extends MarcContentHandler implements Flushable, Clo } @Override - public void leader(String label) { + public void leader(RecordLabel label) { super.leader(label); - builder.recordLabel(RecordLabel.builder().from(label.toCharArray()).build()); + builder.recordLabel(label); } @Override diff --git a/src/main/java/org/xbib/marc/xml/InverseMarcContentHandler.java b/src/main/java/org/xbib/marc/xml/InverseMarcContentHandler.java index 644e951..d4958ca 100644 --- a/src/main/java/org/xbib/marc/xml/InverseMarcContentHandler.java +++ b/src/main/java/org/xbib/marc/xml/InverseMarcContentHandler.java @@ -18,6 +18,7 @@ package org.xbib.marc.xml; import org.xbib.marc.MarcField; import org.xbib.marc.MarcListener; import org.xbib.marc.MarcXchangeConstants; +import org.xbib.marc.label.RecordLabel; import org.xml.sax.ContentHandler; import org.xml.sax.SAXException; import org.xml.sax.helpers.AttributesImpl; @@ -115,10 +116,11 @@ public class InverseMarcContentHandler implements MarcListener, MarcXchangeConst } @Override - public void leader(String label) { + public void leader(RecordLabel label) { try { contentHandler.startElement(nsUri, LEADER, prefix(LEADER), EMPTY_ATTRIBUTES); - contentHandler.characters(label.toCharArray(), 0, label.length()); + String leader = label.toString(); + contentHandler.characters(leader.toCharArray(), 0, leader.length()); contentHandler.endElement(nsUri, LEADER, prefix(LEADER)); } catch (SAXException e) { handleException(new IOException(e)); diff --git a/src/main/java/org/xbib/marc/xml/MarcContentHandler.java b/src/main/java/org/xbib/marc/xml/MarcContentHandler.java index 817e2e1..a81df4a 100644 --- a/src/main/java/org/xbib/marc/xml/MarcContentHandler.java +++ b/src/main/java/org/xbib/marc/xml/MarcContentHandler.java @@ -73,7 +73,7 @@ public class MarcContentHandler protected String type; - protected String label; + protected RecordLabel label; protected MarcValueTransformers marcValueTransformers; @@ -205,7 +205,7 @@ public class MarcContentHandler } @Override - public void leader(String label) { + public void leader(RecordLabel label) { this.label = label; if (marcListener != null) { marcListener.leader(label); @@ -224,7 +224,7 @@ public class MarcContentHandler @Override public void record(MarcRecord marcRecord) { beginRecord(marcRecord.getFormat(), marcRecord.getType()); - leader(marcRecord.getRecordLabel().toString()); + leader(marcRecord.getRecordLabel()); for (MarcField marcField : marcRecord.getFields()) { field(marcField); } @@ -393,7 +393,7 @@ public class MarcContentHandler break; } case LEADER: { - leader(RecordLabel.builder().from(content.toString().toCharArray()).build().toString()); + leader(RecordLabel.builder().from(content.toString().toCharArray()).build()); break; } case CONTROLFIELD: { diff --git a/src/main/java/org/xbib/marc/xml/MarcXchangeEventConsumer.java b/src/main/java/org/xbib/marc/xml/MarcXchangeEventConsumer.java index 710a87a..3df4181 100644 --- a/src/main/java/org/xbib/marc/xml/MarcXchangeEventConsumer.java +++ b/src/main/java/org/xbib/marc/xml/MarcXchangeEventConsumer.java @@ -119,7 +119,7 @@ public class MarcXchangeEventConsumer implements XMLEventConsumer, MarcXchangeCo } @Override - public void leader(String label) { + public void leader(RecordLabel label) { if (listener != null) { listener.leader(label); } @@ -237,7 +237,7 @@ public class MarcXchangeEventConsumer implements XMLEventConsumer, MarcXchangeCo break; } case LEADER: { - leader(RecordLabel.builder().from(content.toString().toCharArray()).build().toString()); + leader(RecordLabel.builder().from(content.toString().toCharArray()).build()); break; } case CONTROLFIELD: { diff --git a/src/main/java/org/xbib/marc/xml/MarcXchangeWriter.java b/src/main/java/org/xbib/marc/xml/MarcXchangeWriter.java index e4005df..faaac19 100644 --- a/src/main/java/org/xbib/marc/xml/MarcXchangeWriter.java +++ b/src/main/java/org/xbib/marc/xml/MarcXchangeWriter.java @@ -20,6 +20,7 @@ import org.xbib.marc.MarcField; import org.xbib.marc.MarcListener; import org.xbib.marc.MarcRecord; import org.xbib.marc.MarcRecordListener; +import org.xbib.marc.label.RecordLabel; import org.xbib.marc.transformer.value.MarcValueTransformers; import java.io.BufferedOutputStream; @@ -281,7 +282,7 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, writeSchema(list); attrs = list.iterator(); } - xmlEventConsumer.add(eventFactory.createStartElement(COLLECTION_ELEMENT, attrs, namespaces)); + xmlEventConsumer.add(eventFactory.createStartElement(getCollectionElement(), attrs, namespaces)); schemaWritten = true; collectionStarted = true; } @@ -307,7 +308,7 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, writeSchema(attrs); schemaWritten = true; } - xmlEventConsumer.add(eventFactory.createStartElement(RECORD_ELEMENT, attrs.iterator(), namespaces)); + xmlEventConsumer.add(eventFactory.createStartElement(getRecordElement(), attrs.iterator(), namespaces)); recordStarted = true; } } catch (XMLStreamException e) { @@ -316,7 +317,7 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, } @Override - public void leader(String label) { + public void leader(RecordLabel label) { super.leader(label); if (exception != null) { return; @@ -325,9 +326,13 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, return; } try { - xmlEventConsumer.add(eventFactory.createStartElement(LEADER_ELEMENT, null, namespaces)); - xmlEventConsumer.add(eventFactory.createCharacters(label)); - xmlEventConsumer.add(eventFactory.createEndElement(LEADER_ELEMENT, namespaces)); + xmlEventConsumer.add(eventFactory.createStartElement(getLeaderElement(), null, namespaces)); + RecordLabel recordLabel = RecordLabel.builder() + .from(label) + .setRecordLength(0) // reset record length, does not make sense in XML + .build(); + xmlEventConsumer.add(eventFactory.createCharacters(recordLabel.toString())); + xmlEventConsumer.add(eventFactory.createEndElement(getLeaderElement(), namespaces)); } catch (XMLStreamException e) { handleException(new IOException(e)); } @@ -344,7 +349,7 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, Iterator attrs = Collections.singletonList(eventFactory.createAttribute(TAG_ATTRIBUTE, transform(field.getTag()))).iterator(); - xmlEventConsumer.add(eventFactory.createStartElement(CONTROLFIELD_ELEMENT, attrs, namespaces)); + xmlEventConsumer.add(eventFactory.createStartElement(getControlfieldElement(), attrs, namespaces)); String value = field.getValue(); if (value != null && !value.isEmpty()) { xmlEventConsumer.add(eventFactory.createCharacters(transform(value))); @@ -355,7 +360,7 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, xmlEventConsumer.add(eventFactory.createCharacters(transform(value))); } } - xmlEventConsumer.add(eventFactory.createEndElement(CONTROLFIELD_ELEMENT, namespaces)); + xmlEventConsumer.add(eventFactory.createEndElement(getControlfieldElement(), namespaces)); } else if (!field.isEmpty()) { String tag = field.getTag(); String indicator = field.getIndicator(); @@ -365,7 +370,7 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, attrs.add(eventFactory.createAttribute(TAG_ATTRIBUTE, transform(tag))); attrs.add(eventFactory.createAttribute(IND_ATTRIBUTE + "1", transform(ind1))); attrs.add(eventFactory.createAttribute(IND_ATTRIBUTE + "2", transform(ind2))); - xmlEventConsumer.add(eventFactory.createStartElement(DATAFIELD_ELEMENT, attrs.iterator(), namespaces)); + xmlEventConsumer.add(eventFactory.createStartElement(getDatafieldElement(), attrs.iterator(), namespaces)); for (MarcField.Subfield subfield : field.getSubfields()) { String code = subfield.getId(); // From https://www.loc.gov/standards/iso25577/ISO_DIS_25577_2(E)070727.doc @@ -378,21 +383,21 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, } List subfieldattrs = new LinkedList<>(); subfieldattrs.add(eventFactory.createAttribute(CODE_ATTRIBUTE, transform(code))); - xmlEventConsumer.add(eventFactory.createStartElement(SUBFIELD_ELEMENT, + xmlEventConsumer.add(eventFactory.createStartElement(getSubfieldElement(), subfieldattrs.iterator(), namespaces)); xmlEventConsumer.add(eventFactory.createCharacters(transform(subfield.getValue()))); - xmlEventConsumer.add(eventFactory.createEndElement(SUBFIELD_ELEMENT, namespaces)); + xmlEventConsumer.add(eventFactory.createEndElement(getSubfieldElement(), namespaces)); } String value = field.getValue(); if (value != null && !value.isEmpty()) { // if we have data in a datafield, create subfield blank (" ") with data attrs = new LinkedList<>(); attrs.add(eventFactory.createAttribute(CODE_ATTRIBUTE, " ")); - xmlEventConsumer.add(eventFactory.createStartElement(SUBFIELD_ELEMENT, attrs.iterator(), namespaces)); + xmlEventConsumer.add(eventFactory.createStartElement(getSubfieldElement(), attrs.iterator(), namespaces)); xmlEventConsumer.add(eventFactory.createCharacters(transform(value))); - xmlEventConsumer.add(eventFactory.createEndElement(SUBFIELD_ELEMENT, namespaces)); + xmlEventConsumer.add(eventFactory.createEndElement(getSubfieldElement(), namespaces)); } - xmlEventConsumer.add(eventFactory.createEndElement(DATAFIELD_ELEMENT, namespaces)); + xmlEventConsumer.add(eventFactory.createEndElement(getDatafieldElement(), namespaces)); } } catch (XMLStreamException e) { handleException(new IOException(e)); @@ -407,7 +412,7 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, } try { if (recordStarted) { - xmlEventConsumer.add(eventFactory.createEndElement(RECORD_ELEMENT, namespaces)); + xmlEventConsumer.add(eventFactory.createEndElement(getRecordElement(), namespaces)); afterRecord(); recordStarted = false; } @@ -424,7 +429,7 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, } try { if (collectionStarted) { - xmlEventConsumer.add(eventFactory.createEndElement(COLLECTION_ELEMENT, namespaces)); + xmlEventConsumer.add(eventFactory.createEndElement(getCollectionElement(), namespaces)); collectionStarted = false; } if (xmlEventConsumer instanceof XMLEventWriter) { @@ -496,6 +501,30 @@ public class MarcXchangeWriter extends MarcContentHandler implements Flushable, NAMESPACE_URI + " " + NAMESPACE_SCHEMA_LOCATION)); } + protected QName getCollectionElement() { + return COLLECTION_ELEMENT; + } + + protected QName getRecordElement() { + return RECORD_ELEMENT; + } + + protected QName getLeaderElement() { + return LEADER_ELEMENT; + } + + protected QName getControlfieldElement() { + return CONTROLFIELD_ELEMENT; + } + + protected QName getDatafieldElement() { + return DATAFIELD_ELEMENT; + } + + protected QName getSubfieldElement() { + return SUBFIELD_ELEMENT; + } + /** * Split records if configured. A splitlimit of -1 prevents splitting. */ diff --git a/src/main/java/org/xbib/marc/xml/MarcXmlWriter.java b/src/main/java/org/xbib/marc/xml/MarcXmlWriter.java index b32e3fa..8e5c835 100644 --- a/src/main/java/org/xbib/marc/xml/MarcXmlWriter.java +++ b/src/main/java/org/xbib/marc/xml/MarcXmlWriter.java @@ -7,6 +7,7 @@ import java.io.Writer; import java.nio.charset.StandardCharsets; import java.util.List; import javax.xml.XMLConstants; +import javax.xml.namespace.QName; import javax.xml.stream.XMLStreamException; import javax.xml.stream.events.Attribute; import javax.xml.stream.events.Namespace; @@ -18,6 +19,18 @@ public class MarcXmlWriter extends MarcXchangeWriter { private static final String NAMESPACE_SCHEMA_LOCATION = MARCXML_SCHEMA_LOCATION; + private static final QName COLLECTION_ELEMENT = new QName(NAMESPACE_URI, COLLECTION, ""); + + private static final QName RECORD_ELEMENT = new QName(NAMESPACE_URI, RECORD, ""); + + private static final QName LEADER_ELEMENT = new QName(NAMESPACE_URI, LEADER, ""); + + private static final QName CONTROLFIELD_ELEMENT = new QName(NAMESPACE_URI, CONTROLFIELD, ""); + + private static final QName DATAFIELD_ELEMENT = new QName(NAMESPACE_URI, DATAFIELD, ""); + + private static final QName SUBFIELD_ELEMENT = new QName(NAMESPACE_URI, SUBFIELD, ""); + public MarcXmlWriter(OutputStream out) throws IOException { super(out); } @@ -71,4 +84,28 @@ public class MarcXmlWriter extends MarcXchangeWriter { attrs.add(eventFactory.createAttribute("xsi:schemaLocation", NAMESPACE_URI + " " + NAMESPACE_SCHEMA_LOCATION)); } + + protected QName getCollectionElement() { + return COLLECTION_ELEMENT; + } + + protected QName getRecordElement() { + return RECORD_ELEMENT; + } + + protected QName getLeaderElement() { + return LEADER_ELEMENT; + } + + protected QName getControlfieldElement() { + return CONTROLFIELD_ELEMENT; + } + + protected QName getDatafieldElement() { + return DATAFIELD_ELEMENT; + } + + protected QName getSubfieldElement() { + return SUBFIELD_ELEMENT; + } } diff --git a/src/test/java/org/xbib/marc/MarcRoundTripTest.java b/src/test/java/org/xbib/marc/MarcRoundTripTest.java deleted file mode 100644 index 66cebc4..0000000 --- a/src/test/java/org/xbib/marc/MarcRoundTripTest.java +++ /dev/null @@ -1,56 +0,0 @@ -/** - * Copyright 2016-2022 Jörg Prante - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * Apache License 2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.xbib.marc; - -import org.junit.jupiter.api.Test; -import org.xbib.marc.xml.MarcXchangeWriter; -import java.nio.charset.Charset; -import java.nio.charset.StandardCharsets; - -/** - * This test reads ISO 2709 MARC files, writes them to XML, parses the XML and writes back ISO 2709. - */ -public class MarcRoundTripTest { - - @Test - public void testProperMarc() throws Exception { - for (String s : new String[]{ - "summerland2.mrc", - //"chabon.mrc", - //"chabon-loc.mrc" - }) { - StreamMatcher.roundtrip(getClass(), s, ".xml", - (inputStream, outputStream) -> { - try (MarcXchangeWriter writer = new MarcXchangeWriter(outputStream)) { - Marc.builder() - .setInputStream(inputStream) - .setCharset(Charset.forName("ANSEL")) - .setMarcListener(writer) - .build() - .writeCollection(); - } - }, (inputStream, outputStream) -> { - try (MarcWriter writer = new MarcWriter(outputStream, StandardCharsets.UTF_8)) { - Marc.builder() - .setInputStream(inputStream) - .setMarcListener(writer) - .build() - .xmlReader().parse(); - } - }); - } - } -} diff --git a/src/test/java/org/xbib/marc/MarcTest.java b/src/test/java/org/xbib/marc/MarcTest.java index 6109367..ca25e0c 100644 --- a/src/test/java/org/xbib/marc/MarcTest.java +++ b/src/test/java/org/xbib/marc/MarcTest.java @@ -157,7 +157,7 @@ public class MarcTest { } /** - * Ther may be faulty input streams that contain information separators at the wrong place. + * There may be faulty input streams that contain information separators at the wrong place. * For the problem, see {@code org.marc4j.test.PermissiveReaderTest#testCyrillicEFix()}. * @throws Exception if test fails */ diff --git a/src/test/java/org/xbib/marc/ZDBTest.java b/src/test/java/org/xbib/marc/ZDBTest.java index 35fe152..88ece21 100644 --- a/src/test/java/org/xbib/marc/ZDBTest.java +++ b/src/test/java/org/xbib/marc/ZDBTest.java @@ -23,6 +23,7 @@ import java.io.OutputStreamWriter; import java.nio.charset.Charset; import org.junit.jupiter.api.Test; import org.xbib.marc.json.MarcJsonWriter; +import org.xbib.marc.label.RecordLabel; import org.xbib.marc.transformer.value.MarcValueTransformers; import org.xbib.marc.xml.MarcXchangeWriter; import java.io.IOException; @@ -156,9 +157,9 @@ public class ZDBTest { } @Override - public void leader(String label) { + public void leader(RecordLabel label) { try { - writer.append("leader=").append(label).append("\n"); + writer.append("leader=").append(label.toString()).append("\n"); } catch (IOException e) { throw new RuntimeException(e); } diff --git a/src/test/java/org/xbib/marc/dialects/mab/MabTest.java b/src/test/java/org/xbib/marc/dialects/mab/MabTest.java index e97f22f..a51cb01 100644 --- a/src/test/java/org/xbib/marc/dialects/mab/MabTest.java +++ b/src/test/java/org/xbib/marc/dialects/mab/MabTest.java @@ -43,11 +43,8 @@ import org.xml.sax.InputSource; import org.xmlunit.matchers.CompareMatcher; import java.io.InputStream; import java.io.StringWriter; -import java.io.Writer; import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; -import java.nio.file.Files; -import java.nio.file.Paths; import java.util.regex.Pattern; public class MabTest { @@ -348,9 +345,9 @@ public class MabTest { } @Override - public void leader(String label) { + public void leader(RecordLabel label) { try { - writer.append("leader=").append(label).append("\n"); + writer.append("leader=").append(label.toString()).append("\n"); } catch (IOException e) { throw new RuntimeException(e); } diff --git a/src/test/java/org/xbib/marc/dialects/mab/diskette/MabDisketteTest.java b/src/test/java/org/xbib/marc/dialects/mab/diskette/MabDisketteTest.java index e583597..00ad391 100644 --- a/src/test/java/org/xbib/marc/dialects/mab/diskette/MabDisketteTest.java +++ b/src/test/java/org/xbib/marc/dialects/mab/diskette/MabDisketteTest.java @@ -15,17 +15,13 @@ */ package org.xbib.marc.dialects.mab.diskette; -import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNull; import org.junit.jupiter.api.Test; import org.xbib.marc.Marc; +import org.xbib.marc.StreamMatcher; import org.xbib.marc.transformer.value.MarcValueTransformers; import org.xbib.marc.xml.MarcXchangeWriter; -import org.xmlunit.matchers.CompareMatcher; -import java.io.File; -import java.io.FileOutputStream; -import java.io.InputStream; import java.nio.charset.Charset; public class MabDisketteTest { @@ -33,44 +29,38 @@ public class MabDisketteTest { @Test public void testMABDiskette() throws Exception { String s = "mgl.txt"; - InputStream in = getClass().getResource(s).openStream(); - File file = File.createTempFile(s, ".xml"); - file.deleteOnExit(); - FileOutputStream out = new FileOutputStream(file); - try (MarcXchangeWriter writer = new MarcXchangeWriter(out)) { - Marc marc = Marc.builder() - .setInputStream(in) - .setCharset(Charset.forName("cp850")) - .setMarcListener(writer) - .build(); - long l = marc.wrapIntoCollection(marc.mabDisketteLF()); - assertEquals(90, l); - assertNull(writer.getException()); - } - assertThat(file, CompareMatcher.isIdenticalTo(getClass().getResource(s + ".xml").openStream())); + StreamMatcher.xmlMatch(getClass(), s, ".xml", (inputStream, outputStream) -> { + try (MarcXchangeWriter writer = new MarcXchangeWriter(outputStream)) { + Marc marc = Marc.builder() + .setInputStream(inputStream) + .setCharset(Charset.forName("cp850")) + .setMarcListener(writer) + .build(); + long l = marc.wrapIntoCollection(marc.mabDisketteLF()); + assertEquals(90, l); + assertNull(writer.getException()); + } + }); } @Test public void testMABDisketteWithSubfields() throws Exception { String s = "DE-Bo410-sample.ma2"; - InputStream in = getClass().getResource(s).openStream(); - File file = File.createTempFile(s, ".xml"); - file.deleteOnExit(); - FileOutputStream out = new FileOutputStream(file); - // in abstracts content, ctrl-character 0x7 must be replaced for clean XML. We replace it by fffd. - MarcValueTransformers marcValueTransformers = new MarcValueTransformers(); - marcValueTransformers.setMarcValueTransformer(value -> value.replaceAll("\\u0007", "\ufffd")); - try (MarcXchangeWriter writer = new MarcXchangeWriter(out, true) - .setMarcValueTransformers(marcValueTransformers)) { - Marc marc = Marc.builder() - .setInputStream(in) - .setCharset(Charset.forName("cp850")) - .setMarcListener(writer) - .build(); - long l = marc.wrapIntoCollection(marc.mabDiskettePlusSubfieldsCRLF('$')); - assertEquals(10007, l); - assertNull(writer.getException()); - } - assertThat(file, CompareMatcher.isIdenticalTo(getClass().getResource(s + ".xml").openStream())); + StreamMatcher.xmlMatch(getClass(), s, ".xml", (inputStream, outputStream) -> { + // in abstracts content, ctrl-character 0x7 must be replaced for clean XML. We replace it by fffd. + MarcValueTransformers marcValueTransformers = new MarcValueTransformers(); + marcValueTransformers.setMarcValueTransformer(value -> value.replaceAll("\\u0007", "\ufffd")); + try (MarcXchangeWriter writer = new MarcXchangeWriter(outputStream, true) + .setMarcValueTransformers(marcValueTransformers)) { + Marc marc = Marc.builder() + .setInputStream(inputStream) + .setCharset(Charset.forName("cp850")) + .setMarcListener(writer) + .build(); + long l = marc.wrapIntoCollection(marc.mabDiskettePlusSubfieldsCRLF('$')); + assertEquals(10007, l); + assertNull(writer.getException()); + } + }); } } diff --git a/src/test/java/org/xbib/marc/dialects/pica/PicaTest.java b/src/test/java/org/xbib/marc/dialects/pica/PicaTest.java index c6ab5cf..afb682e 100644 --- a/src/test/java/org/xbib/marc/dialects/pica/PicaTest.java +++ b/src/test/java/org/xbib/marc/dialects/pica/PicaTest.java @@ -22,6 +22,7 @@ import org.xbib.marc.Marc; import org.xbib.marc.MarcField; import org.xbib.marc.MarcListener; import org.xbib.marc.MarcXchangeConstants; +import org.xbib.marc.label.RecordLabel; import org.xbib.marc.xml.MarcXchangeWriter; import org.xmlunit.matchers.CompareMatcher; import java.io.File; @@ -93,7 +94,7 @@ public class PicaTest { } @Override - public void leader(String label) { + public void leader(RecordLabel label) { sb.append("leader=").append(label).append("\n"); } diff --git a/src/test/java/org/xbib/marc/dialects/unimarc/UnimarcTest.java b/src/test/java/org/xbib/marc/dialects/unimarc/UnimarcTest.java index 0e7a7f7..9a51ea1 100644 --- a/src/test/java/org/xbib/marc/dialects/unimarc/UnimarcTest.java +++ b/src/test/java/org/xbib/marc/dialects/unimarc/UnimarcTest.java @@ -15,22 +15,18 @@ */ package org.xbib.marc.dialects.unimarc; -import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.jupiter.api.Assertions.assertNull; import org.junit.jupiter.api.Test; import org.xbib.marc.Marc; +import org.xbib.marc.StreamMatcher; import org.xbib.marc.xml.MarcXchangeWriter; -import org.xmlunit.matchers.CompareMatcher; -import java.io.File; -import java.io.FileOutputStream; -import java.io.InputStream; import java.nio.charset.StandardCharsets; public class UnimarcTest { /** * UNIMARC test. - * Found at https://github.com/medialab/reference_manager/raw/master/data/unimarc/periouni.mrc + * Found at ... * License: LGPL * * @throws Exception if test fails @@ -38,22 +34,20 @@ public class UnimarcTest { @Test public void testPerioUni() throws Exception { String s = "periouni.mrc"; - File file = File.createTempFile("periouni.", ".xml"); - file.deleteOnExit(); - FileOutputStream out = new FileOutputStream(file); - try (MarcXchangeWriter writer = new MarcXchangeWriter(out, true) - .setFormat("UNIMARC") - .setType("Bibliographic"); - InputStream inputStream = getClass().getResource(s).openStream()) { - Marc.builder() - .setInputStream(inputStream) - .setCharset(StandardCharsets.UTF_8) - .setMarcListener(writer) - .build() - .writeCollection(); - assertNull(writer.getException()); - } - assertThat(file, CompareMatcher.isIdenticalTo(getClass().getResource(s + ".xml").openStream())); + StreamMatcher.xmlMatch(getClass(), s, ".xml", (inputStream, outputStream) -> { + try (MarcXchangeWriter writer = new MarcXchangeWriter(outputStream, true) + .setFormat("UNIMARC") + .setType("Bibliographic"); + ) { + Marc.builder() + .setInputStream(inputStream) + .setCharset(StandardCharsets.UTF_8) + .setMarcListener(writer) + .build() + .writeCollection(); + assertNull(writer.getException()); + } + }); } } diff --git a/src/test/resources/org/xbib/marc/0.xml b/src/test/resources/org/xbib/marc/0.xml index 32dcb4d..ed620f5 100644 --- a/src/test/resources/org/xbib/marc/0.xml +++ b/src/test/resources/org/xbib/marc/0.xml @@ -1,7 +1,7 @@ - 01626cam 2200445 a 4500 + 00000cam 2200445 a 4500 ocn132792681 OCoLC 20070605101501.0 @@ -132,7 +132,7 @@ - 01914cam 2200493 a 4500 + 00000cam 2200493 a 4500 ocn132786677 OCoLC 20070605101501.0 @@ -272,7 +272,7 @@ - 01246nam 2200373 a 4500 + 00000nam 2200373 a 4500 ocn125170297 OCoLC 20070605101501.0 diff --git a/src/test/resources/org/xbib/marc/1.xml b/src/test/resources/org/xbib/marc/1.xml index 30d3ba3..164c375 100644 --- a/src/test/resources/org/xbib/marc/1.xml +++ b/src/test/resources/org/xbib/marc/1.xml @@ -1,7 +1,7 @@ - 01737nam 22004334a 4500 + 00000nam 22004334a 4500 ocn137607921 OCoLC 20070605101501.0 @@ -129,7 +129,7 @@ - 02647cas 2200589 a 4500 + 00000cas 2200589 a 4500 ocn124081299 OCoLC 20070605101501.0 @@ -311,7 +311,7 @@ - 01347cam 2200373 i 4500 + 00000cam 2200373 i 4500 ocn135450843 OCoLC 20070605101501.0 diff --git a/src/test/resources/org/xbib/marc/2.xml b/src/test/resources/org/xbib/marc/2.xml index 11aec2b..15f47ee 100644 --- a/src/test/resources/org/xbib/marc/2.xml +++ b/src/test/resources/org/xbib/marc/2.xml @@ -1,7 +1,7 @@ - 01215cam 2200313 a 4500 + 00000cam 2200313 a 4500 ocn137458539 OCoLC 20070605101501.0 @@ -93,7 +93,7 @@ - 01731cam 2200457 a 4500 + 00000cam 2200457 a 4500 ocn124411460 OCoLC 20070605101501.0 @@ -233,7 +233,7 @@ - 02310cjm 2200349 a 4500 + 00000cjm 2200349 a 4500 ocn131225106 OCoLC 20070605101501.0 diff --git a/src/test/resources/org/xbib/marc/3.xml b/src/test/resources/org/xbib/marc/3.xml index 1d214cf..2f1b6db 100644 --- a/src/test/resources/org/xbib/marc/3.xml +++ b/src/test/resources/org/xbib/marc/3.xml @@ -1,7 +1,7 @@ - 01613cam 2200409 a 4500 + 00000cam 2200409 a 4500 ocn124450154 OCoLC 20070605103524.0 diff --git a/src/test/resources/org/xbib/marc/IRMARC8.bin.xml b/src/test/resources/org/xbib/marc/IRMARC8.bin.xml index 77a3973..a63a664 100644 --- a/src/test/resources/org/xbib/marc/IRMARC8.bin.xml +++ b/src/test/resources/org/xbib/marc/IRMARC8.bin.xml @@ -1 +1 @@ -01626cam 2200445 a 4500ocn132792681OCoLC20070605101501.0060314s2004 ja a b 001 0 jpn dLWUSMFRE$147842120789784784212071(OCoLC)132792681(CStRLIN)DCFO06-B527jpnenga-ja---ocm56902747750.21njbNK1071.A87 2004OCLC880-01Ātsu ando kurafutsu to Nihon =The arts & crafts movement and Japan /Dezainshi Fōramu hen ; Fujita Haruhiko sekinin henshū.Arts & crafts movement and Japan880-02Kyōto-shi :Shibunkaku Shuppan,2004.288 p. :ill. ;21 cm.Includes index.Summary in English.Includes bibliographical references.Arts and crafts movementJapan.Folk artJapan.880-03Fujita, Haruhiko,1951-880-04Dezainshi Fōramu.DSI-FmainNK1071.A87 2004CIN=hr; OID=hr245-01/$1アーツ・アンド・クラフツと日本 =The arts & crafts movement and Japan /デザイン史フォーラム編 ; 藤田治彦責任編集.260-02/$1京都市 :思文閣出版,2004.700-03/$1藤田治彦,1951-710-04/$1デザイン史フォーラム.*bn=main;ov=.B1748129;c. 1C0OCL01914cam 2200493 a 4500ocn132786677OCoLC20070605101501.0060801s2005 ko a b 000 0 eng dCUISMFRE$189860902369788986090239(OCoLC)132786677(CStRLIN)DCFO06-B1570engkora-kr---ocm69375356NK7984.6.A1F73 2005OCLC880-01Fragrance of Korea :the ancient gilt-bronze incense burner of Baekje=Paekche Kŭmdong Taehyangno /[edited by Korea Foundation].880-02Paekche Kŭmdong taehyangnoSeoul, Korea :The Korea Foundation,2005.144 p. :col. ill. ;31 cm."Photography by Han Seok-hong Photo Studio, Translated by Miwha Stevenson ..., Content edited by Yi Song-mi ..., Copyedited (English) by Rose E. Lee"--P. facing t.p.Includes bibliographical references.880-03Kŭmdong taehyangno.Gilt bronzes, KoreanTo 935.Incense burners and containersKorea.880-04Paekche (Kingdom)Antiquities.Stevenson, Miwha.Sŏng-mi, Yi.Lee, Rose E.Han Seok-hong Photo Studio.880-05Hanʼguk Kukche Kyoryu Chaedan.DSI-FmainNK7984.6.A1F73 2005245-01/$1Fragrance of Korea :the ancient gilt-bronze incense burner of Baekje=백제금동대향로 /[edited by Korea Foundation].246-02/$1650-03/$1금동대향로.651-04/$1백제 (Kingdom)Antiquities.710-05/$1한국국제교류재단.*bn=main;c. 1C0OCL01246nam 2200373 a 4500ocn125170297OCoLC20070605101501.0060919s2006 cc a 000 0 chi CaOTRMengRON$1750101843X9787501018437(OCoLC)125170297(CStRLIN)ONRO06-B481NK1483.A1J56 2006ocm71289809NK1483.A1J56 2006OCLC880-01Jin, Zhu880-02Fu Lu Shou Xi Da Guan/Jin Zhu, Wang Zhijun Bian zhu.880-03Beijing :Wen wu chu ban she,2006ii, 229p.ill. ;26cm.Chinese languageCalligraphy study.Chinese languageWritingHistoryFestivalsChinaChinaSocial life and customWang, Zhijun.CaOTRMCaOTRMFNK1483.A1J56 2006CIN=KMW; OID=KMW100-01/$1245-02/$1福禄寿喜大观/金铢,王志军编著.260-03/$1北京 :文物出版社,2006NK1483 .A1 J56 200631761066877267ROMROMFAREASTBOOKC0OCL01737nam 22004334a 4500ocn137607921OCoLC20070605101501.0060223s2004 ye b 000 0 ara 2005311567DLC-RNYP(3(OCoLC)137607921(CStRLIN)NYPN06-B180lcodepccma-----PJ7538.L57 2004ocm60522147*OEM 06-1987OCLC880-01Liqāʼāt wa-shahādāt adabīyah /Najīb Maḥfūẓ ... [et al.] ; ajrá al-liqāʼāt Ḥasan ʻAlī Mijallī.880-02al-Ṭabʻah 1.880-03Ṣanʻāʼ :Markaz ʻAbbādī lil-Dirāsāt wa-al-Nashr,2004.153 p. ;23 cm.880-04Maktabat al-dirāsāt al-fikrīyah wa-al-naqdīyahIncludes bibliographical references.In Arabic.Arabic literature20th centuryHistory and criticism.Authors, Arab20th centuryInterviews.IntellectualsArab countriesInterviews.Maḥfūẓ, Najīb,1911-Mijallī, Ḥasan ʻAlī.New York Public Libraryho*OEM 06-1987OID=AME;CIN=GYG245-01/(3/r&#x200F;لقاءات وشهادات أدبية /&#x200F;&#x200F;نجيب محفوظ ... [et al.] ؛ أجرى اللقاءات حسن علي مجلي.250-02/(3/r&#x200F;الطبعة 1.260-03/(3/r&#x200F;صنعاء :&#x200F;&#x200F;2004.440-04/(3/r*OEM 06-198733433069567414ho-002C0OCL02647cas 2200589 a 4500ocn124081299OCoLC20070605101501.0970414c19789999iluqr p g 0 a0eng d 86641268 sn 84012219 ICD-LFC00897-12770022-6793399610USPS(OCoLC)124081299(CStRLIN)NYHL97-S162lcnsdpn-us---K10.U67ocm05266384344/.095/05342.4950519OCLCJurimetrics(Chic. Ill.)Jurimetrics(Chicago, Ill.)Jurimetrics.Jurimetrics journal of law, science and technology<fall 1991->Jurimetrics journal1978-Chicago, Ill. :Section of Science & Technology, American Bar Association,c1979-v. :ill. ;23 cm.QuarterlyVol. 19, no. 2 (winter 1978)-Title from cover."Journal of law, science and technology."Index to legal periodicals0019-4077Legal resource index1980-Computer & control abstracts0036-8113winter 1978-Electrical & electronics abstracts0036-8105winter 1978-Physics abstracts0036-8091winter 1978-Special issue for 1979 called also v. 19, no. 5.Special issue 1979 contains proceedings of the Section's annual meeting.Vols. for spring 1985-winter 1986 issued by: American Bar Association Section of Science and Technology and the Arizona State University College of Law; spring 1986-<fall 1987> by the American Bar Association Section of Science and Technology, and the Center for the Study of Law, Science, and Technology of the Arizona State University College of Law.Science and lawUnited StatesPeriodicals.Technology and lawUnited StatesPeriodicals.Judicial processUnited StatesPeriodicals.Legal researchData processingUnited StatesPeriodicals.Information storage and retrieval systemsLawUnited StatesPeriodicals.American Bar Association.Section of Science and Technology.Arizona State University.College of Law.Arizona State University.Center for the Study of Law, Science, and Technology.Jurimetrics journal0022-6793(DLC) 92657369(OCoLC)1754902NNHHRMAIN\PER1OID=CCSC0OCL01347cam 2200373 i 4500ocn135450843OCoLC20070605101501.0850910s1976 caua bc 001 0 eng d 76013691 UBYUBY0875870708 :$5.009780875870700(OCoLC)135450843(UPB)notisADN0346(CStRLIN)UTBG85-B43642n-us---N6538.N5D74ocm02318292ocm02550323ocm03890870709/.73N6538.N5\D74OCLCDriskell, David C.Two centuries of Black American art :[exhibition], Los Angeles County Museum of Art, the High Museum of Art, Atlanta, Museum of Fine Arts, Dallas, the Brooklyn Museum /David C. Driskell ; with catalog notes by Leonard Simon.1st ed.[Los Angeles] :Los Angeles County Museum of Art ;New York :Knopf :distributed by Random House,1976.221 p. :ill. (some col.) ;28 cm.Bibliography: p. 206-219.Includes index.Afro-American artExhibitions.Simon, Leonard,1936-Los Angeles County Museum of Art.UPBMANN6538.N5\D74c.1 001c.2 002OID=SYLC0OCL01215cam 2200313 a 4500ocn137458539OCoLC20070605101501.0900119s1974 maua 100 0 eng d 74081739 MSRMSR(OCoLC)137458539(CStRLIN)MOSA90-B178F61.C71 vol. 48NK2438.B6ocm01364905ocm06844451NK2438.B6B68 1974OCLCBoston furniture of the eighteenth century :a conference held by the Colonial Society of Massachusetts, 11 and 12 May 1972.Boston :Colonial Society of Massachusetts ;[Charlottesville] :distributed by the University Press of Virginia,c1974.xvi, 316 p. :ill. ;25 cm.Publications of the Colonial Society of Massachusetts ;v. 48Bibliography: p. 303-305.Includes index.Furniture, ColonialMassachusettsBostonCongresses.Furniture, Early AmericanMassachusettsBostonCongresses.Colonial Society of Massachusetts.MoSRSTKNK2438.B6B68 197421260CIN=MLC; OID=MLCRC0OCL01731cam 2200457 a 4500ocn124411460OCoLC20070605101501.0070222s2007 is a b 001 0ceng dNNYIVXJ(296522938659789652293862(OCoLC)124411460(CStRLIN)NYJH07-B409enghebe-hu---a-is---DS135.H93A147313 2007ocm85564516DS135.H93A14513 2007OCLCGur, David,1926-880-01Aḥim le-hitnagdut ule-hatsalah.EnglishBrothers for resistance and rescue :the underground Zionist youth movement in Hungary during World War II /David Gur ; edited by Eli Netzer ; translated by Pamela Segev & Avri Fischer.Enlarged and revised ed.Jerusalem :Gefen,2007.270 p. :ill. ;28 p.Introduction by Randolph L. Brahan.Includes bibliographical references (p. 261-264) and index.JewsHungaryBiography.Jewish youthHungaryBiography.ZionismHungaryHistory20th century.World War, 1939-1945Jewish resistanceHungary.Jews, HungarianIsraelBiography.Holocaust survivorsIsraelBiography.Netser, Eli.Segev, Pamela.Fischer, Avri.Library of the Jewish Theological SeminaryJT1MAINOVERSIZEDS135.H93A14513 200731407002756237CIN=RL; OID=RL240-01/(2/r&#x200F;אחים להתנגדות ולהצלה.&#x200F;&#x200F;EnglishC0OCL02310cjm 2200349 a 4500ocn131225106OCoLC20070605101501.0sd |||gnammned051219p2004 sa mun g l mul dCtYYUSACM-CD023/3African Cream Music(OCoLC)131225106(CtY)7143913(CStRLIN)CTYA7143913-Rengxhof-sa---ML3760.W55 2004ocm64169861ML3760.W55 2004 (LC)OCLCThe winds of change[sound recording] :[a journey through the key music and moments that gave birth to a free, democratic South Africa].[South Africa?] :African Cream Music,2004.2 sound discs :digital ;4 3/4 in. +1 bookletCompact discs.Subtitle from booklet.Various artists.CD. 1. Nkosi sikelel' iAfrika (Tumelo Maloi) -- Winds of change (Harold Macmillan) -- Zono zam (Dorothy Masuka) -- Nobel Prize Award (Chief Albert Luthuli) -- Zandile (Jazz Ministers) -- Rivonia trial speech (Nelson Mandela) -- Woza ANC (Freedom Choir, ACFC) -- Ag pleez deddy (Jeremy Taylor) -- Kalamazoo (Pops Mohamed) -- Fight to the end (JB Vorster) -- Joyin umkhonto wesizwe (ACFC) -- Burnout (Sipho "Hotstix" Mabuse) -- Total onslaught (PW Botha) -- State of emergency (Amampondo) -- Paradise road (Joy) -- AWB speech (Eugene Terreblanche) -- Slovo no tambo (ACFC) -- Bayeza (Soul Brothers) -- Tsoha/vuka (ACFC) -- Asimbonanga (Jonny Clegg) -- CD. 2. Whispers in the deep (Stimela) -- Thula Sizwe (ACFC) -- Halala Afrika (Johannes Kerkorrel) -- Papa stop the war (Chicco) -- Unbanning speech (FW De Klerk) -- Shosholoza (ACFCA) -- Bring him back home (Hugh Masekela) -- Inauguration speech (Nelson Mandela) -- Man of the world (Yvonne Chaka Chaka) -- Neva again (Prophets of Da City) -- Waar was jy (Skeem) -- I am an African (Thabo Mbeki) -- Power of Africa (Yvonne Chaka Chaka) -- Yehlisan umoya ma-Afrika (Busi Mhlongo) -- Sabela (Sibongile Khumalo) -- Inauguration speech (Nelson Mandela) -- Nkosi sikelel' iAfrika (ACFC).MusicAfrican.Speeches, addresses, etc.CtYsmlML3760.W55 2004 (LC)C0OCL01613cam 2200409 a 4500ocn124450154OCoLC20070605103524.0970411s1947 nyu 001 0 rus dNNCVXJ(N(OCoLC)124450154(CStRLIN)NYJH97-B3375rusyidn-us---ocm42037006PJ5192.R8F4OCLC880-01Evreĭskai͡a poėzii͡a :antologii͡a /Leonid Grebnev (L. Faĭnberg).Yiddish poetry880-02Nʹi͡u-Ĭork :Izd. Soi͡uza russkikh evreev v Nʹi͡u-Iorke,1947.240 p. ;23 cm.No more published?Tom 1. Amerika.Includes index.Author's autograph presentation copy to Moses Shifris.Yiddish poetryUnited States.Yiddish poetryTranslations into RussianCollections.Russian poetryTranslations from YiddishCollections.880-03Feinberg, Leon,1897-1969Presentation inscription to Moses Shifris.880-04Feinberg, Leon,1897-1969.NNJPUBLPJ5192.R8F41CIN=AMW; OID=UTC245-01/(NЕврейская поэзия :антология /Леонид Гребнев [Л. Файнберг].260-02/(NНью-Йорк :Изд. Союза русских евреев в Нью-Йорке,1947.600-03/(NФайнберг, Леон,1897-1969.700-04/(NФайнберг, Леон,1897-1969.C0OCL \ No newline at end of file +00000cam 2200445 a 4500ocn132792681OCoLC20070605101501.0060314s2004 ja a b 001 0 jpn dLWUSMFRE$147842120789784784212071(OCoLC)132792681(CStRLIN)DCFO06-B527jpnenga-ja---ocm56902747750.21njbNK1071.A87 2004OCLC880-01Ātsu ando kurafutsu to Nihon =The arts & crafts movement and Japan /Dezainshi Fōramu hen ; Fujita Haruhiko sekinin henshū.Arts & crafts movement and Japan880-02Kyōto-shi :Shibunkaku Shuppan,2004.288 p. :ill. ;21 cm.Includes index.Summary in English.Includes bibliographical references.Arts and crafts movementJapan.Folk artJapan.880-03Fujita, Haruhiko,1951-880-04Dezainshi Fōramu.DSI-FmainNK1071.A87 2004CIN=hr; OID=hr245-01/$1アーツ・アンド・クラフツと日本 =The arts & crafts movement and Japan /デザイン史フォーラム編 ; 藤田治彦責任編集.260-02/$1京都市 :思文閣出版,2004.700-03/$1藤田治彦,1951-710-04/$1デザイン史フォーラム.*bn=main;ov=.B1748129;c. 1C0OCL00000cam 2200493 a 4500ocn132786677OCoLC20070605101501.0060801s2005 ko a b 000 0 eng dCUISMFRE$189860902369788986090239(OCoLC)132786677(CStRLIN)DCFO06-B1570engkora-kr---ocm69375356NK7984.6.A1F73 2005OCLC880-01Fragrance of Korea :the ancient gilt-bronze incense burner of Baekje=Paekche Kŭmdong Taehyangno /[edited by Korea Foundation].880-02Paekche Kŭmdong taehyangnoSeoul, Korea :The Korea Foundation,2005.144 p. :col. ill. ;31 cm."Photography by Han Seok-hong Photo Studio, Translated by Miwha Stevenson ..., Content edited by Yi Song-mi ..., Copyedited (English) by Rose E. Lee"--P. facing t.p.Includes bibliographical references.880-03Kŭmdong taehyangno.Gilt bronzes, KoreanTo 935.Incense burners and containersKorea.880-04Paekche (Kingdom)Antiquities.Stevenson, Miwha.Sŏng-mi, Yi.Lee, Rose E.Han Seok-hong Photo Studio.880-05Hanʼguk Kukche Kyoryu Chaedan.DSI-FmainNK7984.6.A1F73 2005245-01/$1Fragrance of Korea :the ancient gilt-bronze incense burner of Baekje=백제금동대향로 /[edited by Korea Foundation].246-02/$1650-03/$1금동대향로.651-04/$1백제 (Kingdom)Antiquities.710-05/$1한국국제교류재단.*bn=main;c. 1C0OCL00000nam 2200373 a 4500ocn125170297OCoLC20070605101501.0060919s2006 cc a 000 0 chi CaOTRMengRON$1750101843X9787501018437(OCoLC)125170297(CStRLIN)ONRO06-B481NK1483.A1J56 2006ocm71289809NK1483.A1J56 2006OCLC880-01Jin, Zhu880-02Fu Lu Shou Xi Da Guan/Jin Zhu, Wang Zhijun Bian zhu.880-03Beijing :Wen wu chu ban she,2006ii, 229p.ill. ;26cm.Chinese languageCalligraphy study.Chinese languageWritingHistoryFestivalsChinaChinaSocial life and customWang, Zhijun.CaOTRMCaOTRMFNK1483.A1J56 2006CIN=KMW; OID=KMW100-01/$1245-02/$1福禄寿喜大观/金铢,王志军编著.260-03/$1北京 :文物出版社,2006NK1483 .A1 J56 200631761066877267ROMROMFAREASTBOOKC0OCL00000nam 22004334a 4500ocn137607921OCoLC20070605101501.0060223s2004 ye b 000 0 ara 2005311567DLC-RNYP(3(OCoLC)137607921(CStRLIN)NYPN06-B180lcodepccma-----PJ7538.L57 2004ocm60522147*OEM 06-1987OCLC880-01Liqāʼāt wa-shahādāt adabīyah /Najīb Maḥfūẓ ... [et al.] ; ajrá al-liqāʼāt Ḥasan ʻAlī Mijallī.880-02al-Ṭabʻah 1.880-03Ṣanʻāʼ :Markaz ʻAbbādī lil-Dirāsāt wa-al-Nashr,2004.153 p. ;23 cm.880-04Maktabat al-dirāsāt al-fikrīyah wa-al-naqdīyahIncludes bibliographical references.In Arabic.Arabic literature20th centuryHistory and criticism.Authors, Arab20th centuryInterviews.IntellectualsArab countriesInterviews.Maḥfūẓ, Najīb,1911-Mijallī, Ḥasan ʻAlī.New York Public Libraryho*OEM 06-1987OID=AME;CIN=GYG245-01/(3/r&#x200F;لقاءات وشهادات أدبية /&#x200F;&#x200F;نجيب محفوظ ... [et al.] ؛ أجرى اللقاءات حسن علي مجلي.250-02/(3/r&#x200F;الطبعة 1.260-03/(3/r&#x200F;صنعاء :&#x200F;&#x200F;2004.440-04/(3/r*OEM 06-198733433069567414ho-002C0OCL00000cas 2200589 a 4500ocn124081299OCoLC20070605101501.0970414c19789999iluqr p g 0 a0eng d 86641268 sn 84012219 ICD-LFC00897-12770022-6793399610USPS(OCoLC)124081299(CStRLIN)NYHL97-S162lcnsdpn-us---K10.U67ocm05266384344/.095/05342.4950519OCLCJurimetrics(Chic. Ill.)Jurimetrics(Chicago, Ill.)Jurimetrics.Jurimetrics journal of law, science and technology<fall 1991->Jurimetrics journal1978-Chicago, Ill. :Section of Science & Technology, American Bar Association,c1979-v. :ill. ;23 cm.QuarterlyVol. 19, no. 2 (winter 1978)-Title from cover."Journal of law, science and technology."Index to legal periodicals0019-4077Legal resource index1980-Computer & control abstracts0036-8113winter 1978-Electrical & electronics abstracts0036-8105winter 1978-Physics abstracts0036-8091winter 1978-Special issue for 1979 called also v. 19, no. 5.Special issue 1979 contains proceedings of the Section's annual meeting.Vols. for spring 1985-winter 1986 issued by: American Bar Association Section of Science and Technology and the Arizona State University College of Law; spring 1986-<fall 1987> by the American Bar Association Section of Science and Technology, and the Center for the Study of Law, Science, and Technology of the Arizona State University College of Law.Science and lawUnited StatesPeriodicals.Technology and lawUnited StatesPeriodicals.Judicial processUnited StatesPeriodicals.Legal researchData processingUnited StatesPeriodicals.Information storage and retrieval systemsLawUnited StatesPeriodicals.American Bar Association.Section of Science and Technology.Arizona State University.College of Law.Arizona State University.Center for the Study of Law, Science, and Technology.Jurimetrics journal0022-6793(DLC) 92657369(OCoLC)1754902NNHHRMAIN\PER1OID=CCSC0OCL00000cam 2200373 i 4500ocn135450843OCoLC20070605101501.0850910s1976 caua bc 001 0 eng d 76013691 UBYUBY0875870708 :$5.009780875870700(OCoLC)135450843(UPB)notisADN0346(CStRLIN)UTBG85-B43642n-us---N6538.N5D74ocm02318292ocm02550323ocm03890870709/.73N6538.N5\D74OCLCDriskell, David C.Two centuries of Black American art :[exhibition], Los Angeles County Museum of Art, the High Museum of Art, Atlanta, Museum of Fine Arts, Dallas, the Brooklyn Museum /David C. Driskell ; with catalog notes by Leonard Simon.1st ed.[Los Angeles] :Los Angeles County Museum of Art ;New York :Knopf :distributed by Random House,1976.221 p. :ill. (some col.) ;28 cm.Bibliography: p. 206-219.Includes index.Afro-American artExhibitions.Simon, Leonard,1936-Los Angeles County Museum of Art.UPBMANN6538.N5\D74c.1 001c.2 002OID=SYLC0OCL00000cam 2200313 a 4500ocn137458539OCoLC20070605101501.0900119s1974 maua 100 0 eng d 74081739 MSRMSR(OCoLC)137458539(CStRLIN)MOSA90-B178F61.C71 vol. 48NK2438.B6ocm01364905ocm06844451NK2438.B6B68 1974OCLCBoston furniture of the eighteenth century :a conference held by the Colonial Society of Massachusetts, 11 and 12 May 1972.Boston :Colonial Society of Massachusetts ;[Charlottesville] :distributed by the University Press of Virginia,c1974.xvi, 316 p. :ill. ;25 cm.Publications of the Colonial Society of Massachusetts ;v. 48Bibliography: p. 303-305.Includes index.Furniture, ColonialMassachusettsBostonCongresses.Furniture, Early AmericanMassachusettsBostonCongresses.Colonial Society of Massachusetts.MoSRSTKNK2438.B6B68 197421260CIN=MLC; OID=MLCRC0OCL00000cam 2200457 a 4500ocn124411460OCoLC20070605101501.0070222s2007 is a b 001 0ceng dNNYIVXJ(296522938659789652293862(OCoLC)124411460(CStRLIN)NYJH07-B409enghebe-hu---a-is---DS135.H93A147313 2007ocm85564516DS135.H93A14513 2007OCLCGur, David,1926-880-01Aḥim le-hitnagdut ule-hatsalah.EnglishBrothers for resistance and rescue :the underground Zionist youth movement in Hungary during World War II /David Gur ; edited by Eli Netzer ; translated by Pamela Segev & Avri Fischer.Enlarged and revised ed.Jerusalem :Gefen,2007.270 p. :ill. ;28 p.Introduction by Randolph L. Brahan.Includes bibliographical references (p. 261-264) and index.JewsHungaryBiography.Jewish youthHungaryBiography.ZionismHungaryHistory20th century.World War, 1939-1945Jewish resistanceHungary.Jews, HungarianIsraelBiography.Holocaust survivorsIsraelBiography.Netser, Eli.Segev, Pamela.Fischer, Avri.Library of the Jewish Theological SeminaryJT1MAINOVERSIZEDS135.H93A14513 200731407002756237CIN=RL; OID=RL240-01/(2/r&#x200F;אחים להתנגדות ולהצלה.&#x200F;&#x200F;EnglishC0OCL00000cjm 2200349 a 4500ocn131225106OCoLC20070605101501.0sd |||gnammned051219p2004 sa mun g l mul dCtYYUSACM-CD023/3African Cream Music(OCoLC)131225106(CtY)7143913(CStRLIN)CTYA7143913-Rengxhof-sa---ML3760.W55 2004ocm64169861ML3760.W55 2004 (LC)OCLCThe winds of change[sound recording] :[a journey through the key music and moments that gave birth to a free, democratic South Africa].[South Africa?] :African Cream Music,2004.2 sound discs :digital ;4 3/4 in. +1 bookletCompact discs.Subtitle from booklet.Various artists.CD. 1. Nkosi sikelel' iAfrika (Tumelo Maloi) -- Winds of change (Harold Macmillan) -- Zono zam (Dorothy Masuka) -- Nobel Prize Award (Chief Albert Luthuli) -- Zandile (Jazz Ministers) -- Rivonia trial speech (Nelson Mandela) -- Woza ANC (Freedom Choir, ACFC) -- Ag pleez deddy (Jeremy Taylor) -- Kalamazoo (Pops Mohamed) -- Fight to the end (JB Vorster) -- Joyin umkhonto wesizwe (ACFC) -- Burnout (Sipho "Hotstix" Mabuse) -- Total onslaught (PW Botha) -- State of emergency (Amampondo) -- Paradise road (Joy) -- AWB speech (Eugene Terreblanche) -- Slovo no tambo (ACFC) -- Bayeza (Soul Brothers) -- Tsoha/vuka (ACFC) -- Asimbonanga (Jonny Clegg) -- CD. 2. Whispers in the deep (Stimela) -- Thula Sizwe (ACFC) -- Halala Afrika (Johannes Kerkorrel) -- Papa stop the war (Chicco) -- Unbanning speech (FW De Klerk) -- Shosholoza (ACFCA) -- Bring him back home (Hugh Masekela) -- Inauguration speech (Nelson Mandela) -- Man of the world (Yvonne Chaka Chaka) -- Neva again (Prophets of Da City) -- Waar was jy (Skeem) -- I am an African (Thabo Mbeki) -- Power of Africa (Yvonne Chaka Chaka) -- Yehlisan umoya ma-Afrika (Busi Mhlongo) -- Sabela (Sibongile Khumalo) -- Inauguration speech (Nelson Mandela) -- Nkosi sikelel' iAfrika (ACFC).MusicAfrican.Speeches, addresses, etc.CtYsmlML3760.W55 2004 (LC)C0OCL00000cam 2200409 a 4500ocn124450154OCoLC20070605103524.0970411s1947 nyu 001 0 rus dNNCVXJ(N(OCoLC)124450154(CStRLIN)NYJH97-B3375rusyidn-us---ocm42037006PJ5192.R8F4OCLC880-01Evreĭskai͡a poėzii͡a :antologii͡a /Leonid Grebnev (L. Faĭnberg).Yiddish poetry880-02Nʹi͡u-Ĭork :Izd. Soi͡uza russkikh evreev v Nʹi͡u-Iorke,1947.240 p. ;23 cm.No more published?Tom 1. Amerika.Includes index.Author's autograph presentation copy to Moses Shifris.Yiddish poetryUnited States.Yiddish poetryTranslations into RussianCollections.Russian poetryTranslations from YiddishCollections.880-03Feinberg, Leon,1897-1969Presentation inscription to Moses Shifris.880-04Feinberg, Leon,1897-1969.NNJPUBLPJ5192.R8F41CIN=AMW; OID=UTC245-01/(NЕврейская поэзия :антология /Леонид Гребнев [Л. Файнберг].260-02/(NНью-Йорк :Изд. Союза русских евреев в Нью-Йорке,1947.600-03/(NФайнберг, Леон,1897-1969.700-04/(NФайнберг, Леон,1897-1969.C0OCL \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/amstransactions.mrc.xml b/src/test/resources/org/xbib/marc/amstransactions.mrc.xml index a774d91..9ca2fd9 100644 --- a/src/test/resources/org/xbib/marc/amstransactions.mrc.xml +++ b/src/test/resources/org/xbib/marc/amstransactions.mrc.xml @@ -1 +1 @@ -01609nam a2200361 a 4500AYL-3122 CStRLIN 20030916095302.0 980203s1999 cc b 000 0 chi 7503401427 (set) :RMBY52.00(CStRLIN)ONTG98-B1257dCaOTUCaOTUa-cc---DS777.543.P352 1999$1DS777.543.P352 199907/04/01 NDS 777.543 .P35 1991XEAST11-2880-01Bai wan guo min dang jun qi yi tou cheng ji shi xu ji /Cai Huilin ... [et al.] bian.880-02Di 1 ban.880-03Beijing :Zhongguo wen shi chu ban she :Xin hua shu dian Beijing fa xing suo fa xing,1999.2 v. (2, 18, 5, 1152 p.) ;21 cm.Includes bibliographical references.Electronic ReproductionUniversity of Toronto11ChinaHistoryCivil War, 1945-1949Personal narratives.880-04Cai, Huilin.Scholars Portal Bookshttp://books.scholarsportal.info/viewdoc.html?id=/ebooks/oca2/44/amstransactions35579abrauoft245-01/$1百万 国民党军 起义 投诚 纪实 续集 /蔡 恵林 ... [et al.] 主编.250-02/$1第1版.260-03/$1北京 :中国 文史 出版社 :新华 书店 北京 发行所 发行,1999.710-04/$1蔡 恵林.EASTASIANSTACKSDS777.543 .P35 1991X V.1BOOK1EASTASIANSTACKSDS777.543 .P35 1991X V.2BOOK1 \ No newline at end of file +00000nam a2200361 a 4500AYL-3122 CStRLIN 20030916095302.0 980203s1999 cc b 000 0 chi 7503401427 (set) :RMBY52.00(CStRLIN)ONTG98-B1257dCaOTUCaOTUa-cc---DS777.543.P352 1999$1DS777.543.P352 199907/04/01 NDS 777.543 .P35 1991XEAST11-2880-01Bai wan guo min dang jun qi yi tou cheng ji shi xu ji /Cai Huilin ... [et al.] bian.880-02Di 1 ban.880-03Beijing :Zhongguo wen shi chu ban she :Xin hua shu dian Beijing fa xing suo fa xing,1999.2 v. (2, 18, 5, 1152 p.) ;21 cm.Includes bibliographical references.Electronic ReproductionUniversity of Toronto11ChinaHistoryCivil War, 1945-1949Personal narratives.880-04Cai, Huilin.Scholars Portal Bookshttp://books.scholarsportal.info/viewdoc.html?id=/ebooks/oca2/44/amstransactions35579abrauoft245-01/$1百万 国民党军 起义 投诚 纪实 续集 /蔡 恵林 ... [et al.] 主编.250-02/$1第1版.260-03/$1北京 :中国 文史 出版社 :新华 书店 北京 发行所 发行,1999.710-04/$1蔡 恵林.EASTASIANSTACKSDS777.543 .P35 1991X V.1BOOK1EASTASIANSTACKSDS777.543 .P35 1991X V.2BOOK1 \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/bad_leaders_10_11.mrc.xml b/src/test/resources/org/xbib/marc/bad_leaders_10_11.mrc.xml index 93bf34e..566dc11 100644 --- a/src/test/resources/org/xbib/marc/bad_leaders_10_11.mrc.xml +++ b/src/test/resources/org/xbib/marc/bad_leaders_10_11.mrc.xml @@ -1,7 +1,7 @@ - 01794 0000445 000 + 00000 0000445 000 000800000020003000008020004200038035001200080005001700092008008100109010001700190016002200207029002200229035001200251035001600263040001800279042000800297043003000305049000900335050002200344072001200366110004800378245024900426246002200675260008500697300004100782504005100823650004300874650004300917650004300960650004301003650004101046610005901087700002001146700002501166938005301191994001201244910002601256991006601282 0772 diff --git a/src/test/resources/org/xbib/marc/bad_too_long_plus_2.mrc.xml b/src/test/resources/org/xbib/marc/bad_too_long_plus_2.mrc.xml index fb71049..3449a8c 100644 --- a/src/test/resources/org/xbib/marc/bad_too_long_plus_2.mrc.xml +++ b/src/test/resources/org/xbib/marc/bad_too_long_plus_2.mrc.xml @@ -1,7 +1,7 @@ - 23375nas 22182291 450 + 00000nas 22182291 450 360944 360944 @@ -14292,7 +14292,7 @@ - 01307cam 2200349 a 450 + 00000cam 2200349 a 450 360945 360945 @@ -14398,7 +14398,7 @@ - 01207nam 2200301 a 450 + 00000nam 2200301 a 450 360946 2070373851 diff --git a/src/test/resources/org/xbib/marc/brkrtest.mrc.xml b/src/test/resources/org/xbib/marc/brkrtest.mrc.xml index 5b8020c..7a708b2 100644 --- a/src/test/resources/org/xbib/marc/brkrtest.mrc.xml +++ b/src/test/resources/org/xbib/marc/brkrtest.mrc.xml @@ -1 +1 @@ -01201nam 2200253 a 4500tes96000001 ViArRB199602210153555.7960221s1955 dcuabcdjdbkoqu001 0deng dViArRBViArRBPQ1234.T39 1955Deer-Doe, J.(Jane),saint,1355-1401,spirit.New test record number 1 with ordinary data[large print] /by Jane Deer-Doe ; edited by Patty O'Furniture.New test record number one with ordinary dataWashington, DC :Library of Congress,1955-<1957>v. 1-<5> :ill., maps, ports., charts ; cm.Test record series ;no. 1This is a test of ordinary features like replacement of the mnemonics for currency and dollar signs and backslashes (backsolidus \) used for blanks in certain areas.This is a test for the conversion of curly braces; the opening curly brace ({) and the closing curly brace (}).Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.O'Furniture, Patty,ed.02665nam 2200229 a 4500tes96000002 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 2 with currently defined ANSEL characters (mostly diacritics) input with their real hexadecimal values[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 2This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaIncludes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.02652nam 2200229 a 4500tes96000003 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 3 with currently defined ANSEL characters (mostly diacritics) input with mnemonic strings[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 3This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaIncludes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.01276nam 2200229 a 4500tes96000004 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 4 with newly-defined diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 4This field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}, also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℗1994, the copyright mark in ©1955, the musical sharp in concerto in F♯ major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.03101nam 2200241 a 4500tes96000005 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 5 for all diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 5This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaThis field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}; also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℓ1994, the copyright mark in ℗1955, the musical sharp in concerto in F© major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.03099nam 2200241 a 4500tes96000006 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A new ultimate test record for diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 6This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaThis field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}, also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℗1994, the copyright mark in ©1955, the musical sharp in concerto in F♯ major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00959nam 2200241 a 4500tes96000007 ViArRB19960221165955.9960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A check of the processing of unrecognized mnemonic strings like &zilch; which might be encountered in the MARCMakr input file.Washington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 7This is a test of mnemonic conversion, like a real backslash or back solidus, as it is sometimes called (\).Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.ftp.loc.gov\pub\marc00833nam 2200217 a 4500tes96000008 ViArRB19960221195511.9960221s1955 dcuabcdjdbkoqu001 0dspa d84722365790777000008 :$35.990777000008 :$35.993777000008 (German ed.):$46.00ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A check of the processing of the dollar sign and mnemonic strings used for real dollar signs (associated with prices).Washington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 8This is a test of mnemonic conversion, like a real backslash or back solidus, as it is sometimes called (\). \ No newline at end of file +00000nam 2200253 a 4500tes96000001 ViArRB199602210153555.7960221s1955 dcuabcdjdbkoqu001 0deng dViArRBViArRBPQ1234.T39 1955Deer-Doe, J.(Jane),saint,1355-1401,spirit.New test record number 1 with ordinary data[large print] /by Jane Deer-Doe ; edited by Patty O'Furniture.New test record number one with ordinary dataWashington, DC :Library of Congress,1955-<1957>v. 1-<5> :ill., maps, ports., charts ; cm.Test record series ;no. 1This is a test of ordinary features like replacement of the mnemonics for currency and dollar signs and backslashes (backsolidus \) used for blanks in certain areas.This is a test for the conversion of curly braces; the opening curly brace ({) and the closing curly brace (}).Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.O'Furniture, Patty,ed.00000nam 2200229 a 4500tes96000002 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 2 with currently defined ANSEL characters (mostly diacritics) input with their real hexadecimal values[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 2This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaIncludes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00000nam 2200229 a 4500tes96000003 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 3 with currently defined ANSEL characters (mostly diacritics) input with mnemonic strings[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 3This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaIncludes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00000nam 2200229 a 4500tes96000004 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 4 with newly-defined diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 4This field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}, also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℗1994, the copyright mark in ©1955, the musical sharp in concerto in F♯ major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00000nam 2200241 a 4500tes96000005 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 5 for all diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 5This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaThis field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}; also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℓ1994, the copyright mark in ℗1955, the musical sharp in concerto in F© major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00000nam 2200241 a 4500tes96000006 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A new ultimate test record for diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 6This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaThis field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}, also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℗1994, the copyright mark in ©1955, the musical sharp in concerto in F♯ major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00000nam 2200241 a 4500tes96000007 ViArRB19960221165955.9960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A check of the processing of unrecognized mnemonic strings like &zilch; which might be encountered in the MARCMakr input file.Washington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 7This is a test of mnemonic conversion, like a real backslash or back solidus, as it is sometimes called (\).Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.ftp.loc.gov\pub\marc00000nam 2200217 a 4500tes96000008 ViArRB19960221195511.9960221s1955 dcuabcdjdbkoqu001 0dspa d84722365790777000008 :$35.990777000008 :$35.993777000008 (German ed.):$46.00ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A check of the processing of the dollar sign and mnemonic strings used for real dollar signs (associated with prices).Washington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 8This is a test of mnemonic conversion, like a real backslash or back solidus, as it is sometimes called (\). \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/chabon-loc.mrc.trans.xml b/src/test/resources/org/xbib/marc/chabon-loc.mrc.trans.xml index 10c31b5..e5ff8a8 100644 --- a/src/test/resources/org/xbib/marc/chabon-loc.mrc.trans.xml +++ b/src/test/resources/org/xbib/marc/chabon-loc.mrc.trans.xml @@ -1 +1 @@ -01488cam 2200349 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultto HLCD pc03 03-13-00; lh08 to subj. 03-14-00; lh06 03-22-00; lk02 03-22-00; to Dewey 03-22-00; aa05 03-23-00; ps13 2001-11-06 bk rec'd, to CIP ver.pv08 2001-11-07 CIP ver. to BCCD 00029063 0679450041 (acid-free paper)DLCDLCDLCn-us-nyPS3553.H15A82 2000813/.5421Chabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafdContributor biographical informationhttp://www.loc.gov/catdir/bios/random052/00029063.htmlSample texthttp://www.loc.gov/catdir/samples/random044/00029063.htmlPublisher descriptionhttp://www.loc.gov/catdir/description/random0411/00029063.html01185cam 2200301 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultpc14 2002-08-05 to HLCDlh08 2002-08-06 to subj.;lb11 2002-09-05lb05 2002-09-06 to cipps09 2003-03-04 1 copy rec'd., to CIP ver.pv01 2003-03-17 CIP ver to BCCDld11 2003-05-12 cp2 to BCCD 200202749707868087720786816155 (pbk.)DLCDLCDLClcacPZ7.C3315Su 2002[Fic]21Chabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction.II lb11 09-05-02 \ No newline at end of file +00000cam 2200349 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultto HLCD pc03 03-13-00; lh08 to subj. 03-14-00; lh06 03-22-00; lk02 03-22-00; to Dewey 03-22-00; aa05 03-23-00; ps13 2001-11-06 bk rec'd, to CIP ver.pv08 2001-11-07 CIP ver. to BCCD 00029063 0679450041 (acid-free paper)DLCDLCDLCn-us-nyPS3553.H15A82 2000813/.5421Chabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafdContributor biographical informationhttp://www.loc.gov/catdir/bios/random052/00029063.htmlSample texthttp://www.loc.gov/catdir/samples/random044/00029063.htmlPublisher descriptionhttp://www.loc.gov/catdir/description/random0411/00029063.html00000cam 2200301 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultpc14 2002-08-05 to HLCDlh08 2002-08-06 to subj.;lb11 2002-09-05lb05 2002-09-06 to cipps09 2003-03-04 1 copy rec'd., to CIP ver.pv01 2003-03-17 CIP ver to BCCDld11 2003-05-12 cp2 to BCCD 200202749707868087720786816155 (pbk.)DLCDLCDLClcacPZ7.C3315Su 2002[Fic]21Chabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction.II lb11 09-05-02 \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/chabon-loc.mrc.utf8.xml b/src/test/resources/org/xbib/marc/chabon-loc.mrc.utf8.xml index 10c31b5..e5ff8a8 100644 --- a/src/test/resources/org/xbib/marc/chabon-loc.mrc.utf8.xml +++ b/src/test/resources/org/xbib/marc/chabon-loc.mrc.utf8.xml @@ -1 +1 @@ -01488cam 2200349 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultto HLCD pc03 03-13-00; lh08 to subj. 03-14-00; lh06 03-22-00; lk02 03-22-00; to Dewey 03-22-00; aa05 03-23-00; ps13 2001-11-06 bk rec'd, to CIP ver.pv08 2001-11-07 CIP ver. to BCCD 00029063 0679450041 (acid-free paper)DLCDLCDLCn-us-nyPS3553.H15A82 2000813/.5421Chabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafdContributor biographical informationhttp://www.loc.gov/catdir/bios/random052/00029063.htmlSample texthttp://www.loc.gov/catdir/samples/random044/00029063.htmlPublisher descriptionhttp://www.loc.gov/catdir/description/random0411/00029063.html01185cam 2200301 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultpc14 2002-08-05 to HLCDlh08 2002-08-06 to subj.;lb11 2002-09-05lb05 2002-09-06 to cipps09 2003-03-04 1 copy rec'd., to CIP ver.pv01 2003-03-17 CIP ver to BCCDld11 2003-05-12 cp2 to BCCD 200202749707868087720786816155 (pbk.)DLCDLCDLClcacPZ7.C3315Su 2002[Fic]21Chabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction.II lb11 09-05-02 \ No newline at end of file +00000cam 2200349 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultto HLCD pc03 03-13-00; lh08 to subj. 03-14-00; lh06 03-22-00; lk02 03-22-00; to Dewey 03-22-00; aa05 03-23-00; ps13 2001-11-06 bk rec'd, to CIP ver.pv08 2001-11-07 CIP ver. to BCCD 00029063 0679450041 (acid-free paper)DLCDLCDLCn-us-nyPS3553.H15A82 2000813/.5421Chabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafdContributor biographical informationhttp://www.loc.gov/catdir/bios/random052/00029063.htmlSample texthttp://www.loc.gov/catdir/samples/random044/00029063.htmlPublisher descriptionhttp://www.loc.gov/catdir/description/random0411/00029063.html00000cam 2200301 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultpc14 2002-08-05 to HLCDlh08 2002-08-06 to subj.;lb11 2002-09-05lb05 2002-09-06 to cipps09 2003-03-04 1 copy rec'd., to CIP ver.pv01 2003-03-17 CIP ver to BCCDld11 2003-05-12 cp2 to BCCD 200202749707868087720786816155 (pbk.)DLCDLCDLClcacPZ7.C3315Su 2002[Fic]21Chabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction.II lb11 09-05-02 \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/chabon-loc.mrc.xml b/src/test/resources/org/xbib/marc/chabon-loc.mrc.xml index 5ba7e17..e5ff8a8 100644 --- a/src/test/resources/org/xbib/marc/chabon-loc.mrc.xml +++ b/src/test/resources/org/xbib/marc/chabon-loc.mrc.xml @@ -1 +1 @@ -01488cam 2200349 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultto HLCD pc03 03-13-00; lh08 to subj. 03-14-00; lh06 03-22-00; lk02 03-22-00; to Dewey 03-22-00; aa05 03-23-00; ps13 2001-11-06 bk rec'd, to CIP ver.pv08 2001-11-07 CIP ver. to BCCD 00029063 0679450041 (acid-free paper)DLCDLCDLCn-us-nyPS3553.H15A82 2000813/.5421Chabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafdContributor biographical informationhttp://www.loc.gov/catdir/bios/random052/00029063.htmlSample texthttp://www.loc.gov/catdir/samples/random044/00029063.htmlPublisher descriptionhttp://www.loc.gov/catdir/description/random0411/00029063.html01185cam 2200301 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultpc14 2002-08-05 to HLCDlh08 2002-08-06 to subj.;lb11 2002-09-05lb05 2002-09-06 to cipps09 2003-03-04 1 copy rec'd., to CIP ver.pv01 2003-03-17 CIP ver to BCCDld11 2003-05-12 cp2 to BCCD 200202749707868087720786816155 (pbk.)DLCDLCDLClcacPZ7.C3315Su 2002[Fic]21Chabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction.II lb11 09-05-02 \ No newline at end of file +00000cam 2200349 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultto HLCD pc03 03-13-00; lh08 to subj. 03-14-00; lh06 03-22-00; lk02 03-22-00; to Dewey 03-22-00; aa05 03-23-00; ps13 2001-11-06 bk rec'd, to CIP ver.pv08 2001-11-07 CIP ver. to BCCD 00029063 0679450041 (acid-free paper)DLCDLCDLCn-us-nyPS3553.H15A82 2000813/.5421Chabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafdContributor biographical informationhttp://www.loc.gov/catdir/bios/random052/00029063.htmlSample texthttp://www.loc.gov/catdir/samples/random044/00029063.htmlPublisher descriptionhttp://www.loc.gov/catdir/description/random0411/00029063.html00000cam 2200301 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 7cbcorignew1ocip20y-gencatlgacquire2 shelf copiespolicy defaultpc14 2002-08-05 to HLCDlh08 2002-08-06 to subj.;lb11 2002-09-05lb05 2002-09-06 to cipps09 2003-03-04 1 copy rec'd., to CIP ver.pv01 2003-03-17 CIP ver to BCCDld11 2003-05-12 cp2 to BCCD 200202749707868087720786816155 (pbk.)DLCDLCDLClcacPZ7.C3315Su 2002[Fic]21Chabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction.II lb11 09-05-02 \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/chabon.mrc.trans.xml b/src/test/resources/org/xbib/marc/chabon.mrc.trans.xml index c1949ac..de906ba 100644 --- a/src/test/resources/org/xbib/marc/chabon.mrc.trans.xml +++ b/src/test/resources/org/xbib/marc/chabon.mrc.trans.xml @@ -1 +1 @@ -00759cam a2200229 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 0679450041 (acid-free paper)DLCDLCDLCChabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafd00714cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file +00000cam a2200229 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 0679450041 (acid-free paper)DLCDLCDLCChabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafd00000cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/chabon.mrc.utf8.xml b/src/test/resources/org/xbib/marc/chabon.mrc.utf8.xml index c1949ac..de906ba 100644 --- a/src/test/resources/org/xbib/marc/chabon.mrc.utf8.xml +++ b/src/test/resources/org/xbib/marc/chabon.mrc.utf8.xml @@ -1 +1 @@ -00759cam a2200229 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 0679450041 (acid-free paper)DLCDLCDLCChabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafd00714cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file +00000cam a2200229 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 0679450041 (acid-free paper)DLCDLCDLCChabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafd00000cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/chabon.mrc.xml b/src/test/resources/org/xbib/marc/chabon.mrc.xml index 6e76103..de906ba 100644 --- a/src/test/resources/org/xbib/marc/chabon.mrc.xml +++ b/src/test/resources/org/xbib/marc/chabon.mrc.xml @@ -1 +1 @@ -00759cam a2200229 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 0679450041 (acid-free paper)DLCDLCDLCChabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafd00714cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file +00000cam a2200229 a 45001193987620041229190604.0000313s2000 nyu 000 1 eng 0679450041 (acid-free paper)DLCDLCDLCChabon, Michael.The amazing adventures of Kavalier and Clay :a novel /Michael Chabon.New York :Random House,c2000.639 p. ;25 cm.Comic books, strips, etc.AuthorshipFiction.Heroes in mass mediaFiction.Czech AmericansFiction.New York (N.Y.)Fiction.Young menFiction.CartoonistsFiction.Humorous stories.gsafdBildungsromane.gsafd00000cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/cyrillic_capital_e.mrc.xml b/src/test/resources/org/xbib/marc/cyrillic_capital_e.mrc.xml index 400642b..c1e484d 100644 --- a/src/test/resources/org/xbib/marc/cyrillic_capital_e.mrc.xml +++ b/src/test/resources/org/xbib/marc/cyrillic_capital_e.mrc.xml @@ -1,7 +1,7 @@ - 01969cam 2200529 i 4500 + 00000cam 2200529 i 4500 u6015439 SIRSI 20131218125548.0 @@ -180,7 +180,7 @@ - 01232cam 2200385 a 4500 + 00000cam 2200385 a 4500 u5278992 SIRSI 20110414115648.0 diff --git a/src/test/resources/org/xbib/marc/diacritic4.mrc.xml b/src/test/resources/org/xbib/marc/diacritic4.mrc.xml index 2b8368e..8acd98d 100644 --- a/src/test/resources/org/xbib/marc/diacritic4.mrc.xml +++ b/src/test/resources/org/xbib/marc/diacritic4.mrc.xml @@ -1 +1 @@ -03059cam 2200301 i 4500 77123332 DLC20051218154744.0981008b2001 ilu 000 0 eng DLCDLCDLC 77123332 OCLC diacritic and special character test record.ny :ny,2001.100 p. ;12 cm.VOYAGER COLUMN 0 (NEW): Degree sign (°); Phono Copyright mark (℗); Copyright mark (©); Sharp (♯); Inverted Question mark (¿); Inverted Exclamation mark (¡); Eszett (ß); Euro (€).VOYAGER COLUMN 1: Script L (ℓ); Polish L (Ł); Scandanavian O (Ø); D with Crossbar (Đ); Icelandic Thorn (Þ); AE Digraph (Æ); OE Digraph (Œ); Miagkii Znak (ʹ); Dot at Midline (·).VOYAGER COLUMN 2: Musical Flat (♭); Patent Mark (®); Plus or Minus (±); O Hook (Ơ); U Hook (Ư); Alif (ʼ); alpha (α); Ayn (ʻ); Polish l (ł).VOYAGER COLUMN 3: Scandanavian o (ø); d with crossbar (đ); Icelandic Thorn (þ); ae Digraph (æ); oe Digraph (œ); Tverdii Znak (ʺ); Turkish i (ı); British Pound (£); eth (ð).VOYAGER COLUMN 4: Dagger (DO NOT USE); o Hook (ơ); u Hook (ư); Beta (β); Gamma (γ); Superscript 0 (⁰); Superscript 1 (¹); Superscript 2 (²); Superscript 3 (³).VOYAGER COLUMN 5: Superscript 4 (⁴); Superscript 5 (⁵); Superscript 6 (⁶); Superscript 7 (⁷); Superscript 8 (⁸); Superscript 9 (⁹); Superscript + (⁺); Superscript - (⁻); Superscript ( (⁽).VOYAGER COLUMN 6: Superscript ) (⁾); Subscript 0 (₀); Subscript 1 (₁); Subscript 2 (₂); Subscript 3 (₃); Subscript 4 (₄); Subscript 5 (₅); Subscript 6 (₆); Subscript 7 (₇).VOYAGER COLUMN 7: Subscript 8 (₈); Subscript 9 (₉); Subscript + (₊); Subscript - (₋); Subscript ( (₍); Subscript ) (₎); Pseudo Question Mark (ỏ); Grave (ò); Acute (ó).VOYAGER COLUMN 8: Circumflex (ô); Tilde (õ); Macron (ō); Breve (ŏ); Superior Dot (ȯ); Umlaut (ö); Hacek (ǒ); Circle Above (o̊); Ligature left (o͡).VOYAGER COLUMN 9: Ligature right (o) ; High Comma off center (o̕); Double Acute (ő); Candrabindu (o̐); Cedilla (o̧); Right Hook (ǫ); Dot Below (ọ); Double Dot Below (o̤); Circle Below (o̥).VOYAGER COLUMN 10: Double Underscore (o̳); Underscore (o̲); Left Hook (o̦); Right Cedilla (o̜); Upadhmaniya (o̮); Double Tilde 1st half (o͠); Double Tilde 2nd half (o) ; High Comma centered (o̓).VOYAGER PC Keyboard: Spacing Circumflex (^); Spacing Underscore (_); Spacing Grave (`); Open Curly Bracket ({); Close Curly Bracket (}); Spacing Tilde (~).Standard PC Keyboard: 1234567890-= !@#$%^&*()_+ qwertyuiop[]\ QWERTYUIOP{}| asdfghjkl;' ASDFGHJKL:" zxcvbnm,./ ZXCVBNM<>?Double Tilde, 1st and 2nd halves (o͠o) ; Ligature, both halves (o͡o). \ No newline at end of file +00000cam 2200301 i 4500 77123332 DLC20051218154744.0981008b2001 ilu 000 0 eng DLCDLCDLC 77123332 OCLC diacritic and special character test record.ny :ny,2001.100 p. ;12 cm.VOYAGER COLUMN 0 (NEW): Degree sign (°); Phono Copyright mark (℗); Copyright mark (©); Sharp (♯); Inverted Question mark (¿); Inverted Exclamation mark (¡); Eszett (ß); Euro (€).VOYAGER COLUMN 1: Script L (ℓ); Polish L (Ł); Scandanavian O (Ø); D with Crossbar (Đ); Icelandic Thorn (Þ); AE Digraph (Æ); OE Digraph (Œ); Miagkii Znak (ʹ); Dot at Midline (·).VOYAGER COLUMN 2: Musical Flat (♭); Patent Mark (®); Plus or Minus (±); O Hook (Ơ); U Hook (Ư); Alif (ʼ); alpha (α); Ayn (ʻ); Polish l (ł).VOYAGER COLUMN 3: Scandanavian o (ø); d with crossbar (đ); Icelandic Thorn (þ); ae Digraph (æ); oe Digraph (œ); Tverdii Znak (ʺ); Turkish i (ı); British Pound (£); eth (ð).VOYAGER COLUMN 4: Dagger (DO NOT USE); o Hook (ơ); u Hook (ư); Beta (β); Gamma (γ); Superscript 0 (⁰); Superscript 1 (¹); Superscript 2 (²); Superscript 3 (³).VOYAGER COLUMN 5: Superscript 4 (⁴); Superscript 5 (⁵); Superscript 6 (⁶); Superscript 7 (⁷); Superscript 8 (⁸); Superscript 9 (⁹); Superscript + (⁺); Superscript - (⁻); Superscript ( (⁽).VOYAGER COLUMN 6: Superscript ) (⁾); Subscript 0 (₀); Subscript 1 (₁); Subscript 2 (₂); Subscript 3 (₃); Subscript 4 (₄); Subscript 5 (₅); Subscript 6 (₆); Subscript 7 (₇).VOYAGER COLUMN 7: Subscript 8 (₈); Subscript 9 (₉); Subscript + (₊); Subscript - (₋); Subscript ( (₍); Subscript ) (₎); Pseudo Question Mark (ỏ); Grave (ò); Acute (ó).VOYAGER COLUMN 8: Circumflex (ô); Tilde (õ); Macron (ō); Breve (ŏ); Superior Dot (ȯ); Umlaut (ö); Hacek (ǒ); Circle Above (o̊); Ligature left (o͡).VOYAGER COLUMN 9: Ligature right (o) ; High Comma off center (o̕); Double Acute (ő); Candrabindu (o̐); Cedilla (o̧); Right Hook (ǫ); Dot Below (ọ); Double Dot Below (o̤); Circle Below (o̥).VOYAGER COLUMN 10: Double Underscore (o̳); Underscore (o̲); Left Hook (o̦); Right Cedilla (o̜); Upadhmaniya (o̮); Double Tilde 1st half (o͠); Double Tilde 2nd half (o) ; High Comma centered (o̓).VOYAGER PC Keyboard: Spacing Circumflex (^); Spacing Underscore (_); Spacing Grave (`); Open Curly Bracket ({); Close Curly Bracket (}); Spacing Tilde (~).Standard PC Keyboard: 1234567890-= !@#$%^&*()_+ qwertyuiop[]\ QWERTYUIOP{}| asdfghjkl;' ASDFGHJKL:" zxcvbnm,./ ZXCVBNM<>?Double Tilde, 1st and 2nd halves (o͠o) ; Ligature, both halves (o͡o). \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/dialects/mab/1217zdbtit.dat.xml b/src/test/resources/org/xbib/marc/dialects/mab/1217zdbtit.dat.xml index f48a099..a78c224 100644 --- a/src/test/resources/org/xbib/marc/dialects/mab/1217zdbtit.dat.xml +++ b/src/test/resources/org/xbib/marc/dialects/mab/1217zdbtit.dat.xml @@ -1,7 +1,7 @@ - 02951cM2.01200024 000h + 00000cM2.01200024 000h 39-5 a19991118 20120312115750 @@ -206,7 +206,7 @@ - 01028cM2.01200024 000h + 00000cM2.01200024 000h 104-1 a19991118 20120423151739 @@ -344,7 +344,7 @@ - 01378cM2.01200024 000h + 00000cM2.01200024 000h 109-0 a19991118 20100309015043 @@ -483,7 +483,7 @@ - 01490cM2.01200024 000h + 00000cM2.01200024 000h 197-1 a19991118 20120209152744 @@ -622,7 +622,7 @@ - 01225cM2.01200024 000h + 00000cM2.01200024 000h 215-x a19991118 20100713165648 @@ -773,7 +773,7 @@ - 02598cM2.01200024 000h + 00000cM2.01200024 000h 260-4 a19991118 20120215114422 @@ -999,7 +999,7 @@ - 02360cM2.01200024 000h + 00000cM2.01200024 000h 340-2 a19991118 20110713133754 @@ -1160,7 +1160,7 @@ - 01422cM2.01200024 000h + 00000cM2.01200024 000h 443-1 a19991118 20110713211647 @@ -1278,7 +1278,7 @@ - 00845cM2.01200024 000h + 00000cM2.01200024 000h 548-4 a19991118 20120419181319 @@ -1382,7 +1382,7 @@ - 01431cM2.01200024 000h + 00000cM2.01200024 000h 556-3 a19991118 20120403103259 @@ -1564,7 +1564,7 @@ - 01295cM2.01200024 000h + 00000cM2.01200024 000h 688-9 a19991118 20111222113545 @@ -1714,7 +1714,7 @@ - 00701cM2.01200024 000h + 00000cM2.01200024 000h 952063-6 a19991118 20120221120236 @@ -1797,7 +1797,7 @@ - 01461cM2.01200024 000h + 00000cM2.01200024 000h 729-8 a19991118 20110713211831 @@ -1960,7 +1960,7 @@ - 01614cM2.01200024 000h + 00000cM2.01200024 000h 851-5 a19991118 20120423131251 @@ -2087,7 +2087,7 @@ - 00874cM2.01200024 000h + 00000cM2.01200024 000h 927-1 a19991118 20110321164446 @@ -2199,7 +2199,7 @@ - 02297cM2.01200024 000h + 00000cM2.01200024 000h 986-6 a19991118 20111123211616 @@ -2380,7 +2380,7 @@ - 01833cM2.01200024 000h + 00000cM2.01200024 000h 1003-0 a19991118 20110614130739 @@ -2575,7 +2575,7 @@ - 00615cM2.01200024 000h + 00000cM2.01200024 000h 952527-0 a19991118 20120423121355 @@ -2657,7 +2657,7 @@ - 01704cM2.01200024 000h + 00000cM2.01200024 000h 1010-8 a19991118 20111123211618 @@ -2804,7 +2804,7 @@ - 01655cM2.01200024 000h + 00000cM2.01200024 000h 1024-8 a19991118 20110713212005 @@ -2970,7 +2970,7 @@ - 01279cM2.01200024 000h + 00000cM2.01200024 000h 1059-5 a19991118 20120127102023 @@ -3097,7 +3097,7 @@ - 02838cM2.01200024 000h + 00000cM2.01200024 000h 1091-1 a19991118 20120403131632 @@ -3346,7 +3346,7 @@ - 02190cM2.01200024 000h + 00000cM2.01200024 000h 1104-6 a19991118 20120423094048 @@ -3554,7 +3554,7 @@ - 00962cM2.01200024 000h + 00000cM2.01200024 000h 1170-8 a19991118 20110618181649 @@ -3667,7 +3667,7 @@ - 01447cM2.01200024 000h + 00000cM2.01200024 000h 1171-x a19991118 20110618181649 @@ -3815,7 +3815,7 @@ - 02393cM2.01200024 000h + 00000cM2.01200024 000h 1176-9 a19991118 20120208224516 @@ -3970,7 +3970,7 @@ - 00886cM2.01200024 000h + 00000cM2.01200024 000h 1213-0 a19991118 20120320113355 @@ -4076,7 +4076,7 @@ - 00762cM2.01200024 000h + 00000cM2.01200024 000h 1217-8 a19991118 20111012150737 @@ -4173,7 +4173,7 @@ - 01054cM2.01200024 000h + 00000cM2.01200024 000h 1227-0 a19991118 20100309015456 @@ -4282,7 +4282,7 @@ - 02207cM2.01200024 000h + 00000cM2.01200024 000h 1271-3 a19991118 20120131165537 @@ -4458,7 +4458,7 @@ - 02783cM2.01200024 000h + 00000cM2.01200024 000h 1487-4 a19991118 20120126125942 @@ -4664,7 +4664,7 @@ - 01343cM2.01200024 000h + 00000cM2.01200024 000h 1489-8 a19991118 20110618181705 @@ -4791,7 +4791,7 @@ - 01984cM2.01200024 000h + 00000cM2.01200024 000h 1508-8 a19991118 20111123211648 @@ -4948,7 +4948,7 @@ - 01018cM2.01200024 000h + 00000cM2.01200024 000h 953592-5 a19991118 20120423124804 @@ -5055,7 +5055,7 @@ - 00989cM2.01200024 000h + 00000cM2.01200024 000h 1701-2 a19991118 20110713212212 @@ -5175,7 +5175,7 @@ - 01041cM2.01200024 000h + 00000cM2.01200024 000h 953594-9 a19991118 20120423124914 @@ -5276,7 +5276,7 @@ - 01469cM2.01200024 000h + 00000cM2.01200024 000h 2105-2 a19991118 20110713212424 @@ -5424,7 +5424,7 @@ - 01018cM2.01200024 000h + 00000cM2.01200024 000h 954171-8 a19991118 20120415120333 @@ -5534,7 +5534,7 @@ - 00987cM2.01200024 000h + 00000cM2.01200024 000h 2263-9 a19991118 20110714044343 @@ -5664,7 +5664,7 @@ - 00944cM2.01200024 000h + 00000cM2.01200024 000h 2301-2 a19991118 20100930100039 @@ -5784,7 +5784,7 @@ - 01131cM2.01200024 000h + 00000cM2.01200024 000h 954454-9 a19991118 20120321112135 @@ -5883,7 +5883,7 @@ - 01322cM2.01200024 000h + 00000cM2.01200024 000h 2394-2 a19991118 20110713212538 @@ -6024,7 +6024,7 @@ - 01266cM2.01200024 000h + 00000cM2.01200024 000h 2499-5 a19991118 20120308102807 @@ -6183,7 +6183,7 @@ - 00723cM2.01200024 000h + 00000cM2.01200024 000h 2526-4 a19991118 20120421030742 @@ -6317,7 +6317,7 @@ - 01010cM2.01200024 000h + 00000cM2.01200024 000h 2558-6 a19991118 20090428001351 @@ -6414,7 +6414,7 @@ - 02820cM2.01200024 000h + 00000cM2.01200024 000h 2560-4 a19991118 20120421023019 @@ -6610,7 +6610,7 @@ - 01555cM2.01200024 000h + 00000cM2.01200024 000h 2587-2 a19991118 20120421030741 @@ -6799,7 +6799,7 @@ - 02206cM2.01200024 000h + 00000cM2.01200024 000h 2602-5 a19991118 20111123211749 @@ -7023,7 +7023,7 @@ - 01048cM2.01200024 000h + 00000cM2.01200024 000h 2627-x a19991118 20120118125808 @@ -7162,7 +7162,7 @@ - 01480cM2.01200024 000h + 00000cM2.01200024 000h 2657-8 a19991118 20120215105414 @@ -7338,7 +7338,7 @@ - 00677cM2.01200024 000h + 00000cM2.01200024 000h 954870-1 a19991118 20120423144202 @@ -7426,7 +7426,7 @@ - 01764cM2.01200024 000h + 00000cM2.01200024 000h 2725-x a19991118 20120215125738 @@ -7610,7 +7610,7 @@ - 01451cM2.01200024 000h + 00000cM2.01200024 000h 2731-5 a19991118 20110713212927 @@ -7764,7 +7764,7 @@ - 01399cM2.01200024 000h + 00000cM2.01200024 000h 2732-7 a19991118 20110713212929 @@ -7911,7 +7911,7 @@ - 01194cM2.01200024 000h + 00000cM2.01200024 000h 2800-9 a19991118 20110713212945 @@ -8041,7 +8041,7 @@ - 02474cM2.01200024 000h + 00000cM2.01200024 000h 2995-6 a19991118 20120421023046 @@ -8256,7 +8256,7 @@ - 01459cM2.01200024 000h + 00000cM2.01200024 000h 3013-2 a19991118 20110203000843 @@ -8420,7 +8420,7 @@ - 01232cM2.01200024 000h + 00000cM2.01200024 000h 3056-9 a19991118 20120423135924 @@ -8558,7 +8558,7 @@ - 01178cM2.01200024 000h + 00000cM2.01200024 000h 3059-4 a19991118 20110607072259 @@ -8675,7 +8675,7 @@ - 01279cM2.01200024 000h + 00000cM2.01200024 000h 3104-5 a19991118 20110803163429 @@ -8805,7 +8805,7 @@ - 01107cM2.01200024 000h + 00000cM2.01200024 000h 3147-1 a19991118 20100713170309 @@ -8922,7 +8922,7 @@ - 03164cM2.01200024 000h + 00000cM2.01200024 000h 955708-8 a19991118 20120208224225 @@ -9088,7 +9088,7 @@ - 02030cM2.01200024 000h + 00000cM2.01200024 000h 3176-8 a19991118 20100806155743 @@ -9228,7 +9228,7 @@ - 00916cM2.01200024 000h + 00000cM2.01200024 000h 3225-6 a19991118 20120423133317 @@ -9333,7 +9333,7 @@ - 01267cM2.01200024 000h + 00000cM2.01200024 000h 3334-0 a19991118 20100125233730 @@ -9454,7 +9454,7 @@ - 00810cM2.01200024 000h + 00000cM2.01200024 000h 3355-8 a19991118 20091012222737 @@ -9551,7 +9551,7 @@ - 01355cM2.01200024 000h + 00000cM2.01200024 000h 3402-2 a19991118 20120308122851 @@ -9720,7 +9720,7 @@ - 01658cM2.01200024 000h + 00000cM2.01200024 000h 3425-3 a19991118 20100309020313 @@ -9856,7 +9856,7 @@ - 01212cM2.01200024 000h + 00000cM2.01200024 000h 3467-8 a19991118 20090512224254 @@ -9983,7 +9983,7 @@ - 00846cM2.01200024 000h + 00000cM2.01200024 000h 3468-x a19991118 20090713225717 @@ -10080,7 +10080,7 @@ - 01011cM2.01200024 000h + 00000cM2.01200024 000h 3507-5 a19991118 20100713170415 @@ -10204,7 +10204,7 @@ - 00665cM2.01200024 000h + 00000cM2.01200024 000h 3617-1 a19991118 20090210013550 @@ -10283,7 +10283,7 @@ - 00882cM2.01200024 000h + 00000cM2.01200024 000h 4249-3 a19991118 20120327143104 @@ -10385,7 +10385,7 @@ - 00857cM2.01200024 000h + 00000cM2.01200024 000h 957548-0 a19991118 20090804223552 @@ -10488,7 +10488,7 @@ - 01073cM2.01200024 000h + 00000cM2.01200024 000h 4482-9 a19991118 20120208213736 @@ -10622,7 +10622,7 @@ - 00682cM2.01200024 000h + 00000cM2.01200024 000h 4661-9 a19991118 20090824215041 @@ -10713,7 +10713,7 @@ - 01807cM2.01200024 000h + 00000cM2.01200024 000h 4676-0 a19991118 20120208224228 @@ -10938,7 +10938,7 @@ - 00642cM2.01200024 000h + 00000cM2.01200024 000h 4721-1 a19991118 20060819180304 @@ -11017,7 +11017,7 @@ - 01426cM2.01200024 000h + 00000cM2.01200024 000h 958216-2 a19991118 20120415120331 @@ -11129,7 +11129,7 @@ - 00907cM2.01200024 000h + 00000cM2.01200024 000h 5109-3 a19991118 20050728031239 @@ -11229,7 +11229,7 @@ - 00736cM2.01200024 000h + 00000cM2.01200024 000h 5274-7 a19991118 20100713170512 @@ -11317,7 +11317,7 @@ - 01047cM2.01200024 000h + 00000cM2.01200024 000h 5314-4 a19991118 20110203000949 @@ -11420,7 +11420,7 @@ - 01743cM2.01200024 000h + 00000cM2.01200024 000h 5332-6 a19991118 20100302001209 @@ -11570,7 +11570,7 @@ - 01075cM2.01200024 000h + 00000cM2.01200024 000h 5352-1 a19991118 20090310034040 @@ -11673,7 +11673,7 @@ - 00684cM2.01200024 000h + 00000cM2.01200024 000h 5541-4 a19991118 20080310222013 @@ -11761,7 +11761,7 @@ - 00705cM2.01200024 000h + 00000cM2.01200024 000h 959005-5 a19991118 20120419085802 @@ -11855,7 +11855,7 @@ - 01353cM2.01200024 000h + 00000cM2.01200024 000h 6216-9 a19991118 20111123211900 @@ -11976,7 +11976,7 @@ - 01473cM2.01200024 000h + 00000cM2.01200024 000h 6217-0 a19991118 20120208234825 @@ -12121,7 +12121,7 @@ - 00827cM2.01200024 000h + 00000cM2.01200024 000h 6220-0 a19991118 20120413125920 @@ -12224,7 +12224,7 @@ - 00887cM2.01200024 000h + 00000cM2.01200024 000h 6233-9 a19991118 20120208234827 @@ -12333,7 +12333,7 @@ - 00781cM2.01200024 000h + 00000cM2.01200024 000h 959148-5 a19991118 20120423172620 @@ -12425,7 +12425,7 @@ - 01221cM2.01200024 000h + 00000cM2.01200024 000h 6387-3 a19991118 20110713213652 @@ -12574,7 +12574,7 @@ - 01206cM2.01200024 000h + 00000cM2.01200024 000h 6549-3 a19991118 20110203001013 @@ -12705,7 +12705,7 @@ - 01137cM2.01200024 000h + 00000cM2.01200024 000h 6554-7 a19991118 20100317114902 @@ -12835,7 +12835,7 @@ - 01270cM2.01200024 000h + 00000cM2.01200024 000h 6818-4 a19991118 20120423115758 @@ -12983,7 +12983,7 @@ - 01093cM2.01200024 000h + 00000cM2.01200024 000h 6870-6 a19991118 20120419102713 @@ -13127,7 +13127,7 @@ - 01430cM2.01200024 000h + 00000cM2.01200024 000h 7090-7 a19991118 20110304150209 @@ -13274,7 +13274,7 @@ - 02588cM2.01200024 000h + 00000cM2.01200024 000h 7185-7 a19991118 20120111101600 @@ -13535,7 +13535,7 @@ - 01683cM2.01200024 000h + 00000cM2.01200024 000h 7279-5 a19991118 20100309020808 @@ -13714,7 +13714,7 @@ - 01790cM2.01200024 000h + 00000cM2.01200024 000h 7371-4 a19991118 20120208213837 @@ -13920,7 +13920,7 @@ - 02461cM2.01200024 000h + 00000cM2.01200024 000h 7372-6 a19991118 20120423115412 @@ -14201,7 +14201,7 @@ - 00679cM2.01200024 000h + 00000cM2.01200024 000h 7419-6 a19991118 20050529141122 @@ -14286,7 +14286,7 @@ - 01225cM2.01200024 000h + 00000cM2.01200024 000h 7442-1 a19991118 20101014121804 @@ -14383,7 +14383,7 @@ - 01179cM2.01200024 000h + 00000cM2.01200024 000h 7502-4 a19991118 20110414133654 @@ -14564,7 +14564,7 @@ - 00845cM2.01200024 000h + 00000cM2.01200024 000h 7603-x a19991118 20090210013641 @@ -14658,7 +14658,7 @@ - 00981cM2.01200024 000h + 00000cM2.01200024 000h 7939-x a19991118 20120208234853 @@ -14791,7 +14791,7 @@ - 01312cM2.01200024 000h + 00000cM2.01200024 000h 8253-3 a19991118 20120419110543 @@ -14936,7 +14936,7 @@ - 01073cM2.01200024 000h + 00000cM2.01200024 000h 8368-9 a19991118 20120209152925 @@ -15075,7 +15075,7 @@ - 00918cM2.01200024 000h + 00000cM2.01200024 000h 8380-x a19991118 20120412023023 @@ -15190,7 +15190,7 @@ - 00767cM2.01200024 000h + 00000cM2.01200024 000h 961491-6 a19991118 20120415120328 @@ -15290,7 +15290,7 @@ - 01190cM2.01200024 000h + 00000cM2.01200024 000h 961589-1 a19991118 20120423121141 @@ -15417,7 +15417,7 @@ - 00387cM2.01200024 000h + 00000cM2.01200024 000h 8593-5 a19991118 20120423114831 @@ -15485,7 +15485,7 @@ - 00643cM2.01200024 000h + 00000cM2.01200024 000h 8604-6 a19991118 20111208120228 @@ -15579,7 +15579,7 @@ - 00596cM2.01200024 000h + 00000cM2.01200024 000h 961920-3 a19991118 20050526143127 @@ -15661,7 +15661,7 @@ - 01628cM2.01200024 000h + 00000cM2.01200024 000h 9371-3 a19991118 20110714015513 @@ -15839,7 +15839,7 @@ - 00553cM2.01200024 000h + 00000cM2.01200024 000h 963062-4 a19991118 20050526143546 @@ -15921,7 +15921,7 @@ - 00562cM2.01200024 000h + 00000cM2.01200024 000h 963063-6 a19991118 20050526143546 @@ -16006,7 +16006,7 @@ - 01006cM2.01200024 000h + 00000cM2.01200024 000h 963071-5 a19991118 20100302001518 @@ -16133,7 +16133,7 @@ - 00923cM2.01200024 000h + 00000cM2.01200024 000h 963126-4 a19991118 20120420144003 @@ -16245,7 +16245,7 @@ - 00706cM2.01200024 000h + 00000cM2.01200024 000h 963753-9 a19991118 20120423141555 @@ -16327,7 +16327,7 @@ - 00528cM2.01200024 000h + 00000cM2.01200024 000h 963782-5 a19991118 20120423072717 @@ -16403,7 +16403,7 @@ - 00553cM2.01200024 000h + 00000cM2.01200024 000h 964068-x a19991118 20120423140344 @@ -16470,7 +16470,7 @@ - 00574cM2.01200024 000h + 00000cM2.01200024 000h 964069-1 a19991118 20120423135619 @@ -16540,7 +16540,7 @@ - 00403cM2.01200024 000h + 00000cM2.01200024 000h 964691-7 a19991118 20071218091147 @@ -16607,7 +16607,7 @@ - 00882cM2.01200024 000h + 00000cM2.01200024 000h 11085-1 a19991118 20120419223009 @@ -16725,7 +16725,7 @@ - 01449cM2.01200024 000h + 00000cM2.01200024 000h 964760-0 a19991118 20110309125400 @@ -16822,7 +16822,7 @@ - 00896cM2.01200024 000h + 00000cM2.01200024 000h 964761-2 a19991118 20090928223712 @@ -16901,7 +16901,7 @@ - 00619cM2.01200024 000h + 00000cM2.01200024 000h 11725-0 a19991118 20120227143822 @@ -17000,7 +17000,7 @@ - 00647cM2.01200024 000h + 00000cM2.01200024 000h 966045-8 a19991118 20120419110800 @@ -17076,7 +17076,7 @@ - 01378cM2.01200024 000h + 00000cM2.01200024 000h 966630-8 a19991118 20100309021021 @@ -17194,7 +17194,7 @@ - 00461cM2.01200024 000h + 00000cM2.01200024 000h 15701-6 a19991118 20070804031427 @@ -17267,7 +17267,7 @@ - 01098cM2.01200024 000h + 00000cM2.01200024 000h 17134-7 a19991118 20120419170431 @@ -17367,7 +17367,7 @@ - 01041cM2.01200024 000h + 00000cM2.01200024 000h 17815-9 a19991118 20120301153500 @@ -17497,7 +17497,7 @@ - 01010cM2.01200024 000h + 00000cM2.01200024 000h 18048-8 a19991118 20101124211844 @@ -17624,7 +17624,7 @@ - 00527cM2.01200024 000h + 00000cM2.01200024 000h 18366-0 a19991118 20120420104223 @@ -17691,7 +17691,7 @@ - 00454cM2.01200024 000h + 00000cM2.01200024 000h 18407-x a19991118 20090508095757 @@ -17763,7 +17763,7 @@ - 00650cM2.01200024 000h + 00000cM2.01200024 000h 19649-6 a19991118 20080428224006 @@ -17851,7 +17851,7 @@ - 00464cM2.01200024 000h + 00000cM2.01200024 000h 21331-7 a19991118 20080828145145 @@ -17921,7 +17921,7 @@ - 00856cM2.01200024 000h + 00000cM2.01200024 000h 23186-1 a19991118 20120423114215 @@ -18041,7 +18041,7 @@ - 00679cM2.01200024 000h + 00000cM2.01200024 000h 23232-4 a19991118 20120420023024 @@ -18141,7 +18141,7 @@ - 00813cM2.01200024 000h + 00000cM2.01200024 000h 23328-6 a19991118 20120228080610 @@ -18258,7 +18258,7 @@ - 01364cM2.01200024 000h + 00000cM2.01200024 000h 24220-2 a19991118 20120209152931 @@ -18441,7 +18441,7 @@ - 00778cM2.01200024 000h + 00000cM2.01200024 000h 24458-2 a19991118 20120423080148 @@ -18559,7 +18559,7 @@ - 00848cM2.01200024 000h + 00000cM2.01200024 000h 24849-6 a19991118 20120126032138 @@ -18659,7 +18659,7 @@ - 00331cM2.01200024 000h + 00000cM2.01200024 000h 27276-0 a19991118 20090909214341 @@ -18720,7 +18720,7 @@ - 00766cM2.01200024 000h + 00000cM2.01200024 000h 27502-5 a19991118 20120423151332 @@ -18808,7 +18808,7 @@ - 00621cM2.01200024 000h + 00000cM2.01200024 000h 27713-7 a19991118 20120423103021 @@ -18911,7 +18911,7 @@ - 00833cM2.01200024 000h + 00000cM2.01200024 000h 29333-7 a19991118 20120423141907 @@ -19014,7 +19014,7 @@ - 00867cM2.01200024 000h + 00000cM2.01200024 000h 29614-4 a19991118 20120423085427 @@ -19111,7 +19111,7 @@ - 01140cM2.01200024 000h + 00000cM2.01200024 000h 29615-6 a19991118 20120423084142 @@ -19238,7 +19238,7 @@ - 00690cM2.01200024 000h + 00000cM2.01200024 000h 29804-9 a19991118 20120423151316 @@ -19323,7 +19323,7 @@ - 01137cM2.01200024 000h + 00000cM2.01200024 000h 30227-2 a19991118 20120415112230 @@ -19457,7 +19457,7 @@ - 00613cM2.01200024 000h + 00000cM2.01200024 000h 31431-6 a19991118 20100309021146 @@ -19549,7 +19549,7 @@ - 01362cM2.01200024 000h + 00000cM2.01200024 000h 32481-4 a19991118 20120402172129 @@ -19706,7 +19706,7 @@ - 01368cM2.01200024 000h + 00000cM2.01200024 000h 33320-7 a19991118 20090602111036 @@ -19842,7 +19842,7 @@ - 05644cM2.01200024 000h + 00000cM2.01200024 000h 33414-5 a19991118 20120419102006 @@ -20136,7 +20136,7 @@ - 01278cM2.01200024 000h + 00000cM2.01200024 000h 33422-4 a19991118 20120419104244 @@ -20307,7 +20307,7 @@ - 01561cM2.01200024 000h + 00000cM2.01200024 000h 33487-x a19991118 20120326111610 @@ -20468,7 +20468,7 @@ - 00851cM2.01200024 000h + 00000cM2.01200024 000h 40424-x a19991118 20120420023010 @@ -20589,7 +20589,7 @@ - 00578cM2.01200024 000h + 00000cM2.01200024 000h 40677-6 a19991118 20120420120300 @@ -20674,7 +20674,7 @@ - 00559cM2.01200024 000h + 00000cM2.01200024 000h 41192-9 a19991118 20120420090302 @@ -20756,7 +20756,7 @@ - 00595cM2.01200024 000h + 00000cM2.01200024 000h 41345-8 a19991118 20090428001627 @@ -20852,7 +20852,7 @@ - 01244cM2.01200024 000h + 00000cM2.01200024 000h 42506-0 a19991118 20120423134907 @@ -20990,7 +20990,7 @@ - 00566cM2.01200024 000h + 00000cM2.01200024 000h 42603-9 a19991118 20120421030742 @@ -21072,7 +21072,7 @@ - 00484cM2.01200024 000h + 00000cM2.01200024 000h 42791-3 a19991118 20120420142658 @@ -21145,7 +21145,7 @@ - 01039cM2.01200024 000h + 00000cM2.01200024 000h 45015-7 a19991118 20120415114957 @@ -21271,7 +21271,7 @@ - 01092cM2.01200024 000h + 00000cM2.01200024 000h 46482-x a19991118 20110713102105 @@ -21407,7 +21407,7 @@ - 00444cM2.01200024 000h + 00000cM2.01200024 000h 47411-3 a19991118 20120419150419 @@ -21477,7 +21477,7 @@ - 00706cM2.01200024 000h + 00000cM2.01200024 000h 47504-x a19991118 20080421230046 @@ -21574,7 +21574,7 @@ - 00406cM2.01200024 000h + 00000cM2.01200024 000h 47681-x a19991118 20120419150707 @@ -21644,7 +21644,7 @@ - 01270cM2.01200024 000h + 00000cM2.01200024 000h 47794-1 a19991118 20120103145057 @@ -21760,7 +21760,7 @@ - 00598cM2.01200024 000h + 00000cM2.01200024 000h 48109-9 a19991118 20120419152343 @@ -21845,7 +21845,7 @@ - 00468cM2.01200024 000h + 00000cM2.01200024 000h 49495-1 a19991118 20120421180249 @@ -21924,7 +21924,7 @@ - 00945cM2.01200024 000h + 00000cM2.01200024 000h 49502-5 a19991118 20120423161441 @@ -22033,7 +22033,7 @@ - 00556cM2.01200024 000h + 00000cM2.01200024 000h 50047-1 a19991118 20120419154532 @@ -22109,7 +22109,7 @@ - 00499cM2.01200024 000h + 00000cM2.01200024 000h 50707-6 a19991118 20120419160556 @@ -22179,7 +22179,7 @@ - 00472cM2.01200024 000h + 00000cM2.01200024 000h 52141-3 a19991118 20120419152442 @@ -22246,7 +22246,7 @@ - 00525cM2.01200024 000h + 00000cM2.01200024 000h 52329-x a19991118 20120423145928 @@ -22316,7 +22316,7 @@ - 00632cM2.01200024 000h + 00000cM2.01200024 000h 53826-7 a19991118 20100713171016 @@ -22398,7 +22398,7 @@ - 02240cM2.01200024 000h + 00000cM2.01200024 000h 54237-4 a19991118 20120419140730 @@ -22587,7 +22587,7 @@ - 00624cM2.01200024 000h + 00000cM2.01200024 000h 55895-3 a19991118 20110618181859 @@ -22684,7 +22684,7 @@ - 01316cM2.01200024 000h + 00000cM2.01200024 000h 56471-0 a19991118 20100713171032 @@ -22816,7 +22816,7 @@ - 00486cM2.01200024 000h + 00000cM2.01200024 000h 57818-6 a19991118 20120420214204 @@ -22891,7 +22891,7 @@ - 00694cM2.01200024 000h + 00000cM2.01200024 000h 60523-2 a19991118 20120419145943 @@ -22964,7 +22964,7 @@ - 00561cM2.01200024 000h + 00000cM2.01200024 000h 61002-1 a19991118 20070501004034 @@ -23046,7 +23046,7 @@ - 01453cM2.01200024 000h + 00000cM2.01200024 000h 61339-3 a19991118 20120420120149 @@ -23198,7 +23198,7 @@ - 02803cM2.01200024 000h + 00000cM2.01200024 000h 80133-1 a19991118 20110309162535 @@ -23356,7 +23356,7 @@ - 01514cM2.01200024 000h + 00000cM2.01200024 000h 80228-1 a19991118 20110331152429 @@ -23519,7 +23519,7 @@ - 00616cM2.01200024 000h + 00000cM2.01200024 000h 80245-1 a19991118 20120413142604 @@ -23606,7 +23606,7 @@ - 01441cM2.01200024 000h + 00000cM2.01200024 000h 80407-1 a19991118 20120209155834 @@ -23760,7 +23760,7 @@ - 00925cM2.01200024 000h + 00000cM2.01200024 000h 82063-5 a19991118 20120223132224 @@ -23871,7 +23871,7 @@ - 02205cM2.01200024 000h + 00000cM2.01200024 000h 83010-0 a19991118 20120208234946 @@ -24026,7 +24026,7 @@ - 00756cM2.01200024 000h + 00000cM2.01200024 000h 83205-4 a19991118 20100713171212 @@ -24124,7 +24124,7 @@ - 00484cM2.01200024 000h + 00000cM2.01200024 000h 83930-9 a19991118 20120419214037 @@ -24191,7 +24191,7 @@ - 00717cM2.01200024 000h + 00000cM2.01200024 000h 84967-4 a19991118 20120415113723 @@ -24291,7 +24291,7 @@ - 00961cM2.01200024 000h + 00000cM2.01200024 000h 84979-0 a19991118 20050529145118 @@ -24396,7 +24396,7 @@ - 01654cM2.01200024 000h + 00000cM2.01200024 000h 85115-2 a19991118 20120419094707 @@ -24547,7 +24547,7 @@ - 00433cM2.01200024 000h + 00000cM2.01200024 000h 88367-0 a19991118 20120423202512 @@ -24608,7 +24608,7 @@ - 00860cM2.01200024 000h + 00000cM2.01200024 000h 88551-4 a19991118 20111121232832 @@ -24687,7 +24687,7 @@ - 00588cM2.01200024 000h + 00000cM2.01200024 000h 90477-6 a19991118 20110208015216 @@ -24766,7 +24766,7 @@ - 01183cM2.01200024 000h + 00000cM2.01200024 000h 90803-4 a19991118 20120423085233 @@ -24860,7 +24860,7 @@ - 00355cM2.01200024 000h + 00000cM2.01200024 000h 92323-0 a19991118 20050526164909 @@ -24921,7 +24921,7 @@ - 00527cM2.01200024 000h + 00000cM2.01200024 000h 94115-3 a19991118 20120419103835 @@ -24994,7 +24994,7 @@ - 01368cM2.01200024 000h + 00000cM2.01200024 000h 94274-1 a19991118 20120208214110 @@ -25128,7 +25128,7 @@ - 02114cM2.01200024 000h + 00000cM2.01200024 000h 94765-9 a19991118 20100617105725 @@ -25239,7 +25239,7 @@ - 00518cM2.01200024 000h + 00000cM2.01200024 000h 95377-5 a19991118 20100302001913 @@ -25317,7 +25317,7 @@ - 00545cM2.01200024 000h + 00000cM2.01200024 000h 96365-3 a19991118 20110208015215 @@ -25387,7 +25387,7 @@ - 01363cM2.01200024 000h + 00000cM2.01200024 000h 120023-9 a19991118 20120423115725 @@ -25535,7 +25535,7 @@ - 01003cM2.01200024 000h + 00000cM2.01200024 000h 120024-0 a19991118 20120423121333 @@ -25650,7 +25650,7 @@ - 01606cM2.01200024 000h + 00000cM2.01200024 000h 120660-6 a19991118 20100713171358 @@ -25773,7 +25773,7 @@ - 01113cM2.01200024 000h + 00000cM2.01200024 000h 120661-8 a19991118 20111123212100 @@ -25887,7 +25887,7 @@ - 01370cM2.01200024 000h + 00000cM2.01200024 000h 120836-6 a19991118 20120209153026 @@ -26020,7 +26020,7 @@ - 01279cM2.01200024 000h + 00000cM2.01200024 000h 120940-1 a19991118 20110916125920 @@ -26161,7 +26161,7 @@ - 01164cM2.01200024 000h + 00000cM2.01200024 000h 121029-4 a19991118 20110713214427 @@ -26281,7 +26281,7 @@ - 01463cM2.01200024 000h + 00000cM2.01200024 000h 121078-6 a19991118 20120419103938 @@ -26451,7 +26451,7 @@ - 00932cM2.01200024 000h + 00000cM2.01200024 000h 121079-8 a19991118 20120415101941 @@ -26585,7 +26585,7 @@ - 01124cM2.01200024 000h + 00000cM2.01200024 000h 121465-2 a19991118 20120419102417 @@ -26737,7 +26737,7 @@ - 01184cM2.01200024 000h + 00000cM2.01200024 000h 121525-5 a19991118 20100713171453 @@ -26864,7 +26864,7 @@ - 00828cM2.01200024 000h + 00000cM2.01200024 000h 121650-8 a19991118 20110618181913 @@ -26967,7 +26967,7 @@ - 00717cM2.01200024 000h + 00000cM2.01200024 000h 123009-8 a19991118 20100713171508 @@ -27061,7 +27061,7 @@ - 01072cM2.01200024 000h + 00000cM2.01200024 000h 123022-0 a19991118 20120208233700 @@ -27221,7 +27221,7 @@ - 01165cM2.01200024 000h + 00000cM2.01200024 000h 123042-6 a19991118 20120419162733 @@ -27375,7 +27375,7 @@ - 01150cM2.01200024 000h + 00000cM2.01200024 000h 123086-4 a19991118 20120423121103 @@ -27501,7 +27501,7 @@ - 01081cM2.01200024 000h + 00000cM2.01200024 000h 123087-6 a19991118 20120423120922 @@ -27627,7 +27627,7 @@ - 00978cM2.01200024 000h + 00000cM2.01200024 000h 123088-8 a19991118 20120423120423 @@ -27763,7 +27763,7 @@ - 00912cM2.01200024 000h + 00000cM2.01200024 000h 123089-x a19991118 20120423120906 @@ -27883,7 +27883,7 @@ - 01591cM2.01200024 000h + 00000cM2.01200024 000h 123237-x a19991118 20120423121303 @@ -28068,7 +28068,7 @@ - 01361cM2.01200024 000h + 00000cM2.01200024 000h 123402-x a19991118 20111220020846 @@ -28247,7 +28247,7 @@ - 00785cM2.01200024 000h + 00000cM2.01200024 000h 123471-7 a19991118 20090708201750 @@ -28350,7 +28350,7 @@ - 00966cM2.01200024 000h + 00000cM2.01200024 000h 123834-6 a19991118 20120111171647 @@ -28479,7 +28479,7 @@ - 01788cM2.01200024 000h + 00000cM2.01200024 000h 124077-8 a19991118 20110518104423 @@ -28646,7 +28646,7 @@ - 01225cM2.01200024 000h + 00000cM2.01200024 000h 124385-8 a19991118 20120419140512 @@ -28809,7 +28809,7 @@ - 00760cM2.01200024 000h + 00000cM2.01200024 000h 124443-7 a19991118 20100309022050 @@ -28903,7 +28903,7 @@ - 01059cM2.01200024 000h + 00000cM2.01200024 000h 124613-6 a19991118 20120423115526 @@ -29024,7 +29024,7 @@ - 02197cM2.01200024 000h + 00000cM2.01200024 000h 124847-9 a19991118 20120209155925 @@ -29218,7 +29218,7 @@ - 04715cM2.01200024 000h + 00000cM2.01200024 000h 124863-7 a19991118 20120208235120 @@ -29543,7 +29543,7 @@ - 01573cM2.01200024 000h + 00000cM2.01200024 000h 125961-1 a19991118 20120423120408 @@ -29691,7 +29691,7 @@ - 03817cM2.01200024 000h + 00000cM2.01200024 000h 126030-3 a19991118 20120328110636 @@ -29998,7 +29998,7 @@ - 01945cM2.01200024 000h + 00000cM2.01200024 000h 126314-6 a19991118 20110926142246 @@ -30185,7 +30185,7 @@ - 04335cM2.01200024 000h + 00000cM2.01200024 000h 126422-9 a19991118 20120420155412 @@ -30494,7 +30494,7 @@ - 02871cM2.01200024 000h + 00000cM2.01200024 000h 126493-x a19991118 20120419105025 @@ -30707,7 +30707,7 @@ - 00609cM2.01200024 000h + 00000cM2.01200024 000h 127114-3 a19991118 20120411141744 @@ -30813,7 +30813,7 @@ - 00901cM2.01200024 000h + 00000cM2.01200024 000h 127164-7 a19991118 20100104221307 @@ -30911,7 +30911,7 @@ - 00972cM2.01200024 000h + 00000cM2.01200024 000h 127165-9 a19991118 20091207220940 @@ -31020,7 +31020,7 @@ - 01348cM2.01200024 000h + 00000cM2.01200024 000h 127463-6 a19991118 20110321142709 @@ -31156,7 +31156,7 @@ - 01167cM2.01200024 000h + 00000cM2.01200024 000h 127511-2 a19991118 20100309022237 @@ -31277,7 +31277,7 @@ - 00830cM2.01200024 000h + 00000cM2.01200024 000h 127513-6 a19991118 20120402122252 @@ -31385,7 +31385,7 @@ - 00522cM2.01200024 000h + 00000cM2.01200024 000h 127970-1 a19991118 20120423115704 @@ -31464,7 +31464,7 @@ - 00990cM2.01200024 000h + 00000cM2.01200024 000h 128146-x a19991118 20080515135658 @@ -31594,7 +31594,7 @@ - 00597cM2.01200024 000h + 00000cM2.01200024 000h 128208-6 a19991118 20120421023038 @@ -31676,7 +31676,7 @@ - 01063cM2.01200024 000h + 00000cM2.01200024 000h 129139-7 a19991118 20120423114544 @@ -31812,7 +31812,7 @@ - 01328cM2.01200024 000h + 00000cM2.01200024 000h 129712-0 a19991118 20120309141354 @@ -31969,7 +31969,7 @@ - 00580cM2.01200024 000h + 00000cM2.01200024 000h 130145-7 a19991118 20110713215116 @@ -32053,7 +32053,7 @@ - 01784cM2.01200024 000h + 00000cM2.01200024 000h 130163-9 a19991118 20120419162717 @@ -32257,7 +32257,7 @@ - 01338cM2.01200024 000h + 00000cM2.01200024 000h 130312-0 a19991118 20120420023018 @@ -32412,7 +32412,7 @@ - 01045cM2.01200024 000h + 00000cM2.01200024 000h 130317-x a19991118 20120209155937 @@ -32542,7 +32542,7 @@ - 01075cM2.01200024 000h + 00000cM2.01200024 000h 130613-3 a19991118 20120423125820 @@ -32680,7 +32680,7 @@ - 00866cM2.01200024 000h + 00000cM2.01200024 000h 130714-9 a19991118 20120420023023 @@ -32798,7 +32798,7 @@ - 00693cM2.01200024 000h + 00000cM2.01200024 000h 131022-7 a19991118 20120423121437 @@ -32889,7 +32889,7 @@ - 01182cM2.01200024 000h + 00000cM2.01200024 000h 131023-9 a19991118 20120419122219 @@ -33021,7 +33021,7 @@ - 00871cM2.01200024 000h + 00000cM2.01200024 000h 131367-8 a19991118 20120423115627 @@ -33109,7 +33109,7 @@ - 00947cM2.01200024 000h + 00000cM2.01200024 000h 131691-6 a19991118 20120208233712 @@ -33227,7 +33227,7 @@ - 01181cM2.01200024 000h + 00000cM2.01200024 000h 131984-x a19991118 20120423114348 @@ -33360,7 +33360,7 @@ - 00985cM2.01200024 000h + 00000cM2.01200024 000h 132176-6 a19991118 20120423114535 @@ -33482,7 +33482,7 @@ - 01325cM2.01200024 000h + 00000cM2.01200024 000h 132891-8 a19991118 20120207160003 @@ -33653,7 +33653,7 @@ - 00791cM2.01200024 000h + 00000cM2.01200024 000h 133225-9 a19991118 20120419090846 @@ -33749,7 +33749,7 @@ - 00773cM2.01200024 000h + 00000cM2.01200024 000h 133394-x a19991118 20120405152042 @@ -33834,7 +33834,7 @@ - 00720cM2.01200024 000h + 00000cM2.01200024 000h 133476-1 a19991118 20120420023011 @@ -33955,7 +33955,7 @@ - 02031cM2.01200024 000h + 00000cM2.01200024 000h 133798-1 a19991118 20100309022547 @@ -34114,7 +34114,7 @@ - 01201cM2.01200024 000h + 00000cM2.01200024 000h 134179-0 a19991118 20100312102533 @@ -34234,7 +34234,7 @@ - 02263cM2.01200024 000h + 00000cM2.01200024 000h 134853-x a19991118 20120423142632 @@ -34456,7 +34456,7 @@ - 00516cM2.01200024 000h + 00000cM2.01200024 000h 134904-1 a19991118 20110714003157 @@ -34534,7 +34534,7 @@ - 01133cM2.01200024 000h + 00000cM2.01200024 000h 135231-3 a19991118 20120423121132 @@ -34679,7 +34679,7 @@ - 00811cM2.01200024 000h + 00000cM2.01200024 000h 135233-7 a19991118 20120423121448 @@ -34773,7 +34773,7 @@ - 00925cM2.01200024 000h + 00000cM2.01200024 000h 135467-x a19991118 20100118215206 @@ -34885,7 +34885,7 @@ - 01345cM2.01200024 000h + 00000cM2.01200024 000h 135581-8 a19991118 20120208224955 @@ -35020,7 +35020,7 @@ - 00840cM2.01200024 000h + 00000cM2.01200024 000h 135635-5 a19991118 20120415112008 @@ -35140,7 +35140,7 @@ - 01925cM2.01200024 000h + 00000cM2.01200024 000h 135734-7 a19991118 20120208224956 @@ -35291,7 +35291,7 @@ - 01100cM2.01200024 000h + 00000cM2.01200024 000h 136186-7 a19991118 20100317142654 @@ -35405,7 +35405,7 @@ - 00845cM2.01200024 000h + 00000cM2.01200024 000h 136252-5 a19991118 20110203001453 @@ -35499,7 +35499,7 @@ - 02246cM2.01200024 000h + 00000cM2.01200024 000h 136336-0 a19991118 20120208214450 @@ -35630,7 +35630,7 @@ - 01951cM2.01200024 000h + 00000cM2.01200024 000h 138030-8 a19991118 20120420095417 @@ -35835,7 +35835,7 @@ - 01203cM2.01200024 000h + 00000cM2.01200024 000h 138500-8 a19991118 20120419123014 @@ -35974,7 +35974,7 @@ - 01205cM2.01200024 000h + 00000cM2.01200024 000h 140142-7 a19991118 20120420100810 @@ -36098,7 +36098,7 @@ - 01233cM2.01200024 000h + 00000cM2.01200024 000h 141206-1 a19991118 20120420104839 @@ -36236,7 +36236,7 @@ - 00742cM2.01200024 000h + 00000cM2.01200024 000h 141845-2 a19991118 20120420102912 @@ -36347,7 +36347,7 @@ - 00780cM2.01200024 000h + 00000cM2.01200024 000h 142924-3 a19991118 20120113153500 @@ -36447,7 +36447,7 @@ - 00917cM2.01200024 000h + 00000cM2.01200024 000h 144455-4 a19991118 20050526175234 @@ -36529,7 +36529,7 @@ - 00723cM2.01200024 000h + 00000cM2.01200024 000h 146105-9 a19991118 20120420214218 @@ -36617,7 +36617,7 @@ - 01518cM2.01200024 000h + 00000cM2.01200024 000h 146294-5 a19991118 20120423141430 @@ -36762,7 +36762,7 @@ - 01042cM2.01200024 000h + 00000cM2.01200024 000h 146401-2 a19991118 20120423114243 @@ -36865,7 +36865,7 @@ - 00835cM2.01200024 000h + 00000cM2.01200024 000h 146886-8 a19991118 20120423114335 @@ -36968,7 +36968,7 @@ - 00627cM2.01200024 000h + 00000cM2.01200024 000h 147302-5 a19991118 20050728032639 @@ -37047,7 +37047,7 @@ - 00794cM2.01200024 000h + 00000cM2.01200024 000h 148659-7 a19991118 20120419162655 @@ -37150,7 +37150,7 @@ - 00637cM2.01200024 000h + 00000cM2.01200024 000h 150789-8 a19991118 20050526180715 @@ -37235,7 +37235,7 @@ - 00594cM2.01200024 000h + 00000cM2.01200024 000h 150834-9 a19991118 20050526180723 @@ -37323,7 +37323,7 @@ - 00518cM2.01200024 000h + 00000cM2.01200024 000h 153671-0 a19991118 20120227122652 @@ -37399,7 +37399,7 @@ - 00506cM2.01200024 000h + 00000cM2.01200024 000h 154108-0 a19991118 20120420214159 @@ -37478,7 +37478,7 @@ - 00423cM2.01200024 000h + 00000cM2.01200024 000h 155115-2 a19991118 20120420214208 @@ -37545,7 +37545,7 @@ - 00753cM2.01200024 000h + 00000cM2.01200024 000h 155365-3 a19991118 20120423141705 @@ -37632,7 +37632,7 @@ - 00838cM2.01200024 000h + 00000cM2.01200024 000h 155490-6 a19991118 20120419130147 @@ -37751,7 +37751,7 @@ - 01292cM2.01200024 000h + 00000cM2.01200024 000h 160051-5 a19991118 20120423115655 @@ -37909,7 +37909,7 @@ - 00546cM2.01200024 000h + 00000cM2.01200024 000h 161176-8 a19991118 20090630014412 @@ -37982,7 +37982,7 @@ - 02055cM2.01200024 000h + 00000cM2.01200024 000h 161388-1 a19991118 20111102104457 @@ -38201,7 +38201,7 @@ - 02462cM2.01200024 000h + 00000cM2.01200024 000h 161738-2 a19991118 20111220023508 @@ -38381,7 +38381,7 @@ - 02182cM2.01200024 000h + 00000cM2.01200024 000h 162162-2 a19991118 20120423121345 @@ -38502,7 +38502,7 @@ - 00631cM2.01200024 000h + 00000cM2.01200024 000h 162825-2 a19991118 20120420120331 @@ -38589,7 +38589,7 @@ - 00611cM2.01200024 000h + 00000cM2.01200024 000h 162903-7 a19991118 20050526182838 @@ -38668,7 +38668,7 @@ - 00774cM2.01200024 000h + 00000cM2.01200024 000h 163393-4 a19991118 20120423131329 @@ -38759,7 +38759,7 @@ - 00645cM2.01200024 000h + 00000cM2.01200024 000h 164910-3 a19991118 20110713215527 @@ -38846,7 +38846,7 @@ - 01017cM2.01200024 000h + 00000cM2.01200024 000h 165237-0 a19991118 20120419140330 @@ -38956,7 +38956,7 @@ - 01101cM2.01200024 000h + 00000cM2.01200024 000h 165547-4 a19991118 20120423114319 @@ -39097,7 +39097,7 @@ - 01941cM2.01200024 000h + 00000cM2.01200024 000h 165806-2 a19991118 20120208235227 @@ -39288,7 +39288,7 @@ - 00489cM2.01200024 000h + 00000cM2.01200024 000h 180184-3 a19991118 20050529162526 @@ -39361,7 +39361,7 @@ - 01109cM2.01200024 000h + 00000cM2.01200024 000h 180720-1 a19991118 20090512224529 @@ -39494,7 +39494,7 @@ - 01017cM2.01200024 000h + 00000cM2.01200024 000h 184341-2 a19991118 20111123212604 @@ -39603,7 +39603,7 @@ - 00404cM2.01200024 000h + 00000cM2.01200024 000h 184452-0 a19991118 20120420081954 @@ -39661,7 +39661,7 @@ - 01056cM2.01200024 000h + 00000cM2.01200024 000h 184617-6 a19991118 20110907114426 @@ -39787,7 +39787,7 @@ - 00706cM2.01200024 000h + 00000cM2.01200024 000h 185205-x a19991118 20100811114638 @@ -39887,7 +39887,7 @@ - 00576cM2.01200024 000h + 00000cM2.01200024 000h 185326-0 a19991118 20100920222330 @@ -39969,7 +39969,7 @@ - 01948cM2.01200024 000h + 00000cM2.01200024 000h 185477-x a19991118 20111123212620 @@ -40135,7 +40135,7 @@ - 00646cM2.01200024 000h + 00000cM2.01200024 000h 186397-6 a19991118 20120423163721 @@ -40226,7 +40226,7 @@ - 01898cM2.01200024 000h + 00000cM2.01200024 000h 187730-6 a19991118 20120420120721 @@ -40416,7 +40416,7 @@ - 00910cM2.01200024 000h + 00000cM2.01200024 000h 188331-8 a19991118 20100309023431 @@ -40535,7 +40535,7 @@ - 01208cM2.01200024 000h + 00000cM2.01200024 000h 188644-7 a19991118 20120423142539 @@ -40660,7 +40660,7 @@ - 01167cM2.01200024 000h + 00000cM2.01200024 000h 189309-9 a19991118 20111123220125 @@ -40790,7 +40790,7 @@ - 01648cM2.01200024 000h + 00000cM2.01200024 000h 189333-6 a19991118 20120419104228 @@ -40972,7 +40972,7 @@ - 00940cM2.01200024 000h + 00000cM2.01200024 000h 189377-4 a19991118 20120423111529 @@ -41093,7 +41093,7 @@ - 00876cM2.01200024 000h + 00000cM2.01200024 000h 189398-1 a19991118 20120209155958 @@ -41202,7 +41202,7 @@ - 00972cM2.01200024 000h + 00000cM2.01200024 000h 189610-6 a19991118 20120420104721 @@ -41339,7 +41339,7 @@ - 00593cM2.01200024 000h + 00000cM2.01200024 000h 189661-1 a19991118 20100113141529 @@ -41421,7 +41421,7 @@ - 01443cM2.01200024 000h + 00000cM2.01200024 000h 189755-x a19991118 20110412172819 @@ -41587,7 +41587,7 @@ - 01834cM2.01200024 000h + 00000cM2.01200024 000h 189935-1 a19991118 20101001023036 @@ -41749,7 +41749,7 @@ - 02303cM2.01200024 000h + 00000cM2.01200024 000h 190038-9 a19991118 20111006102138 @@ -41944,7 +41944,7 @@ - 01008cM2.01200024 000h + 00000cM2.01200024 000h 190381-0 a19991118 20100713172410 @@ -42041,7 +42041,7 @@ - 00560cM2.01200024 000h + 00000cM2.01200024 000h 191972-6 a19991118 20110824093332 @@ -42126,7 +42126,7 @@ - 01350cM2.01200024 000h + 00000cM2.01200024 000h 192414-x a19991118 20120423121206 @@ -42238,7 +42238,7 @@ - 00418cM2.01200024 000h + 00000cM2.01200024 000h 193030-8 a19991118 20120415112829 @@ -42302,7 +42302,7 @@ - 01099cM2.01200024 000h + 00000cM2.01200024 000h 193432-6 a19991118 20120423114634 @@ -42414,7 +42414,7 @@ - 01937cM2.01200024 000h + 00000cM2.01200024 000h 194155-0 a19991118 20120423114623 @@ -42634,7 +42634,7 @@ - 01357cM2.01200024 000h + 00000cM2.01200024 000h 194292-x a19991118 20120423114521 @@ -42795,7 +42795,7 @@ - 00848cM2.01200024 000h + 00000cM2.01200024 000h 195674-7 a19991118 20110428161554 @@ -42898,7 +42898,7 @@ - 00400cM2.01200024 000h + 00000cM2.01200024 000h 195678-4 a19991118 20120420123342 @@ -42965,7 +42965,7 @@ - 00750cM2.01200024 000h + 00000cM2.01200024 000h 196767-8 a19991118 20111116094216 @@ -43074,7 +43074,7 @@ - 00633cM2.01200024 000h + 00000cM2.01200024 000h 197041-0 a19991118 20100309023805 @@ -43150,7 +43150,7 @@ - 00827cM2.01200024 000h + 00000cM2.01200024 000h 197185-2 a19991118 20050527105234 @@ -43253,7 +43253,7 @@ - 00739cM2.01200024 000h + 00000cM2.01200024 000h 197498-1 a19991118 20120203143440 @@ -43340,7 +43340,7 @@ - 01575cM2.01200024 000h + 00000cM2.01200024 000h 198957-1 a19991118 20100830123048 @@ -43473,7 +43473,7 @@ - 01177cM2.01200024 000h + 00000cM2.01200024 000h 199508-x a19991118 20120423114314 @@ -43592,7 +43592,7 @@ - 00781cM2.01200024 000h + 00000cM2.01200024 000h 199608-3 a19991118 20100309023822 @@ -43704,7 +43704,7 @@ - 02008cM2.01200024 000h + 00000cM2.01200024 000h 200015-5 a19991118 20120215135901 @@ -43910,7 +43910,7 @@ - 01167cM2.01200024 000h + 00000cM2.01200024 000h 200078-7 a19991118 20111010110949 @@ -44046,7 +44046,7 @@ - 01187cM2.01200024 000h + 00000cM2.01200024 000h 200145-7 a19991118 20120208235337 @@ -44188,7 +44188,7 @@ - 03579cM2.01200024 000h + 00000cM2.01200024 000h 200146-9 a19991118 20120419093030 @@ -44459,7 +44459,7 @@ - 01312cM2.01200024 000h + 00000cM2.01200024 000h 200209-7 a19991118 20110810130343 @@ -44601,7 +44601,7 @@ - 00764cM2.01200024 000h + 00000cM2.01200024 000h 200246-2 a19991118 20120420121736 @@ -44722,7 +44722,7 @@ - 00782cM2.01200024 000h + 00000cM2.01200024 000h 200292-9 a19991118 20120208233754 @@ -44823,7 +44823,7 @@ - 01263cM2.01200024 000h + 00000cM2.01200024 000h 200498-7 a19991118 20110718225551 @@ -44990,7 +44990,7 @@ - 00472cM2.01200024 000h + 00000cM2.01200024 000h 200501-3 a19991118 20110713220252 @@ -45065,7 +45065,7 @@ - 01395cM2.01200024 000h + 00000cM2.01200024 000h 200665-0 a19991119 20110714044915 @@ -45214,7 +45214,7 @@ - 01364cM2.01200024 000h + 00000cM2.01200024 000h 200669-8 a19991119 20110727093540 @@ -45363,7 +45363,7 @@ - 03428cM2.01200024 000h + 00000cM2.01200024 000h 200772-1 a19991119 20120423114618 @@ -45626,7 +45626,7 @@ - 02950cM2.01200024 000h + 00000cM2.01200024 000h 200935-3 a19991119 20120209160758 @@ -45870,7 +45870,7 @@ - 01052cM2.01200024 000h + 00000cM2.01200024 000h 201027-6 a19991119 20110714044928 @@ -45985,7 +45985,7 @@ - 00425cM2.01200024 000h + 00000cM2.01200024 000h 201173-6 a19991119 20070804033850 @@ -46055,7 +46055,7 @@ - 00539cM2.01200024 000h + 00000cM2.01200024 000h 201376-9 a19991119 20100309024556 @@ -46134,7 +46134,7 @@ - 00823cM2.01200024 000h + 00000cM2.01200024 000h 201401-4 a19991119 20100309024602 @@ -46238,7 +46238,7 @@ - 01192cM2.01200024 000h + 00000cM2.01200024 000h 201491-9 a19991119 20110713220724 @@ -46343,7 +46343,7 @@ - 00980cM2.01200024 000h + 00000cM2.01200024 000h 201527-4 a19991119 20090113110818 @@ -46433,7 +46433,7 @@ - 01395cM2.01200024 000h + 00000cM2.01200024 000h 201886-x a19991119 20091104153024 @@ -46583,7 +46583,7 @@ - 01293cM2.01200024 000h + 00000cM2.01200024 000h 202082-8 a19991119 20110329124429 @@ -46723,7 +46723,7 @@ - 01050cM2.01200024 000h + 00000cM2.01200024 000h 202164-x a19991119 20100920112730 @@ -46856,7 +46856,7 @@ - 00722cM2.01200024 000h + 00000cM2.01200024 000h 202207-2 a19991119 20111123212907 @@ -46944,7 +46944,7 @@ - 00691cM2.01200024 000h + 00000cM2.01200024 000h 202463-9 a19991119 20120308110834 @@ -47044,7 +47044,7 @@ - 01407cM2.01200024 000h + 00000cM2.01200024 000h 202579-6 a19991119 20120322132825 @@ -47247,7 +47247,7 @@ - 01817cM2.01200024 000h + 00000cM2.01200024 000h 202676-4 a19991119 20120208215053 @@ -47429,7 +47429,7 @@ - 00880cM2.01200024 000h + 00000cM2.01200024 000h 202736-7 a19991119 20120208225227 @@ -47543,7 +47543,7 @@ - 00550cM2.01200024 000h + 00000cM2.01200024 000h 202845-1 a19991119 20100309024921 @@ -47619,7 +47619,7 @@ - 01097cM2.01200024 000h + 00000cM2.01200024 000h 202869-4 a19991119 20110518135502 @@ -47749,7 +47749,7 @@ - 01667cM2.01200024 000h + 00000cM2.01200024 000h 202911-x a19991119 20110713221138 @@ -47888,7 +47888,7 @@ - 05043cM2.01200024 000h + 00000cM2.01200024 000h 203043-3 a19991119 20120208215136 @@ -48239,7 +48239,7 @@ - 05017cM2.01200024 000h + 00000cM2.01200024 000h 203207-7 a19991119 20111123212942 @@ -48476,7 +48476,7 @@ - 01009cM2.01200024 000h + 00000cM2.01200024 000h 203344-6 a19991119 20100104221344 @@ -48591,7 +48591,7 @@ - 01530cM2.01200024 000h + 00000cM2.01200024 000h 203349-5 a19991119 20110713221319 @@ -48731,7 +48731,7 @@ - 01266cM2.01200024 000h + 00000cM2.01200024 000h 203489-x a19991119 20120421023055 @@ -48879,7 +48879,7 @@ - 01676cM2.01200024 000h + 00000cM2.01200024 000h 204144-3 a19991119 20120208235517 @@ -49054,7 +49054,7 @@ - 02381cM2.01200024 000h + 00000cM2.01200024 000h 204184-4 a19991119 20120313153306 @@ -49256,7 +49256,7 @@ - 00985cM2.01200024 000h + 00000cM2.01200024 000h 204277-0 a19991119 20120308110600 @@ -49393,7 +49393,7 @@ - 01419cM2.01200024 000h + 00000cM2.01200024 000h 204353-1 a19991119 20100713173157 @@ -49519,7 +49519,7 @@ - 00598cM2.01200024 000h + 00000cM2.01200024 000h 204354-3 a19991119 20100302004256 @@ -49595,7 +49595,7 @@ - 01952cM2.01200024 000h + 00000cM2.01200024 000h 204451-1 a19991119 20110321162107 @@ -49780,7 +49780,7 @@ - 03014cM2.01200024 000h + 00000cM2.01200024 000h 204679-9 a19991119 20120209153434 @@ -50022,7 +50022,7 @@ - 01629cM2.01200024 000h + 00000cM2.01200024 000h 204728-7 a19991119 20110805100505 @@ -50212,7 +50212,7 @@ - 01543cM2.01200024 000h + 00000cM2.01200024 000h 205324-x a19991119 20120309151622 @@ -50336,7 +50336,7 @@ - 01199cM2.01200024 000h + 00000cM2.01200024 000h 205555-7 a19991119 20120415112223 @@ -50452,7 +50452,7 @@ - 02049cM2.01200024 000h + 00000cM2.01200024 000h 205668-9 a19991119 20120411154741 @@ -50624,7 +50624,7 @@ - 01744cM2.01200024 000h + 00000cM2.01200024 000h 205873-x a19991119 20120423105802 @@ -50809,7 +50809,7 @@ - 00772cM2.01200024 000h + 00000cM2.01200024 000h 206157-0 a19991119 20120423131337 @@ -50897,7 +50897,7 @@ - 01240cM2.01200024 000h + 00000cM2.01200024 000h 206169-7 a19991119 20120208225317 @@ -51024,7 +51024,7 @@ - 01544cM2.01200024 000h + 00000cM2.01200024 000h 206170-3 a19991119 20120208225319 @@ -51163,7 +51163,7 @@ - 00555cM2.01200024 000h + 00000cM2.01200024 000h 206324-4 a19991119 20120419103517 @@ -51260,7 +51260,7 @@ - 01675cM2.01200024 000h + 00000cM2.01200024 000h 206513-7 a19991119 20120209160117 @@ -51380,7 +51380,7 @@ - 00924cM2.01200024 000h + 00000cM2.01200024 000h 206601-4 a19991119 20120208215344 @@ -51507,7 +51507,7 @@ - 00834cM2.01200024 000h + 00000cM2.01200024 000h 206839-4 a19991119 20111125164043 @@ -51627,7 +51627,7 @@ - 00833cM2.01200024 000h + 00000cM2.01200024 000h 206842-4 a19991119 20091028212704 @@ -51727,7 +51727,7 @@ - 00978cM2.01200024 000h + 00000cM2.01200024 000h 206913-1 a19991119 20120420100449 @@ -51832,7 +51832,7 @@ - 00992cM2.01200024 000h + 00000cM2.01200024 000h 206950-7 a19991119 20110708121815 @@ -51929,7 +51929,7 @@ - 00555cM2.01200024 000h + 00000cM2.01200024 000h 207159-9 a19991119 20120423140304 @@ -52011,7 +52011,7 @@ - 00723cM2.01200024 000h + 00000cM2.01200024 000h 207162-9 a19991119 20110714050428 @@ -52099,7 +52099,7 @@ - 01672cM2.01200024 000h + 00000cM2.01200024 000h 207248-8 a19991119 20110708121824 @@ -52236,7 +52236,7 @@ - 01091cM2.01200024 000h + 00000cM2.01200024 000h 207338-9 a19991119 20120207163204 @@ -52356,7 +52356,7 @@ - 00613cM2.01200024 000h + 00000cM2.01200024 000h 207438-2 a19991119 20110713222307 @@ -52446,7 +52446,7 @@ - 01482cM2.01200024 000h + 00000cM2.01200024 000h 207463-1 a19991119 20120423170120 @@ -52614,7 +52614,7 @@ - 01430cM2.01200024 000h + 00000cM2.01200024 000h 207524-6 a19991119 20100713173516 @@ -52744,7 +52744,7 @@ - 01395cM2.01200024 000h + 00000cM2.01200024 000h 207627-5 a19991119 20120206144327 @@ -52862,7 +52862,7 @@ - 00781cM2.01200024 000h + 00000cM2.01200024 000h 207702-4 a19991119 20100309025956 @@ -52968,7 +52968,7 @@ - 00876cM2.01200024 000h + 00000cM2.01200024 000h 207801-6 a19991119 20120423152522 @@ -53079,7 +53079,7 @@ - 00940cM2.01200024 000h + 00000cM2.01200024 000h 207803-x a19991119 20090505024217 @@ -53179,7 +53179,7 @@ - 01209cM2.01200024 000h + 00000cM2.01200024 000h 207851-x a19991119 20110311084123 @@ -53312,7 +53312,7 @@ - 00977cM2.01200024 000h + 00000cM2.01200024 000h 207930-6 a19991119 20100713173547 @@ -53410,7 +53410,7 @@ - 01095cM2.01200024 000h + 00000cM2.01200024 000h 207941-0 a19991119 20120209153456 @@ -53524,7 +53524,7 @@ - 01095cM2.01200024 000h + 00000cM2.01200024 000h 207993-8 a19991119 20120423113252 @@ -53630,7 +53630,7 @@ - 01694cM2.01200024 000h + 00000cM2.01200024 000h 208052-7 a19991119 20100302004854 @@ -53813,7 +53813,7 @@ - 00729cM2.01200024 000h + 00000cM2.01200024 000h 208295-0 a19991119 20100309030126 @@ -53895,7 +53895,7 @@ - 01166cM2.01200024 000h + 00000cM2.01200024 000h 208458-2 a19991119 20110708121829 @@ -54016,7 +54016,7 @@ - 01069cM2.01200024 000h + 00000cM2.01200024 000h 208740-6 a19991119 20120423093305 @@ -54122,7 +54122,7 @@ - 01156cM2.01200024 000h + 00000cM2.01200024 000h 208742-x a19991119 20120423105748 @@ -54223,7 +54223,7 @@ - 00498cM2.01200024 000h + 00000cM2.01200024 000h 208834-4 a19991119 20100511110021 @@ -54299,7 +54299,7 @@ - 01351cM2.01200024 000h + 00000cM2.01200024 000h 208871-x a19991119 20120208235633 @@ -54457,7 +54457,7 @@ - 00959cM2.01200024 000h + 00000cM2.01200024 000h 208900-2 a19991119 20120423131350 @@ -54590,7 +54590,7 @@ - 01936cM2.01200024 000h + 00000cM2.01200024 000h 208944-0 a19991119 20110407120429 @@ -54790,7 +54790,7 @@ - 00778cM2.01200024 000h + 00000cM2.01200024 000h 209206-2 a19991119 20100713173734 @@ -54881,7 +54881,7 @@ - 00983cM2.01200024 000h + 00000cM2.01200024 000h 209387-x a19991119 20090210014522 @@ -54998,7 +54998,7 @@ - 00879cM2.01200024 000h + 00000cM2.01200024 000h 209646-8 a19991119 20050527111324 @@ -55070,7 +55070,7 @@ - 01415cM2.01200024 000h + 00000cM2.01200024 000h 209759-x a19991119 20120423115618 @@ -55221,7 +55221,7 @@ - 00959cM2.01200024 000h + 00000cM2.01200024 000h 209847-7 a19991119 20120420102857 @@ -55309,7 +55309,7 @@ - 01016cM2.01200024 000h + 00000cM2.01200024 000h 209887-8 a19991119 20100309030445 @@ -55420,7 +55420,7 @@ - 00757cM2.01200024 000h + 00000cM2.01200024 000h 210086-1 a19991119 20090602115000 @@ -55511,7 +55511,7 @@ - 00720cM2.01200024 000h + 00000cM2.01200024 000h 210546-9 a19991119 20110713222800 @@ -55597,7 +55597,7 @@ - 00714cM2.01200024 000h + 00000cM2.01200024 000h 210547-0 a19991119 20110713222801 @@ -55683,7 +55683,7 @@ - 03877cM2.01200024 000h + 00000cM2.01200024 000h 210821-5 a19991119 20120208235652 @@ -55948,7 +55948,7 @@ - 01067cM2.01200024 000h + 00000cM2.01200024 000h 210947-5 a19991119 20100310125717 @@ -56060,7 +56060,7 @@ - 01902cM2.01200024 000h + 00000cM2.01200024 000h 211003-9 a19991119 20110526163507 @@ -56212,7 +56212,7 @@ - 01409cM2.01200024 000h + 00000cM2.01200024 000h 211007-6 a19991119 20110330165223 @@ -56341,7 +56341,7 @@ - 01507cM2.01200024 000h + 00000cM2.01200024 000h 211248-6 a19991119 20120420102749 @@ -56489,7 +56489,7 @@ - 01005cM2.01200024 000h + 00000cM2.01200024 000h 211642-x a19991119 20120423121150 @@ -56574,7 +56574,7 @@ - 00532cM2.01200024 000h + 00000cM2.01200024 000h 211813-0 a19991119 20110728143303 @@ -56653,7 +56653,7 @@ - 01167cM2.01200024 000h + 00000cM2.01200024 000h 211833-6 a19991119 20110601212559 @@ -56791,7 +56791,7 @@ - 01767cM2.01200024 000h + 00000cM2.01200024 000h 211935-3 a19991119 20120209153516 @@ -56973,7 +56973,7 @@ - 02057cM2.01200024 000h + 00000cM2.01200024 000h 211963-8 a19991119 20120208233944 @@ -57166,7 +57166,7 @@ - 01460cM2.01200024 000h + 00000cM2.01200024 000h 212107-4 a19991119 20120209160141 @@ -57287,7 +57287,7 @@ - 02443cM2.01200024 000h + 00000cM2.01200024 000h 212173-6 a19991119 20120208235707 @@ -57461,7 +57461,7 @@ - 01230cM2.01200024 000h + 00000cM2.01200024 000h 212222-4 a19991119 20110714045244 @@ -57608,7 +57608,7 @@ - 00694cM2.01200024 000h + 00000cM2.01200024 000h 212334-4 a19991119 20080605214228 @@ -57691,7 +57691,7 @@ - 00590cM2.01200024 000h + 00000cM2.01200024 000h 212812-3 a19991119 20120415120302 @@ -57758,7 +57758,7 @@ - 00599cM2.01200024 000h + 00000cM2.01200024 000h 212817-2 a19991119 20050527111814 @@ -57834,7 +57834,7 @@ - 01587cM2.01200024 000h + 00000cM2.01200024 000h 212946-2 a19991119 20120208233955 @@ -57977,7 +57977,7 @@ - 01348cM2.01200024 000h + 00000cM2.01200024 000h 212969-3 a19991119 20120208233955 @@ -58122,7 +58122,7 @@ - 01958cM2.01200024 000h + 00000cM2.01200024 000h 213184-5 a19991119 20110713223230 @@ -58276,7 +58276,7 @@ - 01576cM2.01200024 000h + 00000cM2.01200024 000h 213186-9 a19991119 20110713223235 @@ -58430,7 +58430,7 @@ - 01469cM2.01200024 000h + 00000cM2.01200024 000h 213189-4 a19991119 20110713223236 @@ -58574,7 +58574,7 @@ - 00811cM2.01200024 000h + 00000cM2.01200024 000h 213285-0 a19991119 20110607080731 @@ -58674,7 +58674,7 @@ - 01002cM2.01200024 000h + 00000cM2.01200024 000h 213411-1 a19991119 20090506201953 @@ -58777,7 +58777,7 @@ - 01482cM2.01200024 000h + 00000cM2.01200024 000h 213670-3 a19991119 20110708121919 @@ -58907,7 +58907,7 @@ - 01949cM2.01200024 000h + 00000cM2.01200024 000h 214018-4 a19991119 20110510002346 @@ -59103,7 +59103,7 @@ - 00922cM2.01200024 000h + 00000cM2.01200024 000h 214150-4 a19991119 20110429125456 @@ -59205,7 +59205,7 @@ - 00873cM2.01200024 000h + 00000cM2.01200024 000h 214183-8 a19991119 20120208215646 @@ -59331,7 +59331,7 @@ - 00889cM2.01200024 000h + 00000cM2.01200024 000h 214399-9 a19991119 20120423121248 @@ -59431,7 +59431,7 @@ - 00834cM2.01200024 000h + 00000cM2.01200024 000h 214581-9 a19991119 20120315083159 @@ -59516,7 +59516,7 @@ - 02167cM2.01200024 000h + 00000cM2.01200024 000h 214593-5 a19991119 20120208235723 @@ -59723,7 +59723,7 @@ - 00895cM2.01200024 000h + 00000cM2.01200024 000h 214910-2 a19991119 20120423180929 @@ -59808,7 +59808,7 @@ - 00810cM2.01200024 000h + 00000cM2.01200024 000h 215034-7 a19991119 20100302005633 @@ -59899,7 +59899,7 @@ - 01102cM2.01200024 000h + 00000cM2.01200024 000h 215113-3 a19991119 20100127213439 @@ -59996,7 +59996,7 @@ - 00639cM2.01200024 000h + 00000cM2.01200024 000h 215118-2 a19991119 20100302005637 @@ -60084,7 +60084,7 @@ - 00495cM2.01200024 000h + 00000cM2.01200024 000h 215119-4 a19991119 20100302005638 @@ -60163,7 +60163,7 @@ - 00911cM2.01200024 000h + 00000cM2.01200024 000h 215319-1 a19991119 20111123213505 @@ -60275,7 +60275,7 @@ - 01441cM2.01200024 000h + 00000cM2.01200024 000h 215553-9 a19991119 20110618182404 @@ -60410,7 +60410,7 @@ - 00881cM2.01200024 000h + 00000cM2.01200024 000h 215603-9 a19991119 20110203002322 @@ -60520,7 +60520,7 @@ - 00751cM2.01200024 000h + 00000cM2.01200024 000h 215641-6 a19991119 20120423120452 @@ -60602,7 +60602,7 @@ - 01865cM2.01200024 000h + 00000cM2.01200024 000h 215732-9 a19991119 20120423122204 @@ -60756,7 +60756,7 @@ - 00653cM2.01200024 000h + 00000cM2.01200024 000h 216262-3 a19991119 20090721011146 @@ -60832,7 +60832,7 @@ - 01301cM2.01200024 000h + 00000cM2.01200024 000h 216333-0 a19991119 20120315134502 @@ -60956,7 +60956,7 @@ - 02463cM2.01200024 000h + 00000cM2.01200024 000h 216639-2 a19991119 20120208234032 @@ -61157,7 +61157,7 @@ - 02533cM2.01200024 000h + 00000cM2.01200024 000h 216640-9 a19991119 20111213123328 @@ -61365,7 +61365,7 @@ - 02079cM2.01200024 000h + 00000cM2.01200024 000h 216762-1 a19991119 20110621104048 @@ -61519,7 +61519,7 @@ - 01277cM2.01200024 000h + 00000cM2.01200024 000h 216889-3 a19991119 20120208215810 @@ -61619,7 +61619,7 @@ - 00697cM2.01200024 000h + 00000cM2.01200024 000h 216915-0 a19991119 20100309031732 @@ -61716,7 +61716,7 @@ - 01108cM2.01200024 000h + 00000cM2.01200024 000h 217325-6 a19991119 20120423121323 @@ -61843,7 +61843,7 @@ - 01019cM2.01200024 000h + 00000cM2.01200024 000h 217357-8 a19991119 20070804040647 @@ -61945,7 +61945,7 @@ - 00539cM2.01200024 000h + 00000cM2.01200024 000h 217358-x a19991119 20120403113650 @@ -62021,7 +62021,7 @@ - 00912cM2.01200024 000h + 00000cM2.01200024 000h 217419-4 a19991119 20120209153620 @@ -62136,7 +62136,7 @@ - 01094cM2.01200024 000h + 00000cM2.01200024 000h 217670-1 a19991119 20120420134301 @@ -62254,7 +62254,7 @@ - 00826cM2.01200024 000h + 00000cM2.01200024 000h 217676-2 a19991119 20100713174402 @@ -62351,7 +62351,7 @@ - 00678cM2.01200024 000h + 00000cM2.01200024 000h 217734-1 a19991119 20100309031911 @@ -62433,7 +62433,7 @@ - 01227cM2.01200024 000h + 00000cM2.01200024 000h 217744-4 a19991119 20110324142852 @@ -62569,7 +62569,7 @@ - 01012cM2.01200024 000h + 00000cM2.01200024 000h 217780-8 a19991119 20120322110428 @@ -62662,7 +62662,7 @@ - 01257cM2.01200024 000h + 00000cM2.01200024 000h 217808-4 a19991119 20120421030740 @@ -62831,7 +62831,7 @@ - 00931cM2.01200024 000h + 00000cM2.01200024 000h 217827-8 a19991119 20120420082639 @@ -62969,7 +62969,7 @@ - 00934cM2.01200024 000h + 00000cM2.01200024 000h 217859-x a19991119 20120423182258 @@ -63063,7 +63063,7 @@ - 00560cM2.01200024 000h + 00000cM2.01200024 000h 218048-0 a19991119 20070804040908 @@ -63142,7 +63142,7 @@ - 00817cM2.01200024 000h + 00000cM2.01200024 000h 218306-7 a19991119 20110203002411 @@ -63248,7 +63248,7 @@ - 01371cM2.01200024 000h + 00000cM2.01200024 000h 218518-0 a19991119 20120419133448 @@ -63400,7 +63400,7 @@ - 00702cM2.01200024 000h + 00000cM2.01200024 000h 218938-0 a19991119 20120415120314 @@ -63482,7 +63482,7 @@ - 01083cM2.01200024 000h + 00000cM2.01200024 000h 219089-8 a19991119 20110714020518 @@ -63599,7 +63599,7 @@ - 01103cM2.01200024 000h + 00000cM2.01200024 000h 219215-9 a19991119 20120423121424 @@ -63715,7 +63715,7 @@ - 02898cM2.01200024 000h + 00000cM2.01200024 000h 219231-7 a19991119 20120423085911 @@ -63903,7 +63903,7 @@ - 01697cM2.01200024 000h + 00000cM2.01200024 000h 219232-9 a19991119 20120423140847 @@ -64058,7 +64058,7 @@ - 03243cM2.01200024 000h + 00000cM2.01200024 000h 219680-3 a19991119 20100713174642 @@ -64264,7 +64264,7 @@ - 00995cM2.01200024 000h + 00000cM2.01200024 000h 219752-2 a19991119 20111123213727 @@ -64400,7 +64400,7 @@ - 00562cM2.01200024 000h + 00000cM2.01200024 000h 219757-1 a19991119 20120419101123 @@ -64485,7 +64485,7 @@ - 01033cM2.01200024 000h + 00000cM2.01200024 000h 219764-9 a19991119 20110601212814 @@ -64623,7 +64623,7 @@ - 01103cM2.01200024 000h + 00000cM2.01200024 000h 219965-8 a19991119 20070804103541 @@ -64723,7 +64723,7 @@ - 00878cM2.01200024 000h + 00000cM2.01200024 000h 220068-5 a19991119 20100309032307 @@ -64837,7 +64837,7 @@ - 00828cM2.01200024 000h + 00000cM2.01200024 000h 220301-7 a19991119 20070910235608 @@ -64922,7 +64922,7 @@ - 00674cM2.01200024 000h + 00000cM2.01200024 000h 220349-2 a19991119 20090512224914 @@ -65004,7 +65004,7 @@ - 00688cM2.01200024 000h + 00000cM2.01200024 000h 220442-3 a19991119 20120222095221 @@ -65092,7 +65092,7 @@ - 00923cM2.01200024 000h + 00000cM2.01200024 000h 220571-3 a19991119 20090428002639 @@ -65189,7 +65189,7 @@ - 00973cM2.01200024 000h + 00000cM2.01200024 000h 220707-2 a19991119 20100309032409 @@ -65295,7 +65295,7 @@ - 01703cM2.01200024 000h + 00000cM2.01200024 000h 220731-x a19991119 20101124212807 @@ -65518,7 +65518,7 @@ - 01083cM2.01200024 000h + 00000cM2.01200024 000h 220889-1 a19991119 20120423152531 @@ -65644,7 +65644,7 @@ - 01618cM2.01200024 000h + 00000cM2.01200024 000h 220976-7 a19991119 20120423090004 @@ -65756,7 +65756,7 @@ - 01281cM2.01200024 000h + 00000cM2.01200024 000h 221198-1 a19991119 20120420103407 @@ -65890,7 +65890,7 @@ - 00658cM2.01200024 000h + 00000cM2.01200024 000h 221338-2 a19991119 20090508172046 @@ -65969,7 +65969,7 @@ - 01101cM2.01200024 000h + 00000cM2.01200024 000h 221787-9 a19991119 20120423104558 @@ -66111,7 +66111,7 @@ - 01144cM2.01200024 000h + 00000cM2.01200024 000h 222075-1 a19991119 20100302010221 @@ -66226,7 +66226,7 @@ - 01818cM2.01200024 000h + 00000cM2.01200024 000h 222237-1 a19991119 20120423114702 @@ -66404,7 +66404,7 @@ - 01361cM2.01200024 000h + 00000cM2.01200024 000h 222610-8 a19991119 20120423113805 @@ -66519,7 +66519,7 @@ - 02094cM2.01200024 000h + 00000cM2.01200024 000h 222651-0 a19991119 20120208225817 @@ -66732,7 +66732,7 @@ - 01883cM2.01200024 000h + 00000cM2.01200024 000h 222933-x a19991119 20110714045421 @@ -66961,7 +66961,7 @@ - 01395cM2.01200024 000h + 00000cM2.01200024 000h 223240-6 a19991119 20080715220745 @@ -67067,7 +67067,7 @@ - 01284cM2.01200024 000h + 00000cM2.01200024 000h 223250-9 a19991119 20110328125023 @@ -67197,7 +67197,7 @@ - 01134cM2.01200024 000h + 00000cM2.01200024 000h 223570-5 a19991119 20120423104553 @@ -67341,7 +67341,7 @@ - 00452cM2.01200024 000h + 00000cM2.01200024 000h 223784-2 a19991119 20120208225822 @@ -67408,7 +67408,7 @@ - 02145cM2.01200024 000h + 00000cM2.01200024 000h 224020-8 a19991119 20120423103441 @@ -67573,7 +67573,7 @@ - 01578cM2.01200024 000h + 00000cM2.01200024 000h 225395-1 a19991119 20120423114510 @@ -67739,7 +67739,7 @@ - 00671cM2.01200024 000h + 00000cM2.01200024 000h 225480-3 a19991119 20120420101224 @@ -67821,7 +67821,7 @@ - 00980cM2.01200024 000h + 00000cM2.01200024 000h 225973-4 a19991119 20120423161549 @@ -67924,7 +67924,7 @@ - 00584cM2.01200024 000h + 00000cM2.01200024 000h 226312-9 a19991119 20110708122042 @@ -68006,7 +68006,7 @@ - 01591cM2.01200024 000h + 00000cM2.01200024 000h 226701-9 a19991119 20120423142159 @@ -68155,7 +68155,7 @@ - 00852cM2.01200024 000h + 00000cM2.01200024 000h 226779-2 a19991119 20100125234908 @@ -68237,7 +68237,7 @@ - 00712cM2.01200024 000h + 00000cM2.01200024 000h 226999-5 a19991119 20120423144348 @@ -68319,7 +68319,7 @@ - 01023cM2.01200024 000h + 00000cM2.01200024 000h 227001-8 a19991119 20100125234908 @@ -68404,7 +68404,7 @@ - 01270cM2.01200024 000h + 00000cM2.01200024 000h 227354-8 a19991119 20100125234909 @@ -68486,7 +68486,7 @@ - 00669cM2.01200024 000h + 00000cM2.01200024 000h 227359-7 a19991119 20091109214639 @@ -68553,7 +68553,7 @@ - 00702cM2.01200024 000h + 00000cM2.01200024 000h 227441-3 a19991119 20091109214639 @@ -68623,7 +68623,7 @@ - 00671cM2.01200024 000h + 00000cM2.01200024 000h 230639-6 a19991119 20090512013114 @@ -68705,7 +68705,7 @@ - 00910cM2.01200024 000h + 00000cM2.01200024 000h 232272-9 a19991119 20100804124039 @@ -68824,7 +68824,7 @@ - 00900cM2.01200024 000h + 00000cM2.01200024 000h 235947-9 a19991119 20100913164943 @@ -68957,7 +68957,7 @@ - 01083cM2.01200024 000h + 00000cM2.01200024 000h 236711-7 a19991119 20120423115543 @@ -69066,7 +69066,7 @@ - 00911cM2.01200024 000h + 00000cM2.01200024 000h 236725-7 a19991119 20110705031519 @@ -69169,7 +69169,7 @@ - 00764cM2.01200024 000h + 00000cM2.01200024 000h 238038-9 a19991119 20050529203126 @@ -69254,7 +69254,7 @@ - 00655cM2.01200024 000h + 00000cM2.01200024 000h 240029-7 a19991119 20100713175016 @@ -69341,7 +69341,7 @@ - 01293cM2.01200024 000h + 00000cM2.01200024 000h 240134-4 a19991119 20120208234100 @@ -69471,7 +69471,7 @@ - 01171cM2.01200024 000h + 00000cM2.01200024 000h 240204-x a19991119 20100309032934 @@ -69592,7 +69592,7 @@ - 01662cM2.01200024 000h + 00000cM2.01200024 000h 240285-3 a19991119 20120208235910 @@ -69754,7 +69754,7 @@ - 01434cM2.01200024 000h + 00000cM2.01200024 000h 240310-9 a19991119 20101124212912 @@ -69884,7 +69884,7 @@ - 02040cM2.01200024 000h + 00000cM2.01200024 000h 240331-6 a19991119 20120306151005 @@ -70086,7 +70086,7 @@ - 01633cM2.01200024 000h + 00000cM2.01200024 000h 240383-3 a19991119 20111123213919 @@ -70245,7 +70245,7 @@ - 03377cM2.01200024 000h + 00000cM2.01200024 000h 240384-5 a19991119 20120209153653 @@ -70517,7 +70517,7 @@ - 00922cM2.01200024 000h + 00000cM2.01200024 000h 240509-x a19991119 20120419155932 @@ -70638,7 +70638,7 @@ - 01625cM2.01200024 000h + 00000cM2.01200024 000h 240527-1 a19991119 20111123213952 @@ -70807,7 +70807,7 @@ - 00690cM2.01200024 000h + 00000cM2.01200024 000h 240624-x a19991119 20101110112645 @@ -70901,7 +70901,7 @@ - 03763cM2.01200024 000h + 00000cM2.01200024 000h 240917-3 a19991119 20120412111949 @@ -71185,7 +71185,7 @@ - 00382cM2.01200024 000h + 00000cM2.01200024 000h 240995-1 a19991119 20100302010502 @@ -71249,7 +71249,7 @@ - 00899cM2.01200024 000h + 00000cM2.01200024 000h 241635-9 a19991119 20111123214222 @@ -71356,7 +71356,7 @@ - 00702cM2.01200024 000h + 00000cM2.01200024 000h 241660-8 a19991119 20050529204359 @@ -71438,7 +71438,7 @@ - 00888cM2.01200024 000h + 00000cM2.01200024 000h 241661-x a19991119 20070804103810 @@ -71544,7 +71544,7 @@ - 00515cM2.01200024 000h + 00000cM2.01200024 000h 241830-7 a19991119 20120313151151 @@ -71623,7 +71623,7 @@ - 01166cM2.01200024 000h + 00000cM2.01200024 000h 241992-0 a19991119 20120420140300 @@ -71764,7 +71764,7 @@ - 01066cM2.01200024 000h + 00000cM2.01200024 000h 241993-2 a19991119 20120420132809 @@ -71901,7 +71901,7 @@ - 01124cM2.01200024 000h + 00000cM2.01200024 000h 242110-0 a19991119 20120423115836 @@ -72031,7 +72031,7 @@ - 00688cM2.01200024 000h + 00000cM2.01200024 000h 242405-8 a19991119 20040728075042 @@ -72107,7 +72107,7 @@ - 00843cM2.01200024 000h + 00000cM2.01200024 000h 242438-1 a19991119 20090804002049 @@ -72195,7 +72195,7 @@ - 00495cM2.01200024 000h + 00000cM2.01200024 000h 242599-3 a19991119 20111025114049 @@ -72268,7 +72268,7 @@ - 01204cM2.01200024 000h + 00000cM2.01200024 000h 242625-0 a19991119 20120423132039 @@ -72419,7 +72419,7 @@ - 01145cM2.01200024 000h + 00000cM2.01200024 000h 242705-9 a19991119 20110713224856 @@ -72561,7 +72561,7 @@ - 00967cM2.01200024 000h + 00000cM2.01200024 000h 242758-8 a19991119 20090804224135 @@ -72646,7 +72646,7 @@ - 01007cM2.01200024 000h + 00000cM2.01200024 000h 243423-4 a19991119 20090806214519 @@ -72740,7 +72740,7 @@ - 00956cM2.01200024 000h + 00000cM2.01200024 000h 243679-6 a19991119 20120208225856 @@ -72834,7 +72834,7 @@ - 00589cM2.01200024 000h + 00000cM2.01200024 000h 244127-5 a19991119 20120423131209 @@ -72919,7 +72919,7 @@ - 00560cM2.01200024 000h + 00000cM2.01200024 000h 244225-5 a19991119 20090602121216 @@ -72992,7 +72992,7 @@ - 00483cM2.01200024 000h + 00000cM2.01200024 000h 245675-8 a19991119 20120423174728 @@ -73059,7 +73059,7 @@ - 01023cM2.01200024 000h + 00000cM2.01200024 000h 245933-4 a19991119 20080225225713 @@ -73156,7 +73156,7 @@ - 01317cM2.01200024 000h + 00000cM2.01200024 000h 246587-5 a19991119 20100713175320 @@ -73286,7 +73286,7 @@ - 01179cM2.01200024 000h + 00000cM2.01200024 000h 246753-7 a19991119 20120419101830 @@ -73430,7 +73430,7 @@ - 00410cM2.01200024 000h + 00000cM2.01200024 000h 251268-3 a19991119 20120415112202 @@ -73497,7 +73497,7 @@ - 00662cM2.01200024 000h + 00000cM2.01200024 000h 253898-2 a19991119 20120326081808 @@ -73577,7 +73577,7 @@ - 00430cM2.01200024 000h + 00000cM2.01200024 000h 254042-3 a19991119 20101116083954 @@ -73645,7 +73645,7 @@ - 01130cM2.01200024 000h + 00000cM2.01200024 000h 254216-x a19991119 20110309023437 @@ -73760,7 +73760,7 @@ - 01398cM2.01200024 000h + 00000cM2.01200024 000h 254787-9 a19991119 20110618182522 @@ -73863,7 +73863,7 @@ - 01385cM2.01200024 000h + 00000cM2.01200024 000h 256327-7 a19991119 20120420111713 @@ -74014,7 +74014,7 @@ - 00870cM2.01200024 000h + 00000cM2.01200024 000h 258877-8 a19991119 20090709110246 @@ -74102,7 +74102,7 @@ - 01074cM2.01200024 000h + 00000cM2.01200024 000h 263419-3 a19991119 20120419213416 @@ -74243,7 +74243,7 @@ - 00395cM2.01200024 000h + 00000cM2.01200024 000h 264467-8 a19991119 20100309033508 @@ -74313,7 +74313,7 @@ - 01274cM2.01200024 000h + 00000cM2.01200024 000h 265116-6 a19991119 20120420111811 @@ -74453,7 +74453,7 @@ - 00618cM2.01200024 000h + 00000cM2.01200024 000h 268948-0 a19991119 20120423104508 @@ -74544,7 +74544,7 @@ - 00943cM2.01200024 000h + 00000cM2.01200024 000h 271835-2 a19991119 20060819182216 @@ -74626,7 +74626,7 @@ - 00664cM2.01200024 000h + 00000cM2.01200024 000h 272034-6 a19991119 20120420114603 @@ -74708,7 +74708,7 @@ - 01283cM2.01200024 000h + 00000cM2.01200024 000h 272309-8 a19991119 20100427114914 @@ -74811,7 +74811,7 @@ - 00817cM2.01200024 000h + 00000cM2.01200024 000h 275013-2 a19991119 20120420155128 @@ -74914,7 +74914,7 @@ - 00601cM2.01200024 000h + 00000cM2.01200024 000h 275537-3 a19991119 20120125130107 @@ -75005,7 +75005,7 @@ - 01004cM2.01200024 000h + 00000cM2.01200024 000h 279802-5 a19991119 20120423165758 @@ -75102,7 +75102,7 @@ - 01890cM2.01200024 000h + 00000cM2.01200024 000h 280257-0 a19991119 20110922185510 @@ -75267,7 +75267,7 @@ - 00842cM2.01200024 000h + 00000cM2.01200024 000h 280317-3 a19991119 20100713175427 @@ -75367,7 +75367,7 @@ - 01499cM2.01200024 000h + 00000cM2.01200024 000h 280318-5 a19991119 20110113145505 @@ -75514,7 +75514,7 @@ - 00709cM2.01200024 000h + 00000cM2.01200024 000h 280345-8 a19991119 20120423120434 @@ -75608,7 +75608,7 @@ - 00892cM2.01200024 000h + 00000cM2.01200024 000h 280457-8 a19991119 20111221102602 @@ -75723,7 +75723,7 @@ - 00864cM2.01200024 000h + 00000cM2.01200024 000h 281124-8 a19991119 20120423151343 @@ -75822,7 +75822,7 @@ - 00984cM2.01200024 000h + 00000cM2.01200024 000h 281508-4 a19991119 20100309033731 @@ -75933,7 +75933,7 @@ - 01344cM2.01200024 000h + 00000cM2.01200024 000h 281727-5 a19991119 20120419104751 @@ -76078,7 +76078,7 @@ - 00927cM2.01200024 000h + 00000cM2.01200024 000h 281836-x a19991119 20110708123022 @@ -76172,7 +76172,7 @@ - 00784cM2.01200024 000h + 00000cM2.01200024 000h 282286-6 a19991119 20050522145810 @@ -76260,7 +76260,7 @@ - 02308cM2.01200024 000h + 00000cM2.01200024 000h 282306-8 a19991119 20111205114700 @@ -76435,7 +76435,7 @@ - 01064cM2.01200024 000h + 00000cM2.01200024 000h 282470-x a19991119 20100309033815 @@ -76559,7 +76559,7 @@ - 00621cM2.01200024 000h + 00000cM2.01200024 000h 282636-7 a19991119 20071025114003 @@ -76647,7 +76647,7 @@ - 00759cM2.01200024 000h + 00000cM2.01200024 000h 282647-1 a19991119 20110708123022 @@ -76753,7 +76753,7 @@ - 00867cM2.01200024 000h + 00000cM2.01200024 000h 283544-7 a19991119 20090506220349 @@ -76877,7 +76877,7 @@ - 00516cM2.01200024 000h + 00000cM2.01200024 000h 283744-4 a19991119 20120112142646 @@ -76947,7 +76947,7 @@ - 01116cM2.01200024 000h + 00000cM2.01200024 000h 284028-5 a19991119 20120423125534 @@ -77089,7 +77089,7 @@ - 01074cM2.01200024 000h + 00000cM2.01200024 000h 286529-4 a19991119 20120423103801 @@ -77229,7 +77229,7 @@ - 00462cM2.01200024 000h + 00000cM2.01200024 000h 290480-9 a19991119 20090506205748 @@ -77299,7 +77299,7 @@ - 01471cM2.01200024 000h + 00000cM2.01200024 000h 291248-x a19991119 20120423120141 @@ -77464,7 +77464,7 @@ - 01087cM2.01200024 000h + 00000cM2.01200024 000h 291746-4 a19991119 20120419140313 @@ -77610,7 +77610,7 @@ - 00702cM2.01200024 000h + 00000cM2.01200024 000h 292575-8 a19991119 20091001091039 @@ -77697,7 +77697,7 @@ - 01164cM2.01200024 000h + 00000cM2.01200024 000h 300002-3 a19991119 20100913121612 @@ -77837,7 +77837,7 @@ - 01603cM2.01200024 000h + 00000cM2.01200024 000h 300004-7 a19991119 20110519101620 @@ -77969,7 +77969,7 @@ - 02196cM2.01200024 000h + 00000cM2.01200024 000h 300048-5 a19991119 20120208220337 @@ -78182,7 +78182,7 @@ - 00599cM2.01200024 000h + 00000cM2.01200024 000h 300418-1 a19991119 20120419160102 @@ -78273,7 +78273,7 @@ - 00456cM2.01200024 000h + 00000cM2.01200024 000h 300589-6 a19991119 20120423151029 @@ -78343,7 +78343,7 @@ - 00851cM2.01200024 000h + 00000cM2.01200024 000h 300758-3 a19991119 20100309034006 @@ -78446,7 +78446,7 @@ - 01002cM2.01200024 000h + 00000cM2.01200024 000h 301025-9 a19991119 20120420120726 @@ -78555,7 +78555,7 @@ - 00752cM2.01200024 000h + 00000cM2.01200024 000h 301029-6 a19991119 20100923100945 @@ -78656,7 +78656,7 @@ - 00679cM2.01200024 000h + 00000cM2.01200024 000h 302405-2 a19991119 20090406220137 @@ -78745,7 +78745,7 @@ - 00756cM2.01200024 000h + 00000cM2.01200024 000h 302575-5 a19991119 20110708123027 @@ -78836,7 +78836,7 @@ - 01242cM2.01200024 000h + 00000cM2.01200024 000h 302652-8 a19991119 20110607080639 @@ -79011,7 +79011,7 @@ - 00854cM2.01200024 000h + 00000cM2.01200024 000h 302680-2 a19991119 20090224011213 @@ -79105,7 +79105,7 @@ - 01258cM2.01200024 000h + 00000cM2.01200024 000h 303234-6 a19991119 20120423105918 @@ -79239,7 +79239,7 @@ - 01000cM2.01200024 000h + 00000cM2.01200024 000h 303426-4 a19991119 20120423114304 @@ -79336,7 +79336,7 @@ - 00734cM2.01200024 000h + 00000cM2.01200024 000h 303592-x a19991119 20120419160216 @@ -79439,7 +79439,7 @@ - 00516cM2.01200024 000h + 00000cM2.01200024 000h 304437-3 a19991119 20110714003351 @@ -79518,7 +79518,7 @@ - 02184cM2.01200024 000h + 00000cM2.01200024 000h 304623-0 a19991119 20120208163912 @@ -79775,7 +79775,7 @@ - 00699cM2.01200024 000h + 00000cM2.01200024 000h 306199-1 a19991119 20071217113310 @@ -79860,7 +79860,7 @@ - 01129cM2.01200024 000h + 00000cM2.01200024 000h 306793-2 a19991119 20100302011014 @@ -79969,7 +79969,7 @@ - 00380cM2.01200024 000h + 00000cM2.01200024 000h 307731-7 a19991119 20120423171825 @@ -80038,7 +80038,7 @@ - 00616cM2.01200024 000h + 00000cM2.01200024 000h 308951-4 a19991119 20120423144735 @@ -80116,7 +80116,7 @@ - 00538cM2.01200024 000h + 00000cM2.01200024 000h 309814-x a19991119 20100309034352 @@ -80201,7 +80201,7 @@ - 01338cM2.01200024 000h + 00000cM2.01200024 000h 310204-x a19991119 20100309034405 @@ -80327,7 +80327,7 @@ - 00717cM2.01200024 000h + 00000cM2.01200024 000h 310825-9 a19991119 20120423115007 @@ -80400,7 +80400,7 @@ - 00679cM2.01200024 000h + 00000cM2.01200024 000h 313377-1 a19991119 20120423140902 @@ -80476,7 +80476,7 @@ - 01054cM2.01200024 000h + 00000cM2.01200024 000h 331537-x a19991119 20120415120646 @@ -80611,7 +80611,7 @@ - 00814cM2.01200024 000h + 00000cM2.01200024 000h 339121-8 a19991119 20100713175904 @@ -80710,7 +80710,7 @@ - 01350cM2.01200024 000h + 00000cM2.01200024 000h 341464-4 a19991119 20100309034655 @@ -80795,7 +80795,7 @@ - 00673cM2.01200024 000h + 00000cM2.01200024 000h 341911-3 a19991119 20071019103103 @@ -80874,7 +80874,7 @@ - 00515cM2.01200024 000h + 00000cM2.01200024 000h 342104-1 a19991119 20070110191749 @@ -80947,7 +80947,7 @@ - 00754cM2.01200024 000h + 00000cM2.01200024 000h 343205-1 a19991119 20110629114918 @@ -81029,7 +81029,7 @@ - 00540cM2.01200024 000h + 00000cM2.01200024 000h 344507-0 a19991119 20120423121406 @@ -81111,7 +81111,7 @@ - 01223cM2.01200024 000h + 00000cM2.01200024 000h 344682-7 a19991119 20120423114230 @@ -81244,7 +81244,7 @@ - 00749cM2.01200024 000h + 00000cM2.01200024 000h 344853-8 a19991119 20100302011117 @@ -81339,7 +81339,7 @@ - 00982cM2.01200024 000h + 00000cM2.01200024 000h 344876-9 a19991119 20120420103359 @@ -81454,7 +81454,7 @@ - 02644cM2.01200024 000h + 00000cM2.01200024 000h 345340-6 a19991119 20120423133007 @@ -81638,7 +81638,7 @@ - 00656cM2.01200024 000h + 00000cM2.01200024 000h 346743-0 a19991119 20120420092408 @@ -81723,7 +81723,7 @@ - 01301cM2.01200024 000h + 00000cM2.01200024 000h 347300-4 a19991119 20120415112153 @@ -81865,7 +81865,7 @@ - 00780cM2.01200024 000h + 00000cM2.01200024 000h 347645-5 a19991119 20120423111633 @@ -81970,7 +81970,7 @@ - 00817cM2.01200024 000h + 00000cM2.01200024 000h 348292-3 a19991119 20110126192928 @@ -82056,7 +82056,7 @@ - 00519cM2.01200024 000h + 00000cM2.01200024 000h 348339-3 a19991119 20120423092144 @@ -82137,7 +82137,7 @@ - 01075cM2.01200024 000h + 00000cM2.01200024 000h 349245-x a19991119 20120423125940 @@ -82264,7 +82264,7 @@ - 00980cM2.01200024 000h + 00000cM2.01200024 000h 351163-7 a19991119 20120419110219 @@ -82364,7 +82364,7 @@ - 00895cM2.01200024 000h + 00000cM2.01200024 000h 351537-0 a19991119 20070804044646 @@ -82467,7 +82467,7 @@ - 00423cM2.01200024 000h + 00000cM2.01200024 000h 351947-8 a19991119 20050728040502 @@ -82531,7 +82531,7 @@ - 01313cM2.01200024 000h + 00000cM2.01200024 000h 352124-2 a19991119 20090506202128 @@ -82643,7 +82643,7 @@ - 00937cM2.01200024 000h + 00000cM2.01200024 000h 352125-4 a19991119 20120423163959 @@ -82734,7 +82734,7 @@ - 00700cM2.01200024 000h + 00000cM2.01200024 000h 352135-7 a19991119 20071024215344 @@ -82816,7 +82816,7 @@ - 00587cM2.01200024 000h + 00000cM2.01200024 000h 352316-0 a19991119 20120423120025 @@ -82904,7 +82904,7 @@ - 00834cM2.01200024 000h + 00000cM2.01200024 000h 352835-2 a19991119 20110203002659 @@ -82998,7 +82998,7 @@ - 00823cM2.01200024 000h + 00000cM2.01200024 000h 354405-9 a19991119 20120415112325 @@ -83108,7 +83108,7 @@ - 00792cM2.01200024 000h + 00000cM2.01200024 000h 355601-3 a19991119 20120419095101 @@ -83202,7 +83202,7 @@ - 00499cM2.01200024 000h + 00000cM2.01200024 000h 381343-5 a19991119 20100309035032 @@ -83275,7 +83275,7 @@ - 00631cM2.01200024 000h + 00000cM2.01200024 000h 381359-9 a19991119 20120316023020 @@ -83379,7 +83379,7 @@ - 00748cM2.01200024 000h + 00000cM2.01200024 000h 382042-7 a19991119 20050529221128 @@ -83467,7 +83467,7 @@ - 00705cM2.01200024 000h + 00000cM2.01200024 000h 382071-3 a19991119 20120415113910 @@ -83579,7 +83579,7 @@ - 00712cM2.01200024 000h + 00000cM2.01200024 000h 383240-5 a19991119 20120419154214 @@ -83668,7 +83668,7 @@ - 00598cM2.01200024 000h + 00000cM2.01200024 000h 383406-2 a19991119 20120420102706 @@ -83769,7 +83769,7 @@ - 00929cM2.01200024 000h + 00000cM2.01200024 000h 383744-0 a19991119 20120420102125 @@ -83905,7 +83905,7 @@ - 00808cM2.01200024 000h + 00000cM2.01200024 000h 384877-2 a19991119 20120423105445 @@ -84019,7 +84019,7 @@ - 00534cM2.01200024 000h + 00000cM2.01200024 000h 390189-0 a19991119 20120415112155 @@ -84095,7 +84095,7 @@ - 00746cM2.01200024 000h + 00000cM2.01200024 000h 391076-3 a19991119 20120423134947 @@ -84199,7 +84199,7 @@ - 00844cM2.01200024 000h + 00000cM2.01200024 000h 391461-6 a19991119 20120423114613 @@ -84305,7 +84305,7 @@ - 00838cM2.01200024 000h + 00000cM2.01200024 000h 391462-8 a19991119 20120423114605 @@ -84411,7 +84411,7 @@ - 01772cM2.01200024 000h + 00000cM2.01200024 000h 391655-8 a19991119 20120419114258 @@ -84550,7 +84550,7 @@ - 01316cM2.01200024 000h + 00000cM2.01200024 000h 391900-6 a19991119 20120313152029 @@ -84689,7 +84689,7 @@ - 00415cM2.01200024 000h + 00000cM2.01200024 000h 392154-2 a19991119 20120423085849 @@ -84756,7 +84756,7 @@ - 01699cM2.01200024 000h + 00000cM2.01200024 000h 395064-5 a19991119 20100302011252 @@ -84867,7 +84867,7 @@ - 00835cM2.01200024 000h + 00000cM2.01200024 000h 395065-7 a19991119 20070322170035 @@ -84961,7 +84961,7 @@ - 00439cM2.01200024 000h + 00000cM2.01200024 000h 395089-x a19991119 20120423121540 @@ -85037,7 +85037,7 @@ - 00643cM2.01200024 000h + 00000cM2.01200024 000h 395485-7 a19991119 20120423143204 @@ -85110,7 +85110,7 @@ - 00623cM2.01200024 000h + 00000cM2.01200024 000h 400005-5 a19991119 20050522162649 @@ -85189,7 +85189,7 @@ - 00571cM2.01200024 000h + 00000cM2.01200024 000h 400029-8 a19991119 20110713225413 @@ -85272,7 +85272,7 @@ - 00754cM2.01200024 000h + 00000cM2.01200024 000h 400120-5 a19991119 20100309035203 @@ -85363,7 +85363,7 @@ - 00583cM2.01200024 000h + 00000cM2.01200024 000h 400492-9 a19991119 20120420141001 @@ -85441,7 +85441,7 @@ - 00483cM2.01200024 000h + 00000cM2.01200024 000h 400507-7 a19991119 20120208234141 @@ -85514,7 +85514,7 @@ - 02010cM2.01200024 000h + 00000cM2.01200024 000h 401443-1 a19991119 20120330094606 @@ -85687,7 +85687,7 @@ - 00492cM2.01200024 000h + 00000cM2.01200024 000h 401481-9 a19991119 20090625123845 @@ -85762,7 +85762,7 @@ - 00609cM2.01200024 000h + 00000cM2.01200024 000h 401520-4 a19991119 20071204010954 @@ -85829,7 +85829,7 @@ - 00554cM2.01200024 000h + 00000cM2.01200024 000h 403452-1 a19991119 20090602122554 @@ -85908,7 +85908,7 @@ - 00489cM2.01200024 000h + 00000cM2.01200024 000h 403528-8 a19991119 20090206213800 @@ -85981,7 +85981,7 @@ - 00413cM2.01200024 000h + 00000cM2.01200024 000h 404910-x a19991119 20100831143336 @@ -86054,7 +86054,7 @@ - 00755cM2.01200024 000h + 00000cM2.01200024 000h 405580-9 a19991119 20050522163809 @@ -86157,7 +86157,7 @@ - 00579cM2.01200024 000h + 00000cM2.01200024 000h 406753-8 a19991119 20050522164040 @@ -86230,7 +86230,7 @@ - 00562cM2.01200024 000h + 00000cM2.01200024 000h 406890-7 a19991119 20120423161658 @@ -86303,7 +86303,7 @@ - 00597cM2.01200024 000h + 00000cM2.01200024 000h 407821-4 a19991119 20070924142417 @@ -86385,7 +86385,7 @@ - 00720cM2.01200024 000h + 00000cM2.01200024 000h 410131-5 a19991119 20120423104715 @@ -86474,7 +86474,7 @@ - 00565cM2.01200024 000h + 00000cM2.01200024 000h 411253-2 a19991119 20080204171524 @@ -86544,7 +86544,7 @@ - 01062cM2.01200024 000h + 00000cM2.01200024 000h 411490-5 a19991119 20100309035604 @@ -86678,7 +86678,7 @@ - 00705cM2.01200024 000h + 00000cM2.01200024 000h 412391-8 a19991119 20120423140509 @@ -86773,7 +86773,7 @@ - 00481cM2.01200024 000h + 00000cM2.01200024 000h 412832-1 a19991119 20091019230142 @@ -86840,7 +86840,7 @@ - 01689cM2.01200024 000h + 00000cM2.01200024 000h 412865-5 a19991119 20120209000157 @@ -87003,7 +87003,7 @@ - 00517cM2.01200024 000h + 00000cM2.01200024 000h 413689-5 a19991119 20120415120327 @@ -87082,7 +87082,7 @@ - 00541cM2.01200024 000h + 00000cM2.01200024 000h 413895-8 a19991119 20120419112113 @@ -87155,7 +87155,7 @@ - 00702cM2.01200024 000h + 00000cM2.01200024 000h 413905-7 a19991119 20120423131509 @@ -87255,7 +87255,7 @@ - 00813cM2.01200024 000h + 00000cM2.01200024 000h 414937-3 a19991119 20100713180415 @@ -87340,7 +87340,7 @@ - 00938cM2.01200024 000h + 00000cM2.01200024 000h 415978-0 a19991119 20100713180427 @@ -87434,7 +87434,7 @@ - 00905cM2.01200024 000h + 00000cM2.01200024 000h 415992-5 a19991119 20060930174620 @@ -87543,7 +87543,7 @@ - 00403cM2.01200024 000h + 00000cM2.01200024 000h 416743-0 a19991119 20080715002256 @@ -87610,7 +87610,7 @@ - 01143cM2.01200024 000h + 00000cM2.01200024 000h 417892-0 a19991119 20120420164837 @@ -87737,7 +87737,7 @@ - 00636cM2.01200024 000h + 00000cM2.01200024 000h 418782-9 a19991119 20100309035800 @@ -87807,7 +87807,7 @@ - 00744cM2.01200024 000h + 00000cM2.01200024 000h 419129-8 a19991119 20120208211513 @@ -87901,7 +87901,7 @@ - 00747cM2.01200024 000h + 00000cM2.01200024 000h 419381-7 a19991119 20120419155602 @@ -87998,7 +87998,7 @@ - 00602cM2.01200024 000h + 00000cM2.01200024 000h 419498-6 a19991119 20080214130743 @@ -88071,7 +88071,7 @@ - 01018cM2.01200024 000h + 00000cM2.01200024 000h 419499-8 a19991119 20100302011532 @@ -88156,7 +88156,7 @@ - 00493cM2.01200024 000h + 00000cM2.01200024 000h 419504-8 a19991119 20120419103925 @@ -88217,7 +88217,7 @@ - 00519cM2.01200024 000h + 00000cM2.01200024 000h 419995-9 a19991119 20100309035836 @@ -88299,7 +88299,7 @@ - 00489cM2.01200024 000h + 00000cM2.01200024 000h 420254-5 a19991119 20120421023114 @@ -88384,7 +88384,7 @@ - 00799cM2.01200024 000h + 00000cM2.01200024 000h 420317-3 a19991119 20120420161805 @@ -88469,7 +88469,7 @@ - 00379cM2.01200024 000h + 00000cM2.01200024 000h 420847-x a19991119 20120420073545 @@ -88537,7 +88537,7 @@ - 00698cM2.01200024 000h + 00000cM2.01200024 000h 420989-8 a19991119 20120419163439 @@ -88625,7 +88625,7 @@ - 00591cM2.01200024 000h + 00000cM2.01200024 000h 421749-4 a19991119 20120423131518 @@ -88713,7 +88713,7 @@ - 00578cM2.01200024 000h + 00000cM2.01200024 000h 425228-7 a19991119 20050522171914 @@ -88797,7 +88797,7 @@ - 00412cM2.01200024 000h + 00000cM2.01200024 000h 425684-0 a19991119 20111114155858 @@ -88855,7 +88855,7 @@ - 00593cM2.01200024 000h + 00000cM2.01200024 000h 425779-0 a19991119 20100309035947 @@ -88943,7 +88943,7 @@ - 01412cM2.01200024 000h + 00000cM2.01200024 000h 425969-5 a19991119 20120423140640 @@ -89079,7 +89079,7 @@ - 00646cM2.01200024 000h + 00000cM2.01200024 000h 426289-x a19991119 20120420091835 @@ -89158,7 +89158,7 @@ - 00823cM2.01200024 000h + 00000cM2.01200024 000h 426797-7 a19991119 20111116101145 @@ -89263,7 +89263,7 @@ - 00546cM2.01200024 000h + 00000cM2.01200024 000h 427270-5 a19991119 20120420143931 @@ -89333,7 +89333,7 @@ - 00481cM2.01200024 000h + 00000cM2.01200024 000h 428417-3 a19991119 20100309040018 @@ -89406,7 +89406,7 @@ - 00390cM2.01200024 000h + 00000cM2.01200024 000h 431278-8 a19991119 20110714001145 @@ -89470,7 +89470,7 @@ - 00763cM2.01200024 000h + 00000cM2.01200024 000h 431823-7 a19991119 20120420102315 @@ -89552,7 +89552,7 @@ - 00839cM2.01200024 000h + 00000cM2.01200024 000h 435547-7 a19991119 20110713225559 @@ -89655,7 +89655,7 @@ - 00652cM2.01200024 000h + 00000cM2.01200024 000h 437116-1 a19991119 20120413145128 @@ -89731,7 +89731,7 @@ - 00901cM2.01200024 000h + 00000cM2.01200024 000h 438556-1 a19991119 20110128095752 @@ -89819,7 +89819,7 @@ - 00439cM2.01200024 000h + 00000cM2.01200024 000h 439363-6 a19991119 20090506210143 @@ -89889,7 +89889,7 @@ - 00885cM2.01200024 000h + 00000cM2.01200024 000h 440449-x a19991119 20050529232411 @@ -89992,7 +89992,7 @@ - 00863cM2.01200024 000h + 00000cM2.01200024 000h 441200-x a19991119 20120420144029 @@ -90095,7 +90095,7 @@ - 00763cM2.01200024 000h + 00000cM2.01200024 000h 441201-1 a19991119 20120420144018 @@ -90183,7 +90183,7 @@ - 00447cM2.01200024 000h + 00000cM2.01200024 000h 441357-x a19991119 20071101121933 @@ -90250,7 +90250,7 @@ - 01223cM2.01200024 000h + 00000cM2.01200024 000h 443488-2 a19991119 20050529232705 @@ -90344,7 +90344,7 @@ - 00490cM2.01200024 000h + 00000cM2.01200024 000h 443665-9 a19991119 20120415120439 @@ -90411,7 +90411,7 @@ - 00504cM2.01200024 000h + 00000cM2.01200024 000h 448890-8 a19991119 20120420110055 @@ -90495,7 +90495,7 @@ - 00810cM2.01200024 000h + 00000cM2.01200024 000h 449235-3 a19991119 20120415113936 @@ -90598,7 +90598,7 @@ - 00692cM2.01200024 000h + 00000cM2.01200024 000h 495087-2 a19991119 20120423152124 @@ -90714,7 +90714,7 @@ - 00531cM2.01200024 000h + 00000cM2.01200024 000h 495108-6 a19991119 20120423152046 @@ -90790,7 +90790,7 @@ - 01892cM2.01200024 000h + 00000cM2.01200024 000h 500496-2 a19991119 20120208220718 @@ -90945,7 +90945,7 @@ - 00878cM2.01200024 000h + 00000cM2.01200024 000h 501052-4 a19991119 20120208220733 @@ -91048,7 +91048,7 @@ - 02541cM2.01200024 000h + 00000cM2.01200024 000h 501053-6 a19991119 20110618182800 @@ -91241,7 +91241,7 @@ - 02755cM2.01200024 000h + 00000cM2.01200024 000h 501054-8 a19991119 20120208224358 @@ -91496,7 +91496,7 @@ - 01395cM2.01200024 000h + 00000cM2.01200024 000h 501074-3 a19991119 20120319111047 @@ -91667,7 +91667,7 @@ - 01456cM2.01200024 000h + 00000cM2.01200024 000h 501099-8 a19991119 20120209153804 @@ -91811,7 +91811,7 @@ - 01264cM2.01200024 000h + 00000cM2.01200024 000h 501105-x a19991119 20120209153810 @@ -91940,7 +91940,7 @@ - 01218cM2.01200024 000h + 00000cM2.01200024 000h 501158-9 a19991119 20120208234219 @@ -92092,7 +92092,7 @@ - 01420cM2.01200024 000h + 00000cM2.01200024 000h 501389-6 a19991119 20120403100651 @@ -92254,7 +92254,7 @@ - 01838cM2.01200024 000h + 00000cM2.01200024 000h 501478-5 a19991119 20120208224359 @@ -92484,7 +92484,7 @@ - 01698cM2.01200024 000h + 00000cM2.01200024 000h 501495-5 a19991119 20120423110427 @@ -92628,7 +92628,7 @@ - 01723cM2.01200024 000h + 00000cM2.01200024 000h 501766-x a19991119 20110713225906 @@ -92791,7 +92791,7 @@ - 01186cM2.01200024 000h + 00000cM2.01200024 000h 502030-x a19991119 20111125142331 @@ -92933,7 +92933,7 @@ - 00860cM2.01200024 000h + 00000cM2.01200024 000h 502701-9 a19991119 20100309041033 @@ -93030,7 +93030,7 @@ - 01231cM2.01200024 000h + 00000cM2.01200024 000h 503156-4 a19991119 20120423101133 @@ -93162,7 +93162,7 @@ - 00944cM2.01200024 000h + 00000cM2.01200024 000h 503176-x a19991119 20120208230519 @@ -93279,7 +93279,7 @@ - 00633cM2.01200024 000h + 00000cM2.01200024 000h 503515-6 a19991119 20110614155658 @@ -93368,7 +93368,7 @@ - 00591cM2.01200024 000h + 00000cM2.01200024 000h 503669-0 a19991119 20110624122421 @@ -93454,7 +93454,7 @@ - 01661cM2.01200024 000h + 00000cM2.01200024 000h 503719-0 a19991119 20120423141816 @@ -93582,7 +93582,7 @@ - 00744cM2.01200024 000h + 00000cM2.01200024 000h 504141-7 a19991119 20120420111439 @@ -93652,7 +93652,7 @@ - 00644cM2.01200024 000h + 00000cM2.01200024 000h 504275-6 a19991119 20100309041407 @@ -93734,7 +93734,7 @@ - 00630cM2.01200024 000h + 00000cM2.01200024 000h 504287-2 a19991119 20100309041409 @@ -93813,7 +93813,7 @@ - 00647cM2.01200024 000h + 00000cM2.01200024 000h 504295-1 a19991119 20100309041410 @@ -93892,7 +93892,7 @@ - 01296cM2.01200024 000h + 00000cM2.01200024 000h 504349-9 a19991119 20120415112330 @@ -94063,7 +94063,7 @@ - 00838cM2.01200024 000h + 00000cM2.01200024 000h 504542-3 a19991119 20100302011919 @@ -94159,7 +94159,7 @@ - 00955cM2.01200024 000h + 00000cM2.01200024 000h 504568-x a19991119 20050529235227 @@ -94265,7 +94265,7 @@ - 00599cM2.01200024 000h + 00000cM2.01200024 000h 504743-2 a19991119 20120415111845 @@ -94350,7 +94350,7 @@ - 00737cM2.01200024 000h + 00000cM2.01200024 000h 505448-5 a19991119 20120420091646 @@ -94442,7 +94442,7 @@ - 00838cM2.01200024 000h + 00000cM2.01200024 000h 505472-2 a19991119 20110614083738 @@ -94567,7 +94567,7 @@ - 01832cM2.01200024 000h + 00000cM2.01200024 000h 505511-8 a19991119 20090911214823 @@ -94775,7 +94775,7 @@ - 00703cM2.01200024 000h + 00000cM2.01200024 000h 505528-3 a19991119 20120423131235 @@ -94878,7 +94878,7 @@ - 00898cM2.01200024 000h + 00000cM2.01200024 000h 505601-9 a19991119 20120423131316 @@ -94975,7 +94975,7 @@ - 01132cM2.01200024 000h + 00000cM2.01200024 000h 505603-2 a19991119 20120423121831 @@ -95072,7 +95072,7 @@ - 00902cM2.01200024 000h + 00000cM2.01200024 000h 505791-7 a19991119 20120421023041 @@ -95181,7 +95181,7 @@ - 02901cM2.01200024 000h + 00000cM2.01200024 000h 506119-2 a19991119 20120208234238 @@ -95451,7 +95451,7 @@ - 01961cM2.01200024 000h + 00000cM2.01200024 000h 506146-5 a19991119 20120423121629 @@ -95645,7 +95645,7 @@ - 04646cM2.01200024 000h + 00000cM2.01200024 000h 506159-3 a19991119 20120420145723 @@ -95916,7 +95916,7 @@ - 00969cM2.01200024 000h + 00000cM2.01200024 000h 506259-7 a19991119 20120209000240 @@ -96035,7 +96035,7 @@ - 03537cM2.01200024 000h + 00000cM2.01200024 000h 506609-8 a19991119 20120209153823 @@ -96323,7 +96323,7 @@ - 01275cM2.01200024 000h + 00000cM2.01200024 000h 506893-9 a19991119 20120423110322 @@ -96445,7 +96445,7 @@ - 00819cM2.01200024 000h + 00000cM2.01200024 000h 506952-x a19991119 20090508173020 @@ -96546,7 +96546,7 @@ - 01031cM2.01200024 000h + 00000cM2.01200024 000h 507037-5 a19991119 20120208234244 @@ -96678,7 +96678,7 @@ - 00567cM2.01200024 000h + 00000cM2.01200024 000h 507519-1 a19991119 20070804051715 @@ -96765,7 +96765,7 @@ - 01907cM2.01200024 000h + 00000cM2.01200024 000h 507581-6 a19991119 20120421030744 @@ -96982,7 +96982,7 @@ - 02664cM2.01200024 000h + 00000cM2.01200024 000h 507872-6 a19991119 20110618182858 @@ -97097,7 +97097,7 @@ - 01857cM2.01200024 000h + 00000cM2.01200024 000h 510403-8 a19991119 20120420142237 @@ -97321,7 +97321,7 @@ - 00762cM2.01200024 000h + 00000cM2.01200024 000h 510532-8 a19991119 20120419135304 @@ -97421,7 +97421,7 @@ - 00899cM2.01200024 000h + 00000cM2.01200024 000h 511034-8 a19991119 20120419090448 @@ -97509,7 +97509,7 @@ - 00548cM2.01200024 000h + 00000cM2.01200024 000h 511035-x a19991119 20120419090512 @@ -97576,7 +97576,7 @@ - 00531cM2.01200024 000h + 00000cM2.01200024 000h 511036-1 a19991119 20120419090538 @@ -97643,7 +97643,7 @@ - 00598cM2.01200024 000h + 00000cM2.01200024 000h 511220-5 a19991119 20100127214417 @@ -97727,7 +97727,7 @@ - 01394cM2.01200024 000h + 00000cM2.01200024 000h 512677-0 a19991119 20120208221010 @@ -97875,7 +97875,7 @@ - 00837cM2.01200024 000h + 00000cM2.01200024 000h 512701-4 a19991119 20120423121312 @@ -97990,7 +97990,7 @@ - 00533cM2.01200024 000h + 00000cM2.01200024 000h 512986-2 a19991119 20110713230723 @@ -98069,7 +98069,7 @@ - 01197cM2.01200024 000h + 00000cM2.01200024 000h 513045-1 a19991119 20120423182005 @@ -98175,7 +98175,7 @@ - 00380cM2.01200024 000h + 00000cM2.01200024 000h 513148-0 a19991119 20100118221354 @@ -98242,7 +98242,7 @@ - 01240cM2.01200024 000h + 00000cM2.01200024 000h 514293-3 a19991119 20120423110349 @@ -98336,7 +98336,7 @@ - 00974cM2.01200024 000h + 00000cM2.01200024 000h 514305-6 a19991119 20120209000320 @@ -98457,7 +98457,7 @@ - 01059cM2.01200024 000h + 00000cM2.01200024 000h 514422-x a19991119 20090630020818 @@ -98557,7 +98557,7 @@ - 00993cM2.01200024 000h + 00000cM2.01200024 000h 514619-7 a19991119 20100118221401 @@ -98669,7 +98669,7 @@ - 01695cM2.01200024 000h + 00000cM2.01200024 000h 514907-1 a19991119 20120208221030 @@ -98858,7 +98858,7 @@ - 01040cM2.01200024 000h + 00000cM2.01200024 000h 514986-1 a19991119 20090508173146 @@ -98958,7 +98958,7 @@ - 00736cM2.01200024 000h + 00000cM2.01200024 000h 515308-6 a19991119 20120208221034 @@ -99067,7 +99067,7 @@ - 01776cM2.01200024 000h + 00000cM2.01200024 000h 515450-9 a19991119 20110513103113 @@ -99197,7 +99197,7 @@ - 00631cM2.01200024 000h + 00000cM2.01200024 000h 515811-4 a19991119 20120423121228 @@ -99282,7 +99282,7 @@ - 00644cM2.01200024 000h + 00000cM2.01200024 000h 515856-4 a19991119 20100309042939 @@ -99358,7 +99358,7 @@ - 01037cM2.01200024 000h + 00000cM2.01200024 000h 516165-4 a19991119 20120409214618 @@ -99474,7 +99474,7 @@ - 00551cM2.01200024 000h + 00000cM2.01200024 000h 516343-2 a19991119 20070804053102 @@ -99550,7 +99550,7 @@ - 01320cM2.01200024 000h + 00000cM2.01200024 000h 516440-0 a19991119 20120421023014 @@ -99715,7 +99715,7 @@ - 00718cM2.01200024 000h + 00000cM2.01200024 000h 516767-x a19991119 20110713230952 @@ -99800,7 +99800,7 @@ - 00769cM2.01200024 000h + 00000cM2.01200024 000h 518634-1 a19991119 20070804053456 @@ -99882,7 +99882,7 @@ - 00912cM2.01200024 000h + 00000cM2.01200024 000h 519314-x a19991119 20120415112856 @@ -99988,7 +99988,7 @@ - 01331cM2.01200024 000h + 00000cM2.01200024 000h 519636-x a19991119 20110518104918 @@ -100127,7 +100127,7 @@ - 00868cM2.01200024 000h + 00000cM2.01200024 000h 519663-2 a19991119 20120423093124 @@ -100215,7 +100215,7 @@ - 00355cM2.01200024 000h + 00000cM2.01200024 000h 519848-3 a19991119 20100312103956 @@ -100279,7 +100279,7 @@ - 00547cM2.01200024 000h + 00000cM2.01200024 000h 520084-2 a19991119 20050522185329 @@ -100343,7 +100343,7 @@ - 01694cM2.01200024 000h + 00000cM2.01200024 000h 520127-5 a19991119 20120420115717 @@ -100461,7 +100461,7 @@ - 01485cM2.01200024 000h + 00000cM2.01200024 000h 520230-9 a19991119 20110713231126 @@ -100630,7 +100630,7 @@ - 01811cM2.01200024 000h + 00000cM2.01200024 000h 520231-0 a19991119 20110713231128 @@ -100826,7 +100826,7 @@ - 02953cM2.01200024 000h + 00000cM2.01200024 000h 520542-6 a19991119 20120419165328 @@ -100979,7 +100979,7 @@ - 02017cM2.01200024 000h + 00000cM2.01200024 000h 521007-0 a19991119 20120314143201 @@ -101147,7 +101147,7 @@ - 01074cM2.01200024 000h + 00000cM2.01200024 000h 521636-9 a19991119 20120208230713 @@ -101262,7 +101262,7 @@ - 01437cM2.01200024 000h + 00000cM2.01200024 000h 521916-4 a19991119 20110713231159 @@ -101457,7 +101457,7 @@ - 00781cM2.01200024 000h + 00000cM2.01200024 000h 522381-7 a19991119 20120415111904 @@ -101590,7 +101590,7 @@ - 00503cM2.01200024 000h + 00000cM2.01200024 000h 525642-2 a19991119 20100309043707 @@ -101668,7 +101668,7 @@ - 00673cM2.01200024 000h + 00000cM2.01200024 000h 525949-6 a19991119 20120208221153 @@ -101777,7 +101777,7 @@ - 00857cM2.01200024 000h + 00000cM2.01200024 000h 526329-3 a19991119 20120208221155 @@ -101904,7 +101904,7 @@ - 01071cM2.01200024 000h + 00000cM2.01200024 000h 526496-0 a19991119 20090909221735 @@ -102013,7 +102013,7 @@ - 00643cM2.01200024 000h + 00000cM2.01200024 000h 526651-8 a19991119 20120423121910 @@ -102107,7 +102107,7 @@ - 00494cM2.01200024 000h + 00000cM2.01200024 000h 526910-6 a19991119 20090317014516 @@ -102183,7 +102183,7 @@ - 00656cM2.01200024 000h + 00000cM2.01200024 000h 527881-8 a19991119 20120423170633 @@ -102268,7 +102268,7 @@ - 00929cM2.01200024 000h + 00000cM2.01200024 000h 528272-x a19991119 20110711082539 @@ -102398,7 +102398,7 @@ - 01747cM2.01200024 000h + 00000cM2.01200024 000h 528432-6 a19991119 20120420123413 @@ -102592,7 +102592,7 @@ - 01115cM2.01200024 000h + 00000cM2.01200024 000h 529705-9 a19991119 20070804054701 @@ -102686,7 +102686,7 @@ - 00823cM2.01200024 000h + 00000cM2.01200024 000h 529709-6 a19991119 20110713231349 @@ -102798,7 +102798,7 @@ - 01283cM2.01200024 000h + 00000cM2.01200024 000h 529802-7 a19991119 20120209160235 @@ -102947,7 +102947,7 @@ - 02437cM2.01200024 000h + 00000cM2.01200024 000h 529998-6 a19991119 20120415101813 @@ -103097,7 +103097,7 @@ - 00328cM2.01200024 000h + 00000cM2.01200024 000h 530322-9 a19991119 20120423144406 @@ -103158,7 +103158,7 @@ - 00947cM2.01200024 000h + 00000cM2.01200024 000h 530625-5 a19991119 20120423131124 @@ -103281,7 +103281,7 @@ - 00930cM2.01200024 000h + 00000cM2.01200024 000h 530746-6 a19991119 20120419102412 @@ -103412,7 +103412,7 @@ - 00688cM2.01200024 000h + 00000cM2.01200024 000h 530855-0 a19991119 20120208230735 @@ -103505,7 +103505,7 @@ - 00343cM2.01200024 000h + 00000cM2.01200024 000h 531266-8 a19991119 20050522191408 @@ -103569,7 +103569,7 @@ - 00526cM2.01200024 000h + 00000cM2.01200024 000h 531927-4 a19991119 20100302012559 @@ -103651,7 +103651,7 @@ - 01697cM2.01200024 000h + 00000cM2.01200024 000h 532181-5 a19991119 20120420092338 @@ -103812,7 +103812,7 @@ - 01111cM2.01200024 000h + 00000cM2.01200024 000h 532355-1 a19991119 20100309044357 @@ -103949,7 +103949,7 @@ - 01693cM2.01200024 000h + 00000cM2.01200024 000h 532394-0 a19991119 20100309044400 @@ -104058,7 +104058,7 @@ - 00827cM2.01200024 000h + 00000cM2.01200024 000h 532896-2 a19991119 20120423115632 @@ -104172,7 +104172,7 @@ - 00401cM2.01200024 000h + 00000cM2.01200024 000h 533260-6 a19991119 20090506211103 @@ -104242,7 +104242,7 @@ - 00577cM2.01200024 000h + 00000cM2.01200024 000h 533356-8 a19991119 20120208230743 @@ -104326,7 +104326,7 @@ - 00553cM2.01200024 000h + 00000cM2.01200024 000h 533937-6 a19991119 20120419112628 @@ -104420,7 +104420,7 @@ - 02031cM2.01200024 000h + 00000cM2.01200024 000h 535296-4 a19991119 20110708123144 @@ -104546,7 +104546,7 @@ - 01155cM2.01200024 000h + 00000cM2.01200024 000h 536318-4 a19991119 20120423133215 @@ -104681,7 +104681,7 @@ - 00797cM2.01200024 000h + 00000cM2.01200024 000h 536585-5 a19991119 20120423175453 @@ -104778,7 +104778,7 @@ - 01475cM2.01200024 000h + 00000cM2.01200024 000h 536800-5 a19991119 20120423100745 @@ -104920,7 +104920,7 @@ - 00477cM2.01200024 000h + 00000cM2.01200024 000h 536837-6 a19991119 20120423085617 @@ -104992,7 +104992,7 @@ - 01070cM2.01200024 000h + 00000cM2.01200024 000h 536886-8 a19991119 20120419105209 @@ -105125,7 +105125,7 @@ - 00559cM2.01200024 000h + 00000cM2.01200024 000h 537042-5 a19991119 20120423152232 @@ -105201,7 +105201,7 @@ - 00659cM2.01200024 000h + 00000cM2.01200024 000h 538325-0 a19991119 20120423115640 @@ -105289,7 +105289,7 @@ - 00768cM2.01200024 000h + 00000cM2.01200024 000h 538335-3 a19991119 20110713231748 @@ -105380,7 +105380,7 @@ - 00755cM2.01200024 000h + 00000cM2.01200024 000h 538343-2 a19991119 20070804105424 @@ -105468,7 +105468,7 @@ - 00758cM2.01200024 000h + 00000cM2.01200024 000h 538351-1 a19991119 20070804105424 @@ -105559,7 +105559,7 @@ - 00489cM2.01200024 000h + 00000cM2.01200024 000h 538522-2 a19991119 20090506211220 @@ -105629,7 +105629,7 @@ - 01249cM2.01200024 000h + 00000cM2.01200024 000h 539407-7 a19991119 20120419152940 @@ -105783,7 +105783,7 @@ - 00630cM2.01200024 000h + 00000cM2.01200024 000h 539451-x a19991119 20110517154606 @@ -105888,7 +105888,7 @@ - 00554cM2.01200024 000h + 00000cM2.01200024 000h 539452-1 a19991119 20110517154607 @@ -105985,7 +105985,7 @@ - 00555cM2.01200024 000h + 00000cM2.01200024 000h 539453-3 a19991119 20111024235137 @@ -106073,7 +106073,7 @@ - 01775cM2.01200024 000h + 00000cM2.01200024 000h 539561-6 a19991119 20120209153902 @@ -106260,7 +106260,7 @@ - 01685cM2.01200024 000h + 00000cM2.01200024 000h 539824-1 a19991119 20120420023016 @@ -106430,7 +106430,7 @@ - 00393cM2.01200024 000h + 00000cM2.01200024 000h 540394-7 a19991119 20090506211248 @@ -106497,7 +106497,7 @@ - 01125cM2.01200024 000h + 00000cM2.01200024 000h 541720-x a19991119 20111214104823 @@ -106660,7 +106660,7 @@ - 00494cM2.01200024 000h + 00000cM2.01200024 000h 541756-9 a19991119 20090506211303 @@ -106730,7 +106730,7 @@ - 00803cM2.01200024 000h + 00000cM2.01200024 000h 541850-1 a19991119 20120208230810 @@ -106830,7 +106830,7 @@ - 00782cM2.01200024 000h + 00000cM2.01200024 000h 542142-1 a19991119 20120327171008 @@ -106918,7 +106918,7 @@ - 00532cM2.01200024 000h + 00000cM2.01200024 000h 543945-0 a19991119 20120415112414 @@ -107000,7 +107000,7 @@ - 01888cM2.01200024 000h + 00000cM2.01200024 000h 544454-8 a19991119 20110714045649 @@ -107191,7 +107191,7 @@ - 01378cM2.01200024 000h + 00000cM2.01200024 000h 544860-8 a19991119 20110316110623 @@ -107327,7 +107327,7 @@ - 00368cM2.01200024 000h + 00000cM2.01200024 000h 545175-9 a19991119 20070804061309 @@ -107391,7 +107391,7 @@ - 00529cM2.01200024 000h + 00000cM2.01200024 000h 545239-9 a19991119 20111123215341 @@ -107472,7 +107472,7 @@ - 00449cM2.01200024 000h + 00000cM2.01200024 000h 545859-6 a19991119 20120124155718 @@ -107542,7 +107542,7 @@ - 00673cM2.01200024 000h + 00000cM2.01200024 000h 546038-4 a19991119 20050522194921 @@ -107636,7 +107636,7 @@ - 00590cM2.01200024 000h + 00000cM2.01200024 000h 546056-6 a19991119 20110518105025 @@ -107727,7 +107727,7 @@ - 00433cM2.01200024 000h + 00000cM2.01200024 000h 547168-0 a19991119 20090126230917 @@ -107800,7 +107800,7 @@ - 00464cM2.01200024 000h + 00000cM2.01200024 000h 547293-3 a19991119 20110708123148 @@ -107867,7 +107867,7 @@ - 00533cM2.01200024 000h + 00000cM2.01200024 000h 547782-7 a19991119 20120419085510 @@ -107943,7 +107943,7 @@ - 00764cM2.01200024 000h + 00000cM2.01200024 000h 549410-2 a19991119 20100309045526 @@ -108041,7 +108041,7 @@ - 01799cM2.01200024 000h + 00000cM2.01200024 000h 549614-7 a19991119 20120208221506 @@ -108237,7 +108237,7 @@ - 00441cM2.01200024 000h + 00000cM2.01200024 000h 549824-7 a19991119 20120423153618 @@ -108304,7 +108304,7 @@ - 00529cM2.01200024 000h + 00000cM2.01200024 000h 551408-3 a19991119 20070804062707 @@ -108380,7 +108380,7 @@ - 00575cM2.01200024 000h + 00000cM2.01200024 000h 551452-6 a19991119 20091005213726 @@ -108456,7 +108456,7 @@ - 00430cM2.01200024 000h + 00000cM2.01200024 000h 552025-3 a19991119 20120423131454 @@ -108526,7 +108526,7 @@ - 00578cM2.01200024 000h + 00000cM2.01200024 000h 552323-0 a19991119 20110519102119 @@ -108617,7 +108617,7 @@ - 01086cM2.01200024 000h + 00000cM2.01200024 000h 552580-9 a19991119 20120423114556 @@ -108749,7 +108749,7 @@ - 00647cM2.01200024 000h + 00000cM2.01200024 000h 553025-8 a19991119 20120421030730 @@ -108855,7 +108855,7 @@ - 01009cM2.01200024 000h + 00000cM2.01200024 000h 553183-4 a19991119 20120423131614 @@ -108961,7 +108961,7 @@ - 00772cM2.01200024 000h + 00000cM2.01200024 000h 553477-x a19991119 20120423140112 @@ -109055,7 +109055,7 @@ - 00716cM2.01200024 000h + 00000cM2.01200024 000h 554073-2 a19991119 20080827114557 @@ -109156,7 +109156,7 @@ - 00900cM2.01200024 000h + 00000cM2.01200024 000h 554146-3 a19991119 20100309045830 @@ -109280,7 +109280,7 @@ - 02997cM2.01200024 000h + 00000cM2.01200024 000h 554830-5 a19991119 20120419132958 @@ -109501,7 +109501,7 @@ - 01267cM2.01200024 000h + 00000cM2.01200024 000h 555130-4 a19991119 20120415113932 @@ -109653,7 +109653,7 @@ - 01261cM2.01200024 000h + 00000cM2.01200024 000h 556208-9 a19991119 20120224095349 @@ -109814,7 +109814,7 @@ - 01032cM2.01200024 000h + 00000cM2.01200024 000h 556295-8 a19991119 20120423152303 @@ -109942,7 +109942,7 @@ - 01052cM2.01200024 000h + 00000cM2.01200024 000h 556315-x a19991119 20120419133418 @@ -110084,7 +110084,7 @@ - 00371cM2.01200024 000h + 00000cM2.01200024 000h 556738-5 a19991119 20100309045951 @@ -110148,7 +110148,7 @@ - 00435cM2.01200024 000h + 00000cM2.01200024 000h 558657-4 a19991119 20120208230911 @@ -110215,7 +110215,7 @@ - 00694cM2.01200024 000h + 00000cM2.01200024 000h 559766-3 a19991119 20090602130344 @@ -110291,7 +110291,7 @@ - 00685cM2.01200024 000h + 00000cM2.01200024 000h 560598-2 a19991119 20120415115102 @@ -110373,7 +110373,7 @@ - 00922cM2.01200024 000h + 00000cM2.01200024 000h 561049-7 a19991119 20120423115826 @@ -110506,7 +110506,7 @@ - 01336cM2.01200024 000h + 00000cM2.01200024 000h 561225-1 a19991119 20120423114219 @@ -110681,7 +110681,7 @@ - 00776cM2.01200024 000h + 00000cM2.01200024 000h 561657-8 a19991119 20110618183303 @@ -110769,7 +110769,7 @@ - 01718cM2.01200024 000h + 00000cM2.01200024 000h 562138-0 a19991119 20120423095823 @@ -110949,7 +110949,7 @@ - 00616cM2.01200024 000h + 00000cM2.01200024 000h 562321-2 a19991119 20091012225956 @@ -111031,7 +111031,7 @@ - 01642cM2.01200024 000h + 00000cM2.01200024 000h 563214-6 a19991119 20080513151736 @@ -111124,7 +111124,7 @@ - 00609cM2.01200024 000h + 00000cM2.01200024 000h 563599-8 a19991119 20120423152218 @@ -111206,7 +111206,7 @@ - 00415cM2.01200024 000h + 00000cM2.01200024 000h 563660-7 a19991119 20040728172429 @@ -111273,7 +111273,7 @@ - 00990cM2.01200024 000h + 00000cM2.01200024 000h 564175-5 a19991119 20100713181516 @@ -111400,7 +111400,7 @@ - 01639cM2.01200024 000h + 00000cM2.01200024 000h 564274-7 a19991119 20100309050235 @@ -111533,7 +111533,7 @@ - 00654cM2.01200024 000h + 00000cM2.01200024 000h 567233-8 a19991119 20100302012942 @@ -111624,7 +111624,7 @@ - 00656cM2.01200024 000h + 00000cM2.01200024 000h 567802-x a19991119 20120423131152 @@ -111715,7 +111715,7 @@ - 00554cM2.01200024 000h + 00000cM2.01200024 000h 567803-1 a19991119 20120423115810 @@ -111797,7 +111797,7 @@ - 01603cM2.01200024 000h + 00000cM2.01200024 000h 568431-6 a19991119 20100929101909 @@ -111987,7 +111987,7 @@ - 01164cM2.01200024 000h + 00000cM2.01200024 000h 571343-2 a19991119 20120423165846 @@ -112099,7 +112099,7 @@ - 02336cM2.01200024 000h + 00000cM2.01200024 000h 571761-9 a19991119 20110713232448 @@ -112307,7 +112307,7 @@ - 02445cM2.01200024 000h + 00000cM2.01200024 000h 574106-3 a19991119 20120405130052 @@ -112529,7 +112529,7 @@ - 00916cM2.01200024 000h + 00000cM2.01200024 000h 574982-7 a19991119 20120415111909 @@ -112650,7 +112650,7 @@ - 01064cM2.01200024 000h + 00000cM2.01200024 000h 575137-8 a19991119 20090615093925 @@ -112782,7 +112782,7 @@ - 00676cM2.01200024 000h + 00000cM2.01200024 000h 575148-2 a19991119 20110502113500 @@ -112871,7 +112871,7 @@ - 01616cM2.01200024 000h + 00000cM2.01200024 000h 575159-7 a19991119 20110502113811 @@ -112997,7 +112997,7 @@ - 00535cM2.01200024 000h + 00000cM2.01200024 000h 575489-6 a19991119 20050522205744 @@ -113076,7 +113076,7 @@ - 00662cM2.01200024 000h + 00000cM2.01200024 000h 575998-5 a19991119 20080225225903 @@ -113161,7 +113161,7 @@ - 00487cM2.01200024 000h + 00000cM2.01200024 000h 576068-9 a19991119 20120420105023 @@ -113231,7 +113231,7 @@ - 01108cM2.01200024 000h + 00000cM2.01200024 000h 576244-3 a19991119 20120423082908 @@ -113307,7 +113307,7 @@ - 00588cM2.01200024 000h + 00000cM2.01200024 000h 576686-2 a19991119 20100309050654 @@ -113398,7 +113398,7 @@ - 01791cM2.01200024 000h + 00000cM2.01200024 000h 577434-2 a19991119 20120420101151 @@ -113480,7 +113480,7 @@ - 00761cM2.01200024 000h + 00000cM2.01200024 000h 578483-9 a19991120 20070804110113 @@ -113565,7 +113565,7 @@ - 00578cM2.01200024 000h + 00000cM2.01200024 000h 578936-9 a19991120 20101124213647 @@ -113647,7 +113647,7 @@ - 01952cM2.01200024 000h + 00000cM2.01200024 000h 579693-3 a19991120 20120420160341 @@ -113852,7 +113852,7 @@ - 01532cM2.01200024 000h + 00000cM2.01200024 000h 580618-5 a19991120 20120423121813 @@ -113946,7 +113946,7 @@ - 00773cM2.01200024 000h + 00000cM2.01200024 000h 580747-5 a19991120 20091019230841 @@ -114025,7 +114025,7 @@ - 01011cM2.01200024 000h + 00000cM2.01200024 000h 581066-8 a19991120 20100816214350 @@ -114156,7 +114156,7 @@ - 00826cM2.01200024 000h + 00000cM2.01200024 000h 581805-9 a19991120 20120423175910 @@ -114250,7 +114250,7 @@ - 01245cM2.01200024 000h + 00000cM2.01200024 000h 582717-6 a19991120 20120423114458 @@ -114380,7 +114380,7 @@ - 01181cM2.01200024 000h + 00000cM2.01200024 000h 582718-8 a19991120 20120423114447 @@ -114510,7 +114510,7 @@ - 01248cM2.01200024 000h + 00000cM2.01200024 000h 582720-6 a19991120 20120423114417 @@ -114643,7 +114643,7 @@ - 01706cM2.01200024 000h + 00000cM2.01200024 000h 583345-0 a19991120 20080202160651 @@ -114809,7 +114809,7 @@ - 00821cM2.01200024 000h + 00000cM2.01200024 000h 585125-7 a19991120 20120423161559 @@ -114903,7 +114903,7 @@ - 01765cM2.01200024 000h + 00000cM2.01200024 000h 585950-5 a19991120 20120419134126 @@ -115067,7 +115067,7 @@ - 01203cM2.01200024 000h + 00000cM2.01200024 000h 588764-1 a19991120 20120423161822 @@ -115217,7 +115217,7 @@ - 01278cM2.01200024 000h + 00000cM2.01200024 000h 588765-3 a19991120 20120423161805 @@ -115370,7 +115370,7 @@ - 01301cM2.01200024 000h + 00000cM2.01200024 000h 588766-5 a19991120 20120423140543 @@ -115526,7 +115526,7 @@ - 02333cM2.01200024 000h + 00000cM2.01200024 000h 588822-0 a19991120 20120420114649 @@ -115749,7 +115749,7 @@ - 01498cM2.01200024 000h + 00000cM2.01200024 000h 588955-8 a19991120 20120423161648 @@ -115870,7 +115870,7 @@ - 01647cM2.01200024 000h + 00000cM2.01200024 000h 588958-3 a19991120 20120423161618 @@ -116040,7 +116040,7 @@ - 01363cM2.01200024 000h + 00000cM2.01200024 000h 588959-5 a19991120 20120423161748 @@ -116170,7 +116170,7 @@ - 00663cM2.01200024 000h + 00000cM2.01200024 000h 589853-5 a19991120 20120423155808 @@ -116265,7 +116265,7 @@ - 01192cM2.01200024 000h + 00000cM2.01200024 000h 590051-7 a19991120 20120423161727 @@ -116384,7 +116384,7 @@ - 01402cM2.01200024 000h + 00000cM2.01200024 000h 590519-9 a19991120 20120423160628 @@ -116526,7 +116526,7 @@ - 01048cM2.01200024 000h + 00000cM2.01200024 000h 592625-7 a19991120 20120208221723 @@ -116626,7 +116626,7 @@ - 00485cM2.01200024 000h + 00000cM2.01200024 000h 595582-8 a19991120 20120423134745 @@ -116705,7 +116705,7 @@ - 00822cM2.01200024 000h + 00000cM2.01200024 000h 597687-x a19991120 20120420131533 @@ -116805,7 +116805,7 @@ - 00677cM2.01200024 000h + 00000cM2.01200024 000h 598697-7 a19991120 20090602130736 @@ -116884,7 +116884,7 @@ - 00459cM2.01200024 000h + 00000cM2.01200024 000h 601373-9 a19991120 20050522215231 @@ -116957,7 +116957,7 @@ - 01837cM2.01200024 000h + 00000cM2.01200024 000h 602313-7 a19991120 20110203010017 @@ -117135,7 +117135,7 @@ - 00768cM2.01200024 000h + 00000cM2.01200024 000h 602489-0 a19991120 20120404102905 @@ -117236,7 +117236,7 @@ - 01980cM2.01200024 000h + 00000cM2.01200024 000h 602507-9 a19991120 20120316121810 @@ -117441,7 +117441,7 @@ - 00582cM2.01200024 000h + 00000cM2.01200024 000h 603991-1 a19991120 20120420110911 @@ -117511,7 +117511,7 @@ - 00432cM2.01200024 000h + 00000cM2.01200024 000h 604605-8 a19991120 20120419101646 @@ -117584,7 +117584,7 @@ - 00927cM2.01200024 000h + 00000cM2.01200024 000h 605745-7 a19991120 20120415113801 @@ -117687,7 +117687,7 @@ - 01513cM2.01200024 000h + 00000cM2.01200024 000h 605965-x a19991120 20120215145811 @@ -117838,7 +117838,7 @@ - 01567cM2.01200024 000h + 00000cM2.01200024 000h 609659-1 a19991120 20120419100119 @@ -117986,7 +117986,7 @@ - 00533cM2.01200024 000h + 00000cM2.01200024 000h 609850-2 a19991120 20120423152204 @@ -118059,7 +118059,7 @@ - 01076cM2.01200024 000h + 00000cM2.01200024 000h 610222-0 a19991120 20120423081833 @@ -118153,7 +118153,7 @@ - 00628cM2.01200024 000h + 00000cM2.01200024 000h 611506-8 a19991120 20120423152138 @@ -118253,7 +118253,7 @@ - 00720cM2.01200024 000h + 00000cM2.01200024 000h 612061-1 a19991120 20120423202510 @@ -118332,7 +118332,7 @@ - 00404cM2.01200024 000h + 00000cM2.01200024 000h 612213-9 a19991120 20120423181755 @@ -118393,7 +118393,7 @@ - 00470cM2.01200024 000h + 00000cM2.01200024 000h 612641-8 a19991120 20120423152319 @@ -118463,7 +118463,7 @@ - 00537cM2.01200024 000h + 00000cM2.01200024 000h 612969-9 a19991120 20080202160918 @@ -118554,7 +118554,7 @@ - 00633cM2.01200024 000h + 00000cM2.01200024 000h 613134-7 a19991120 20060907114458 @@ -118638,7 +118638,7 @@ - 01385cM2.01200024 000h + 00000cM2.01200024 000h 619886-7 a19991120 20120423134832 @@ -118800,7 +118800,7 @@ - 00760cM2.01200024 000h + 00000cM2.01200024 000h 619994-x a19991120 20050523142629 @@ -118879,7 +118879,7 @@ - 01345cM2.01200024 000h + 00000cM2.01200024 000h 620161-1 a19991120 20120423101715 @@ -119023,7 +119023,7 @@ - 00912cM2.01200024 000h + 00000cM2.01200024 000h 620242-1 a19991120 20120423120013 @@ -119156,7 +119156,7 @@ - 01130cM2.01200024 000h + 00000cM2.01200024 000h 622813-6 a19991120 20120423142256 @@ -119278,7 +119278,7 @@ - 01874cM2.01200024 000h + 00000cM2.01200024 000h 622985-2 a19991120 20101215093420 @@ -119487,7 +119487,7 @@ - 01254cM2.01200024 000h + 00000cM2.01200024 000h 623025-8 a19991120 20100302013153 @@ -119655,7 +119655,7 @@ - 00386cM2.01200024 000h + 00000cM2.01200024 000h 625749-5 a19991120 20120419092810 @@ -119716,7 +119716,7 @@ - 00645cM2.01200024 000h + 00000cM2.01200024 000h 627232-0 a19991120 20050728043115 @@ -119803,7 +119803,7 @@ - 02183cM2.01200024 000h + 00000cM2.01200024 000h 627234-4 a19991120 20120116134637 @@ -120023,7 +120023,7 @@ - 00956cM2.01200024 000h + 00000cM2.01200024 000h 628099-7 a19991120 20120415113015 @@ -120156,7 +120156,7 @@ - 01225cM2.01200024 000h + 00000cM2.01200024 000h 629699-3 a19991120 20110203003341 @@ -120275,7 +120275,7 @@ - 01868cM2.01200024 000h + 00000cM2.01200024 000h 631150-7 a19991120 20110714022249 @@ -120444,7 +120444,7 @@ - 00933cM2.01200024 000h + 00000cM2.01200024 000h 631507-0 a19991120 20080408102439 @@ -120541,7 +120541,7 @@ - 00859cM2.01200024 000h + 00000cM2.01200024 000h 632556-7 a19991120 20120419124501 @@ -120632,7 +120632,7 @@ - 00880cM2.01200024 000h + 00000cM2.01200024 000h 632816-7 a19991120 20080202161146 @@ -120755,7 +120755,7 @@ - 00470cM2.01200024 000h + 00000cM2.01200024 000h 633059-9 a19991120 20120312120428 @@ -120825,7 +120825,7 @@ - 00510cM2.01200024 000h + 00000cM2.01200024 000h 633173-7 a19991120 20091026143335 @@ -120895,7 +120895,7 @@ - 00873cM2.01200024 000h + 00000cM2.01200024 000h 633578-0 a19991120 20120415120438 @@ -120989,7 +120989,7 @@ - 01259cM2.01200024 000h + 00000cM2.01200024 000h 636518-8 a19991120 20120316100313 @@ -121119,7 +121119,7 @@ - 01004cM2.01200024 000h + 00000cM2.01200024 000h 636559-0 a19991120 20110428093726 @@ -121236,7 +121236,7 @@ - 00972cM2.01200024 000h + 00000cM2.01200024 000h 636814-1 a19991120 20120420113153 @@ -121336,7 +121336,7 @@ - 00979cM2.01200024 000h + 00000cM2.01200024 000h 636854-2 a19991120 20120420113440 @@ -121439,7 +121439,7 @@ - 00680cM2.01200024 000h + 00000cM2.01200024 000h 637007-x a19991120 20120420023015 @@ -121560,7 +121560,7 @@ - 00439cM2.01200024 000h + 00000cM2.01200024 000h 637297-1 a19991120 20071218101328 @@ -121630,7 +121630,7 @@ - 00548cM2.01200024 000h + 00000cM2.01200024 000h 637738-5 a19991120 20110510135634 @@ -121719,7 +121719,7 @@ - 00752cM2.01200024 000h + 00000cM2.01200024 000h 637795-6 a19991120 20120423111926 @@ -121806,7 +121806,7 @@ - 00460cM2.01200024 000h + 00000cM2.01200024 000h 639705-0 a19991120 20070804072359 @@ -121876,7 +121876,7 @@ - 01150cM2.01200024 000h + 00000cM2.01200024 000h 639955-1 a19991120 20100111230500 @@ -121961,7 +121961,7 @@ - 00951cM2.01200024 000h + 00000cM2.01200024 000h 640111-9 a19991120 20120421023036 @@ -122076,7 +122076,7 @@ - 01288cM2.01200024 000h + 00000cM2.01200024 000h 640289-6 a19991120 20120415111853 @@ -122221,7 +122221,7 @@ - 00438cM2.01200024 000h + 00000cM2.01200024 000h 641005-4 a19991120 20050523145840 @@ -122294,7 +122294,7 @@ - 00472cM2.01200024 000h + 00000cM2.01200024 000h 641955-0 a19991120 20120419214059 @@ -122364,7 +122364,7 @@ - 00948cM2.01200024 000h + 00000cM2.01200024 000h 644153-1 a19991120 20120419223010 @@ -122470,7 +122470,7 @@ - 00482cM2.01200024 000h + 00000cM2.01200024 000h 644266-3 a19991120 20120423131024 @@ -122537,7 +122537,7 @@ - 00777cM2.01200024 000h + 00000cM2.01200024 000h 645006-4 a19991120 20120420090448 @@ -122635,7 +122635,7 @@ - 01086cM2.01200024 000h + 00000cM2.01200024 000h 701244-5 a19991120 20120419090221 @@ -122726,7 +122726,7 @@ - 00737cM2.01200024 000h + 00000cM2.01200024 000h 702966-4 a19991120 20100713182331 @@ -122822,7 +122822,7 @@ - 00417cM2.01200024 000h + 00000cM2.01200024 000h 703771-5 a19991120 20120423082502 @@ -122886,7 +122886,7 @@ - 00634cM2.01200024 000h + 00000cM2.01200024 000h 704301-6 a19991120 20100302013400 @@ -122968,7 +122968,7 @@ - 00856cM2.01200024 000h + 00000cM2.01200024 000h 707268-5 a19991120 20120423121556 @@ -123062,7 +123062,7 @@ - 01662cM2.01200024 000h + 00000cM2.01200024 000h 710293-8 a19991120 20100713182354 @@ -123257,7 +123257,7 @@ - 02476cM2.01200024 000h + 00000cM2.01200024 000h 715105-6 a19991120 20120420023011 @@ -123494,7 +123494,7 @@ - 00878cM2.01200024 000h + 00000cM2.01200024 000h 715180-9 a19991120 20120415112724 @@ -123611,7 +123611,7 @@ - 00748cM2.01200024 000h + 00000cM2.01200024 000h 715654-6 a19991120 20090602131137 @@ -123708,7 +123708,7 @@ - 00673cM2.01200024 000h + 00000cM2.01200024 000h 715795-2 a19991120 20120423104236 @@ -123803,7 +123803,7 @@ - 01352cM2.01200024 000h + 00000cM2.01200024 000h 715843-9 a19991120 20110601213716 @@ -123941,7 +123941,7 @@ - 01486cM2.01200024 000h + 00000cM2.01200024 000h 715877-4 a19991120 20091116233355 @@ -124072,7 +124072,7 @@ - 01090cM2.01200024 000h + 00000cM2.01200024 000h 716897-4 a19991120 20100302013445 @@ -124163,7 +124163,7 @@ - 00646cM2.01200024 000h + 00000cM2.01200024 000h 717429-9 a19991120 20120420162931 @@ -124252,7 +124252,7 @@ - 00797cM2.01200024 000h + 00000cM2.01200024 000h 717576-0 a19991120 20120326120243 @@ -124357,7 +124357,7 @@ - 00876cM2.01200024 000h + 00000cM2.01200024 000h 717802-5 a19991120 20120421023031 @@ -124475,7 +124475,7 @@ - 01399cM2.01200024 000h + 00000cM2.01200024 000h 718701-4 a19991120 20120423085554 @@ -124642,7 +124642,7 @@ - 00634cM2.01200024 000h + 00000cM2.01200024 000h 718770-1 a19991120 20071218101640 @@ -124715,7 +124715,7 @@ - 00581cM2.01200024 000h + 00000cM2.01200024 000h 718873-0 a19991120 20050728050418 @@ -124794,7 +124794,7 @@ - 02461cM2.01200024 000h + 00000cM2.01200024 000h 719712-3 a19991120 20110708123221 @@ -124997,7 +124997,7 @@ - 01575cM2.01200024 000h + 00000cM2.01200024 000h 720789-x a19991120 20120319110825 @@ -125172,7 +125172,7 @@ - 00943cM2.01200024 000h + 00000cM2.01200024 000h 721131-4 a19991120 20120423115500 @@ -125284,7 +125284,7 @@ - 01206cM2.01200024 000h + 00000cM2.01200024 000h 721302-5 a19991120 20120423125637 @@ -125408,7 +125408,7 @@ - 01369cM2.01200024 000h + 00000cM2.01200024 000h 721303-7 a19991120 20120423125617 @@ -125535,7 +125535,7 @@ - 00666cM2.01200024 000h + 00000cM2.01200024 000h 721641-5 a19991120 20120423160626 @@ -125623,7 +125623,7 @@ - 00667cM2.01200024 000h + 00000cM2.01200024 000h 722083-2 a19991120 20100118222021 @@ -125708,7 +125708,7 @@ - 01897cM2.01200024 000h + 00000cM2.01200024 000h 722092-3 a19991120 20110618183418 @@ -125898,7 +125898,7 @@ - 01559cM2.01200024 000h + 00000cM2.01200024 000h 722181-2 a19991120 20120423182947 @@ -126006,7 +126006,7 @@ - 01363cM2.01200024 000h + 00000cM2.01200024 000h 722194-0 a19991120 20120208222036 @@ -126171,7 +126171,7 @@ - 01160cM2.01200024 000h + 00000cM2.01200024 000h 722228-2 a19991120 20110727113955 @@ -126317,7 +126317,7 @@ - 02193cM2.01200024 000h + 00000cM2.01200024 000h 722238-5 a19991120 20120423115720 @@ -126522,7 +126522,7 @@ - 01167cM2.01200024 000h + 00000cM2.01200024 000h 722629-9 a19991120 20120420163949 @@ -126668,7 +126668,7 @@ - 01146cM2.01200024 000h + 00000cM2.01200024 000h 722897-1 a19991120 20120423143849 @@ -126806,7 +126806,7 @@ - 00956cM2.01200024 000h + 00000cM2.01200024 000h 725183-x a19991120 20101008132405 @@ -126888,7 +126888,7 @@ - 00798cM2.01200024 000h + 00000cM2.01200024 000h 725492-1 a19991120 20050523154236 @@ -126973,7 +126973,7 @@ - 00880cM2.01200024 000h + 00000cM2.01200024 000h 725916-5 a19991120 20120420141337 @@ -127083,7 +127083,7 @@ - 00682cM2.01200024 000h + 00000cM2.01200024 000h 726062-3 a19991120 20120420155908 @@ -127172,7 +127172,7 @@ - 00502cM2.01200024 000h + 00000cM2.01200024 000h 726067-2 a19991120 20120423172543 @@ -127239,7 +127239,7 @@ - 00877cM2.01200024 000h + 00000cM2.01200024 000h 726614-5 a19991120 20120420160105 @@ -127331,7 +127331,7 @@ - 00398cM2.01200024 000h + 00000cM2.01200024 000h 730720-2 a19991120 20120423202444 @@ -127389,7 +127389,7 @@ - 00521cM2.01200024 000h + 00000cM2.01200024 000h 730948-x a19991120 20090625123501 @@ -127468,7 +127468,7 @@ - 00506cM2.01200024 000h + 00000cM2.01200024 000h 731265-9 a19991120 20071204011307 @@ -127535,7 +127535,7 @@ - 00561cM2.01200024 000h + 00000cM2.01200024 000h 735276-1 a19991120 20120423151950 @@ -127611,7 +127611,7 @@ - 00508cM2.01200024 000h + 00000cM2.01200024 000h 737536-0 a19991120 20120423105748 @@ -127678,7 +127678,7 @@ - 00548cM2.01200024 000h + 00000cM2.01200024 000h 737958-4 a19991120 20120420101404 @@ -127752,7 +127752,7 @@ - 00583cM2.01200024 000h + 00000cM2.01200024 000h 740072-x a19991120 20070804073405 @@ -127831,7 +127831,7 @@ - 00520cM2.01200024 000h + 00000cM2.01200024 000h 741673-8 a19991120 20120423131140 @@ -127907,7 +127907,7 @@ - 00519cM2.01200024 000h + 00000cM2.01200024 000h 741751-2 a19991120 20100118222033 @@ -127989,7 +127989,7 @@ - 00606cM2.01200024 000h + 00000cM2.01200024 000h 742391-3 a19991120 20120423114407 @@ -128065,7 +128065,7 @@ - 00519cM2.01200024 000h + 00000cM2.01200024 000h 743006-1 a19991120 20100802071033 @@ -128132,7 +128132,7 @@ - 00416cM2.01200024 000h + 00000cM2.01200024 000h 743678-6 a19991120 20120423141934 @@ -128202,7 +128202,7 @@ - 01723cM2.01200024 000h + 00000cM2.01200024 000h 748094-5 a19991120 20120404104037 @@ -128383,7 +128383,7 @@ - 00560cM2.01200024 000h + 00000cM2.01200024 000h 748335-1 a19991120 20100309052232 @@ -128463,7 +128463,7 @@ - 00398cM2.01200024 000h + 00000cM2.01200024 000h 748403-3 a19991120 20100309052235 @@ -128527,7 +128527,7 @@ - 00986cM2.01200024 000h + 00000cM2.01200024 000h 748672-8 a19991120 20120420133649 @@ -128653,7 +128653,7 @@ - 00582cM2.01200024 000h + 00000cM2.01200024 000h 748859-2 a19991120 20090120025244 @@ -128738,7 +128738,7 @@ - 00638cM2.01200024 000h + 00000cM2.01200024 000h 749027-6 a19991120 20111121233957 @@ -128820,7 +128820,7 @@ - 00765cM2.01200024 000h + 00000cM2.01200024 000h 749155-4 a19991120 20120423121517 @@ -128913,7 +128913,7 @@ - 00606cM2.01200024 000h + 00000cM2.01200024 000h 749167-0 a19991120 20120423115858 @@ -129004,7 +129004,7 @@ - 01301cM2.01200024 000h + 00000cM2.01200024 000h 749529-8 a19991120 20120419102140 @@ -129118,7 +129118,7 @@ - 00514cM2.01200024 000h + 00000cM2.01200024 000h 749543-2 a19991120 20120419135624 @@ -129194,7 +129194,7 @@ - 00796cM2.01200024 000h + 00000cM2.01200024 000h 749544-4 a19991120 20071022042110 @@ -129303,7 +129303,7 @@ - 01358cM2.01200024 000h + 00000cM2.01200024 000h 749548-1 a19991120 20120419102613 @@ -129437,7 +129437,7 @@ - 00528cM2.01200024 000h + 00000cM2.01200024 000h 750268-0 a19991120 20080124000116 @@ -129513,7 +129513,7 @@ - 00475cM2.01200024 000h + 00000cM2.01200024 000h 752757-3 a19991120 20060930172510 @@ -129586,7 +129586,7 @@ - 00638cM2.01200024 000h + 00000cM2.01200024 000h 753728-1 a19991120 20050728050756 @@ -129662,7 +129662,7 @@ - 00799cM2.01200024 000h + 00000cM2.01200024 000h 753842-x a19991120 20050530035331 @@ -129765,7 +129765,7 @@ - 01559cM2.01200024 000h + 00000cM2.01200024 000h 753998-8 a19991120 20120423122018 @@ -129887,7 +129887,7 @@ - 00961cM2.01200024 000h + 00000cM2.01200024 000h 756806-x a19991120 20120415120614 @@ -129975,7 +129975,7 @@ - 00888cM2.01200024 000h + 00000cM2.01200024 000h 757210-4 a19991120 20120423142057 @@ -130063,7 +130063,7 @@ - 00848cM2.01200024 000h + 00000cM2.01200024 000h 759315-6 a19991120 20120420092026 @@ -130154,7 +130154,7 @@ - 01008cM2.01200024 000h + 00000cM2.01200024 000h 760835-4 a19991120 20120423104437 @@ -130260,7 +130260,7 @@ - 00671cM2.01200024 000h + 00000cM2.01200024 000h 761685-5 a19991120 20120423120901 @@ -130336,7 +130336,7 @@ - 00655cM2.01200024 000h + 00000cM2.01200024 000h 762717-8 a19991120 20120423141043 @@ -130418,7 +130418,7 @@ - 01193cM2.01200024 000h + 00000cM2.01200024 000h 762730-0 a19991120 20100302013658 @@ -130530,7 +130530,7 @@ - 01325cM2.01200024 000h + 00000cM2.01200024 000h 764273-8 a19991120 20120329153759 @@ -130671,7 +130671,7 @@ - 00497cM2.01200024 000h + 00000cM2.01200024 000h 764297-0 a19991120 20120423114632 @@ -130738,7 +130738,7 @@ - 00871cM2.01200024 000h + 00000cM2.01200024 000h 770625-x a19991120 20120329114434 @@ -130842,7 +130842,7 @@ - 00506cM2.01200024 000h + 00000cM2.01200024 000h 772165-1 a19991120 20100302013719 @@ -130915,7 +130915,7 @@ - 00482cM2.01200024 000h + 00000cM2.01200024 000h 772233-3 a19991120 20120421023117 @@ -131000,7 +131000,7 @@ - 00486cM2.01200024 000h + 00000cM2.01200024 000h 772236-9 a19991120 20100331092408 @@ -131076,7 +131076,7 @@ - 00706cM2.01200024 000h + 00000cM2.01200024 000h 774513-8 a19991120 20050523165940 @@ -131173,7 +131173,7 @@ - 00458cM2.01200024 000h + 00000cM2.01200024 000h 778016-3 a19991120 20120423153136 @@ -131245,7 +131245,7 @@ - 00581cM2.01200024 000h + 00000cM2.01200024 000h 778019-9 a19991120 20120420120517 @@ -131328,7 +131328,7 @@ - 00861cM2.01200024 000h + 00000cM2.01200024 000h 782172-4 a19991120 20110513152536 @@ -131433,7 +131433,7 @@ - 01073cM2.01200024 000h + 00000cM2.01200024 000h 785791-3 a19991120 20120423111731 @@ -131551,7 +131551,7 @@ - 00787cM2.01200024 000h + 00000cM2.01200024 000h 786091-2 a19991120 20120420163554 @@ -131648,7 +131648,7 @@ - 00668cM2.01200024 000h + 00000cM2.01200024 000h 786770-0 a19991120 20050530041411 @@ -131736,7 +131736,7 @@ - 01024cM2.01200024 000h + 00000cM2.01200024 000h 787250-1 a19991120 20100713182932 @@ -131853,7 +131853,7 @@ - 00473cM2.01200024 000h + 00000cM2.01200024 000h 791193-2 a19991120 20090714092916 @@ -131926,7 +131926,7 @@ - 01031cM2.01200024 000h + 00000cM2.01200024 000h 792748-4 a19991120 20100713182955 @@ -132050,7 +132050,7 @@ - 06074cM2.01200024 000h + 00000cM2.01200024 000h 795144-9 a19991120 20120420110319 @@ -132436,7 +132436,7 @@ - 01760cM2.01200024 000h + 00000cM2.01200024 000h 795771-3 a19991120 20120420163911 @@ -132602,7 +132602,7 @@ - 00780cM2.01200024 000h + 00000cM2.01200024 000h 796091-8 a19991120 20120419090938 @@ -132698,7 +132698,7 @@ - 00599cM2.01200024 000h + 00000cM2.01200024 000h 796092-x a19991120 20120419091044 @@ -132780,7 +132780,7 @@ - 00605cM2.01200024 000h + 00000cM2.01200024 000h 796094-3 a19991120 20120419091213 @@ -132862,7 +132862,7 @@ - 01020cM2.01200024 000h + 00000cM2.01200024 000h 796336-1 a19991120 20110708123239 @@ -132980,7 +132980,7 @@ - 01324cM2.01200024 000h + 00000cM2.01200024 000h 796720-2 a19991120 20120208222236 @@ -133130,7 +133130,7 @@ - 00986cM2.01200024 000h + 00000cM2.01200024 000h 796796-2 a19991120 20120420110853 @@ -133269,7 +133269,7 @@ - 00577cM2.01200024 000h + 00000cM2.01200024 000h 797645-8 a19991120 20100405233814 @@ -133348,7 +133348,7 @@ - 01387cM2.01200024 000h + 00000cM2.01200024 000h 798160-0 a19991120 20120423185826 @@ -133497,7 +133497,7 @@ - 00633cM2.01200024 000h + 00000cM2.01200024 000h 798208-2 a19991120 20050530043519 @@ -133579,7 +133579,7 @@ - 00574cM2.01200024 000h + 00000cM2.01200024 000h 800010-4 a19991120 20120423121030 @@ -133661,7 +133661,7 @@ - 03099cM2.01200024 000h + 00000cM2.01200024 000h 800050-5 a19991120 20120207161601 @@ -133853,7 +133853,7 @@ - 01817cM2.01200024 000h + 00000cM2.01200024 000h 800280-0 a19991120 20120209160816 @@ -134034,7 +134034,7 @@ - 00480cM2.01200024 000h + 00000cM2.01200024 000h 800584-9 a19991120 20120423105031 @@ -134104,7 +134104,7 @@ - 00606cM2.01200024 000h + 00000cM2.01200024 000h 801591-0 a19991120 20120208231307 @@ -134186,7 +134186,7 @@ - 00584cM2.01200024 000h + 00000cM2.01200024 000h 801865-0 a19991120 20120410125653 @@ -134289,7 +134289,7 @@ - 00593cM2.01200024 000h + 00000cM2.01200024 000h 802170-3 a19991120 20120423160612 @@ -134386,7 +134386,7 @@ - 02264cM2.01200024 000h + 00000cM2.01200024 000h 802487-x a19991120 20120415111842 @@ -134544,7 +134544,7 @@ - 01007cM2.01200024 000h + 00000cM2.01200024 000h 803751-6 a19991120 20090310044730 @@ -134651,7 +134651,7 @@ - 00627cM2.01200024 000h + 00000cM2.01200024 000h 804373-5 a19991120 20100309053411 @@ -134721,7 +134721,7 @@ - 01434cM2.01200024 000h + 00000cM2.01200024 000h 804921-x a19991120 20120420151543 @@ -134882,7 +134882,7 @@ - 00468cM2.01200024 000h + 00000cM2.01200024 000h 805130-6 a19991120 20050728052311 @@ -134952,7 +134952,7 @@ - 00846cM2.01200024 000h + 00000cM2.01200024 000h 805322-4 a19991120 20120415120254 @@ -135046,7 +135046,7 @@ - 00530cM2.01200024 000h + 00000cM2.01200024 000h 805368-6 a19991120 20050728052359 @@ -135122,7 +135122,7 @@ - 00540cM2.01200024 000h + 00000cM2.01200024 000h 806585-8 a19991120 20071101121714 @@ -135198,7 +135198,7 @@ - 00766cM2.01200024 000h + 00000cM2.01200024 000h 821407-4 a19991120 20120419094618 @@ -135301,7 +135301,7 @@ - 00521cM2.01200024 000h + 00000cM2.01200024 000h 824543-5 a19991120 20100119103408 @@ -135380,7 +135380,7 @@ - 00625cM2.01200024 000h + 00000cM2.01200024 000h 824553-8 a19991120 20120419214101 @@ -135462,7 +135462,7 @@ - 00491cM2.01200024 000h + 00000cM2.01200024 000h 824891-6 a19991120 20090508174843 @@ -135541,7 +135541,7 @@ - 00802cM2.01200024 000h + 00000cM2.01200024 000h 824995-7 a19991120 20120415101945 @@ -135665,7 +135665,7 @@ - 00459cM2.01200024 000h + 00000cM2.01200024 000h 830225-x a19991120 20081129163006 @@ -135735,7 +135735,7 @@ - 01655cM2.01200024 000h + 00000cM2.01200024 000h 840160-3 a19991120 20120419113441 @@ -135897,7 +135897,7 @@ - 00581cM2.01200024 000h + 00000cM2.01200024 000h 840378-8 a19991120 20090508174846 @@ -135985,7 +135985,7 @@ - 01009cM2.01200024 000h + 00000cM2.01200024 000h 840397-1 a19991120 20110517154710 @@ -136064,7 +136064,7 @@ - 01149cM2.01200024 000h + 00000cM2.01200024 000h 840816-6 a19991120 20120423114107 @@ -136182,7 +136182,7 @@ - 00352cM2.01200024 000h + 00000cM2.01200024 000h 841824-x a19991120 20100118222219 @@ -136243,7 +136243,7 @@ - 00384cM2.01200024 000h + 00000cM2.01200024 000h 842067-1 a19991120 20100309053650 @@ -136304,7 +136304,7 @@ - 00660cM2.01200024 000h + 00000cM2.01200024 000h 844950-8 a19991120 20100118232305 @@ -136404,7 +136404,7 @@ - 00679cM2.01200024 000h + 00000cM2.01200024 000h 846047-4 a19991120 20120419214047 @@ -136477,7 +136477,7 @@ - 00643cM2.01200024 000h + 00000cM2.01200024 000h 846098-x a19991120 20100113110303 @@ -136559,7 +136559,7 @@ - 00409cM2.01200024 000h + 00000cM2.01200024 000h 848275-5 a19991120 20050523183142 @@ -136623,7 +136623,7 @@ - 00427cM2.01200024 000h + 00000cM2.01200024 000h 848544-6 a19991120 20081129163039 @@ -136690,7 +136690,7 @@ - 00934cM2.01200024 000h + 00000cM2.01200024 000h 852478-6 a19991120 20110620153644 @@ -136803,7 +136803,7 @@ - 00876cM2.01200024 000h + 00000cM2.01200024 000h 852591-2 a19991120 20120423173017 @@ -136895,7 +136895,7 @@ - 01918cM2.01200024 000h + 00000cM2.01200024 000h 858271-3 a19991120 20120423111556 @@ -137017,7 +137017,7 @@ - 00622cM2.01200024 000h + 00000cM2.01200024 000h 861636-x a19991120 20100309054252 @@ -137101,7 +137101,7 @@ - 00564cM2.01200024 000h + 00000cM2.01200024 000h 865528-5 a19991120 20120420091618 @@ -137174,7 +137174,7 @@ - 00630cM2.01200024 000h + 00000cM2.01200024 000h 874569-9 a19991120 20120420075246 @@ -137253,7 +137253,7 @@ - 00550cM2.01200024 000h + 00000cM2.01200024 000h 876893-6 a19991120 20120423104714 @@ -137329,7 +137329,7 @@ - 01342cM2.01200024 000h + 00000cM2.01200024 000h 880736-x a19991120 20110618183510 @@ -137423,7 +137423,7 @@ - 00424cM2.01200024 000h + 00000cM2.01200024 000h 880760-7 a19991120 20120423111117 @@ -137493,7 +137493,7 @@ - 00460cM2.01200024 000h + 00000cM2.01200024 000h 881408-9 a19991120 20120423171302 @@ -137557,7 +137557,7 @@ - 01761cM2.01200024 000h + 00000cM2.01200024 000h 881458-2 a19991120 20120322104503 @@ -137760,7 +137760,7 @@ - 00968cM2.01200024 000h + 00000cM2.01200024 000h 890552-6 a19991120 20120322132432 @@ -137839,7 +137839,7 @@ - 00708cM2.01200024 000h + 00000cM2.01200024 000h 890583-6 a19991120 20120321092727 @@ -137912,7 +137912,7 @@ - 00846cM2.01200024 000h + 00000cM2.01200024 000h 890601-4 a19991120 20100309054439 @@ -137988,7 +137988,7 @@ - 01471cM2.01200024 000h + 00000cM2.01200024 000h 890617-8 a19991120 20110708123254 @@ -138100,7 +138100,7 @@ - 02241cM2.01200024 000h + 00000cM2.01200024 000h 890633-6 a19991120 20110725115409 @@ -138194,7 +138194,7 @@ - 00891cM2.01200024 000h + 00000cM2.01200024 000h 890744-4 a19991120 20110708123255 @@ -138276,7 +138276,7 @@ - 00915cM2.01200024 000h + 00000cM2.01200024 000h 890766-3 a19991120 20120420084604 @@ -138395,7 +138395,7 @@ - 00793cM2.01200024 000h + 00000cM2.01200024 000h 890955-6 a19991120 20111014120002 @@ -138484,7 +138484,7 @@ - 01310cM2.01200024 000h + 00000cM2.01200024 000h 891026-1 a19991120 20120326121823 @@ -138578,7 +138578,7 @@ - 00547cM2.01200024 000h + 00000cM2.01200024 000h 895641-8 a19991120 20120419142735 @@ -138660,7 +138660,7 @@ - 00819cM2.01200024 000h + 00000cM2.01200024 000h 895880-4 a19991120 20120421023033 @@ -138769,7 +138769,7 @@ - 00555cM2.01200024 000h + 00000cM2.01200024 000h 896995-4 a19991120 20120420141035 @@ -138845,7 +138845,7 @@ - 00608cM2.01200024 000h + 00000cM2.01200024 000h 913280-6 a19991120 20120419132155 @@ -138915,7 +138915,7 @@ - 00604cM2.01200024 000h + 00000cM2.01200024 000h 913769-5 a19991120 20120415120724 @@ -139000,7 +139000,7 @@ - 00629cM2.01200024 000h + 00000cM2.01200024 000h 913984-9 a19991120 20120420101002 @@ -139076,7 +139076,7 @@ - 00407cM2.01200024 000h + 00000cM2.01200024 000h 914831-0 a19991120 20110714005437 @@ -139146,7 +139146,7 @@ - 00506cM2.01200024 000h + 00000cM2.01200024 000h 914871-1 a19991120 20050524142807 @@ -139213,7 +139213,7 @@ - 00705cM2.01200024 000h + 00000cM2.01200024 000h 914977-6 a19991120 20100713183447 @@ -139304,7 +139304,7 @@ - 00973cM2.01200024 000h + 00000cM2.01200024 000h 915076-6 a19991120 20120423100230 @@ -139458,7 +139458,7 @@ - 00666cM2.01200024 000h + 00000cM2.01200024 000h 915229-5 a19991120 20120209000737 @@ -139555,7 +139555,7 @@ - 00690cM2.01200024 000h + 00000cM2.01200024 000h 915288-x a19991120 20120423123823 @@ -139637,7 +139637,7 @@ - 00773cM2.01200024 000h + 00000cM2.01200024 000h 916499-6 a19991120 20120419140451 @@ -139743,7 +139743,7 @@ - 01103cM2.01200024 000h + 00000cM2.01200024 000h 918659-1 a19991120 20120126082511 @@ -139844,7 +139844,7 @@ - 00773cM2.01200024 000h + 00000cM2.01200024 000h 919055-7 a19991120 20100713183504 @@ -139938,7 +139938,7 @@ - 00671cM2.01200024 000h + 00000cM2.01200024 000h 920307-2 a19991120 20120415112409 @@ -140033,7 +140033,7 @@ - 00984cM2.01200024 000h + 00000cM2.01200024 000h 935033-0 a19991120 20120419122925 @@ -140138,7 +140138,7 @@ - 00531cM2.01200024 000h + 00000cM2.01200024 000h 951456-9 a19991120 20100302014137 @@ -140214,7 +140214,7 @@ - 00684cM2.01200024 000h + 00000cM2.01200024 000h 951922-1 a19991120 20110713233724 @@ -140314,7 +140314,7 @@ - 01067cM2.01200024 000h + 00000cM2.01200024 000h 967200-x a19991120 20120423131220 @@ -140405,7 +140405,7 @@ - 00696cM2.01200024 000h + 00000cM2.01200024 000h 967202-3 a19991120 20120423115910 @@ -140484,7 +140484,7 @@ - 00762cM2.01200024 000h + 00000cM2.01200024 000h 967205-9 a19991120 20120423115849 @@ -140572,7 +140572,7 @@ - 01522cM2.01200024 000h + 00000cM2.01200024 000h 967645-4 a19991120 20120420115918 @@ -140692,7 +140692,7 @@ - 00553cM2.01200024 000h + 00000cM2.01200024 000h 968852-3 a19991120 20050524144754 @@ -140768,7 +140768,7 @@ - 00552cM2.01200024 000h + 00000cM2.01200024 000h 971244-6 a19991120 20120415113941 @@ -140841,7 +140841,7 @@ - 00359cM2.01200024 000h + 00000cM2.01200024 000h 971285-9 a19991120 20120423103445 @@ -140902,7 +140902,7 @@ - 00715cM2.01200024 000h + 00000cM2.01200024 000h 971399-2 a19991120 20110708123310 @@ -140987,7 +140987,7 @@ - 01361cM2.01200024 000h + 00000cM2.01200024 000h 971485-6 a19991120 20100309055344 @@ -141119,7 +141119,7 @@ - 00766cM2.01200024 000h + 00000cM2.01200024 000h 972788-7 a19991120 20120415112851 @@ -141231,7 +141231,7 @@ - 00586cM2.01200024 000h + 00000cM2.01200024 000h 973552-5 a19991120 20120423095406 @@ -141301,7 +141301,7 @@ - 00553cM2.01200024 000h + 00000cM2.01200024 000h 974106-9 a19991120 20091019231405 @@ -141389,7 +141389,7 @@ - 01148cM2.01200024 000h + 00000cM2.01200024 000h 976182-2 a19991120 20100928223010 @@ -141535,7 +141535,7 @@ - 01329cM2.01200024 000h + 00000cM2.01200024 000h 976339-9 a19991120 20081125021028 @@ -141641,7 +141641,7 @@ - 00869cM2.01200024 000h + 00000cM2.01200024 000h 976744-7 a19991120 20120420074038 @@ -141726,7 +141726,7 @@ - 00817cM2.01200024 000h + 00000cM2.01200024 000h 979017-2 a19991120 20100201220506 @@ -141826,7 +141826,7 @@ - 00553cM2.01200024 000h + 00000cM2.01200024 000h 980544-8 a19991120 20120423131544 @@ -141902,7 +141902,7 @@ - 00439cM2.01200024 000h + 00000cM2.01200024 000h 983937-9 a19991120 20120419214042 @@ -141966,7 +141966,7 @@ - 00892cM2.01200024 000h + 00000cM2.01200024 000h 983993-8 a19991120 20070804080558 @@ -142063,7 +142063,7 @@ - 01041cM2.01200024 000h + 00000cM2.01200024 000h 985294-3 a19991120 20120420023010 @@ -142225,7 +142225,7 @@ - 01668cM2.01200024 000h + 00000cM2.01200024 000h 986101-4 a19991120 20120208231516 @@ -142346,7 +142346,7 @@ - 00400cM2.01200024 000h + 00000cM2.01200024 000h 987494-x a19991120 20050524152246 @@ -142407,7 +142407,7 @@ - 00842cM2.01200024 000h + 00000cM2.01200024 000h 988027-6 a19991120 20120423105253 @@ -142533,7 +142533,7 @@ - 00733cM2.01200024 000h + 00000cM2.01200024 000h 990468-2 a19991120 20110713233813 @@ -142633,7 +142633,7 @@ - 00428cM2.01200024 000h + 00000cM2.01200024 000h 990984-9 a19991120 20071029092917 @@ -142697,7 +142697,7 @@ - 02546cM2.01200024 000h + 00000cM2.01200024 000h 991350-6 a19991120 20120420084436 @@ -142915,7 +142915,7 @@ - 00336cM2.01200024 000h + 00000cM2.01200024 000h 995873-3 a19991120 20111226170424 @@ -142979,7 +142979,7 @@ - 00514cM2.01200024 000h + 00000cM2.01200024 000h 997052-6 a19991120 20120423121644 @@ -143055,7 +143055,7 @@ - 00483cM2.01200024 000h + 00000cM2.01200024 000h 997442-8 a19991120 20120423152151 @@ -143122,7 +143122,7 @@ - 00814cM2.01200024 000h + 00000cM2.01200024 000h 997552-4 a19991120 20100302014247 @@ -143260,7 +143260,7 @@ - 00810cM2.01200024 000h + 00000cM2.01200024 000h 998084-2 a19991120 20080603214432 @@ -143366,7 +143366,7 @@ - 00777cM2.01200024 000h + 00000cM2.01200024 000h 1000308-3 a19991120 20120419094116 @@ -143470,7 +143470,7 @@ - 00713cM2.01200024 000h + 00000cM2.01200024 000h 1001226-6 a19991120 20120420173321 @@ -143554,7 +143554,7 @@ - 01055cM2.01200024 000h + 00000cM2.01200024 000h 1001513-9 a19991120 20120423151418 @@ -143664,7 +143664,7 @@ - 01050cM2.01200024 000h + 00000cM2.01200024 000h 1003064-5 a19991120 20120423095252 @@ -143790,7 +143790,7 @@ - 00804cM2.01200024 000h + 00000cM2.01200024 000h 1005784-5 a19991120 20070804081106 @@ -143875,7 +143875,7 @@ - 00461cM2.01200024 000h + 00000cM2.01200024 000h 1006250-6 a19991120 20120423114547 @@ -143951,7 +143951,7 @@ - 00904cM2.01200024 000h + 00000cM2.01200024 000h 1006269-5 a19991120 20120423120935 @@ -144052,7 +144052,7 @@ - 00922cM2.01200024 000h + 00000cM2.01200024 000h 1006421-7 a19991120 20070804081120 @@ -144134,7 +144134,7 @@ - 01071cM2.01200024 000h + 00000cM2.01200024 000h 1006861-2 a19991120 20120420155257 @@ -144270,7 +144270,7 @@ - 01056cM2.01200024 000h + 00000cM2.01200024 000h 1006862-4 a19991120 20120419103110 @@ -144400,7 +144400,7 @@ - 00658cM2.01200024 000h + 00000cM2.01200024 000h 1006940-9 a19991120 20090508175300 @@ -144482,7 +144482,7 @@ - 00339cM2.01200024 000h + 00000cM2.01200024 000h 1007069-2 a19991120 20100309060715 @@ -144540,7 +144540,7 @@ - 02264cM2.01200024 000h + 00000cM2.01200024 000h 1007496-x a19991120 20100309060717 @@ -144655,7 +144655,7 @@ - 00483cM2.01200024 000h + 00000cM2.01200024 000h 1008703-5 a19991120 20120423152031 @@ -144728,7 +144728,7 @@ - 00698cM2.01200024 000h + 00000cM2.01200024 000h 1008855-6 a19991120 20120423151957 @@ -144801,7 +144801,7 @@ - 00556cM2.01200024 000h + 00000cM2.01200024 000h 1010692-3 a19991120 20120423181133 @@ -144880,7 +144880,7 @@ - 01084cM2.01200024 000h + 00000cM2.01200024 000h 1010732-0 a19991120 20120209000755 @@ -144986,7 +144986,7 @@ - 00564cM2.01200024 000h + 00000cM2.01200024 000h 1012662-4 a19991120 20120419164158 @@ -145059,7 +145059,7 @@ - 01255cM2.01200024 000h + 00000cM2.01200024 000h 1012832-3 a19991120 20120420153652 @@ -145166,7 +145166,7 @@ - 01137cM2.01200024 000h + 00000cM2.01200024 000h 1013183-8 a19991120 20120215155350 @@ -145293,7 +145293,7 @@ - 00437cM2.01200024 000h + 00000cM2.01200024 000h 1013501-7 a19991120 20100118222355 @@ -145360,7 +145360,7 @@ - 00620cM2.01200024 000h + 00000cM2.01200024 000h 1014056-6 a19991120 20120419122800 @@ -145443,7 +145443,7 @@ - 00517cM2.01200024 000h + 00000cM2.01200024 000h 1014125-x a19991120 20120209000812 @@ -145528,7 +145528,7 @@ - 01013cM2.01200024 000h + 00000cM2.01200024 000h 1014778-0 a19991120 20120420160345 @@ -145620,7 +145620,7 @@ - 00583cM2.01200024 000h + 00000cM2.01200024 000h 1014995-8 a19991120 20120423105748 @@ -145716,7 +145716,7 @@ - 00665cM2.01200024 000h + 00000cM2.01200024 000h 1015037-7 a19991120 20050524161147 @@ -145789,7 +145789,7 @@ - 00543cM2.01200024 000h + 00000cM2.01200024 000h 1015633-1 a19991120 20120419093808 @@ -145877,7 +145877,7 @@ - 00438cM2.01200024 000h + 00000cM2.01200024 000h 1017271-3 a19991120 20050524161648 @@ -145953,7 +145953,7 @@ - 00505cM2.01200024 000h + 00000cM2.01200024 000h 1018204-4 a19991120 20050524161855 @@ -146017,7 +146017,7 @@ - 00574cM2.01200024 000h + 00000cM2.01200024 000h 1018634-7 a19991120 20120415112836 @@ -146114,7 +146114,7 @@ - 00566uM2.01200024 000h + 00000uM2.01200024 000h 1019582-8 a19991120 20120419103021 @@ -146187,7 +146187,7 @@ - 00582cM2.01200024 000h + 00000cM2.01200024 000h 1020523-8 a19991120 20100118222415 @@ -146263,7 +146263,7 @@ - 00549cM2.01200024 000h + 00000cM2.01200024 000h 1020557-3 a19991120 20050728053542 @@ -146336,7 +146336,7 @@ - 01361cM2.01200024 000h + 00000cM2.01200024 000h 1021751-4 a19991120 20120423143609 @@ -146476,7 +146476,7 @@ - 01195cM2.01200024 000h + 00000cM2.01200024 000h 1022258-3 a19991120 20120209000832 @@ -146621,7 +146621,7 @@ - 00515cM2.01200024 000h + 00000cM2.01200024 000h 1022617-5 a19991120 20050524162905 @@ -146688,7 +146688,7 @@ - 00949cM2.01200024 000h + 00000cM2.01200024 000h 1022943-7 a19991120 20120412150028 @@ -146810,7 +146810,7 @@ - 00918cM2.01200024 000h + 00000cM2.01200024 000h 1024505-4 a19991120 20100302014449 @@ -146933,7 +146933,7 @@ - 02097cM2.01200024 000h + 00000cM2.01200024 000h 1026048-1 a19991120 20120419102704 @@ -147126,7 +147126,7 @@ - 01514cM2.01200024 000h + 00000cM2.01200024 000h 1026067-5 a19991120 20120208234445 @@ -147316,7 +147316,7 @@ - 00969cM2.01200024 000h + 00000cM2.01200024 000h 1030909-3 a19991120 20120420152552 @@ -147418,7 +147418,7 @@ - 01117cM2.01200024 000h + 00000cM2.01200024 000h 1030959-7 a19991120 20120423082900 @@ -147527,7 +147527,7 @@ - 00728cM2.01200024 000h + 00000cM2.01200024 000h 1031695-4 a19991120 20120423134859 @@ -147618,7 +147618,7 @@ - 03871cM2.01200024 000h + 00000cM2.01200024 000h 1032552-9 a19991120 20110503154724 @@ -147849,7 +147849,7 @@ - 01475cM2.01200024 000h + 00000cM2.01200024 000h 1033312-5 a19991120 20111125092239 @@ -148031,7 +148031,7 @@ - 00708cM2.01200024 000h + 00000cM2.01200024 000h 1033357-5 a19991120 20120423101439 @@ -148110,7 +148110,7 @@ - 00851cM2.01200024 000h + 00000cM2.01200024 000h 1033692-8 a19991120 20120419092325 @@ -148236,7 +148236,7 @@ - 00853cM2.01200024 000h + 00000cM2.01200024 000h 1033766-0 a19991120 20081015144805 @@ -148349,7 +148349,7 @@ - 01180cM2.01200024 000h + 00000cM2.01200024 000h 1036123-6 a19991120 20110618183631 @@ -148458,7 +148458,7 @@ - 00772cM2.01200024 000h + 00000cM2.01200024 000h 1036457-2 a19991120 20080318214846 @@ -148567,7 +148567,7 @@ - 00763cM2.01200024 000h + 00000cM2.01200024 000h 1037653-7 a19991120 20120423110450 @@ -148657,7 +148657,7 @@ - 01195cM2.01200024 000h + 00000cM2.01200024 000h 1037786-4 a19991120 20120419153903 @@ -148813,7 +148813,7 @@ - 00855cM2.01200024 000h + 00000cM2.01200024 000h 1038545-9 a19991120 20120423114820 @@ -148901,7 +148901,7 @@ - 00775cM2.01200024 000h + 00000cM2.01200024 000h 1038610-5 a19991120 20120419113322 @@ -148992,7 +148992,7 @@ - 00630cM2.01200024 000h + 00000cM2.01200024 000h 1038704-3 a19991120 20120419111128 @@ -149077,7 +149077,7 @@ - 00843cM2.01200024 000h + 00000cM2.01200024 000h 1038721-3 a19991120 20120420090028 @@ -149171,7 +149171,7 @@ - 00788cM2.01200024 000h + 00000cM2.01200024 000h 1038730-4 a19991120 20120423085235 @@ -149262,7 +149262,7 @@ - 01254cM2.01200024 000h + 00000cM2.01200024 000h 1038755-9 a19991120 20120423084404 @@ -149356,7 +149356,7 @@ - 00633cM2.01200024 000h + 00000cM2.01200024 000h 1040988-9 a19991120 20100106121910 @@ -149456,7 +149456,7 @@ - 01526cM2.01200024 000h + 00000cM2.01200024 000h 1040990-7 a19991120 20100729092449 @@ -149633,7 +149633,7 @@ - 00811cM2.01200024 000h + 00000cM2.01200024 000h 1041339-x a19991120 20110714023054 @@ -149715,7 +149715,7 @@ - 00816cM2.01200024 000h + 00000cM2.01200024 000h 1041687-0 a19991120 20120423151503 @@ -149803,7 +149803,7 @@ - 01232cM2.01200024 000h + 00000cM2.01200024 000h 1041776-x a19991120 20120420134324 @@ -149950,7 +149950,7 @@ - 00852cM2.01200024 000h + 00000cM2.01200024 000h 1042191-9 a19991120 20120127115703 @@ -150074,7 +150074,7 @@ - 00650cM2.01200024 000h + 00000cM2.01200024 000h 1042411-8 a19991120 20070804081905 @@ -150153,7 +150153,7 @@ - 00541cM2.01200024 000h + 00000cM2.01200024 000h 1042907-4 a19991120 20070804081909 @@ -150226,7 +150226,7 @@ - 02617cM2.01200024 000h + 00000cM2.01200024 000h 1044270-4 a19991120 20120423125804 @@ -150443,7 +150443,7 @@ - 00949cM2.01200024 000h + 00000cM2.01200024 000h 1044416-6 a19991120 20110713233940 @@ -150570,7 +150570,7 @@ - 00499cM2.01200024 000h + 00000cM2.01200024 000h 1044778-7 a19991120 20050524172328 @@ -150634,7 +150634,7 @@ - 00626cM2.01200024 000h + 00000cM2.01200024 000h 1044782-9 a19991120 20050524172329 @@ -150713,7 +150713,7 @@ - 00613cM2.01200024 000h + 00000cM2.01200024 000h 1045111-0 a19991120 20120420141801 @@ -150786,7 +150786,7 @@ - 00831cM2.01200024 000h + 00000cM2.01200024 000h 1045751-3 a19991120 20090310045359 @@ -150913,7 +150913,7 @@ - 00800cM2.01200024 000h + 00000cM2.01200024 000h 1045964-9 a19991120 20080415001838 @@ -151004,7 +151004,7 @@ - 00598cM2.01200024 000h + 00000cM2.01200024 000h 1048294-5 a19991120 20090508175521 @@ -151083,7 +151083,7 @@ - 03074cM2.01200024 000h + 00000cM2.01200024 000h 1048306-8 a19991120 20120423154515 @@ -151281,7 +151281,7 @@ - 00574cM2.01200024 000h + 00000cM2.01200024 000h 1048386-x a19991120 20050524173254 @@ -151357,7 +151357,7 @@ - 00670cM2.01200024 000h + 00000cM2.01200024 000h 1048390-1 a19991120 20050524173255 @@ -151436,7 +151436,7 @@ - 01015cM2.01200024 000h + 00000cM2.01200024 000h 1048394-9 a19991120 20091215111221 @@ -151527,7 +151527,7 @@ - 00941cM2.01200024 000h + 00000cM2.01200024 000h 1048395-0 a19991120 20100113094521 @@ -151615,7 +151615,7 @@ - 01246cM2.01200024 000h + 00000cM2.01200024 000h 1048397-4 a19991120 20100111141703 @@ -151727,7 +151727,7 @@ - 00747cM2.01200024 000h + 00000cM2.01200024 000h 1048765-7 a19991120 20080123230601 @@ -151827,7 +151827,7 @@ - 00725cM2.01200024 000h + 00000cM2.01200024 000h 1049050-4 a19991120 20111122095553 @@ -151912,7 +151912,7 @@ - 00838cM2.01200024 000h + 00000cM2.01200024 000h 1049120-x a19991120 20120208234447 @@ -152015,7 +152015,7 @@ - 00744cM2.01200024 000h + 00000cM2.01200024 000h 1050190-3 a19991120 20120415120217 @@ -152103,7 +152103,7 @@ - 01345cM2.01200024 000h + 00000cM2.01200024 000h 1051688-8 a19991120 20110316104441 @@ -152249,7 +152249,7 @@ - 00781cM2.01200024 000h + 00000cM2.01200024 000h 1051897-6 a19991120 20120423141015 @@ -152337,7 +152337,7 @@ - 00870cM2.01200024 000h + 00000cM2.01200024 000h 1051998-1 a19991120 20120423135010 @@ -152428,7 +152428,7 @@ - 01210cM2.01200024 000h + 00000cM2.01200024 000h 1052110-0 a19991120 20120103104800 @@ -152519,7 +152519,7 @@ - 00737cM2.01200024 000h + 00000cM2.01200024 000h 1052123-9 a19991120 20070804082044 @@ -152601,7 +152601,7 @@ - 00764cM2.01200024 000h + 00000cM2.01200024 000h 1052127-6 a19991120 20090831150239 @@ -152680,7 +152680,7 @@ - 00729cM2.01200024 000h + 00000cM2.01200024 000h 1052137-9 a19991120 20120126111751 @@ -152766,7 +152766,7 @@ - 00828cM2.01200024 000h + 00000cM2.01200024 000h 1052145-8 a19991120 20050524174234 @@ -152848,7 +152848,7 @@ - 00778cM2.01200024 000h + 00000cM2.01200024 000h 1052153-7 a19991120 20050524174235 @@ -152927,7 +152927,7 @@ - 00720cM2.01200024 000h + 00000cM2.01200024 000h 1052158-6 a19991120 20120105153705 @@ -153012,7 +153012,7 @@ - 01023cM2.01200024 000h + 00000cM2.01200024 000h 1052179-3 a19991120 20120423174827 @@ -153103,7 +153103,7 @@ - 01510cM2.01200024 000h + 00000cM2.01200024 000h 1052240-2 a19991120 20120423172539 @@ -153212,7 +153212,7 @@ - 01515cM2.01200024 000h + 00000cM2.01200024 000h 1053717-x a19991120 20050524174638 @@ -153315,7 +153315,7 @@ - 00703cM2.01200024 000h + 00000cM2.01200024 000h 1054594-3 a19991120 20120415113409 @@ -153404,7 +153404,7 @@ - 00778cM2.01200024 000h + 00000cM2.01200024 000h 1056909-1 a19991120 20120423083522 @@ -153489,7 +153489,7 @@ - 00735cM2.01200024 000h + 00000cM2.01200024 000h 1057655-1 a19991120 20120423152059 @@ -153577,7 +153577,7 @@ - 01258cM2.01200024 000h + 00000cM2.01200024 000h 1058631-3 a19991120 20120423144157 @@ -153680,7 +153680,7 @@ - 00768cM2.01200024 000h + 00000cM2.01200024 000h 1059110-2 a19991121 20120208162733 @@ -153795,7 +153795,7 @@ - 01436cM2.01200024 000h + 00000cM2.01200024 000h 1060150-8 a19991121 20110203003713 @@ -153963,7 +153963,7 @@ - 00600cM2.01200024 000h + 00000cM2.01200024 000h 1060263-x a19991121 20120415120555 @@ -154066,7 +154066,7 @@ - 00734cM2.01200024 000h + 00000cM2.01200024 000h 1061408-4 a19991121 20120415112408 @@ -154154,7 +154154,7 @@ - 00678cM2.01200024 000h + 00000cM2.01200024 000h 1061998-7 a19991121 20050524180815 @@ -154233,7 +154233,7 @@ - 00558cM2.01200024 000h + 00000cM2.01200024 000h 1062244-5 a19991121 20120423152245 @@ -154315,7 +154315,7 @@ - 00993cM2.01200024 000h + 00000cM2.01200024 000h 1062903-8 a19991121 20110329102726 @@ -154448,7 +154448,7 @@ - 02437cM2.01200024 000h + 00000cM2.01200024 000h 1063549-x a19991121 20120415115603 @@ -154644,7 +154644,7 @@ - 01887cM2.01200024 000h + 00000cM2.01200024 000h 1065372-7 a19991121 20120419124256 @@ -154843,7 +154843,7 @@ - 01108cM2.01200024 000h + 00000cM2.01200024 000h 1066443-9 a19991121 20090902102725 @@ -154934,7 +154934,7 @@ - 00800cM2.01200024 000h + 00000cM2.01200024 000h 1066501-8 a19991121 20120423085640 @@ -155012,7 +155012,7 @@ - 00531cM2.01200024 000h + 00000cM2.01200024 000h 1068963-1 a19991121 20120415112415 @@ -155088,7 +155088,7 @@ - 00874cM2.01200024 000h + 00000cM2.01200024 000h 1069205-8 a19991121 20120420175510 @@ -155167,7 +155167,7 @@ - 00676cM2.01200024 000h + 00000cM2.01200024 000h 1070745-1 a19991121 20120419162301 @@ -155255,7 +155255,7 @@ - 00530cM2.01200024 000h + 00000cM2.01200024 000h 1072497-7 a19991121 20120208231756 @@ -155337,7 +155337,7 @@ - 01228cM2.01200024 000h + 00000cM2.01200024 000h 1072740-1 a19991121 20120415112403 @@ -155495,7 +155495,7 @@ - 00745cM2.01200024 000h + 00000cM2.01200024 000h 1073886-1 a19991121 20090423123412 @@ -155583,7 +155583,7 @@ - 00529cM2.01200024 000h + 00000cM2.01200024 000h 1076255-3 a19991121 20070516142522 @@ -155653,7 +155653,7 @@ - 00924cM2.01200024 000h + 00000cM2.01200024 000h 1076693-5 a19991121 20090707030431 @@ -155756,7 +155756,7 @@ - 01009cM2.01200024 000h + 00000cM2.01200024 000h 1076707-1 a19991121 20090707030431 @@ -155859,7 +155859,7 @@ - 01019cM2.01200024 000h + 00000cM2.01200024 000h 1077203-0 a19991121 20120419162055 @@ -155968,7 +155968,7 @@ - 00753cM2.01200024 000h + 00000cM2.01200024 000h 1079981-3 a19991121 20120419104719 @@ -156065,7 +156065,7 @@ - 00717cM2.01200024 000h + 00000cM2.01200024 000h 1080892-9 a19991121 20120415112204 @@ -156178,7 +156178,7 @@ - 00487cM2.01200024 000h + 00000cM2.01200024 000h 1081552-1 a19991121 20120420150050 @@ -156264,7 +156264,7 @@ - 01305cM2.01200024 000h + 00000cM2.01200024 000h 1083376-6 a19991121 20100713184455 @@ -156416,7 +156416,7 @@ - 01452cM2.01200024 000h + 00000cM2.01200024 000h 1083487-4 a19991121 20120208222754 @@ -156579,7 +156579,7 @@ - 01256cM2.01200024 000h + 00000cM2.01200024 000h 1085567-1 a19991121 20100302014752 @@ -156703,7 +156703,7 @@ - 00798cM2.01200024 000h + 00000cM2.01200024 000h 1085573-7 a19991121 20120423141758 @@ -156794,7 +156794,7 @@ - 00576cM2.01200024 000h + 00000cM2.01200024 000h 1085845-3 a19991121 20080205215119 @@ -156876,7 +156876,7 @@ - 00759cM2.01200024 000h + 00000cM2.01200024 000h 1085937-8 a19991121 20120423132033 @@ -156991,7 +156991,7 @@ - 00677cM2.01200024 000h + 00000cM2.01200024 000h 1086507-x a19991121 20120415101911 @@ -157080,7 +157080,7 @@ - 01845cM2.01200024 000h + 00000cM2.01200024 000h 1086975-x a19991121 20120209154208 @@ -157235,7 +157235,7 @@ - 00598cM2.01200024 000h + 00000cM2.01200024 000h 1087058-1 a19991121 20120423093949 @@ -157314,7 +157314,7 @@ - 01155cM2.01200024 000h + 00000cM2.01200024 000h 1087096-9 a19991121 20120415120334 @@ -157435,7 +157435,7 @@ - 03019cM2.01200024 000h + 00000cM2.01200024 000h 1087156-1 a19991121 20120208231839 @@ -157686,7 +157686,7 @@ - 00663cM2.01200024 000h + 00000cM2.01200024 000h 1087655-8 a19991121 20120415112019 @@ -157779,7 +157779,7 @@ - 00752cM2.01200024 000h + 00000cM2.01200024 000h 1088119-0 a19991121 20120415120730 @@ -157872,7 +157872,7 @@ - 00562cM2.01200024 000h + 00000cM2.01200024 000h 1088586-9 a19991121 20120423072957 @@ -157952,7 +157952,7 @@ - 00500cM2.01200024 000h + 00000cM2.01200024 000h 1088757-x a19991121 20120419214059 @@ -158031,7 +158031,7 @@ - 00788cM2.01200024 000h + 00000cM2.01200024 000h 1089103-1 a19991121 20100303165753 @@ -158118,7 +158118,7 @@ - 01403cM2.01200024 000h + 00000cM2.01200024 000h 1089263-1 a19991121 20120423093414 @@ -158261,7 +158261,7 @@ - 00554cM2.01200024 000h + 00000cM2.01200024 000h 1090750-6 a19991121 20120423151357 @@ -158334,7 +158334,7 @@ - 00868cM2.01200024 000h + 00000cM2.01200024 000h 1092747-5 a19991121 20120209160411 @@ -158457,7 +158457,7 @@ - 02180cM2.01200024 000h + 00000cM2.01200024 000h 1093453-4 a19991121 20120423114042 @@ -158590,7 +158590,7 @@ - 00668cM2.01200024 000h + 00000cM2.01200024 000h 1097369-2 a19991121 20120415112406 @@ -158669,7 +158669,7 @@ - 01180cM2.01200024 000h + 00000cM2.01200024 000h 1097676-0 a19991121 20110404145221 @@ -158798,7 +158798,7 @@ - 01956cM2.01200024 000h + 00000cM2.01200024 000h 1099697-7 a19991121 20080124004835 @@ -158967,7 +158967,7 @@ - 00438cM2.01200024 000h + 00000cM2.01200024 000h 1099951-6 a19991121 20120423141024 @@ -159036,7 +159036,7 @@ - 01515cM2.01200024 000h + 00000cM2.01200024 000h 1099975-9 a19991121 20100125235908 @@ -159187,7 +159187,7 @@ - 00885cM2.01200024 000h + 00000cM2.01200024 000h 1099991-7 a19991121 20120419122459 @@ -159278,7 +159278,7 @@ - 00822cM2.01200024 000h + 00000cM2.01200024 000h 1100875-1 a19991121 20120423141741 @@ -159393,7 +159393,7 @@ - 01202cM2.01200024 000h + 00000cM2.01200024 000h 1101818-5 a19991121 20120412131340 @@ -159532,7 +159532,7 @@ - 02603cM2.01200024 000h + 00000cM2.01200024 000h 1101932-3 a19991121 20120209001003 @@ -159747,7 +159747,7 @@ - 00611cM2.01200024 000h + 00000cM2.01200024 000h 1102275-9 a19991121 20120423110010 @@ -159820,7 +159820,7 @@ - 00450cM2.01200024 000h + 00000cM2.01200024 000h 1102684-4 a19991121 20120420090901 @@ -159892,7 +159892,7 @@ - 00399cM2.01200024 000h + 00000cM2.01200024 000h 1104105-5 a19991121 20050525152031 @@ -159959,7 +159959,7 @@ - 01098cM2.01200024 000h + 00000cM2.01200024 000h 1105053-6 a19991121 20120423174302 @@ -160038,7 +160038,7 @@ - 02132cM2.01200024 000h + 00000cM2.01200024 000h 1105195-4 a19991121 20120423141921 @@ -160258,7 +160258,7 @@ - 00690cM2.01200024 000h + 00000cM2.01200024 000h 1105218-1 a19991121 20120420114136 @@ -160361,7 +160361,7 @@ - 02990cM2.01200024 000h + 00000cM2.01200024 000h 1105600-9 a19991121 20120423141732 @@ -160626,7 +160626,7 @@ - 00490cM2.01200024 000h + 00000cM2.01200024 000h 1106829-2 a19991121 20120415120447 @@ -160700,7 +160700,7 @@ - 01463cM2.01200024 000h + 00000cM2.01200024 000h 1106990-9 a19991121 20110314140153 @@ -160828,7 +160828,7 @@ - 00622cM2.01200024 000h + 00000cM2.01200024 000h 1108198-3 a19991121 20100309062101 @@ -160917,7 +160917,7 @@ - 00608cM2.01200024 000h + 00000cM2.01200024 000h 1109358-4 a19991121 20120415120211 @@ -160999,7 +160999,7 @@ - 00424cM2.01200024 000h + 00000cM2.01200024 000h 1110730-3 a19991121 20050525153712 @@ -161069,7 +161069,7 @@ - 00474cM2.01200024 000h + 00000cM2.01200024 000h 1111130-6 a19991121 20120423151945 @@ -161142,7 +161142,7 @@ - 01365cM2.01200024 000h + 00000cM2.01200024 000h 1112215-8 a19991121 20111005072453 @@ -161289,7 +161289,7 @@ - 01598cM2.01200024 000h + 00000cM2.01200024 000h 1112588-3 a19991121 20120423141832 @@ -161428,7 +161428,7 @@ - 00428cM2.01200024 000h + 00000cM2.01200024 000h 1113709-5 a19991121 20070804083255 @@ -161498,7 +161498,7 @@ - 00889cM2.01200024 000h + 00000cM2.01200024 000h 1115602-8 a19991121 20100118222651 @@ -161574,7 +161574,7 @@ - 01230cM2.01200024 000h + 00000cM2.01200024 000h 1115708-2 a19991121 20091207221439 @@ -161713,7 +161713,7 @@ - 01397cM2.01200024 000h + 00000cM2.01200024 000h 1121548-3 a19991121 20100309062332 @@ -161863,7 +161863,7 @@ - 00959cM2.01200024 000h + 00000cM2.01200024 000h 1121954-3 a19991121 20090602133539 @@ -161981,7 +161981,7 @@ - 00773cM2.01200024 000h + 00000cM2.01200024 000h 1122247-5 a19991121 20120423155402 @@ -162075,7 +162075,7 @@ - 00725cM2.01200024 000h + 00000cM2.01200024 000h 1123528-7 a19991121 20120420214206 @@ -162145,7 +162145,7 @@ - 00769cM2.01200024 000h + 00000cM2.01200024 000h 1123967-0 a19991121 20050525160743 @@ -162227,7 +162227,7 @@ - 00699cM2.01200024 000h + 00000cM2.01200024 000h 1124591-8 a19991121 20120419214037 @@ -162291,7 +162291,7 @@ - 00657cM2.01200024 000h + 00000cM2.01200024 000h 1127138-3 a19991121 20120423134832 @@ -162380,7 +162380,7 @@ - 00608cM2.01200024 000h + 00000cM2.01200024 000h 1130255-0 a19991121 20100713184939 @@ -162471,7 +162471,7 @@ - 00646cM2.01200024 000h + 00000cM2.01200024 000h 1131838-7 a19991121 20110708121538 @@ -162562,7 +162562,7 @@ - 00456cM2.01200024 000h + 00000cM2.01200024 000h 1132555-0 a19991121 20120419144854 @@ -162642,7 +162642,7 @@ - 00611cM2.01200024 000h + 00000cM2.01200024 000h 1133815-5 a19991121 20050525162828 @@ -162715,7 +162715,7 @@ - 00866cM2.01200024 000h + 00000cM2.01200024 000h 1133869-6 a19991121 20120419103617 @@ -162824,7 +162824,7 @@ - 00806cM2.01200024 000h + 00000cM2.01200024 000h 1134871-9 a19991121 20120423124933 @@ -162945,7 +162945,7 @@ - 00983cM2.01200024 000h + 00000cM2.01200024 000h 1134945-1 a19991121 20120419121156 @@ -163053,7 +163053,7 @@ - 01861cM2.01200024 000h + 00000cM2.01200024 000h 1135760-5 a19991121 20120423141651 @@ -163214,7 +163214,7 @@ - 00673cM2.01200024 000h + 00000cM2.01200024 000h 1136908-5 a19991121 20090602133646 @@ -163308,7 +163308,7 @@ - 01891cM2.01200024 000h + 00000cM2.01200024 000h 1138434-7 a19991121 20120420223015 @@ -163487,7 +163487,7 @@ - 00387cM2.01200024 000h + 00000cM2.01200024 000h 1138535-2 a19991121 20120415112413 @@ -163551,7 +163551,7 @@ - 01492cM2.01200024 000h + 00000cM2.01200024 000h 1138609-5 a19991121 20120423173059 @@ -163718,7 +163718,7 @@ - 02144cM2.01200024 000h + 00000cM2.01200024 000h 1138955-2 a19991121 20120423141717 @@ -163908,7 +163908,7 @@ - 00718cM2.01200024 000h + 00000cM2.01200024 000h 1139344-0 a19991121 20120223085838 @@ -164005,7 +164005,7 @@ - 02972cM2.01200024 000h + 00000cM2.01200024 000h 1139567-9 a19991121 20110110125247 @@ -164221,7 +164221,7 @@ - 00632cM2.01200024 000h + 00000cM2.01200024 000h 1141057-7 a19991121 20100309062637 @@ -164308,7 +164308,7 @@ - 01401cM2.01200024 000h + 00000cM2.01200024 000h 1141358-x a19991121 20120423141625 @@ -164458,7 +164458,7 @@ - 01181cM2.01200024 000h + 00000cM2.01200024 000h 1142119-8 a19991121 20120419141430 @@ -164602,7 +164602,7 @@ - 01063cM2.01200024 000h + 00000cM2.01200024 000h 1142906-9 a19991121 20120420132931 @@ -164721,7 +164721,7 @@ - 00887cM2.01200024 000h + 00000cM2.01200024 000h 1142940-9 a19991121 20120415112435 @@ -164848,7 +164848,7 @@ - 01283cM2.01200024 000h + 00000cM2.01200024 000h 1145048-4 a19991121 20120208222946 @@ -164996,7 +164996,7 @@ - 00439cM2.01200024 000h + 00000cM2.01200024 000h 1145652-8 a19991121 20120423105202 @@ -165060,7 +165060,7 @@ - 01112cM2.01200024 000h + 00000cM2.01200024 000h 1146815-4 a19991121 20120419112209 @@ -165210,7 +165210,7 @@ - 01225cM2.01200024 000h + 00000cM2.01200024 000h 1148855-4 a19991121 20120420114305 @@ -165327,7 +165327,7 @@ - 00922cM2.01200024 000h + 00000cM2.01200024 000h 1149042-1 a19991121 20120419213041 @@ -165440,7 +165440,7 @@ - 00689cM2.01200024 000h + 00000cM2.01200024 000h 1150229-0 a19991121 20120419160709 @@ -165549,7 +165549,7 @@ - 01593cM2.01200024 000h + 00000cM2.01200024 000h 1151240-4 a19991121 20120208222959 @@ -165703,7 +165703,7 @@ - 01248cM2.01200024 000h + 00000cM2.01200024 000h 1151530-2 a19991121 20120423124641 @@ -165864,7 +165864,7 @@ - 01244cM2.01200024 000h + 00000cM2.01200024 000h 1151958-7 a19991121 20101015112608 @@ -166002,7 +166002,7 @@ - 00956cM2.01200024 000h + 00000cM2.01200024 000h 1156118-x a19991121 20120420195241 @@ -166090,7 +166090,7 @@ - 00509cM2.01200024 000h + 00000cM2.01200024 000h 1158901-2 a19991121 20070804084218 @@ -166160,7 +166160,7 @@ - 00490cM2.01200024 000h + 00000cM2.01200024 000h 1159354-4 a19991121 20120420083941 @@ -166232,7 +166232,7 @@ - 00361cM2.01200024 000h + 00000cM2.01200024 000h 1160217-x a19991121 20050525172929 @@ -166293,7 +166293,7 @@ - 00979cM2.01200024 000h + 00000cM2.01200024 000h 1160483-9 a19991121 20120419100421 @@ -166447,7 +166447,7 @@ - 01611cM2.01200024 000h + 00000cM2.01200024 000h 1161032-3 a19991121 20110607091318 @@ -166607,7 +166607,7 @@ - 00596cM2.01200024 000h + 00000cM2.01200024 000h 1162932-0 a19991121 20050525173614 @@ -166677,7 +166677,7 @@ - 00923cM2.01200024 000h + 00000cM2.01200024 000h 1164888-0 a19991121 20100302015418 @@ -166801,7 +166801,7 @@ - 00340cM2.01200024 000h + 00000cM2.01200024 000h 1166152-5 a19991121 20050525174404 @@ -166859,7 +166859,7 @@ - 00379cM2.01200024 000h + 00000cM2.01200024 000h 1166565-8 a19991121 20110714134544 @@ -166926,7 +166926,7 @@ - 00954cM2.01200024 000h + 00000cM2.01200024 000h 1167002-2 a19991121 20120419105612 @@ -167038,7 +167038,7 @@ - 01129cM2.01200024 000h + 00000cM2.01200024 000h 1167012-5 a19991121 20110329102453 @@ -167170,7 +167170,7 @@ - 01891cM2.01200024 000h + 00000cM2.01200024 000h 1167502-0 a19991121 20090619214915 @@ -167327,7 +167327,7 @@ - 01290cM2.01200024 000h + 00000cM2.01200024 000h 1167508-1 a19991121 20050728054727 @@ -167439,7 +167439,7 @@ - 00711cM2.01200024 000h + 00000cM2.01200024 000h 1167925-6 a19991121 20050525174829 @@ -167509,7 +167509,7 @@ - 00999cM2.01200024 000h + 00000cM2.01200024 000h 1169731-3 a19991121 20120419094548 @@ -167615,7 +167615,7 @@ - 01077cM2.01200024 000h + 00000cM2.01200024 000h 1170410-x a19991121 20120423073026 @@ -167737,7 +167737,7 @@ - 01220cM2.01200024 000h + 00000cM2.01200024 000h 1172528-x a19991121 20120420104843 @@ -167847,7 +167847,7 @@ - 01246cM2.01200024 000h + 00000cM2.01200024 000h 1172942-9 a19991121 20120208223115 @@ -167980,7 +167980,7 @@ - 01289cM2.01200024 000h + 00000cM2.01200024 000h 1173662-8 a19991121 20120214145939 @@ -168116,7 +168116,7 @@ - 01428cM2.01200024 000h + 00000cM2.01200024 000h 1174458-3 a19991121 20120321122332 @@ -168284,7 +168284,7 @@ - 00739cM2.01200024 000h + 00000cM2.01200024 000h 1174542-3 a19991121 20120412084129 @@ -168399,7 +168399,7 @@ - 01376cM2.01200024 000h + 00000cM2.01200024 000h 1175118-6 a19991121 20110413114017 @@ -168518,7 +168518,7 @@ - 01269cM2.01200024 000h + 00000cM2.01200024 000h 1175763-2 a19991121 20120420101215 @@ -168624,7 +168624,7 @@ - 00734cM2.01200024 000h + 00000cM2.01200024 000h 1176112-x a19991121 20100713185420 @@ -168712,7 +168712,7 @@ - 00415cM2.01200024 000h + 00000cM2.01200024 000h 1176439-9 a19991121 20080123220808 @@ -168782,7 +168782,7 @@ - 01265cM2.01200024 000h + 00000cM2.01200024 000h 1176541-0 a19991121 20120423154904 @@ -168928,7 +168928,7 @@ - 00941cM2.01200024 000h + 00000cM2.01200024 000h 1178132-4 a19991121 20111128091038 @@ -169025,7 +169025,7 @@ - 00700cM2.01200024 000h + 00000cM2.01200024 000h 1178168-3 a19991121 20120420214150 @@ -169116,7 +169116,7 @@ - 01312cM2.01200024 000h + 00000cM2.01200024 000h 1179289-9 a19991121 20090804224702 @@ -169264,7 +169264,7 @@ - 00455cM2.01200024 000h + 00000cM2.01200024 000h 1179400-8 a19991121 20120423175144 @@ -169334,7 +169334,7 @@ - 01787cM2.01200024 000h + 00000cM2.01200024 000h 1179839-7 a19991121 20120423135224 @@ -169502,7 +169502,7 @@ - 00572cM2.01200024 000h + 00000cM2.01200024 000h 1181533-4 a19991121 20080219214734 @@ -169575,7 +169575,7 @@ - 00948cM2.01200024 000h + 00000cM2.01200024 000h 1181942-x a19991121 20100713185507 @@ -169699,7 +169699,7 @@ - 00440cM2.01200024 000h + 00000cM2.01200024 000h 1182065-2 a19991121 20120420194626 @@ -169766,7 +169766,7 @@ - 01222cM2.01200024 000h + 00000cM2.01200024 000h 1183069-4 a19991121 20120421023053 @@ -169899,7 +169899,7 @@ - 00595cM2.01200024 000h + 00000cM2.01200024 000h 1183803-6 a19991121 20050525182847 @@ -169972,7 +169972,7 @@ - 01641cM2.01200024 000h + 00000cM2.01200024 000h 1184817-0 a19991121 20111220142705 @@ -170158,7 +170158,7 @@ - 01512cM2.01200024 000h + 00000cM2.01200024 000h 1185198-3 a19991121 20120423122326 @@ -170291,7 +170291,7 @@ - 00417cM2.01200024 000h + 00000cM2.01200024 000h 1185216-1 a19991121 20050525183226 @@ -170361,7 +170361,7 @@ - 01612cM2.01200024 000h + 00000cM2.01200024 000h 1185272-0 a19991121 20120423100033 @@ -170520,7 +170520,7 @@ - 00608cM2.01200024 000h + 00000cM2.01200024 000h 1185346-3 a19991121 20120419214035 @@ -170602,7 +170602,7 @@ - 02003cM2.01200024 000h + 00000cM2.01200024 000h 1185575-7 a19991121 20120209001203 @@ -170849,7 +170849,7 @@ - 00923cM2.01200024 000h + 00000cM2.01200024 000h 1186111-3 a19991121 20120423155806 @@ -170963,7 +170963,7 @@ - 00853cM2.01200024 000h + 00000cM2.01200024 000h 1186197-6 a19991121 20120415113833 @@ -171074,7 +171074,7 @@ - 00843cM2.01200024 000h + 00000cM2.01200024 000h 1186329-8 a19991121 20120419113333 @@ -171185,7 +171185,7 @@ - 00847cM2.01200024 000h + 00000cM2.01200024 000h 1187882-4 a19991121 20120423141103 @@ -171267,7 +171267,7 @@ - 01041cM2.01200024 000h + 00000cM2.01200024 000h 1188249-9 a19991121 20061016232050 @@ -171376,7 +171376,7 @@ - 00611cM2.01200024 000h + 00000cM2.01200024 000h 1188389-3 a19991121 20050525184037 @@ -171452,7 +171452,7 @@ - 01358cM2.01200024 000h + 00000cM2.01200024 000h 1189180-4 a19991121 20120419093158 @@ -171600,7 +171600,7 @@ - 00534cM2.01200024 000h + 00000cM2.01200024 000h 1190084-2 a19991121 20120420194930 @@ -171681,7 +171681,7 @@ - 00743cM2.01200024 000h + 00000cM2.01200024 000h 1192099-3 a19991121 20120423141615 @@ -171766,7 +171766,7 @@ - 00985cM2.01200024 000h + 00000cM2.01200024 000h 1192288-6 a19991121 20091203160652 @@ -171876,7 +171876,7 @@ - 00707cM2.01200024 000h + 00000cM2.01200024 000h 1192808-6 a19991121 20100118222938 @@ -171967,7 +171967,7 @@ - 01047cM2.01200024 000h + 00000cM2.01200024 000h 1193007-x a19991121 20070804084755 @@ -172082,7 +172082,7 @@ - 00470cM2.01200024 000h + 00000cM2.01200024 000h 1193939-4 a19991121 20110513153259 @@ -172161,7 +172161,7 @@ - 01073cM2.01200024 000h + 00000cM2.01200024 000h 1194417-1 a19991121 20110714023519 @@ -172276,7 +172276,7 @@ - 01008cM2.01200024 000h + 00000cM2.01200024 000h 1195253-2 a19991121 20120419154855 @@ -172392,7 +172392,7 @@ - 00459cM2.01200024 000h + 00000cM2.01200024 000h 1195378-0 a19991121 20120420095542 @@ -172459,7 +172459,7 @@ - 00837cM2.01200024 000h + 00000cM2.01200024 000h 1195866-2 a19991121 20090202234843 @@ -172553,7 +172553,7 @@ - 00585cM2.01200024 000h + 00000cM2.01200024 000h 1196016-4 a19991121 20120423103549 @@ -172639,7 +172639,7 @@ - 01761cM2.01200024 000h + 00000cM2.01200024 000h 1197128-9 a19991121 20120423141602 @@ -172797,7 +172797,7 @@ - 00581cM2.01200024 000h + 00000cM2.01200024 000h 1197193-9 a19991121 20100309063540 @@ -172873,7 +172873,7 @@ - 00921cM2.01200024 000h + 00000cM2.01200024 000h 1198854-x a19991121 20100126000005 @@ -172982,7 +172982,7 @@ - 00647cM2.01200024 000h + 00000cM2.01200024 000h 1199337-6 a19991121 20120423141031 @@ -173067,7 +173067,7 @@ - 00646cM2.01200024 000h + 00000cM2.01200024 000h 1199665-1 a19991121 20120420142200 @@ -173176,7 +173176,7 @@ - 00523cM2.01200024 000h + 00000cM2.01200024 000h 1199762-x a19991121 20120423134431 @@ -173252,7 +173252,7 @@ - 00879cM2.01200024 000h + 00000cM2.01200024 000h 1200241-0 a19991121 20090407215156 @@ -173373,7 +173373,7 @@ - 00538cM2.01200024 000h + 00000cM2.01200024 000h 1201160-5 a19991121 20120423115443 @@ -173449,7 +173449,7 @@ - 01392cM2.01200024 000h + 00000cM2.01200024 000h 1201673-1 a19991121 20120419161141 @@ -173593,7 +173593,7 @@ - 00651cM2.01200024 000h + 00000cM2.01200024 000h 1203368-6 a19991121 20120423162931 @@ -173675,7 +173675,7 @@ - 01659cM2.01200024 000h + 00000cM2.01200024 000h 1204477-5 a19991121 20120419121923 @@ -173817,7 +173817,7 @@ - 00988cM2.01200024 000h + 00000cM2.01200024 000h 1204489-1 a19991121 20120419121121 @@ -173903,7 +173903,7 @@ - 00495cM2.01200024 000h + 00000cM2.01200024 000h 1205945-6 a19991121 20100309063655 @@ -173973,7 +173973,7 @@ - 01809cM2.01200024 000h + 00000cM2.01200024 000h 1206278-9 a19991121 20120423115658 @@ -174082,7 +174082,7 @@ - 02051cM2.01200024 000h + 00000cM2.01200024 000h 1207370-2 a19991121 20120419135030 @@ -174161,7 +174161,7 @@ - 01578cM2.01200024 000h + 00000cM2.01200024 000h 1207666-1 a19991121 20120423170337 @@ -174337,7 +174337,7 @@ - 01395cM2.01200024 000h + 00000cM2.01200024 000h 1208534-0 a19991121 20120415120335 @@ -174499,7 +174499,7 @@ - 01743cM2.01200024 000h + 00000cM2.01200024 000h 1208828-6 a19991121 20091012231305 @@ -174647,7 +174647,7 @@ - 00878cM2.01200024 000h + 00000cM2.01200024 000h 1209946-6 a19991121 20100714170526 @@ -174753,7 +174753,7 @@ - 00976cM2.01200024 000h + 00000cM2.01200024 000h 1210120-5 a19991121 20120419131939 @@ -174857,7 +174857,7 @@ - 01070cM2.01200024 000h + 00000cM2.01200024 000h 1210593-4 a19991121 20090818135135 @@ -174976,7 +174976,7 @@ - 00509cM2.01200024 000h + 00000cM2.01200024 000h 1211050-4 a19991121 20120420122356 @@ -175043,7 +175043,7 @@ - 01049cM2.01200024 000h + 00000cM2.01200024 000h 1211110-7 a19991121 20110906111329 @@ -175191,7 +175191,7 @@ - 00474cM2.01200024 000h + 00000cM2.01200024 000h 1211117-x a19991121 20120420121915 @@ -175258,7 +175258,7 @@ - 00403cM2.01200024 000h + 00000cM2.01200024 000h 1211194-6 a19991121 20120423202521 @@ -175322,7 +175322,7 @@ - 00785cM2.01200024 000h + 00000cM2.01200024 000h 1211351-7 a19991121 20120415120431 @@ -175431,7 +175431,7 @@ - 00734cM2.01200024 000h + 00000cM2.01200024 000h 1212053-4 a19991121 20120413105315 @@ -175527,7 +175527,7 @@ - 00433cM2.01200024 000h + 00000cM2.01200024 000h 1212602-0 a19991121 20120423150021 @@ -175588,7 +175588,7 @@ - 00694cM2.01200024 000h + 00000cM2.01200024 000h 1214034-x a19991121 20050525194817 @@ -175661,7 +175661,7 @@ - 00448cM2.01200024 000h + 00000cM2.01200024 000h 1215220-1 a19991121 20101215112658 @@ -175734,7 +175734,7 @@ - 01792cM2.01200024 000h + 00000cM2.01200024 000h 1215365-5 a19991121 20120423141815 @@ -175924,7 +175924,7 @@ - 00745cM2.01200024 000h + 00000cM2.01200024 000h 1215959-1 a19991121 20120415111832 @@ -176024,7 +176024,7 @@ - 00803cM2.01200024 000h + 00000cM2.01200024 000h 1216037-4 a19991121 20110801114739 @@ -176100,7 +176100,7 @@ - 01817cM2.01200024 000h + 00000cM2.01200024 000h 1217912-7 a19991121 20120423123535 @@ -176282,7 +176282,7 @@ - 01354cM2.01200024 000h + 00000cM2.01200024 000h 1220075-x a19991121 20120413115107 @@ -176418,7 +176418,7 @@ - 01051cM2.01200024 000h + 00000cM2.01200024 000h 1220390-7 a19991121 20120216114840 @@ -176557,7 +176557,7 @@ - 00719cM2.01200024 000h + 00000cM2.01200024 000h 1220443-2 a19991121 20120423082410 @@ -176639,7 +176639,7 @@ - 00644cM2.01200024 000h + 00000cM2.01200024 000h 1221900-9 a19991121 20080202165525 @@ -176736,7 +176736,7 @@ - 00365cM2.01200024 000h + 00000cM2.01200024 000h 1223714-0 a19991121 20050526030940 @@ -176803,7 +176803,7 @@ - 01318cM2.01200024 000h + 00000cM2.01200024 000h 1224203-2 a19991121 20120420160620 @@ -176897,7 +176897,7 @@ - 00442cM2.01200024 000h + 00000cM2.01200024 000h 1225077-6 a19991121 20120423202452 @@ -176961,7 +176961,7 @@ - 00475cM2.01200024 000h + 00000cM2.01200024 000h 1225157-4 a19991121 20120415113738 @@ -177031,7 +177031,7 @@ - 01009cM2.01200024 000h + 00000cM2.01200024 000h 1226987-6 a19991121 20111011092839 @@ -177120,7 +177120,7 @@ - 00779cM2.01200024 000h + 00000cM2.01200024 000h 1227371-5 a19991121 20120423093435 @@ -177235,7 +177235,7 @@ - 01363cM2.01200024 000h + 00000cM2.01200024 000h 1227828-2 a19991121 20120206140941 @@ -177392,7 +177392,7 @@ - 00737cM2.01200024 000h + 00000cM2.01200024 000h 1228372-1 a19991121 20120423140854 @@ -177474,7 +177474,7 @@ - 00794cM2.01200024 000h + 00000cM2.01200024 000h 1228980-2 a19991121 20120420105532 @@ -177581,7 +177581,7 @@ - 00937cM2.01200024 000h + 00000cM2.01200024 000h 1229392-1 a19991121 20120423085046 @@ -177709,7 +177709,7 @@ - 00551cM2.01200024 000h + 00000cM2.01200024 000h 1230073-1 a19991121 20120306141415 @@ -177804,7 +177804,7 @@ - 04092cM2.01200024 000h + 00000cM2.01200024 000h 1230162-0 a19991121 20120419085035 @@ -177926,7 +177926,7 @@ - 01037cM2.01200024 000h + 00000cM2.01200024 000h 1230644-7 a19991121 20120423140840 @@ -178060,7 +178060,7 @@ - 00780cM2.01200024 000h + 00000cM2.01200024 000h 1232918-6 a19991121 20120423140807 @@ -178154,7 +178154,7 @@ - 01149cM2.01200024 000h + 00000cM2.01200024 000h 1233364-5 a19991121 20090811081944 @@ -178257,7 +178257,7 @@ - 00915cM2.01200024 000h + 00000cM2.01200024 000h 1233531-9 a19991121 20120420150048 @@ -178386,7 +178386,7 @@ - 00354cM2.01200024 000h + 00000cM2.01200024 000h 1234886-7 a19991121 20050526033138 @@ -178447,7 +178447,7 @@ - 01188cM2.01200024 000h + 00000cM2.01200024 000h 1234924-0 a19991121 20120221124550 @@ -178597,7 +178597,7 @@ - 00695cM2.01200024 000h + 00000cM2.01200024 000h 1235870-8 a19991121 20120423081921 @@ -178673,7 +178673,7 @@ - 00942cM2.01200024 000h + 00000cM2.01200024 000h 1236270-0 a19991121 20120419133650 @@ -178785,7 +178785,7 @@ - 00979cM2.01200024 000h + 00000cM2.01200024 000h 1237381-3 a19991121 20120420135330 @@ -178888,7 +178888,7 @@ - 01169cM2.01200024 000h + 00000cM2.01200024 000h 1237495-7 a19991121 20110517160028 @@ -179015,7 +179015,7 @@ - 00917cM2.01200024 000h + 00000cM2.01200024 000h 1238797-6 a19991121 20120415120615 @@ -179112,7 +179112,7 @@ - 00627cM2.01200024 000h + 00000cM2.01200024 000h 1240307-6 a19991121 20100309064223 @@ -179188,7 +179188,7 @@ - 00748cM2.01200024 000h + 00000cM2.01200024 000h 1245073-x a19991121 20120415114934 @@ -179271,7 +179271,7 @@ - 00573cM2.01200024 000h + 00000cM2.01200024 000h 1249424-0 a19991121 20120419162734 @@ -179347,7 +179347,7 @@ - 00675cM2.01200024 000h + 00000cM2.01200024 000h 1249475-6 a19991121 20070804085802 @@ -179438,7 +179438,7 @@ - 01115cM2.01200024 000h + 00000cM2.01200024 000h 1251597-8 a19991121 20070804111745 @@ -179565,7 +179565,7 @@ - 00434cM2.01200024 000h + 00000cM2.01200024 000h 1252291-0 a19991121 20120420111608 @@ -179629,7 +179629,7 @@ - 00560cM2.01200024 000h + 00000cM2.01200024 000h 1254713-x a19991121 20071121221059 @@ -179705,7 +179705,7 @@ - 00598cM2.01200024 000h + 00000cM2.01200024 000h 1254908-3 a19991121 20110530235618 @@ -179793,7 +179793,7 @@ - 00539cM2.01200024 000h + 00000cM2.01200024 000h 1256545-3 a19991121 20120423181159 @@ -179866,7 +179866,7 @@ - 01011cM2.01200024 000h + 00000cM2.01200024 000h 1257922-1 a19991121 20120420141538 @@ -179993,7 +179993,7 @@ - 01108cM2.01200024 000h + 00000cM2.01200024 000h 1258467-8 a19991121 20120420130243 @@ -180148,7 +180148,7 @@ - 00801cM2.01200024 000h + 00000cM2.01200024 000h 1260154-8 a19991121 20070804085950 @@ -180254,7 +180254,7 @@ - 00654cM2.01200024 000h + 00000cM2.01200024 000h 1262342-8 a19991121 20120420091843 @@ -180330,7 +180330,7 @@ - 00924cM2.01200024 000h + 00000cM2.01200024 000h 1263663-0 a19991121 20120421023039 @@ -180439,7 +180439,7 @@ - 00792cM2.01200024 000h + 00000cM2.01200024 000h 1266722-5 a19991121 20120415120536 @@ -180552,7 +180552,7 @@ - 00419cM2.01200024 000h + 00000cM2.01200024 000h 1266782-1 a19991121 20120419214045 @@ -180622,7 +180622,7 @@ - 01016cM2.01200024 000h + 00000cM2.01200024 000h 1267037-6 a19991121 20120420023024 @@ -180748,7 +180748,7 @@ - 00359cM2.01200024 000h + 00000cM2.01200024 000h 1268358-9 a19991121 20120419100531 @@ -180809,7 +180809,7 @@ - 00934cM2.01200024 000h + 00000cM2.01200024 000h 1269072-7 a19991121 20110504121156 @@ -180897,7 +180897,7 @@ - 00632cM2.01200024 000h + 00000cM2.01200024 000h 1272819-6 a19991121 20120423091520 @@ -180985,7 +180985,7 @@ - 00517cM2.01200024 000h + 00000cM2.01200024 000h 1274370-7 a19991121 20120419111025 @@ -181061,7 +181061,7 @@ - 00558cM2.01200024 000h + 00000cM2.01200024 000h 1275707-x a19991121 20050526042808 @@ -181143,7 +181143,7 @@ - 00717cM2.01200024 000h + 00000cM2.01200024 000h 1277126-0 a19991121 20120420155815 @@ -181246,7 +181246,7 @@ - 00767cM2.01200024 000h + 00000cM2.01200024 000h 1280828-3 a19991121 20050526043543 @@ -181346,7 +181346,7 @@ - 01043cM2.01200024 000h + 00000cM2.01200024 000h 1281974-8 a19991121 20120419093940 @@ -181475,7 +181475,7 @@ - 00841cM2.01200024 000h + 00000cM2.01200024 000h 1282633-9 a19991121 20120415112109 @@ -181581,7 +181581,7 @@ - 01867cM2.01200024 000h + 00000cM2.01200024 000h 1282912-2 a19991121 20120420085640 @@ -181778,7 +181778,7 @@ - 00803cM2.01200024 000h + 00000cM2.01200024 000h 1282934-1 a19991121 20100512110201 @@ -181890,7 +181890,7 @@ - 00987cM2.01200024 000h + 00000cM2.01200024 000h 1283068-9 a19991121 20120423114259 @@ -182014,7 +182014,7 @@ - 00742cM2.01200024 000h + 00000cM2.01200024 000h 1284518-8 a19991121 20120420151708 @@ -182130,7 +182130,7 @@ - 01073cM2.01200024 000h + 00000cM2.01200024 000h 1284900-5 a19991121 20120419155445 @@ -182224,7 +182224,7 @@ - 01820cM2.01200024 000h + 00000cM2.01200024 000h 1287004-3 a19991121 20120316140158 @@ -182390,7 +182390,7 @@ - 00817cM2.01200024 000h + 00000cM2.01200024 000h 1287173-4 a19991121 20120312075644 @@ -182479,7 +182479,7 @@ - 01021cM2.01200024 000h + 00000cM2.01200024 000h 1287208-8 a19991121 20120415112130 @@ -182600,7 +182600,7 @@ - 00935cM2.01200024 000h + 00000cM2.01200024 000h 1291146-x a19991121 20120419113355 @@ -182729,7 +182729,7 @@ - 00469cM2.01200024 000h + 00000cM2.01200024 000h 1291916-0 a19991121 20100309064455 @@ -182799,7 +182799,7 @@ - 00526cM2.01200024 000h + 00000cM2.01200024 000h 1292167-1 a19991121 20120419153222 @@ -182872,7 +182872,7 @@ - 00478cM2.01200024 000h + 00000cM2.01200024 000h 1292168-3 a19991121 20120419141815 @@ -182939,7 +182939,7 @@ - 01190cM2.01200024 000h + 00000cM2.01200024 000h 1293526-8 a19991121 20120415120336 @@ -183092,7 +183092,7 @@ - 01250cM2.01200024 000h + 00000cM2.01200024 000h 1293716-2 a19991121 20120419162631 @@ -183237,7 +183237,7 @@ - 00797cM2.01200024 000h + 00000cM2.01200024 000h 1294592-4 a19991121 20120423132314 @@ -183340,7 +183340,7 @@ - 00862cM2.01200024 000h + 00000cM2.01200024 000h 1295253-9 a19991121 20120411023037 @@ -183443,7 +183443,7 @@ - 00501cM2.01200024 000h + 00000cM2.01200024 000h 1296408-6 a19991121 20090519015211 @@ -183519,7 +183519,7 @@ - 00407cM2.01200024 000h + 00000cM2.01200024 000h 1297411-0 a19991121 20050526050831 @@ -183586,7 +183586,7 @@ - 00615cM2.01200024 000h + 00000cM2.01200024 000h 1298067-5 a19991121 20120415112322 @@ -183665,7 +183665,7 @@ - 01660cM2.01200024 000h + 00000cM2.01200024 000h 1302595-8 a19991121 20120420143944 @@ -183834,7 +183834,7 @@ - 01728cM2.01200024 000h + 00000cM2.01200024 000h 1302780-3 a19991121 20120423140745 @@ -183989,7 +183989,7 @@ - 00507cM2.01200024 000h + 00000cM2.01200024 000h 1303664-6 a19991121 20060930174043 @@ -184059,7 +184059,7 @@ - 01864cM2.01200024 000h + 00000cM2.01200024 000h 1304309-2 a19991121 20120423140731 @@ -184231,7 +184231,7 @@ - 01363cM2.01200024 000h + 00000cM2.01200024 000h 1304674-3 a19991121 20120423141702 @@ -184371,7 +184371,7 @@ - 00570cM2.01200024 000h + 00000cM2.01200024 000h 1304861-2 a19991121 20120420112610 @@ -184459,7 +184459,7 @@ - 00658cM2.01200024 000h + 00000cM2.01200024 000h 1307680-2 a19991121 20120423120951 @@ -184535,7 +184535,7 @@ - 01657cM2.01200024 000h + 00000cM2.01200024 000h 1307745-4 a19991121 20120329165654 @@ -184711,7 +184711,7 @@ - 00545cM2.01200024 000h + 00000cM2.01200024 000h 1307998-0 a19991121 20071114215826 @@ -184790,7 +184790,7 @@ - 00946cM2.01200024 000h + 00000cM2.01200024 000h 1308435-5 a19991121 20120423141016 @@ -184896,7 +184896,7 @@ - 00635cM2.01200024 000h + 00000cM2.01200024 000h 1309709-x a19991121 20120423141004 @@ -184978,7 +184978,7 @@ - 01193cM2.01200024 000h + 00000cM2.01200024 000h 1310099-3 a19991121 20120423090613 @@ -185060,7 +185060,7 @@ - 01163cM2.01200024 000h + 00000cM2.01200024 000h 1310106-7 a19991121 20120423090955 @@ -185142,7 +185142,7 @@ - 00747cM2.01200024 000h + 00000cM2.01200024 000h 1310150-x a19991121 20120423083138 @@ -185224,7 +185224,7 @@ - 01038cM2.01200024 000h + 00000cM2.01200024 000h 1310154-7 a19991121 20120423083829 @@ -185312,7 +185312,7 @@ - 00893cM2.01200024 000h + 00000cM2.01200024 000h 1310670-3 a19991121 20120419160655 @@ -185427,7 +185427,7 @@ - 00615cM2.01200024 000h + 00000cM2.01200024 000h 1310908-x a19991121 20120323152648 @@ -185497,7 +185497,7 @@ - 00708cM2.01200024 000h + 00000cM2.01200024 000h 1311744-0 a19991121 20120423152446 @@ -185574,7 +185574,7 @@ - 01112cM2.01200024 000h + 00000cM2.01200024 000h 1312117-0 a19991121 20120419102202 @@ -185705,7 +185705,7 @@ - 00945cM2.01200024 000h + 00000cM2.01200024 000h 1315587-8 a19991121 20120423133040 @@ -185832,7 +185832,7 @@ - 01758cM2.01200024 000h + 00000cM2.01200024 000h 1315655-x a19991121 20120415112412 @@ -185930,7 +185930,7 @@ - 01203cM2.01200024 000h + 00000cM2.01200024 000h 1315833-8 a19991121 20120420085400 @@ -186085,7 +186085,7 @@ - 02288cM2.01200024 000h + 00000cM2.01200024 000h 1317833-7 a19991121 20120423104439 @@ -186323,7 +186323,7 @@ - 00574cM2.01200024 000h + 00000cM2.01200024 000h 1317881-7 a19991121 20091019231938 @@ -186393,7 +186393,7 @@ - 01648cM2.01200024 000h + 00000cM2.01200024 000h 1319033-7 a19991121 20120307112942 @@ -186538,7 +186538,7 @@ - 01076cM2.01200024 000h + 00000cM2.01200024 000h 1321089-0 a19991121 20120420125732 @@ -186684,7 +186684,7 @@ - 01062cM2.01200024 000h + 00000cM2.01200024 000h 1321094-4 a19991121 20120420134428 @@ -186833,7 +186833,7 @@ - 00959cM2.01200024 000h + 00000cM2.01200024 000h 1322824-9 a19991121 20120415113810 @@ -186932,7 +186932,7 @@ - 01262cM2.01200024 000h + 00000cM2.01200024 000h 1323353-1 a19991121 20120420141643 @@ -187097,7 +187097,7 @@ - 00754cM2.01200024 000h + 00000cM2.01200024 000h 1324146-1 a19991121 20120420134539 @@ -187200,7 +187200,7 @@ - 00484cM2.01200024 000h + 00000cM2.01200024 000h 1324432-2 a19991121 20070804111924 @@ -187276,7 +187276,7 @@ - 00973cM2.01200024 000h + 00000cM2.01200024 000h 1325248-3 a19991121 20120419143803 @@ -187430,7 +187430,7 @@ - 00495cM2.01200024 000h + 00000cM2.01200024 000h 1325576-9 a19991121 20120419214045 @@ -187503,7 +187503,7 @@ - 00491cM2.01200024 000h + 00000cM2.01200024 000h 1326039-x a19991121 20080202170621 @@ -187585,7 +187585,7 @@ - 01404cM2.01200024 000h + 00000cM2.01200024 000h 1326774-7 a19991121 20120415112337 @@ -187748,7 +187748,7 @@ - 00672cM2.01200024 000h + 00000cM2.01200024 000h 1328539-7 a19991121 20120415120429 @@ -187833,7 +187833,7 @@ - 00643cM2.01200024 000h + 00000cM2.01200024 000h 1330449-5 a19991121 20070430185311 @@ -187921,7 +187921,7 @@ - 00654cM2.01200024 000h + 00000cM2.01200024 000h 1332193-6 a19991121 20120419081037 @@ -188012,7 +188012,7 @@ - 00482cM2.01200024 000h + 00000cM2.01200024 000h 1332446-9 a19991121 20120419214033 @@ -188082,7 +188082,7 @@ - 00603cM2.01200024 000h + 00000cM2.01200024 000h 1332838-4 a19991121 20120423144454 @@ -188188,7 +188188,7 @@ - 00484cM2.01200024 000h + 00000cM2.01200024 000h 1332962-5 a19991121 20120423111043 @@ -188261,7 +188261,7 @@ - 01270cM2.01200024 000h + 00000cM2.01200024 000h 1333618-6 a19991121 20120419102757 @@ -188422,7 +188422,7 @@ - 01092cM2.01200024 000h + 00000cM2.01200024 000h 1333820-1 a19991121 20120419153629 @@ -188546,7 +188546,7 @@ - 00669cM2.01200024 000h + 00000cM2.01200024 000h 1333948-5 a19991121 20080715003940 @@ -188634,7 +188634,7 @@ - 00640cM2.01200024 000h + 00000cM2.01200024 000h 1335318-4 a19991121 20120419214051 @@ -188704,7 +188704,7 @@ - 00858cM2.01200024 000h + 00000cM2.01200024 000h 1335408-5 a19991121 20120423090238 @@ -188819,7 +188819,7 @@ - 00580cM2.01200024 000h + 00000cM2.01200024 000h 1336499-6 a19991121 20120419154430 @@ -188904,7 +188904,7 @@ - 01594cM2.01200024 000h + 00000cM2.01200024 000h 1337029-7 a19991121 20120419151928 @@ -189067,7 +189067,7 @@ - 00795cM2.01200024 000h + 00000cM2.01200024 000h 1337944-6 a19991121 20110624123029 @@ -189167,7 +189167,7 @@ - 00409cM2.01200024 000h + 00000cM2.01200024 000h 1338430-2 a19991121 20050526062559 @@ -189234,7 +189234,7 @@ - 01281cM2.01200024 000h + 00000cM2.01200024 000h 1339048-x a19991121 20120423140951 @@ -189381,7 +189381,7 @@ - 01369cM2.01200024 000h + 00000cM2.01200024 000h 1341329-6 a19991122 20100118223207 @@ -189549,7 +189549,7 @@ - 00653cM2.01200024 000h + 00000cM2.01200024 000h 1341593-1 a19991122 20090508181857 @@ -189649,7 +189649,7 @@ - 01932cM2.01200024 000h + 00000cM2.01200024 000h 1341959-6 a19991122 20100713190703 @@ -189844,7 +189844,7 @@ - 00388cM2.01200024 000h + 00000cM2.01200024 000h 1342969-3 a19991122 20120423104004 @@ -189911,7 +189911,7 @@ - 01518cM2.01200024 000h + 00000cM2.01200024 000h 1343923-6 a19991122 20120419100738 @@ -190069,7 +190069,7 @@ - 01208cM2.01200024 000h + 00000cM2.01200024 000h 1344195-4 a19991122 20120415114607 @@ -190187,7 +190187,7 @@ - 00800cM2.01200024 000h + 00000cM2.01200024 000h 1344558-3 a19991122 20120419130859 @@ -190272,7 +190272,7 @@ - 00782cM2.01200024 000h + 00000cM2.01200024 000h 1346176-x a19991122 20120327105739 @@ -190372,7 +190372,7 @@ - 01162cM2.01200024 000h + 00000cM2.01200024 000h 1352031-3 a19991122 20110708121637 @@ -190469,7 +190469,7 @@ - 01460cM2.01200024 000h + 00000cM2.01200024 000h 1352207-3 a19991122 20110805080413 @@ -190560,7 +190560,7 @@ - 00737cM2.01200024 000h + 00000cM2.01200024 000h 1353729-5 a19991122 20070804091857 @@ -190639,7 +190639,7 @@ - 00934cM2.01200024 000h + 00000cM2.01200024 000h 1354784-7 a19991122 20120423140716 @@ -190751,7 +190751,7 @@ - 00843cM2.01200024 000h + 00000cM2.01200024 000h 1354802-5 a19991122 20120423112402 @@ -190857,7 +190857,7 @@ - 00826cM2.01200024 000h + 00000cM2.01200024 000h 1354983-2 a19991122 20120423140701 @@ -190948,7 +190948,7 @@ - 01114cM2.01200024 000h + 00000cM2.01200024 000h 1355038-x a19991122 20120415111914 @@ -191070,7 +191070,7 @@ - 00634cM2.01200024 000h + 00000cM2.01200024 000h 1355290-9 a19991122 20120420162133 @@ -191140,7 +191140,7 @@ - 00409cM2.01200024 000h + 00000cM2.01200024 000h 1355750-6 a19991122 20081129170459 @@ -191207,7 +191207,7 @@ - 00936cM2.01200024 000h + 00000cM2.01200024 000h 1358182-x a19991122 20120419104413 @@ -191310,7 +191310,7 @@ - 01343cM2.01200024 000h + 00000cM2.01200024 000h 1358800-x a19991122 20111207092943 @@ -191419,7 +191419,7 @@ - 01915cM2.01200024 000h + 00000cM2.01200024 000h 1359258-0 a19991122 20120423140612 @@ -191586,7 +191586,7 @@ - 02436cM2.01200024 000h + 00000cM2.01200024 000h 1360280-9 a19991122 20120404110626 @@ -191830,7 +191830,7 @@ - 01184cM2.01200024 000h + 00000cM2.01200024 000h 1361079-x a19991122 20120419162627 @@ -191982,7 +191982,7 @@ - 01267cM2.01200024 000h + 00000cM2.01200024 000h 1361262-1 a19991122 20120419162620 @@ -192133,7 +192133,7 @@ - 01042cM2.01200024 000h + 00000cM2.01200024 000h 1362006-x a19991122 20100309065210 @@ -192274,7 +192274,7 @@ - 01432cM2.01200024 000h + 00000cM2.01200024 000h 1362184-1 a19991122 20120415112852 @@ -192414,7 +192414,7 @@ - 00867cM2.01200024 000h + 00000cM2.01200024 000h 1362194-4 a19991122 20100309065212 @@ -192512,7 +192512,7 @@ - 00989cM2.01200024 000h + 00000cM2.01200024 000h 1362387-4 a19991122 20120415115018 @@ -192609,7 +192609,7 @@ - 00980cM2.01200024 000h + 00000cM2.01200024 000h 1363232-2 a19991122 20120423202526 @@ -192688,7 +192688,7 @@ - 00960cM2.01200024 000h + 00000cM2.01200024 000h 1363238-3 a19991122 20100302020057 @@ -192767,7 +192767,7 @@ - 00702cM2.01200024 000h + 00000cM2.01200024 000h 1363243-7 a19991122 20120423202523 @@ -192846,7 +192846,7 @@ - 00807cM2.01200024 000h + 00000cM2.01200024 000h 1363703-4 a19991122 20120415120441 @@ -192956,7 +192956,7 @@ - 00995cM2.01200024 000h + 00000cM2.01200024 000h 1364711-8 a19991122 20120419105213 @@ -193080,7 +193080,7 @@ - 00876cM2.01200024 000h + 00000cM2.01200024 000h 1365766-5 a19991122 20120419162821 @@ -193186,7 +193186,7 @@ - 00600cM2.01200024 000h + 00000cM2.01200024 000h 1369529-0 a19991122 20110713234628 @@ -193262,7 +193262,7 @@ - 00416cM2.01200024 000h + 00000cM2.01200024 000h 1371357-7 a19991122 20120420114710 @@ -193326,7 +193326,7 @@ - 00829cM2.01200024 000h + 00000cM2.01200024 000h 1374030-1 a19991122 20120419173220 @@ -193424,7 +193424,7 @@ - 00564cM2.01200024 000h + 00000cM2.01200024 000h 1375532-8 a19991122 20120420091337 @@ -193508,7 +193508,7 @@ - 01272cM2.01200024 000h + 00000cM2.01200024 000h 1376371-4 a19991122 20120415111848 @@ -193650,7 +193650,7 @@ - 00605cM2.01200024 000h + 00000cM2.01200024 000h 1377033-0 a19991122 20120419114825 @@ -193735,7 +193735,7 @@ - 00732cM2.01200024 000h + 00000cM2.01200024 000h 1377212-0 a19991122 20120423114727 @@ -193820,7 +193820,7 @@ - 00645cM2.01200024 000h + 00000cM2.01200024 000h 1377710-5 a19991122 20080123231908 @@ -193911,7 +193911,7 @@ - 01526cM2.01200024 000h + 00000cM2.01200024 000h 1377996-5 a19991122 20120116224237 @@ -194097,7 +194097,7 @@ - 01442cM2.01200024 000h + 00000cM2.01200024 000h 1378419-5 a19991122 20100303170010 @@ -194274,7 +194274,7 @@ - 00522cM2.01200024 000h + 00000cM2.01200024 000h 1379611-2 a19991122 20120423141839 @@ -194347,7 +194347,7 @@ - 00873cM2.01200024 000h + 00000cM2.01200024 000h 1379686-0 a19991122 20110601214029 @@ -194428,7 +194428,7 @@ - 01008cM2.01200024 000h + 00000cM2.01200024 000h 1379906-x a19991122 20100713190917 @@ -194541,7 +194541,7 @@ - 01496cM2.01200024 000h + 00000cM2.01200024 000h 1381836-3 a19991122 20110815214438 @@ -194707,7 +194707,7 @@ - 01867cM2.01200024 000h + 00000cM2.01200024 000h 1383308-x a19991122 20120309095658 @@ -194914,7 +194914,7 @@ - 00958cM2.01200024 000h + 00000cM2.01200024 000h 1383809-x a19991122 20110921130317 @@ -195008,7 +195008,7 @@ - 00948cM2.01200024 000h + 00000cM2.01200024 000h 1385333-8 a19991122 20120423140527 @@ -195123,7 +195123,7 @@ - 00736cM2.01200024 000h + 00000cM2.01200024 000h 1385475-6 a19991122 20110519123311 @@ -195236,7 +195236,7 @@ - 01043cM2.01200024 000h + 00000cM2.01200024 000h 1385960-2 a19991122 20090508182405 @@ -195354,7 +195354,7 @@ - 00615cM2.01200024 000h + 00000cM2.01200024 000h 1387571-1 a19991122 20120419105557 @@ -195433,7 +195433,7 @@ - 01087cM2.01200024 000h + 00000cM2.01200024 000h 1387755-0 a19991122 20090206162241 @@ -195515,7 +195515,7 @@ - 00767cM2.01200024 000h + 00000cM2.01200024 000h 1388125-5 a19991122 20120419213422 @@ -195603,7 +195603,7 @@ - 00559cM2.01200024 000h + 00000cM2.01200024 000h 1389004-9 a19991122 20100309065427 @@ -195691,7 +195691,7 @@ - 00904cM2.01200024 000h + 00000cM2.01200024 000h 1389680-5 a19991122 20120419110913 @@ -195808,7 +195808,7 @@ - 00691cM2.01200024 000h + 00000cM2.01200024 000h 1390097-3 a19991122 20090508182444 @@ -195914,7 +195914,7 @@ - 00682cM2.01200024 000h + 00000cM2.01200024 000h 1390190-4 a19991122 20120419112330 @@ -195996,7 +195996,7 @@ - 01857cM2.01200024 000h + 00000cM2.01200024 000h 1390935-6 a19991122 20100713191034 @@ -196188,7 +196188,7 @@ - 00402cM2.01200024 000h + 00000cM2.01200024 000h 1391957-x a19991122 20100118223308 @@ -196261,7 +196261,7 @@ - 00700cM2.01200024 000h + 00000cM2.01200024 000h 1391987-8 a19991122 20120420102358 @@ -196375,7 +196375,7 @@ - 01317cM2.01200024 000h + 00000cM2.01200024 000h 1392196-4 a19991122 20120419103029 @@ -196526,7 +196526,7 @@ - 00741cM2.01200024 000h + 00000cM2.01200024 000h 1392376-6 a19991122 20050526075357 @@ -196608,7 +196608,7 @@ - 00814cM2.01200024 000h + 00000cM2.01200024 000h 1392379-1 a19991122 20050526075357 @@ -196690,7 +196690,7 @@ - 00882cM2.01200024 000h + 00000cM2.01200024 000h 1392381-x a19991122 20050526075358 @@ -196772,7 +196772,7 @@ - 00479cM2.01200024 000h + 00000cM2.01200024 000h 1392491-6 a19991122 20111007091904 @@ -196842,7 +196842,7 @@ - 00581cM2.01200024 000h + 00000cM2.01200024 000h 1392493-x a19991122 20111102122214 @@ -196922,7 +196922,7 @@ - 00436cM2.01200024 000h + 00000cM2.01200024 000h 1392824-7 a19991122 20100309065508 @@ -196998,7 +196998,7 @@ - 02995cM2.01200024 000h + 00000cM2.01200024 000h 1394117-3 a19991122 20120419133656 @@ -197143,7 +197143,7 @@ - 01639cM2.01200024 000h + 00000cM2.01200024 000h 1394200-1 a19991122 20120423140510 @@ -197318,7 +197318,7 @@ - 00410cM2.01200024 000h + 00000cM2.01200024 000h 1395103-8 a19991122 20120420131028 @@ -197388,7 +197388,7 @@ - 00427cM2.01200024 000h + 00000cM2.01200024 000h 1399465-7 a19991122 20120420214215 @@ -197449,7 +197449,7 @@ - 01214cM2.01200024 000h + 00000cM2.01200024 000h 1402042-7 a19991122 20120423140500 @@ -197591,7 +197591,7 @@ - 00430cM2.01200024 000h + 00000cM2.01200024 000h 1402204-7 a19991122 20120423121218 @@ -197661,7 +197661,7 @@ - 00787cM2.01200024 000h + 00000cM2.01200024 000h 1402592-9 a19991122 20100713191134 @@ -197743,7 +197743,7 @@ - 01447cM2.01200024 000h + 00000cM2.01200024 000h 1403934-5 a19991122 20120423083253 @@ -197912,7 +197912,7 @@ - 04627cM2.01200024 000h + 00000cM2.01200024 000h 1406284-7 a19991122 20120423135227 @@ -198060,7 +198060,7 @@ - 01100cM2.01200024 000h + 00000cM2.01200024 000h 1406356-6 a19991122 20120222154922 @@ -198165,7 +198165,7 @@ - 00575cM2.01200024 000h + 00000cM2.01200024 000h 1406468-6 a19991122 20120419090744 @@ -198238,7 +198238,7 @@ - 00503cM2.01200024 000h + 00000cM2.01200024 000h 1406868-0 a19991122 20120419090309 @@ -198308,7 +198308,7 @@ - 02725cM2.01200024 000h + 00000cM2.01200024 000h 1407770-x a19991122 20110404192453 @@ -198557,7 +198557,7 @@ - 01799cM2.01200024 000h + 00000cM2.01200024 000h 1408926-9 a19991122 20120423135531 @@ -198733,7 +198733,7 @@ - 00988cM2.01200024 000h + 00000cM2.01200024 000h 1408982-8 a19991122 20090318023344 @@ -198851,7 +198851,7 @@ - 01312cM2.01200024 000h + 00000cM2.01200024 000h 1409201-3 a19991122 20100302020303 @@ -199031,7 +199031,7 @@ - 01045cM2.01200024 000h + 00000cM2.01200024 000h 1409550-6 a19991122 20120420195140 @@ -199179,7 +199179,7 @@ - 00806cM2.01200024 000h + 00000cM2.01200024 000h 1409892-1 a19991122 20100127215554 @@ -199287,7 +199287,7 @@ - 02023cM2.01200024 000h + 00000cM2.01200024 000h 1411029-5 a19991122 20120320133047 @@ -199503,7 +199503,7 @@ - 00614cM2.01200024 000h + 00000cM2.01200024 000h 1411280-2 a19991122 20120423131842 @@ -199591,7 +199591,7 @@ - 01723cM2.01200024 000h + 00000cM2.01200024 000h 1412404-x a19991122 20120419121443 @@ -199778,7 +199778,7 @@ - 00728cM2.01200024 000h + 00000cM2.01200024 000h 1412425-7 a19991122 20120423140451 @@ -199884,7 +199884,7 @@ - 00949cM2.01200024 000h + 00000cM2.01200024 000h 1413591-7 a19991122 20120420135303 @@ -200020,7 +200020,7 @@ - 00480cM2.01200024 000h + 00000cM2.01200024 000h 1413608-9 a19991122 20120423150352 @@ -200094,7 +200094,7 @@ - 00625cM2.01200024 000h + 00000cM2.01200024 000h 1413885-2 a19991122 20120419214038 @@ -200176,7 +200176,7 @@ - 00811cM2.01200024 000h + 00000cM2.01200024 000h 1414596-0 a19991122 20120420100942 @@ -200270,7 +200270,7 @@ - 00501cM2.01200024 000h + 00000cM2.01200024 000h 1415123-6 a19991122 20070804093144 @@ -200349,7 +200349,7 @@ - 01240cM2.01200024 000h + 00000cM2.01200024 000h 1415313-0 a19991122 20120423165351 @@ -200446,7 +200446,7 @@ - 00985cM2.01200024 000h + 00000cM2.01200024 000h 1416349-4 a19991122 20120419121520 @@ -200546,7 +200546,7 @@ - 00903cM2.01200024 000h + 00000cM2.01200024 000h 1416478-4 a19991122 20120420152343 @@ -200643,7 +200643,7 @@ - 00795cM2.01200024 000h + 00000cM2.01200024 000h 1416759-1 a19991122 20120421023037 @@ -200761,7 +200761,7 @@ - 00672cM2.01200024 000h + 00000cM2.01200024 000h 1417676-2 a19991122 20120420145240 @@ -200848,7 +200848,7 @@ - 00571cM2.01200024 000h + 00000cM2.01200024 000h 1418011-x a19991122 20120423140443 @@ -200927,7 +200927,7 @@ - 01338cM2.01200024 000h + 00000cM2.01200024 000h 1418167-8 a19991122 20101007111018 @@ -201015,7 +201015,7 @@ - 00916cM2.01200024 000h + 00000cM2.01200024 000h 1419318-8 a19991122 20100713191318 @@ -201109,7 +201109,7 @@ - 00593cM2.01200024 000h + 00000cM2.01200024 000h 1419336-x a19991122 20120420083057 @@ -201182,7 +201182,7 @@ - 00389cM2.01200024 000h + 00000cM2.01200024 000h 1419747-9 a19991122 20120423155718 @@ -201249,7 +201249,7 @@ - 01171cM2.01200024 000h + 00000cM2.01200024 000h 1419751-0 a19991122 20120415120443 @@ -201366,7 +201366,7 @@ - 01769cM2.01200024 000h + 00000cM2.01200024 000h 1420956-1 a19991122 20120423140406 @@ -201526,7 +201526,7 @@ - 02923cM2.01200024 000h + 00000cM2.01200024 000h 1421854-9 a19991122 20120420141234 @@ -201799,7 +201799,7 @@ - 00803cM2.01200024 000h + 00000cM2.01200024 000h 1421994-3 a19991122 20120419124140 @@ -201899,7 +201899,7 @@ - 00853cM2.01200024 000h + 00000cM2.01200024 000h 1422431-8 a19991122 20120421023058 @@ -201999,7 +201999,7 @@ - 00919cM2.01200024 000h + 00000cM2.01200024 000h 1422580-3 a19991122 20120423124634 @@ -202097,7 +202097,7 @@ - 01249cM2.01200024 000h + 00000cM2.01200024 000h 1422712-5 a19991122 20120415101908 @@ -202213,7 +202213,7 @@ - 01087cM2.01200024 000h + 00000cM2.01200024 000h 1424776-8 a19991122 20120316100019 @@ -202340,7 +202340,7 @@ - 00982cM2.01200024 000h + 00000cM2.01200024 000h 1425508-x a19991122 20050526090356 @@ -202434,7 +202434,7 @@ - 01113cM2.01200024 000h + 00000cM2.01200024 000h 1425533-9 a19991122 20070804093400 @@ -202531,7 +202531,7 @@ - 00750cM2.01200024 000h + 00000cM2.01200024 000h 1425621-6 a19991122 20100309065918 @@ -202616,7 +202616,7 @@ - 00770cM2.01200024 000h + 00000cM2.01200024 000h 1426190-x a19991122 20120420084605 @@ -202700,7 +202700,7 @@ - 00764cM2.01200024 000h + 00000cM2.01200024 000h 1428874-6 a19991122 20120419101642 @@ -202806,7 +202806,7 @@ - 00959cM2.01200024 000h + 00000cM2.01200024 000h 1430440-5 a19991122 20120419103431 @@ -202927,7 +202927,7 @@ - 00854cM2.01200024 000h + 00000cM2.01200024 000h 1430618-9 a19991122 20120423151753 @@ -203033,7 +203033,7 @@ - 01113cM2.01200024 000h + 00000cM2.01200024 000h 1432023-x a19991122 20120415112259 @@ -203163,7 +203163,7 @@ - 01032cM2.01200024 000h + 00000cM2.01200024 000h 1432039-3 a19991122 20120415112527 @@ -203290,7 +203290,7 @@ - 01187cM2.01200024 000h + 00000cM2.01200024 000h 1433256-5 a19991122 20120316100603 @@ -203432,7 +203432,7 @@ - 01085cM2.01200024 000h + 00000cM2.01200024 000h 1433804-x a19991122 20050526091912 @@ -203511,7 +203511,7 @@ - 02007cM2.01200024 000h + 00000cM2.01200024 000h 1433896-8 a19991122 20120402142933 @@ -203734,7 +203734,7 @@ - 00744cM2.01200024 000h + 00000cM2.01200024 000h 1434515-8 a19991122 20120423140429 @@ -203852,7 +203852,7 @@ - 01078cM2.01200024 000h + 00000cM2.01200024 000h 1435282-5 a19991122 20120415112011 @@ -203997,7 +203997,7 @@ - 02184cM2.01200024 000h + 00000cM2.01200024 000h 1435898-0 a19991122 20120420103003 @@ -204180,7 +204180,7 @@ - 00694cM2.01200024 000h + 00000cM2.01200024 000h 1436616-2 a19991122 20120415113930 @@ -204283,7 +204283,7 @@ - 00648cM2.01200024 000h + 00000cM2.01200024 000h 1437644-1 a19991122 20120419085728 @@ -204390,7 +204390,7 @@ - 00383cM2.01200024 000h + 00000cM2.01200024 000h 1438221-0 a19991122 20120423202513 @@ -204451,7 +204451,7 @@ - 00591cM2.01200024 000h + 00000cM2.01200024 000h 1438252-0 a19991122 20120423155110 @@ -204536,7 +204536,7 @@ - 00530cM2.01200024 000h + 00000cM2.01200024 000h 1438290-8 a19991122 20050526092750 @@ -204603,7 +204603,7 @@ - 01019cM2.01200024 000h + 00000cM2.01200024 000h 1438294-5 a19991122 20091027213958 @@ -204690,7 +204690,7 @@ - 00632cM2.01200024 000h + 00000cM2.01200024 000h 1439316-5 a19991122 20110901102328 @@ -204760,7 +204760,7 @@ - 00871cM2.01200024 000h + 00000cM2.01200024 000h 1440840-5 a19991122 20120420103635 @@ -204872,7 +204872,7 @@ - 00570cM2.01200024 000h + 00000cM2.01200024 000h 1440886-7 a19991122 20120423202447 @@ -204955,7 +204955,7 @@ - 00895cM2.01200024 000h + 00000cM2.01200024 000h 1441959-2 a19991122 20101124214927 @@ -205064,7 +205064,7 @@ - 00783cM2.01200024 000h + 00000cM2.01200024 000h 1443072-1 a19991122 20120423140421 @@ -205155,7 +205155,7 @@ - 00725cM2.01200024 000h + 00000cM2.01200024 000h 1443343-6 a19991122 20120415113336 @@ -205255,7 +205255,7 @@ - 00485cM2.01200024 000h + 00000cM2.01200024 000h 1443806-9 a19991122 20070430182610 @@ -205334,7 +205334,7 @@ - 00592cM2.01200024 000h + 00000cM2.01200024 000h 1443901-3 a19991122 20120423202435 @@ -205398,7 +205398,7 @@ - 00633cM2.01200024 000h + 00000cM2.01200024 000h 1446073-7 a19991122 20120420131453 @@ -205471,7 +205471,7 @@ - 01116cM2.01200024 000h + 00000cM2.01200024 000h 1446390-8 a19991122 20050526094421 @@ -205556,7 +205556,7 @@ - 00778cM2.01200024 000h + 00000cM2.01200024 000h 1447373-2 a19991122 20120415112700 @@ -205645,7 +205645,7 @@ - 00575cM2.01200024 000h + 00000cM2.01200024 000h 1448631-3 a19991122 20050526094922 @@ -205718,7 +205718,7 @@ - 00616cM2.01200024 000h + 00000cM2.01200024 000h 1450130-2 a19991122 20050526095244 @@ -205791,7 +205791,7 @@ - 00662cM2.01200024 000h + 00000cM2.01200024 000h 1452222-6 a19991122 20120415115522 @@ -205867,7 +205867,7 @@ - 00575cM2.01200024 000h + 00000cM2.01200024 000h 1452235-4 a19991122 20070804094059 @@ -205949,7 +205949,7 @@ - 00668cM2.01200024 000h + 00000cM2.01200024 000h 1453517-8 a19991122 20120423141730 @@ -206037,7 +206037,7 @@ - 01181cM2.01200024 000h + 00000cM2.01200024 000h 1453801-5 a19991122 20120423140347 @@ -206168,7 +206168,7 @@ - 00593cM2.01200024 000h + 00000cM2.01200024 000h 1454138-5 a19991122 20120423125555 @@ -206278,7 +206278,7 @@ - 00529cM2.01200024 000h + 00000cM2.01200024 000h 1454328-x a19991122 20120423085624 @@ -206345,7 +206345,7 @@ - 01075cM2.01200024 000h + 00000cM2.01200024 000h 1454926-8 a19991122 20120415120731 @@ -206460,7 +206460,7 @@ - 00593cM2.01200024 000h + 00000cM2.01200024 000h 1455499-9 a19991122 20120421023013 @@ -206545,7 +206545,7 @@ - 00540cM2.01200024 000h + 00000cM2.01200024 000h 1455590-6 a19991122 20120423151519 @@ -206624,7 +206624,7 @@ - 01463cM2.01200024 000h + 00000cM2.01200024 000h 1455800-2 a19991122 20120423115401 @@ -206768,7 +206768,7 @@ - 00620cM2.01200024 000h + 00000cM2.01200024 000h 1456867-6 a19991122 20071106235037 @@ -206856,7 +206856,7 @@ - 00399cM2.01200024 000h + 00000cM2.01200024 000h 1457953-4 a19991122 20120420131517 @@ -206921,7 +206921,7 @@ - 00545cM2.01200024 000h + 00000cM2.01200024 000h 1460948-4 a19991122 20120423151932 @@ -207000,7 +207000,7 @@ - 01441cM2.01200024 000h + 00000cM2.01200024 000h 1462124-1 a19991122 20111110134551 @@ -207163,7 +207163,7 @@ - 01004cM2.01200024 000h + 00000cM2.01200024 000h 1462469-2 a19991122 20120415112405 @@ -207267,7 +207267,7 @@ - 02424cM2.01200024 000h + 00000cM2.01200024 000h 1462918-5 a19991122 20120404152927 @@ -207463,7 +207463,7 @@ - 00597cM2.01200024 000h + 00000cM2.01200024 000h 1465008-3 a19991122 20120420093951 @@ -207548,7 +207548,7 @@ - 01467cM2.01200024 000h + 00000cM2.01200024 000h 1465267-5 a19991122 20110203043841 @@ -207726,7 +207726,7 @@ - 00586cM2.01200024 000h + 00000cM2.01200024 000h 1465649-8 a19991122 20120420142205 @@ -207811,7 +207811,7 @@ - 00730cM2.01200024 000h + 00000cM2.01200024 000h 1465897-5 a19991122 20100927152757 @@ -207914,7 +207914,7 @@ - 01016cM2.01200024 000h + 00000cM2.01200024 000h 1466923-7 a19991122 20120209154429 @@ -208053,7 +208053,7 @@ - 01035cM2.01200024 000h + 00000cM2.01200024 000h 1468257-6 a19991122 20120423140226 @@ -208165,7 +208165,7 @@ - 00547cM2.01200024 000h + 00000cM2.01200024 000h 1469598-4 a19991122 20050526103553 @@ -208232,7 +208232,7 @@ - 00448cM2.01200024 000h + 00000cM2.01200024 000h 1470370-1 a19991122 20120419135932 @@ -208299,7 +208299,7 @@ - 00523cM2.01200024 000h + 00000cM2.01200024 000h 1470773-1 a19991122 20110622114124 @@ -208387,7 +208387,7 @@ - 01434cM2.01200024 000h + 00000cM2.01200024 000h 1471181-3 a19991122 20120420152602 @@ -208551,7 +208551,7 @@ - 01126cM2.01200024 000h + 00000cM2.01200024 000h 1471207-6 a19991122 20120415111920 @@ -208681,7 +208681,7 @@ - 01193cM2.01200024 000h + 00000cM2.01200024 000h 1471294-5 a19991122 20120419142028 @@ -208817,7 +208817,7 @@ - 01438cM2.01200024 000h + 00000cM2.01200024 000h 1472148-x a19991122 20120420123951 @@ -208960,7 +208960,7 @@ - 01028cM2.01200024 000h + 00000cM2.01200024 000h 1472244-6 a19991122 20110715142951 @@ -209080,7 +209080,7 @@ - 01257cM2.01200024 000h + 00000cM2.01200024 000h 1472349-9 a19991122 20120420105649 @@ -209184,7 +209184,7 @@ - 00656cM2.01200024 000h + 00000cM2.01200024 000h 1472515-0 a19991122 20081129171604 @@ -209256,7 +209256,7 @@ - 00610cM2.01200024 000h + 00000cM2.01200024 000h 1472658-0 a19991122 20081129171605 @@ -209337,7 +209337,7 @@ - 01627cM2.01200024 000h + 00000cM2.01200024 000h 1473343-2 a19991122 20110711085951 @@ -209521,7 +209521,7 @@ - 01026cM2.01200024 000h + 00000cM2.01200024 000h 1474486-7 a19991122 20120423095632 @@ -209639,7 +209639,7 @@ - 01162cM2.01200024 000h + 00000cM2.01200024 000h 1474499-5 a19991122 20120419150132 @@ -209777,7 +209777,7 @@ - 00606cM2.01200024 000h + 00000cM2.01200024 000h 1474651-7 a19991122 20120415101937 @@ -209889,7 +209889,7 @@ - 02993cM2.01200024 000h + 00000cM2.01200024 000h 1474690-6 a19991122 20120423182432 @@ -210109,7 +210109,7 @@ - 00434cM2.01200024 000h + 00000cM2.01200024 000h 1476024-1 a19991122 20060930170241 @@ -210182,7 +210182,7 @@ - 01147cM2.01200024 000h + 00000cM2.01200024 000h 1476097-6 a19991122 20120423132348 @@ -210352,7 +210352,7 @@ - 01715cM2.01200024 000h + 00000cM2.01200024 000h 1476368-0 a19991122 20120209160550 @@ -210532,7 +210532,7 @@ - 00977cM2.01200024 000h + 00000cM2.01200024 000h 1477133-0 a19991122 20100616081742 @@ -210677,7 +210677,7 @@ - 00411cM2.01200024 000h + 00000cM2.01200024 000h 1478280-7 a19991122 20120420085904 @@ -210744,7 +210744,7 @@ - 00928cM2.01200024 000h + 00000cM2.01200024 000h 1478734-9 a19991122 20120419092204 @@ -210861,7 +210861,7 @@ - 01340cM2.01200024 000h + 00000cM2.01200024 000h 1482580-6 a19991122 20120415112703 @@ -211035,7 +211035,7 @@ - 01082cM2.01200024 000h + 00000cM2.01200024 000h 1482902-2 a19991122 20120419124302 @@ -211181,7 +211181,7 @@ - 01869cM2.01200024 000h + 00000cM2.01200024 000h 1483151-x a19991122 20120419150141 @@ -211347,7 +211347,7 @@ - 01217cM2.01200024 000h + 00000cM2.01200024 000h 1483314-1 a19991122 20120419150122 @@ -211490,7 +211490,7 @@ - 00384cM2.01200024 000h + 00000cM2.01200024 000h 1483992-1 a19991122 20120419104831 @@ -211551,7 +211551,7 @@ - 01158cM2.01200024 000h + 00000cM2.01200024 000h 1484328-6 a19991122 20120419150128 @@ -211685,7 +211685,7 @@ - 00483cM2.01200024 000h + 00000cM2.01200024 000h 1484994-x a19991122 20120420114659 @@ -211755,7 +211755,7 @@ - 02097cM2.01200024 000h + 00000cM2.01200024 000h 1485131-3 a19991122 20120419112902 @@ -211950,7 +211950,7 @@ - 00492cM2.01200024 000h + 00000cM2.01200024 000h 1486431-9 a19991122 20070804094720 @@ -212023,7 +212023,7 @@ - 00885cM2.01200024 000h + 00000cM2.01200024 000h 1486593-2 a19991122 20120419105114 @@ -212147,7 +212147,7 @@ - 00483cM2.01200024 000h + 00000cM2.01200024 000h 1487252-3 a19991122 20081204084534 @@ -212223,7 +212223,7 @@ - 00609cM2.01200024 000h + 00000cM2.01200024 000h 1487253-5 a19991122 20081205095426 @@ -212305,7 +212305,7 @@ - 01278cM2.01200024 000h + 00000cM2.01200024 000h 1488237-1 a19991122 20120423144717 @@ -212411,7 +212411,7 @@ - 00702cM2.01200024 000h + 00000cM2.01200024 000h 1488256-5 a19991122 20061030102927 @@ -212499,7 +212499,7 @@ - 01469cM2.01200024 000h + 00000cM2.01200024 000h 1489288-1 a19991122 20120415120556 @@ -212632,7 +212632,7 @@ - 00605cM2.01200024 000h + 00000cM2.01200024 000h 1490832-3 a19991122 20120419093859 @@ -212714,7 +212714,7 @@ - 01117cM2.01200024 000h + 00000cM2.01200024 000h 1491079-2 a19991122 20120419150127 @@ -212846,7 +212846,7 @@ - 01266cM2.01200024 000h + 00000cM2.01200024 000h 1492497-3 a19991122 20120419150137 @@ -212987,7 +212987,7 @@ - 01756cM2.01200024 000h + 00000cM2.01200024 000h 1492617-9 a19991122 20120209012207 @@ -213173,7 +213173,7 @@ - 01179cM2.01200024 000h + 00000cM2.01200024 000h 1492631-3 a19991122 20120419150139 @@ -213313,7 +213313,7 @@ - 01285cM2.01200024 000h + 00000cM2.01200024 000h 1492634-9 a19991122 20120419104841 @@ -213451,7 +213451,7 @@ - 00755cM2.01200024 000h + 00000cM2.01200024 000h 1493065-1 a19991122 20120421023048 @@ -213554,7 +213554,7 @@ - 00506cM2.01200024 000h + 00000cM2.01200024 000h 1493625-2 a19991122 20120423115841 @@ -213630,7 +213630,7 @@ - 00804cM2.01200024 000h + 00000cM2.01200024 000h 1493776-1 a19991122 20120419092934 @@ -213730,7 +213730,7 @@ - 01254cM2.01200024 000h + 00000cM2.01200024 000h 1494296-3 a19991122 20120420093742 @@ -213898,7 +213898,7 @@ - 00678cM2.01200024 000h + 00000cM2.01200024 000h 1496275-5 a19991122 20080202172503 @@ -213998,7 +213998,7 @@ - 01014cM2.01200024 000h + 00000cM2.01200024 000h 1497072-7 a19991122 20120419150135 @@ -214118,7 +214118,7 @@ - 01160cM2.01200024 000h + 00000cM2.01200024 000h 1497073-9 a19991122 20120419150113 @@ -214250,7 +214250,7 @@ - 01285cM2.01200024 000h + 00000cM2.01200024 000h 1497103-3 a19991122 20120419150137 @@ -214386,7 +214386,7 @@ - 01171cM2.01200024 000h + 00000cM2.01200024 000h 1497111-2 a19991122 20120419150134 @@ -214523,7 +214523,7 @@ - 01042cM2.01200024 000h + 00000cM2.01200024 000h 1497613-4 a19991122 20120419150118 @@ -214653,7 +214653,7 @@ - 00742cM2.01200024 000h + 00000cM2.01200024 000h 1497749-7 a19991122 20120423083558 @@ -214746,7 +214746,7 @@ - 00457cM2.01200024 000h + 00000cM2.01200024 000h 1500026-6 a19991116 20120420023019 @@ -214831,7 +214831,7 @@ - 01487cM2.01200024 000h + 00000cM2.01200024 000h 1500276-7 a19991117 20120419145942 @@ -214964,7 +214964,7 @@ - 01313cM2.01200024 000h + 00000cM2.01200024 000h 1500668-2 a19991119 20120420084953 @@ -215133,7 +215133,7 @@ - 00559cM2.01200024 000h + 00000cM2.01200024 000h 1500902-6 a19991123 20100309073657 @@ -215218,7 +215218,7 @@ - 00915cM2.01200024 000h + 00000cM2.01200024 000h 1501323-6 a19991125 20120423172545 @@ -215332,7 +215332,7 @@ - 00869cM2.01200024 000h + 00000cM2.01200024 000h 1501590-7 a19991126 20120423141417 @@ -215435,7 +215435,7 @@ - 00641cM2.01200024 000h + 00000cM2.01200024 000h 1502231-6 a19991202 20050526113655 @@ -215517,7 +215517,7 @@ - 01243cM2.01200024 000h + 00000cM2.01200024 000h 2000075-3 a20000104 20120423140208 @@ -215635,7 +215635,7 @@ - 01097cM2.01200024 000h + 00000cM2.01200024 000h 2000430-8 a20000111 20110321164208 @@ -215747,7 +215747,7 @@ - 01095cM2.01200024 000h + 00000cM2.01200024 000h 2000548-9 a20000112 20120415120312 @@ -215871,7 +215871,7 @@ - 01084cM2.01200024 000h + 00000cM2.01200024 000h 2001220-2 a20000119 20120423115709 @@ -216004,7 +216004,7 @@ - 00558cM2.01200024 000h + 00000cM2.01200024 000h 2001714-5 a20000125 20120415113731 @@ -216095,7 +216095,7 @@ - 01510cM2.01200024 000h + 00000cM2.01200024 000h 2001806-X a20000125 20120419150125 @@ -216228,7 +216228,7 @@ - 00838cM2.01200024 000h + 00000cM2.01200024 000h 2002699-7 a20000202 20110721071644 @@ -216343,7 +216343,7 @@ - 00823cM2.01200024 000h + 00000cM2.01200024 000h 2003642-5 a20000210 20120109142025 @@ -216454,7 +216454,7 @@ - 01455cM2.01200024 000h + 00000cM2.01200024 000h 2003668-1 a20000211 20120413115010 @@ -216615,7 +216615,7 @@ - 00667cM2.01200024 000h + 00000cM2.01200024 000h 2004046-5 a20000215 20120420023019 @@ -216715,7 +216715,7 @@ - 00695cM2.01200024 000h + 00000cM2.01200024 000h 2004400-8 a20000217 20120419125923 @@ -216797,7 +216797,7 @@ - 01393cM2.01200024 000h + 00000cM2.01200024 000h 2004709-5 a20000221 20120303023122 @@ -216971,7 +216971,7 @@ - 01063cM2.01200024 000h + 00000cM2.01200024 000h 2005252-2 a20000224 20120209154532 @@ -217107,7 +217107,7 @@ - 01566cM2.01200024 000h + 00000cM2.01200024 000h 2005394-0 a20000225 20120419162601 @@ -217284,7 +217284,7 @@ - 00963cM2.01200024 000h + 00000cM2.01200024 000h 2005623-0 a20000228 20120423082132 @@ -217415,7 +217415,7 @@ - 01738cM2.01200024 000h + 00000cM2.01200024 000h 2005936-X a20000301 20120415120135 @@ -217600,7 +217600,7 @@ - 01324cM2.01200024 000h + 00000cM2.01200024 000h 2006641-7 a20000309 20120419145944 @@ -217736,7 +217736,7 @@ - 01212cM2.01200024 000h + 00000cM2.01200024 000h 2006659-4 a20000309 20120419145943 @@ -217873,7 +217873,7 @@ - 01774cM2.01200024 000h + 00000cM2.01200024 000h 2006922-4 a20000313 20120419161733 @@ -218044,7 +218044,7 @@ - 01079cM2.01200024 000h + 00000cM2.01200024 000h 2007046-9 a20000313 20120419092437 @@ -218184,7 +218184,7 @@ - 00728cM2.01200024 000h + 00000cM2.01200024 000h 2007319-7 a20000315 20120420142059 @@ -218299,7 +218299,7 @@ - 00590cM2.01200024 000h + 00000cM2.01200024 000h 2007393-8 a20000316 20120423152728 @@ -218383,7 +218383,7 @@ - 01432cM2.01200024 000h + 00000cM2.01200024 000h 2007473-6 a20000316 20110714045953 @@ -218549,7 +218549,7 @@ - 00623cM2.01200024 000h + 00000cM2.01200024 000h 2007586-8 a20000317 20120419172825 @@ -218628,7 +218628,7 @@ - 00801cM2.01200024 000h + 00000cM2.01200024 000h 2008098-0 a20000323 20120208234530 @@ -218768,7 +218768,7 @@ - 00955cM2.01200024 000h + 00000cM2.01200024 000h 2008454-7 a20000328 20120415112234 @@ -218880,7 +218880,7 @@ - 00932cM2.01200024 000h + 00000cM2.01200024 000h 2008783-4 a20000330 20120419150122 @@ -218999,7 +218999,7 @@ - 00979cM2.01200024 000h + 00000cM2.01200024 000h 2008840-1 a20000330 20050526115530 @@ -219099,7 +219099,7 @@ - 00606cM2.01200024 000h + 00000cM2.01200024 000h 2008910-7 a20000331 20120420141233 @@ -219203,7 +219203,7 @@ - 00682cM2.01200024 000h + 00000cM2.01200024 000h 2009738-4 a20000406 20120423100246 @@ -219307,7 +219307,7 @@ - 01170cM2.01200024 000h + 00000cM2.01200024 000h 2010382-7 a20000412 20120421023040 @@ -219456,7 +219456,7 @@ - 00939cM2.01200024 000h + 00000cM2.01200024 000h 2010717-1 a20000417 20120208223701 @@ -219595,7 +219595,7 @@ - 00870cM2.01200024 000h + 00000cM2.01200024 000h 2010858-8 a20000418 20120419125234 @@ -219695,7 +219695,7 @@ - 01328cM2.01200024 000h + 00000cM2.01200024 000h 2010868-0 a20000418 20111125115908 @@ -219849,7 +219849,7 @@ - 01912cM2.01200024 000h + 00000cM2.01200024 000h 2011121-6 a20000420 20120420104003 @@ -219949,7 +219949,7 @@ - 01398cM2.01200024 000h + 00000cM2.01200024 000h 2011131-9 a20000420 20120420101800 @@ -220037,7 +220037,7 @@ - 02024cM2.01200024 000h + 00000cM2.01200024 000h 2011139-3 a20000420 20120420121117 @@ -220146,7 +220146,7 @@ - 00935cM2.01200024 000h + 00000cM2.01200024 000h 2011217-8 a20000425 20120420122116 @@ -220225,7 +220225,7 @@ - 00848cM2.01200024 000h + 00000cM2.01200024 000h 2011345-6 a20000426 20120420160100 @@ -220334,7 +220334,7 @@ - 00393cM2.01200024 000h + 00000cM2.01200024 000h 2011535-0 a20000427 20100309075145 @@ -220406,7 +220406,7 @@ - 00759cM2.01200024 000h + 00000cM2.01200024 000h 2011932-X a20000503 20120415112344 @@ -220506,7 +220506,7 @@ - 01336cM2.01200024 000h + 00000cM2.01200024 000h 2013313-3 a20000516 20120217154028 @@ -220608,7 +220608,7 @@ - 00837cM2.01200024 000h + 00000cM2.01200024 000h 2013382-0 a20000517 20120423140148 @@ -220714,7 +220714,7 @@ - 01052cM2.01200024 000h + 00000cM2.01200024 000h 2013698-5 a20000518 20120423133524 @@ -220862,7 +220862,7 @@ - 00612cM2.01200024 000h + 00000cM2.01200024 000h 2013778-3 a20000519 20120421023042 @@ -220953,7 +220953,7 @@ - 00482cM2.01200024 000h + 00000cM2.01200024 000h 2014125-7 a20000523 20120419135205 @@ -221023,7 +221023,7 @@ - 00786cM2.01200024 000h + 00000cM2.01200024 000h 2014481-7 a20000525 20120415113938 @@ -221137,7 +221137,7 @@ - 00736cM2.01200024 000h + 00000cM2.01200024 000h 2014594-9 a20000526 20120415120758 @@ -221250,7 +221250,7 @@ - 00945cM2.01200024 000h + 00000cM2.01200024 000h 2014827-6 a20000529 20070804112252 @@ -221371,7 +221371,7 @@ - 01185cM2.01200024 000h + 00000cM2.01200024 000h 2015294-2 a20000605 20120423140335 @@ -221491,7 +221491,7 @@ - 01088cM2.01200024 000h + 00000cM2.01200024 000h 2015459-8 a20000605 20120419150123 @@ -221627,7 +221627,7 @@ - 01144cM2.01200024 000h + 00000cM2.01200024 000h 2016111-6 a20000613 20120321082405 @@ -221747,7 +221747,7 @@ - 00587cM2.01200024 000h + 00000cM2.01200024 000h 2016346-0 a20000615 20120419110853 @@ -221829,7 +221829,7 @@ - 00682cM2.01200024 000h + 00000cM2.01200024 000h 2016683-7 a20000619 20120209025034 @@ -221927,7 +221927,7 @@ - 00988cM2.01200024 000h + 00000cM2.01200024 000h 2016711-8 a20000619 20110420101340 @@ -222046,7 +222046,7 @@ - 00949cM2.01200024 000h + 00000cM2.01200024 000h 2017131-6 a20000622 20120420135253 @@ -222150,7 +222150,7 @@ - 00692cM2.01200024 000h + 00000cM2.01200024 000h 2017329-5 a20000627 20120421023043 @@ -222256,7 +222256,7 @@ - 00822cM2.01200024 000h + 00000cM2.01200024 000h 2017846-3 a20000703 20111111152447 @@ -222360,7 +222360,7 @@ - 00546cM2.01200024 000h + 00000cM2.01200024 000h 2018217-X a20000706 20120415112323 @@ -222442,7 +222442,7 @@ - 00664cM2.01200024 000h + 00000cM2.01200024 000h 2018321-5 a20000706 20120423140929 @@ -222527,7 +222527,7 @@ - 01669cM2.01200024 000h + 00000cM2.01200024 000h 2018434-7 a20000710 20110607134744 @@ -222675,7 +222675,7 @@ - 00873cM2.01200024 000h + 00000cM2.01200024 000h 2019466-3 a20000718 20100721144838 @@ -222772,7 +222772,7 @@ - 00967cM2.01200024 000h + 00000cM2.01200024 000h 2019728-7 a20000720 20100309134542 @@ -222912,7 +222912,7 @@ - 00634cM2.01200024 000h + 00000cM2.01200024 000h 2020069-9 a20000725 20120423094929 @@ -223006,7 +223006,7 @@ - 00984cM2.01200024 000h + 00000cM2.01200024 000h 2020074-2 a20000725 20110630105751 @@ -223129,7 +223129,7 @@ - 00981cM2.01200024 000h + 00000cM2.01200024 000h 2020965-4 a20000803 20110919110706 @@ -223253,7 +223253,7 @@ - 01232cM2.01200024 000h + 00000cM2.01200024 000h 2021223-9 a20000807 20110928134248 @@ -223391,7 +223391,7 @@ - 01016cM2.01200024 000h + 00000cM2.01200024 000h 2021266-5 a20000807 20120419112247 @@ -223516,7 +223516,7 @@ - 01218cM2.01200024 000h + 00000cM2.01200024 000h 2021646-4 a20000810 20120420213258 @@ -223656,7 +223656,7 @@ - 00939cM2.01200024 000h + 00000cM2.01200024 000h 2022071-6 a20000816 20120420082057 @@ -223779,7 +223779,7 @@ - 01021cM2.01200024 000h + 00000cM2.01200024 000h 2022167-8 a20000817 20120419150118 @@ -223902,7 +223902,7 @@ - 00573cM2.01200024 000h + 00000cM2.01200024 000h 2022791-7 a20000824 20120415112321 @@ -223990,7 +223990,7 @@ - 00817cM2.01200024 000h + 00000cM2.01200024 000h 2022900-8 a20000825 20120419085326 @@ -224096,7 +224096,7 @@ - 00912cM2.01200024 000h + 00000cM2.01200024 000h 2023076-X a20000829 20110926143529 @@ -224225,7 +224225,7 @@ - 00593cM2.01200024 000h + 00000cM2.01200024 000h 2023515-X a20000904 20120419103532 @@ -224307,7 +224307,7 @@ - 00768cM2.01200024 000h + 00000cM2.01200024 000h 2024083-1 a20000911 20120209033041 @@ -224404,7 +224404,7 @@ - 00769cM2.01200024 000h + 00000cM2.01200024 000h 2024192-6 a20000912 20120420071745 @@ -224513,7 +224513,7 @@ - 00499cM2.01200024 000h + 00000cM2.01200024 000h 2024377-7 a20000913 20120423140137 @@ -224592,7 +224592,7 @@ - 00947cM2.01200024 000h + 00000cM2.01200024 000h 2024928-7 a20000919 20120209033443 @@ -224707,7 +224707,7 @@ - 00727cM2.01200024 000h + 00000cM2.01200024 000h 2025378-3 a20000922 20120321115214 @@ -224822,7 +224822,7 @@ - 01006cM2.01200024 000h + 00000cM2.01200024 000h 2025621-8 a20000926 20120215144214 @@ -224956,7 +224956,7 @@ - 01240cM2.01200024 000h + 00000cM2.01200024 000h 2026300-4 a20001004 20120420102527 @@ -225116,7 +225116,7 @@ - 00678cM2.01200024 000h + 00000cM2.01200024 000h 2026817-8 a20001010 20120423104318 @@ -225231,7 +225231,7 @@ - 00722cM2.01200024 000h + 00000cM2.01200024 000h 2026818-X a20001010 20120423104053 @@ -225346,7 +225346,7 @@ - 00681cM2.01200024 000h + 00000cM2.01200024 000h 2026996-1 a20001012 20111110112427 @@ -225437,7 +225437,7 @@ - 01010cM2.01200024 000h + 00000cM2.01200024 000h 2027113-X a20001013 20120419150130 @@ -225552,7 +225552,7 @@ - 00578cM2.01200024 000h + 00000cM2.01200024 000h 2027732-5 a20001019 20050526123154 @@ -225622,7 +225622,7 @@ - 00723cM2.01200024 000h + 00000cM2.01200024 000h 2027823-8 a20001019 20120423160339 @@ -225724,7 +225724,7 @@ - 01132cM2.01200024 000h + 00000cM2.01200024 000h 2028095-6 a20001023 20120419150116 @@ -225857,7 +225857,7 @@ - 01311cM2.01200024 000h + 00000cM2.01200024 000h 2028393-3 a20001025 20120423142636 @@ -225996,7 +225996,7 @@ - 01318cM2.01200024 000h + 00000cM2.01200024 000h 2028870-0 a20001031 20120420150807 @@ -226137,7 +226137,7 @@ - 00516cM2.01200024 000h + 00000cM2.01200024 000h 2030860-7 a20001120 20120421023050 @@ -226228,7 +226228,7 @@ - 01147cM2.01200024 000h + 00000cM2.01200024 000h 2032160-0 a20001130 20080922115748 @@ -226360,7 +226360,7 @@ - 00849cM2.01200024 000h + 00000cM2.01200024 000h 2032802-3 a20001206 20090721013603 @@ -226467,7 +226467,7 @@ - 01147cM2.01200024 000h + 00000cM2.01200024 000h 2034338-3 a20001222 20100713192518 @@ -226606,7 +226606,7 @@ - 00904cM2.01200024 000h + 00000cM2.01200024 000h 2035196-3 a20010110 20120415111828 @@ -226718,7 +226718,7 @@ - 01247cM2.01200024 000h + 00000cM2.01200024 000h 2036277-8 a20010119 20120419150129 @@ -226843,7 +226843,7 @@ - 00778cM2.01200024 000h + 00000cM2.01200024 000h 2036318-7 a20010122 20090928224543 @@ -226952,7 +226952,7 @@ - 00735cM2.01200024 000h + 00000cM2.01200024 000h 2036653-X a20010124 20120419130301 @@ -227054,7 +227054,7 @@ - 00849cM2.01200024 000h + 00000cM2.01200024 000h 2037714-9 a20010201 20120415120323 @@ -227164,7 +227164,7 @@ - 01525cM2.01200024 000h + 00000cM2.01200024 000h 2037772-1 a20010201 20120423160242 @@ -227325,7 +227325,7 @@ - 00769cM2.01200024 000h + 00000cM2.01200024 000h 2039075-0 a20010213 20120209041830 @@ -227425,7 +227425,7 @@ - 01170cM2.01200024 000h + 00000cM2.01200024 000h 2039101-8 a20010213 20120419150121 @@ -227560,7 +227560,7 @@ - 00767cM2.01200024 000h + 00000cM2.01200024 000h 2039748-3 a20010219 20120420111055 @@ -227645,7 +227645,7 @@ - 00573cM2.01200024 000h + 00000cM2.01200024 000h 2039764-1 a20010219 20120420105431 @@ -227724,7 +227724,7 @@ - 01034cM2.01200024 000h + 00000cM2.01200024 000h 2039814-1 a20010219 20120420104628 @@ -227827,7 +227827,7 @@ - 00671cM2.01200024 000h + 00000cM2.01200024 000h 2039815-3 a20010219 20120420104455 @@ -227909,7 +227909,7 @@ - 00970cM2.01200024 000h + 00000cM2.01200024 000h 2040790-7 a20010228 20120420153629 @@ -228032,7 +228032,7 @@ - 01049cM2.01200024 000h + 00000cM2.01200024 000h 2040834-1 a20010228 20101124215105 @@ -228174,7 +228174,7 @@ - 00751cM2.01200024 000h + 00000cM2.01200024 000h 2041131-5 a20010302 20120423144619 @@ -228277,7 +228277,7 @@ - 00728cM2.01200024 000h + 00000cM2.01200024 000h 2041579-5 a20010306 20120420100043 @@ -228356,7 +228356,7 @@ - 00938cM2.01200024 000h + 00000cM2.01200024 000h 2041616-7 a20010307 20120420141014 @@ -228472,7 +228472,7 @@ - 01465cM2.01200024 000h + 00000cM2.01200024 000h 2041774-3 a20010308 20120419110704 @@ -228625,7 +228625,7 @@ - 00543cM2.01200024 000h + 00000cM2.01200024 000h 2042321-4 a20010313 20090220213750 @@ -228698,7 +228698,7 @@ - 00980cM2.01200024 000h + 00000cM2.01200024 000h 2043618-X a20010323 20120423201959 @@ -228828,7 +228828,7 @@ - 00920cM2.01200024 000h + 00000cM2.01200024 000h 2044364-X a20010329 20120423084006 @@ -228931,7 +228931,7 @@ - 01253cM2.01200024 000h + 00000cM2.01200024 000h 2044601-9 a20010402 20120423103551 @@ -229065,7 +229065,7 @@ - 01574cM2.01200024 000h + 00000cM2.01200024 000h 2044623-8 a20010403 20120423124246 @@ -229232,7 +229232,7 @@ - 00691cM2.01200024 000h + 00000cM2.01200024 000h 2045315-2 a20010411 20120423134015 @@ -229323,7 +229323,7 @@ - 00602cM2.01200024 000h + 00000cM2.01200024 000h 2045474-0 a20010412 20120208232553 @@ -229406,7 +229406,7 @@ - 01308cM2.01200024 000h + 00000cM2.01200024 000h 2045778-9 a20010419 20120419113604 @@ -229542,7 +229542,7 @@ - 00456cM2.01200024 000h + 00000cM2.01200024 000h 2046576-2 a20010427 20120419085228 @@ -229609,7 +229609,7 @@ - 00841cM2.01200024 000h + 00000cM2.01200024 000h 2046741-2 a20010502 20120423151645 @@ -229706,7 +229706,7 @@ - 00698cM2.01200024 000h + 00000cM2.01200024 000h 2046772-2 a20010503 20120423151630 @@ -229791,7 +229791,7 @@ - 00786cM2.01200024 000h + 00000cM2.01200024 000h 2046808-8 a20010503 20120423154605 @@ -229885,7 +229885,7 @@ - 01021cM2.01200024 000h + 00000cM2.01200024 000h 2046814-3 a20010503 20120423153241 @@ -229985,7 +229985,7 @@ - 00537cM2.01200024 000h + 00000cM2.01200024 000h 2047322-9 a20010509 20120423170938 @@ -230079,7 +230079,7 @@ - 01038cM2.01200024 000h + 00000cM2.01200024 000h 2047525-1 a20010511 20120419154453 @@ -230215,7 +230215,7 @@ - 01171cM2.01200024 000h + 00000cM2.01200024 000h 2047872-0 a20010516 20120313141413 @@ -230346,7 +230346,7 @@ - 00833cM2.01200024 000h + 00000cM2.01200024 000h 2047892-6 a20010516 20120423072933 @@ -230455,7 +230455,7 @@ - 00559cM2.01200024 000h + 00000cM2.01200024 000h 2049635-7 a20010607 20120420023021 @@ -230549,7 +230549,7 @@ - 00623cM2.01200024 000h + 00000cM2.01200024 000h 2049778-7 a20010608 20120423155253 @@ -230631,7 +230631,7 @@ - 01538cM2.01200024 000h + 00000cM2.01200024 000h 2050308-8 a20010615 20120415120344 @@ -230722,7 +230722,7 @@ - 00793cM2.01200024 000h + 00000cM2.01200024 000h 2051068-8 a20010626 20120423075302 @@ -230825,7 +230825,7 @@ - 00790cM2.01200024 000h + 00000cM2.01200024 000h 2051712-9 a20010703 20120420134105 @@ -230922,7 +230922,7 @@ - 01764cM2.01200024 000h + 00000cM2.01200024 000h 2052561-8 a20010711 20120419123809 @@ -231079,7 +231079,7 @@ - 00702cM2.01200024 000h + 00000cM2.01200024 000h 2052988-0 a20010717 20120420213518 @@ -231170,7 +231170,7 @@ - 00552cM2.01200024 000h + 00000cM2.01200024 000h 2053126-6 a20010718 20050728025608 @@ -231252,7 +231252,7 @@ - 01328cM2.01200024 000h + 00000cM2.01200024 000h 2053756-6 a20010726 20120419150115 @@ -231394,7 +231394,7 @@ - 01169cM2.01200024 000h + 00000cM2.01200024 000h 2053781-5 a20010726 20120419150114 @@ -231533,7 +231533,7 @@ - 01449cM2.01200024 000h + 00000cM2.01200024 000h 2054131-4 a20010731 20120423140627 @@ -231660,7 +231660,7 @@ - 01079cM2.01200024 000h + 00000cM2.01200024 000h 2054586-1 a20010807 20120113084541 @@ -231777,7 +231777,7 @@ - 00667cM2.01200024 000h + 00000cM2.01200024 000h 2055983-5 a20010824 20120403095852 @@ -231862,7 +231862,7 @@ - 00980cM2.01200024 000h + 00000cM2.01200024 000h 2056738-8 a20010906 20120419093429 @@ -231975,7 +231975,7 @@ - 01413cM2.01200024 000h + 00000cM2.01200024 000h 2058971-2 a20011008 20120415120613 @@ -232081,7 +232081,7 @@ - 00401cM2.01200024 000h + 00000cM2.01200024 000h 2059087-8 a20011010 20120419101349 @@ -232145,7 +232145,7 @@ - 00563cM2.01200024 000h + 00000cM2.01200024 000h 2061000-2 a20011102 20120419100648 @@ -232239,7 +232239,7 @@ - 00788cM2.01200024 000h + 00000cM2.01200024 000h 2061303-9 a20011106 20110714004101 @@ -232339,7 +232339,7 @@ - 00686cM2.01200024 000h + 00000cM2.01200024 000h 2061317-9 a20011107 20110714004101 @@ -232433,7 +232433,7 @@ - 01171cM2.01200024 000h + 00000cM2.01200024 000h 2063265-4 a20011128 20110617123502 @@ -232574,7 +232574,7 @@ - 02059cM2.01200024 000h + 00000cM2.01200024 000h 2064275-1 a20011212 20110214235708 @@ -232760,7 +232760,7 @@ - 00402cM2.01200024 000h + 00000cM2.01200024 000h 2064577-6 a20011218 20120423140054 @@ -232830,7 +232830,7 @@ - 01450cM2.01200024 000h + 00000cM2.01200024 000h 2064860-1 a20011221 20120423090432 @@ -232995,7 +232995,7 @@ - 00809cM2.01200024 000h + 00000cM2.01200024 000h 2065210-0 a20020109 20120415120329 @@ -233116,7 +233116,7 @@ - 00429cM2.01200024 000h + 00000cM2.01200024 000h 2065364-5 a20020110 20120415112414 @@ -233186,7 +233186,7 @@ - 00507cM2.01200024 000h + 00000cM2.01200024 000h 2065471-6 a20020111 20120423202441 @@ -233265,7 +233265,7 @@ - 00810cM2.01200024 000h + 00000cM2.01200024 000h 2065534-4 a20020114 20120423122930 @@ -233377,7 +233377,7 @@ - 01426cM2.01200024 000h + 00000cM2.01200024 000h 2065625-7 a20020114 20120423135931 @@ -233501,7 +233501,7 @@ - 00845cM2.01200024 000h + 00000cM2.01200024 000h 2066102-2 a20020117 20120420083825 @@ -233601,7 +233601,7 @@ - 01159cM2.01200024 000h + 00000cM2.01200024 000h 2066479-5 a20020117 20120419150136 @@ -233729,7 +233729,7 @@ - 00929cM2.01200024 000h + 00000cM2.01200024 000h 2066607-X a20020118 20120420081203 @@ -233846,7 +233846,7 @@ - 01550cM2.01200024 000h + 00000cM2.01200024 000h 2067353-X a20020121 20120420145833 @@ -233995,7 +233995,7 @@ - 01658cM2.01200024 000h + 00000cM2.01200024 000h 2067358-9 a20020121 20120419132410 @@ -234136,7 +234136,7 @@ - 01090cM2.01200024 000h + 00000cM2.01200024 000h 2067432-6 a20020121 20120316143911 @@ -234268,7 +234268,7 @@ - 00942cM2.01200024 000h + 00000cM2.01200024 000h 2067591-4 a20020121 20110926144507 @@ -234394,7 +234394,7 @@ - 00922cM2.01200024 000h + 00000cM2.01200024 000h 2067617-7 a20020121 20110928133807 @@ -234511,7 +234511,7 @@ - 00861cM2.01200024 000h + 00000cM2.01200024 000h 2068917-2 a20020123 20120423135849 @@ -234624,7 +234624,7 @@ - 00472cM2.01200024 000h + 00000cM2.01200024 000h 2069096-4 a20020124 20050526135804 @@ -234694,7 +234694,7 @@ - 00789cM2.01200024 000h + 00000cM2.01200024 000h 2069113-0 a20020124 20120420110551 @@ -234819,7 +234819,7 @@ - 00910cM2.01200024 000h + 00000cM2.01200024 000h 2069168-3 a20020125 20111111150044 @@ -234936,7 +234936,7 @@ - 00917cM2.01200024 000h + 00000cM2.01200024 000h 2069730-2 a20020125 20120420083022 @@ -235047,7 +235047,7 @@ - 01043cM2.01200024 000h + 00000cM2.01200024 000h 2069778-8 a20020125 20120419162157 @@ -235182,7 +235182,7 @@ - 01071cM2.01200024 000h + 00000cM2.01200024 000h 2070151-2 a20020128 20111012120002 @@ -235312,7 +235312,7 @@ - 01150cM2.01200024 000h + 00000cM2.01200024 000h 2071368-X a20020204 20120312132031 @@ -235425,7 +235425,7 @@ - 00656cM2.01200024 000h + 00000cM2.01200024 000h 2071446-4 a20020204 20120419163152 @@ -235504,7 +235504,7 @@ - 01061cM2.01200024 000h + 00000cM2.01200024 000h 2071643-6 a20020206 20120420154959 @@ -235628,7 +235628,7 @@ - 01971cM2.01200024 000h + 00000cM2.01200024 000h 2072199-7 a20020213 20101203122912 @@ -235781,7 +235781,7 @@ - 00490cM2.01200024 000h + 00000cM2.01200024 000h 2072238-2 a20020214 20120423095138 @@ -235851,7 +235851,7 @@ - 01379cM2.01200024 000h + 00000cM2.01200024 000h 2072640-5 a20020219 20120419132238 @@ -236005,7 +236005,7 @@ - 01110cM2.01200024 000h + 00000cM2.01200024 000h 2072717-3 a20020220 20080202173628 @@ -236134,7 +236134,7 @@ - 00986cM2.01200024 000h + 00000cM2.01200024 000h 2073345-8 a20020227 20120420104536 @@ -236228,7 +236228,7 @@ - 00847cM2.01200024 000h + 00000cM2.01200024 000h 2075479-6 a20020325 20120419100956 @@ -236370,7 +236370,7 @@ - 00522cM2.01200024 000h + 00000cM2.01200024 000h 2075603-3 a20020326 20120423151429 @@ -236449,7 +236449,7 @@ - 01379cM2.01200024 000h + 00000cM2.01200024 000h 2075804-2 a20020328 20120209064102 @@ -236605,7 +236605,7 @@ - 01344cM2.01200024 000h + 00000cM2.01200024 000h 2075805-4 a20020328 20110926143013 @@ -236759,7 +236759,7 @@ - 00958cM2.01200024 000h + 00000cM2.01200024 000h 2075821-2 a20020328 20120419130505 @@ -236868,7 +236868,7 @@ - 00883cM2.01200024 000h + 00000cM2.01200024 000h 2076084-X a20020404 20120423202526 @@ -236953,7 +236953,7 @@ - 00904cM2.01200024 000h + 00000cM2.01200024 000h 2076089-9 a20020404 20110618184118 @@ -237044,7 +237044,7 @@ - 00741cM2.01200024 000h + 00000cM2.01200024 000h 2076093-0 a20020404 20120423202522 @@ -237129,7 +237129,7 @@ - 01474cM2.01200024 000h + 00000cM2.01200024 000h 2076609-9 a20020411 20120423120834 @@ -237276,7 +237276,7 @@ - 00539cM2.01200024 000h + 00000cM2.01200024 000h 2076801-1 a20020412 20120423135911 @@ -237361,7 +237361,7 @@ - 02260cM2.01200024 000h + 00000cM2.01200024 000h 2076927-1 a20020415 20111207163828 @@ -237546,7 +237546,7 @@ - 00771cM2.01200024 000h + 00000cM2.01200024 000h 2077531-3 a20020422 20100309090049 @@ -237639,7 +237639,7 @@ - 01561cM2.01200024 000h + 00000cM2.01200024 000h 2077818-1 a20020424 20120419190219 @@ -237804,7 +237804,7 @@ - 02719cM2.01200024 000h + 00000cM2.01200024 000h 2077990-2 a20020425 20110718230656 @@ -238089,7 +238089,7 @@ - 00714cM2.01200024 000h + 00000cM2.01200024 000h 2078008-4 a20020425 20120419144547 @@ -238199,7 +238199,7 @@ - 02108cM2.01200024 000h + 00000cM2.01200024 000h 2078137-4 a20020426 20120419190551 @@ -238373,7 +238373,7 @@ - 01203cM2.01200024 000h + 00000cM2.01200024 000h 2078150-7 a20020426 20120423174631 @@ -238513,7 +238513,7 @@ - 01426cM2.01200024 000h + 00000cM2.01200024 000h 2078826-5 a20020508 20120423140122 @@ -238640,7 +238640,7 @@ - 00810cM2.01200024 000h + 00000cM2.01200024 000h 2079024-7 a20020513 20120423140110 @@ -238737,7 +238737,7 @@ - 01292cM2.01200024 000h + 00000cM2.01200024 000h 2079404-6 a20020517 20120419113509 @@ -238872,7 +238872,7 @@ - 00709cM2.01200024 000h + 00000cM2.01200024 000h 2079532-4 a20020521 20120423151302 @@ -238954,7 +238954,7 @@ - 01275cM2.01200024 000h + 00000cM2.01200024 000h 2079812-X a20020524 20120420213259 @@ -239078,7 +239078,7 @@ - 00577cM2.01200024 000h + 00000cM2.01200024 000h 2080332-1 a20020603 20120423121120 @@ -239148,7 +239148,7 @@ - 00750cM2.01200024 000h + 00000cM2.01200024 000h 2080576-7 a20020605 20120323150517 @@ -239248,7 +239248,7 @@ - 01480cM2.01200024 000h + 00000cM2.01200024 000h 2081929-8 a20020619 20080202173806 @@ -239419,7 +239419,7 @@ - 02481cM2.01200024 000h + 00000cM2.01200024 000h 2082368-X a20020625 20120423151657 @@ -239577,7 +239577,7 @@ - 01263cM2.01200024 000h + 00000cM2.01200024 000h 2082574-2 a20020627 20120419180942 @@ -239722,7 +239722,7 @@ - 00925cM2.01200024 000h + 00000cM2.01200024 000h 2082822-6 a20020701 20110714030232 @@ -239846,7 +239846,7 @@ - 00943cM2.01200024 000h + 00000cM2.01200024 000h 2082993-0 a20020703 20120420152103 @@ -239943,7 +239943,7 @@ - 00742cM2.01200024 000h + 00000cM2.01200024 000h 2083603-X a20020710 20120419134609 @@ -240043,7 +240043,7 @@ - 00829cM2.01200024 000h + 00000cM2.01200024 000h 2083932-7 a20020715 20120419150124 @@ -240150,7 +240150,7 @@ - 00525cM2.01200024 000h + 00000cM2.01200024 000h 2084777-4 a20020724 20070430192219 @@ -240232,7 +240232,7 @@ - 01180cM2.01200024 000h + 00000cM2.01200024 000h 2085083-9 a20020729 20120419145941 @@ -240368,7 +240368,7 @@ - 01385cM2.01200024 000h + 00000cM2.01200024 000h 2086224-6 a20020813 20120423140005 @@ -240496,7 +240496,7 @@ - 00733cM2.01200024 000h + 00000cM2.01200024 000h 2087176-4 a20020827 20120423123543 @@ -240610,7 +240610,7 @@ - 00689cM2.01200024 000h + 00000cM2.01200024 000h 2087706-7 a20020903 20120419112217 @@ -240707,7 +240707,7 @@ - 01054cM2.01200024 000h + 00000cM2.01200024 000h 2089041-2 a20020919 20120415120620 @@ -240831,7 +240831,7 @@ - 00804cM2.01200024 000h + 00000cM2.01200024 000h 2089364-4 a20020924 20120420110107 @@ -240956,7 +240956,7 @@ - 01380cM2.01200024 000h + 00000cM2.01200024 000h 2089764-9 a20020930 20120419174313 @@ -241109,7 +241109,7 @@ - 00602cM2.01200024 000h + 00000cM2.01200024 000h 2089853-8 a20021001 20120420223018 @@ -241200,7 +241200,7 @@ - 00628cM2.01200024 000h + 00000cM2.01200024 000h 2090059-4 a20021007 20120423124719 @@ -241304,7 +241304,7 @@ - 00640cM2.01200024 000h + 00000cM2.01200024 000h 2090137-9 a20021007 20120208232729 @@ -241401,7 +241401,7 @@ - 00837cM2.01200024 000h + 00000cM2.01200024 000h 2090944-5 a20021016 20120420213249 @@ -241508,7 +241508,7 @@ - 01009cM2.01200024 000h + 00000cM2.01200024 000h 2091285-7 a20021021 20110926134342 @@ -241634,7 +241634,7 @@ - 00905cM2.01200024 000h + 00000cM2.01200024 000h 2091578-0 a20021024 20120420150627 @@ -241752,7 +241752,7 @@ - 00779cM2.01200024 000h + 00000cM2.01200024 000h 2091979-7 a20021029 20120420213255 @@ -241858,7 +241858,7 @@ - 00698cM2.01200024 000h + 00000cM2.01200024 000h 2092563-3 a20021106 20120420130436 @@ -241943,7 +241943,7 @@ - 00731cM2.01200024 000h + 00000cM2.01200024 000h 2093692-8 a20021114 20120419100739 @@ -242037,7 +242037,7 @@ - 00641cM2.01200024 000h + 00000cM2.01200024 000h 2093732-5 a20021114 20120420130542 @@ -242113,7 +242113,7 @@ - 01129cM2.01200024 000h + 00000cM2.01200024 000h 2093800-7 a20021115 20120201160619 @@ -242239,7 +242239,7 @@ - 00843cM2.01200024 000h + 00000cM2.01200024 000h 2094440-8 a20021119 20120423105739 @@ -242360,7 +242360,7 @@ - 00884cM2.01200024 000h + 00000cM2.01200024 000h 2094473-1 a20021119 20100713193333 @@ -242475,7 +242475,7 @@ - 00530cM2.01200024 000h + 00000cM2.01200024 000h 2095777-4 a20021128 20120423135835 @@ -242557,7 +242557,7 @@ - 00955cM2.01200024 000h + 00000cM2.01200024 000h 2096514-X a20021209 20120321151711 @@ -242695,7 +242695,7 @@ - 00538cM2.01200024 000h + 00000cM2.01200024 000h 2096977-6 a20021216 20120415120341 @@ -242777,7 +242777,7 @@ - 01227cM2.01200024 000h + 00000cM2.01200024 000h 2097036-5 a20021216 20120423114606 @@ -242919,7 +242919,7 @@ - 01824cM2.01200024 000h + 00000cM2.01200024 000h 2097499-1 a20030102 20120123085346 @@ -243104,7 +243104,7 @@ - 01246cM2.01200024 000h + 00000cM2.01200024 000h 2097737-2 a20030108 20120423155401 @@ -243250,7 +243250,7 @@ - 00898cM2.01200024 000h + 00000cM2.01200024 000h 2097877-7 a20030110 20120419110259 @@ -243359,7 +243359,7 @@ - 00787cM2.01200024 000h + 00000cM2.01200024 000h 2098939-8 a20030122 20120423080228 @@ -243458,7 +243458,7 @@ - 01050cM2.01200024 000h + 00000cM2.01200024 000h 2100146-7 a20030203 20110418094616 @@ -243570,7 +243570,7 @@ - 00723cM2.01200024 000h + 00000cM2.01200024 000h 2100566-7 a20030207 20120423093759 @@ -243660,7 +243660,7 @@ - 00845cM2.01200024 000h + 00000cM2.01200024 000h 2100732-9 a20030210 20120419103715 @@ -243762,7 +243762,7 @@ - 00933cM2.01200024 000h + 00000cM2.01200024 000h 2101124-2 a20030211 20120423163458 @@ -243865,7 +243865,7 @@ - 01444cM2.01200024 000h + 00000cM2.01200024 000h 2102581-2 a20030221 20120415120341 @@ -244002,7 +244002,7 @@ - 01111cM2.01200024 000h + 00000cM2.01200024 000h 2102989-1 a20030226 20120302142523 @@ -244147,7 +244147,7 @@ - 01416cM2.01200024 000h + 00000cM2.01200024 000h 2103143-5 a20030227 20120423135742 @@ -244289,7 +244289,7 @@ - 00778cM2.01200024 000h + 00000cM2.01200024 000h 2103458-8 a20030304 20120419113559 @@ -244386,7 +244386,7 @@ - 01809cM2.01200024 000h + 00000cM2.01200024 000h 2103766-8 a20030306 20120423154003 @@ -244554,7 +244554,7 @@ - 00928cM2.01200024 000h + 00000cM2.01200024 000h 2104109-X a20030311 20120420111439 @@ -244672,7 +244672,7 @@ - 00494cM2.01200024 000h + 00000cM2.01200024 000h 2105518-X a20030326 20120423151825 @@ -244745,7 +244745,7 @@ - 00505cM2.01200024 000h + 00000cM2.01200024 000h 2105523-3 a20030326 20120423151732 @@ -244818,7 +244818,7 @@ - 00490cM2.01200024 000h + 00000cM2.01200024 000h 2105524-5 a20030326 20120423151719 @@ -244891,7 +244891,7 @@ - 00497cM2.01200024 000h + 00000cM2.01200024 000h 2105528-2 a20030326 20120423151703 @@ -244967,7 +244967,7 @@ - 00493cM2.01200024 000h + 00000cM2.01200024 000h 2105530-0 a20030326 20120423151646 @@ -245043,7 +245043,7 @@ - 00472cM2.01200024 000h + 00000cM2.01200024 000h 2106037-X a20030402 20120423151919 @@ -245119,7 +245119,7 @@ - 00881cM2.01200024 000h + 00000cM2.01200024 000h 2106126-9 a20030402 20120420133604 @@ -245215,7 +245215,7 @@ - 01387cM2.01200024 000h + 00000cM2.01200024 000h 2106274-2 a20030403 20120415112410 @@ -245355,7 +245355,7 @@ - 00882cM2.01200024 000h + 00000cM2.01200024 000h 2106386-2 a20030407 20120423102956 @@ -245458,7 +245458,7 @@ - 00864cM2.01200024 000h + 00000cM2.01200024 000h 2106517-2 a20030408 20120423125652 @@ -245564,7 +245564,7 @@ - 00966cM2.01200024 000h + 00000cM2.01200024 000h 2106552-4 a20030408 20110627072041 @@ -245690,7 +245690,7 @@ - 00961cM2.01200024 000h + 00000cM2.01200024 000h 2106850-1 a20030410 20120419164127 @@ -245797,7 +245797,7 @@ - 00900cM2.01200024 000h + 00000cM2.01200024 000h 2107023-4 a20030414 20120423082114 @@ -245903,7 +245903,7 @@ - 00672cM2.01200024 000h + 00000cM2.01200024 000h 2107392-2 a20030417 20120423111125 @@ -246006,7 +246006,7 @@ - 00896cM2.01200024 000h + 00000cM2.01200024 000h 2107532-3 a20030423 20120208232747 @@ -246094,7 +246094,7 @@ - 01262cM2.01200024 000h + 00000cM2.01200024 000h 2108051-3 a20030429 20110131182432 @@ -246228,7 +246228,7 @@ - 00509cM2.01200024 000h + 00000cM2.01200024 000h 2108746-5 a20030508 20120419081950 @@ -246317,7 +246317,7 @@ - 00526cM2.01200024 000h + 00000cM2.01200024 000h 2109217-5 a20030513 20120423151852 @@ -246393,7 +246393,7 @@ - 00518cM2.01200024 000h + 00000cM2.01200024 000h 2109232-1 a20030513 20120423151839 @@ -246466,7 +246466,7 @@ - 00805cM2.01200024 000h + 00000cM2.01200024 000h 2109304-0 a20030514 20111020133639 @@ -246575,7 +246575,7 @@ - 00516cM2.01200024 000h + 00000cM2.01200024 000h 2109452-4 a20030515 20080202174112 @@ -246657,7 +246657,7 @@ - 00539cM2.01200024 000h + 00000cM2.01200024 000h 2109523-1 a20030515 20120423165441 @@ -246733,7 +246733,7 @@ - 01379cM2.01200024 000h + 00000cM2.01200024 000h 2110461-X a20030526 20120209075108 @@ -246845,7 +246845,7 @@ - 00806cM2.01200024 000h + 00000cM2.01200024 000h 2110639-3 a20030527 20120415111836 @@ -246976,7 +246976,7 @@ - 00904cM2.01200024 000h + 00000cM2.01200024 000h 2110770-1 a20030528 20120420085623 @@ -247073,7 +247073,7 @@ - 00481cM2.01200024 000h + 00000cM2.01200024 000h 2111018-9 a20030602 20100713193613 @@ -247146,7 +247146,7 @@ - 00531cM2.01200024 000h + 00000cM2.01200024 000h 2111299-X a20030604 20120420104438 @@ -247225,7 +247225,7 @@ - 00865cM2.01200024 000h + 00000cM2.01200024 000h 2112107-2 a20030617 20110629150425 @@ -247342,7 +247342,7 @@ - 00674cM2.01200024 000h + 00000cM2.01200024 000h 2112272-6 a20030618 20120419122321 @@ -247452,7 +247452,7 @@ - 00521cM2.01200024 000h + 00000cM2.01200024 000h 2112687-2 a20030624 20120419223010 @@ -247545,7 +247545,7 @@ - 00868cM2.01200024 000h + 00000cM2.01200024 000h 2112869-8 a20030626 20111111144156 @@ -247656,7 +247656,7 @@ - 00952cM2.01200024 000h + 00000cM2.01200024 000h 2112872-8 a20030626 20111111142405 @@ -247776,7 +247776,7 @@ - 00844cM2.01200024 000h + 00000cM2.01200024 000h 2112905-8 a20030626 20111111150127 @@ -247887,7 +247887,7 @@ - 01915cM2.01200024 000h + 00000cM2.01200024 000h 2113413-3 a20030702 20120423135822 @@ -248040,7 +248040,7 @@ - 00961cM2.01200024 000h + 00000cM2.01200024 000h 2113523-X a20030703 20120419162705 @@ -248179,7 +248179,7 @@ - 00576cM2.01200024 000h + 00000cM2.01200024 000h 2114297-X a20030714 20120423172122 @@ -248276,7 +248276,7 @@ - 00843cM2.01200024 000h + 00000cM2.01200024 000h 2114430-8 a20030715 20120419151450 @@ -248373,7 +248373,7 @@ - 00828cM2.01200024 000h + 00000cM2.01200024 000h 2114610-X a20030717 20120415111941 @@ -248476,7 +248476,7 @@ - 01247cM2.01200024 000h + 00000cM2.01200024 000h 2114622-6 a20030717 20120420103511 @@ -248621,7 +248621,7 @@ - 00794cM2.01200024 000h + 00000cM2.01200024 000h 2116045-4 a20030805 20120209155031 @@ -248724,7 +248724,7 @@ - 01074cM2.01200024 000h + 00000cM2.01200024 000h 2116531-2 a20030811 20120423155443 @@ -248863,7 +248863,7 @@ - 00417cM2.01200024 000h + 00000cM2.01200024 000h 2116709-6 a20030813 20070804100339 @@ -248933,7 +248933,7 @@ - 00567cM2.01200024 000h + 00000cM2.01200024 000h 2118355-7 a20030901 20120423182513 @@ -249021,7 +249021,7 @@ - 00876cM2.01200024 000h + 00000cM2.01200024 000h 2118754-X a20030905 20120420112419 @@ -249121,7 +249121,7 @@ - 01350cM2.01200024 000h + 00000cM2.01200024 000h 2118872-5 a20030908 20120423085910 @@ -249286,7 +249286,7 @@ - 00812cM2.01200024 000h + 00000cM2.01200024 000h 2119364-2 a20030912 20120423160416 @@ -249399,7 +249399,7 @@ - 00906cM2.01200024 000h + 00000cM2.01200024 000h 2119513-4 a20030915 20111111142133 @@ -249513,7 +249513,7 @@ - 01068cM2.01200024 000h + 00000cM2.01200024 000h 2119872-X a20030917 20120420121256 @@ -249638,7 +249638,7 @@ - 00566cM2.01200024 000h + 00000cM2.01200024 000h 2120662-4 a20030924 20120419214036 @@ -249711,7 +249711,7 @@ - 00671cM2.01200024 000h + 00000cM2.01200024 000h 2122724-X a20031013 20120419112337 @@ -249811,7 +249811,7 @@ - 00364cM2.01200024 000h + 00000cM2.01200024 000h 2122923-5 a20031014 20120419092413 @@ -249875,7 +249875,7 @@ - 01063cM2.01200024 000h + 00000cM2.01200024 000h 2122973-9 a20031014 20120419150117 @@ -250001,7 +250001,7 @@ - 01121cM2.01200024 000h + 00000cM2.01200024 000h 2123166-7 a20031015 20111107161607 @@ -250136,7 +250136,7 @@ - 01151cM2.01200024 000h + 00000cM2.01200024 000h 2123412-7 a20031016 20111107161213 @@ -250272,7 +250272,7 @@ - 00340cM2.01200024 000h + 00000cM2.01200024 000h 2124576-9 a20031024 20120419143809 @@ -250333,7 +250333,7 @@ - 00401cM2.01200024 000h + 00000cM2.01200024 000h 2126319-X a20031111 20100118230145 @@ -250403,7 +250403,7 @@ - 00425cM2.01200024 000h + 00000cM2.01200024 000h 2126559-8 a20031112 20090113123654 @@ -250482,7 +250482,7 @@ - 00402cM2.01200024 000h + 00000cM2.01200024 000h 2126999-3 a20031118 20100309092011 @@ -250552,7 +250552,7 @@ - 00592cM2.01200024 000h + 00000cM2.01200024 000h 2127040-5 a20031118 20110714005748 @@ -250631,7 +250631,7 @@ - 00936cM2.01200024 000h + 00000cM2.01200024 000h 2127087-9 a20031118 20120419084722 @@ -250750,7 +250750,7 @@ - 00751cM2.01200024 000h + 00000cM2.01200024 000h 2127266-9 a20031119 20120415111839 @@ -250861,7 +250861,7 @@ - 01025cM2.01200024 000h + 00000cM2.01200024 000h 2127301-7 a20031119 20120419104024 @@ -251022,7 +251022,7 @@ - 01262cM2.01200024 000h + 00000cM2.01200024 000h 2127309-1 a20031119 20120420101549 @@ -251135,7 +251135,7 @@ - 00691cM2.01200024 000h + 00000cM2.01200024 000h 2127904-4 a20031125 20120419120324 @@ -251229,7 +251229,7 @@ - 00925cM2.01200024 000h + 00000cM2.01200024 000h 2128574-3 a20031201 20120423174256 @@ -251338,7 +251338,7 @@ - 01271cM2.01200024 000h + 00000cM2.01200024 000h 2129952-3 a20031211 20101223111124 @@ -251473,7 +251473,7 @@ - 00984cM2.01200024 000h + 00000cM2.01200024 000h 2130028-8 a20031212 20120423151620 @@ -251590,7 +251590,7 @@ - 01131cM2.01200024 000h + 00000cM2.01200024 000h 2130163-3 a20031215 20120420102241 @@ -251687,7 +251687,7 @@ - 00547cM2.01200024 000h + 00000cM2.01200024 000h 2130181-5 a20031215 20120423194141 @@ -251763,7 +251763,7 @@ - 01711cM2.01200024 000h + 00000cM2.01200024 000h 2131449-4 a20040109 20120125142333 @@ -251936,7 +251936,7 @@ - 01027cM2.01200024 000h + 00000cM2.01200024 000h 2131826-8 a20040114 20120420095325 @@ -252022,7 +252022,7 @@ - 00785cM2.01200024 000h + 00000cM2.01200024 000h 2132504-2 a20040120 20120419100838 @@ -252113,7 +252113,7 @@ - 01124cM2.01200024 000h + 00000cM2.01200024 000h 2132686-1 a20040121 20120420152006 @@ -252269,7 +252269,7 @@ - 01145cM2.01200024 000h + 00000cM2.01200024 000h 2132717-8 a20040121 20120423155513 @@ -252372,7 +252372,7 @@ - 00516cM2.01200024 000h + 00000cM2.01200024 000h 2133278-2 a20040126 20120423135725 @@ -252454,7 +252454,7 @@ - 00658cM2.01200024 000h + 00000cM2.01200024 000h 2133416-X a20040127 20120419094546 @@ -252533,7 +252533,7 @@ - 00885cM2.01200024 000h + 00000cM2.01200024 000h 2133821-8 a20040129 20120415112847 @@ -252652,7 +252652,7 @@ - 00856cM2.01200024 000h + 00000cM2.01200024 000h 2133836-X a20040129 20120420095632 @@ -252755,7 +252755,7 @@ - 00519cM2.01200024 000h + 00000cM2.01200024 000h 2133976-4 a20040130 20081016213717 @@ -252843,7 +252843,7 @@ - 01806cM2.01200024 000h + 00000cM2.01200024 000h 2134292-1 a20040203 20120423135258 @@ -252952,7 +252952,7 @@ - 01205cM2.01200024 000h + 00000cM2.01200024 000h 2134378-0 a20040204 20120419112152 @@ -253080,7 +253080,7 @@ - 01333cM2.01200024 000h + 00000cM2.01200024 000h 2135716-X a20040216 20120423121951 @@ -253221,7 +253221,7 @@ - 00673cM2.01200024 000h + 00000cM2.01200024 000h 2135862-X a20040217 20120420142939 @@ -253321,7 +253321,7 @@ - 00697cM2.01200024 000h + 00000cM2.01200024 000h 2136004-2 a20040218 20120420143325 @@ -253418,7 +253418,7 @@ - 00688cM2.01200024 000h + 00000cM2.01200024 000h 2136080-7 a20040218 20120420143554 @@ -253515,7 +253515,7 @@ - 01867cM2.01200024 000h + 00000cM2.01200024 000h 2136722-X a20040223 20120227141007 @@ -253666,7 +253666,7 @@ - 00915cM2.01200024 000h + 00000cM2.01200024 000h 2136939-2 a20040225 20120415112909 @@ -253787,7 +253787,7 @@ - 01005cM2.01200024 000h + 00000cM2.01200024 000h 2137910-5 a20040303 20120419150649 @@ -253896,7 +253896,7 @@ - 00684cM2.01200024 000h + 00000cM2.01200024 000h 2138244-X a20040305 20120419102908 @@ -253987,7 +253987,7 @@ - 01958cM2.01200024 000h + 00000cM2.01200024 000h 2138307-8 a20040308 20120423135757 @@ -254146,7 +254146,7 @@ - 01347cM2.01200024 000h + 00000cM2.01200024 000h 2138447-2 a20040308 20120419131421 @@ -254306,7 +254306,7 @@ - 00778cM2.01200024 000h + 00000cM2.01200024 000h 2138664-X a20040309 20120423085156 @@ -254411,7 +254411,7 @@ - 00531cM2.01200024 000h + 00000cM2.01200024 000h 2139268-7 a20040312 20120415112005 @@ -254506,7 +254506,7 @@ - 00956cM2.01200024 000h + 00000cM2.01200024 000h 2139295-X a20040312 20120420114516 @@ -254622,7 +254622,7 @@ - 00854cM2.01200024 000h + 00000cM2.01200024 000h 2139489-1 a20040316 20120419103032 @@ -254731,7 +254731,7 @@ - 00602cM2.01200024 000h + 00000cM2.01200024 000h 2139504-4 a20040316 20120423172453 @@ -254819,7 +254819,7 @@ - 01408cM2.01200024 000h + 00000cM2.01200024 000h 2139712-0 a20040317 20120415120342 @@ -254941,7 +254941,7 @@ - 00786cM2.01200024 000h + 00000cM2.01200024 000h 2140602-9 a20040323 20120228090644 @@ -255041,7 +255041,7 @@ - 01147cM2.01200024 000h + 00000cM2.01200024 000h 2141340-X a20040329 20120420092546 @@ -255174,7 +255174,7 @@ - 00500cM2.01200024 000h + 00000cM2.01200024 000h 2141935-8 a20040402 20120420121916 @@ -255253,7 +255253,7 @@ - 01240cM2.01200024 000h + 00000cM2.01200024 000h 2141996-6 a20040402 20120423113720 @@ -255407,7 +255407,7 @@ - 01341cM2.01200024 000h + 00000cM2.01200024 000h 2142268-0 a20040406 20120423135709 @@ -255528,7 +255528,7 @@ - 01505cM2.01200024 000h + 00000cM2.01200024 000h 2142365-9 a20040407 20120420085413 @@ -255698,7 +255698,7 @@ - 01026cM2.01200024 000h + 00000cM2.01200024 000h 2142435-4 a20040408 20100713194002 @@ -255825,7 +255825,7 @@ - 00948cM2.01200024 000h + 00000cM2.01200024 000h 2142589-9 a20040413 20120419163220 @@ -255931,7 +255931,7 @@ - 00602cM2.01200024 000h + 00000cM2.01200024 000h 2143586-8 a20040423 20120423143421 @@ -256019,7 +256019,7 @@ - 00630cM2.01200024 000h + 00000cM2.01200024 000h 2143997-7 a20040428 20050526170213 @@ -256101,7 +256101,7 @@ - 00853cM2.01200024 000h + 00000cM2.01200024 000h 2145132-1 a20040510 20120308090951 @@ -256219,7 +256219,7 @@ - 00779cM2.01200024 000h + 00000cM2.01200024 000h 2145613-6 a20040513 20120423105711 @@ -256316,7 +256316,7 @@ - 01190cM2.01200024 000h + 00000cM2.01200024 000h 2146048-6 a20040517 20120423122403 @@ -256459,7 +256459,7 @@ - 00698cM2.01200024 000h + 00000cM2.01200024 000h 2146265-3 a20040519 20120420102110 @@ -256554,7 +256554,7 @@ - 01048cM2.01200024 000h + 00000cM2.01200024 000h 2146814-X a20040526 20120415114425 @@ -256690,7 +256690,7 @@ - 00643cM2.01200024 000h + 00000cM2.01200024 000h 2146973-8 a20040527 20120423135753 @@ -256782,7 +256782,7 @@ - 00925cM2.01200024 000h + 00000cM2.01200024 000h 2147131-9 a20040528 20120419183414 @@ -256905,7 +256905,7 @@ - 01089cM2.01200024 000h + 00000cM2.01200024 000h 2147331-6 a20040602 20120423140909 @@ -257020,7 +257020,7 @@ - 00569cM2.01200024 000h + 00000cM2.01200024 000h 2147773-5 a20040607 20120419214047 @@ -257102,7 +257102,7 @@ - 00921cM2.01200024 000h + 00000cM2.01200024 000h 2149203-7 a20040621 20120423163529 @@ -257223,7 +257223,7 @@ - 01389cM2.01200024 000h + 00000cM2.01200024 000h 2151364-8 a20040712 20120415112313 @@ -257376,7 +257376,7 @@ - 00679cM2.01200024 000h + 00000cM2.01200024 000h 2151368-5 a20040712 20120415112758 @@ -257473,7 +257473,7 @@ - 01425cM2.01200024 000h + 00000cM2.01200024 000h 2155479-1 a20040722 20120123170637 @@ -257639,7 +257639,7 @@ - 00915cM2.01200024 000h + 00000cM2.01200024 000h 2155671-4 a20040726 20120423152419 @@ -257754,7 +257754,7 @@ - 00718cM2.01200024 000h + 00000cM2.01200024 000h 2156541-7 a20040802 20100713194123 @@ -257864,7 +257864,7 @@ - 00716cM2.01200024 000h + 00000cM2.01200024 000h 2156726-8 a20040803 20111216124908 @@ -257961,7 +257961,7 @@ - 00848cM2.01200024 000h + 00000cM2.01200024 000h 2157059-0 a20040805 20080422235557 @@ -258077,7 +258077,7 @@ - 00628cM2.01200024 000h + 00000cM2.01200024 000h 2158761-9 a20040824 20120419081200 @@ -258186,7 +258186,7 @@ - 01441cM2.01200024 000h + 00000cM2.01200024 000h 2158829-6 a20040825 20120423135401 @@ -258325,7 +258325,7 @@ - 01138cM2.01200024 000h + 00000cM2.01200024 000h 2159360-7 a20040830 20120423111827 @@ -258464,7 +258464,7 @@ - 00891cM2.01200024 000h + 00000cM2.01200024 000h 2160317-0 a20040909 20120130161128 @@ -258571,7 +258571,7 @@ - 00841cM2.01200024 000h + 00000cM2.01200024 000h 2160642-0 a20040913 20111026105428 @@ -258693,7 +258693,7 @@ - 00524cM2.01200024 000h + 00000cM2.01200024 000h 2163656-4 a20041008 20120423133015 @@ -258785,7 +258785,7 @@ - 00772cM2.01200024 000h + 00000cM2.01200024 000h 2164254-0 a20041014 20120209093544 @@ -258891,7 +258891,7 @@ - 00688cM2.01200024 000h + 00000cM2.01200024 000h 2164405-6 a20041015 20110826142303 @@ -258979,7 +258979,7 @@ - 00852cM2.01200024 000h + 00000cM2.01200024 000h 2165806-7 a20041028 20120415120714 @@ -259087,7 +259087,7 @@ - 00633cM2.01200024 000h + 00000cM2.01200024 000h 2166155-8 a20041101 20120423132231 @@ -259185,7 +259185,7 @@ - 00692cM2.01200024 000h + 00000cM2.01200024 000h 2168099-1 a20041117 20100713194232 @@ -259287,7 +259287,7 @@ - 00765cM2.01200024 000h + 00000cM2.01200024 000h 2168224-0 a20041117 20101013103708 @@ -259405,7 +259405,7 @@ - 00520cM2.01200024 000h + 00000cM2.01200024 000h 2168500-9 a20041119 20120415112413 @@ -259484,7 +259484,7 @@ - 00827cM2.01200024 000h + 00000cM2.01200024 000h 2168614-2 a20041122 20120420081343 @@ -259592,7 +259592,7 @@ - 00709cM2.01200024 000h + 00000cM2.01200024 000h 2168956-8 a20041124 20120423155812 @@ -259693,7 +259693,7 @@ - 00658cM2.01200024 000h + 00000cM2.01200024 000h 2169253-1 a20041125 20120209100414 @@ -259788,7 +259788,7 @@ - 00675cM2.01200024 000h + 00000cM2.01200024 000h 2171269-4 a20041214 20120423135650 @@ -259873,7 +259873,7 @@ - 01282cM2.01200024 000h + 00000cM2.01200024 000h 2171377-7 a20041215 20120420112555 @@ -260010,7 +260010,7 @@ - 01703cM2.01200024 000h + 00000cM2.01200024 000h 2172561-5 a20041230 20120420140807 @@ -260131,7 +260131,7 @@ - 01026cM2.01200024 000h + 00000cM2.01200024 000h 2173564-5 a20050111 20120420110153 @@ -260261,7 +260261,7 @@ - 01550cM2.01200024 000h + 00000cM2.01200024 000h 2173857-9 a20050113 20120419223010 @@ -260404,7 +260404,7 @@ - 01287cM2.01200024 000h + 00000cM2.01200024 000h 2174147-5 a20050117 20120423131724 @@ -260541,7 +260541,7 @@ - 00550cM2.01200024 000h + 00000cM2.01200024 000h 2174411-7 a20050118 20120423135636 @@ -260627,7 +260627,7 @@ - 00402cM2.01200024 000h + 00000cM2.01200024 000h 2174621-7 a20050119 20120415113825 @@ -260694,7 +260694,7 @@ - 00580cM2.01200024 000h + 00000cM2.01200024 000h 2174779-9 a20050120 20120423103943 @@ -260788,7 +260788,7 @@ - 00614cM2.01200024 000h + 00000cM2.01200024 000h 2174806-8 a20050120 20120423144555 @@ -260882,7 +260882,7 @@ - 00704cM2.01200024 000h + 00000cM2.01200024 000h 2175243-6 a20050125 20120419163103 @@ -260979,7 +260979,7 @@ - 00538cM2.01200024 000h + 00000cM2.01200024 000h 2175376-3 a20050125 20120420132831 @@ -261052,7 +261052,7 @@ - 00881cM2.01200024 000h + 00000cM2.01200024 000h 2175395-7 a20050126 20120419103343 @@ -261140,7 +261140,7 @@ - 01484cM2.01200024 000h + 00000cM2.01200024 000h 2176984-9 a20050209 20120419082841 @@ -261300,7 +261300,7 @@ - 01319cM2.01200024 000h + 00000cM2.01200024 000h 2177461-4 a20050214 20120419150703 @@ -261418,7 +261418,7 @@ - 02217cM2.01200024 000h + 00000cM2.01200024 000h 2177808-5 a20050216 20120413140912 @@ -261609,7 +261609,7 @@ - 01041cM2.01200024 000h + 00000cM2.01200024 000h 2178079-1 a20050217 20120419115919 @@ -261758,7 +261758,7 @@ - 01247cM2.01200024 000h + 00000cM2.01200024 000h 2178147-3 a20050218 20120416074417 @@ -261875,7 +261875,7 @@ - 00937cM2.01200024 000h + 00000cM2.01200024 000h 2178158-8 a20050218 20120416074449 @@ -261978,7 +261978,7 @@ - 01611cM2.01200024 000h + 00000cM2.01200024 000h 2178675-6 a20050222 20120419155533 @@ -262135,7 +262135,7 @@ - 00980cM2.01200024 000h + 00000cM2.01200024 000h 2178736-0 a20050223 20111209103910 @@ -262262,7 +262262,7 @@ - 00695cM2.01200024 000h + 00000cM2.01200024 000h 2178890-X a20050224 20120419134046 @@ -262356,7 +262356,7 @@ - 00831cM2.01200024 000h + 00000cM2.01200024 000h 2180359-6 a20050308 20120423160758 @@ -262455,7 +262455,7 @@ - 01594cM2.01200024 000h + 00000cM2.01200024 000h 2181307-3 a20050315 20111123103253 @@ -262613,7 +262613,7 @@ - 00437cM2.01200024 000h + 00000cM2.01200024 000h 2181669-4 a20050317 20120423202522 @@ -262680,7 +262680,7 @@ - 00373cM2.01200024 000h + 00000cM2.01200024 000h 2182231-1 a20050322 20120419113905 @@ -262745,7 +262745,7 @@ - 01761cM2.01200024 000h + 00000cM2.01200024 000h 2182512-9 a20050324 20120415115705 @@ -262864,7 +262864,7 @@ - 00896cM2.01200024 000h + 00000cM2.01200024 000h 2183462-3 a20050405 20120419092750 @@ -262967,7 +262967,7 @@ - 01743cM2.01200024 000h + 00000cM2.01200024 000h 2184197-4 a20050411 20111108150542 @@ -263160,7 +263160,7 @@ - 01223cM2.01200024 000h + 00000cM2.01200024 000h 2184779-4 a20050414 20120415112614 @@ -263284,7 +263284,7 @@ - 01037cM2.01200024 000h + 00000cM2.01200024 000h 2186535-8 a20050429 20120423115105 @@ -263407,7 +263407,7 @@ - 00816cM2.01200024 000h + 00000cM2.01200024 000h 2187535-2 a20050510 20120415113938 @@ -263501,7 +263501,7 @@ - 00890cM2.01200024 000h + 00000cM2.01200024 000h 2187777-4 a20050512 20120423121411 @@ -263615,7 +263615,7 @@ - 00720cM2.01200024 000h + 00000cM2.01200024 000h 2188114-5 a20050517 20120415120629 @@ -263708,7 +263708,7 @@ - 01036cM2.01200024 000h + 00000cM2.01200024 000h 2188930-2 a20050524 20120420103435 @@ -263832,7 +263832,7 @@ - 00652cM2.01200024 000h + 00000cM2.01200024 000h 2538252-4 a20100210 20120419163043 @@ -263916,7 +263916,7 @@ - 00656cM2.01200024 000h + 00000cM2.01200024 000h 2538656-6 a20100211 20120420153516 @@ -264008,7 +264008,7 @@ - 00720cM2.01200024 000h + 00000cM2.01200024 000h 2539092-2 a20100215 20120423102419 @@ -264126,7 +264126,7 @@ - 01253cM2.01200024 000h + 00000cM2.01200024 000h 2539345-5 a20100216 20120420172024 @@ -264260,7 +264260,7 @@ - 01031cM2.01200024 000h + 00000cM2.01200024 000h 2540452-0 a20100219 20120221123828 @@ -264390,7 +264390,7 @@ - 00532cM2.01200024 000h + 00000cM2.01200024 000h 2540544-5 a20100219 20120419134527 @@ -264472,7 +264472,7 @@ - 00865cM2.01200024 000h + 00000cM2.01200024 000h 2540835-5 a20100223 20120423124911 @@ -264580,7 +264580,7 @@ - 01716cM2.01200024 000h + 00000cM2.01200024 000h 2542195-5 a20100302 20120419140053 @@ -264750,7 +264750,7 @@ - 01316cM2.01200024 000h + 00000cM2.01200024 000h 2542408-7 a20100303 20120423104844 @@ -264882,7 +264882,7 @@ - 00567cM2.01200024 000h + 00000cM2.01200024 000h 2542711-8 a20100304 20120419090317 @@ -264982,7 +264982,7 @@ - 00607cM2.01200024 000h + 00000cM2.01200024 000h 2542985-1 a20100305 20120419143906 @@ -265079,7 +265079,7 @@ - 00947cM2.01200024 000h + 00000cM2.01200024 000h 2543113-4 a20100308 20120423115151 @@ -265187,7 +265187,7 @@ - 00686cM2.01200024 000h + 00000cM2.01200024 000h 2543216-3 a20100308 20100825170349 @@ -265281,7 +265281,7 @@ - 00475cM2.01200024 000h + 00000cM2.01200024 000h 2544394-X a20100315 20120419124041 @@ -265354,7 +265354,7 @@ - 00547cM2.01200024 000h + 00000cM2.01200024 000h 2545123-6 a20100318 20120423201843 @@ -265450,7 +265450,7 @@ - 00545cM2.01200024 000h + 00000cM2.01200024 000h 2545449-3 a20100322 20120423202442 @@ -265539,7 +265539,7 @@ - 00492cM2.01200024 000h + 00000cM2.01200024 000h 2545476-6 a20100322 20120419131501 @@ -265612,7 +265612,7 @@ - 00591cM2.01200024 000h + 00000cM2.01200024 000h 2545580-1 a20100322 20110708122416 @@ -265696,7 +265696,7 @@ - 01246cM2.01200024 000h + 00000cM2.01200024 000h 2545622-2 a20100322 20120423123404 @@ -265832,7 +265832,7 @@ - 00835cM2.01200024 000h + 00000cM2.01200024 000h 2545725-1 a20100323 20120419162728 @@ -265932,7 +265932,7 @@ - 00801cM2.01200024 000h + 00000cM2.01200024 000h 2547713-4 a20100401 20120420154505 @@ -266038,7 +266038,7 @@ - 01420cM2.01200024 000h + 00000cM2.01200024 000h 2548378-X a20100409 20120410105022 @@ -266201,7 +266201,7 @@ - 00617cM2.01200024 000h + 00000cM2.01200024 000h 2548408-4 a20100409 20120423153301 @@ -266286,7 +266286,7 @@ - 00703cM2.01200024 000h + 00000cM2.01200024 000h 2549095-3 a20100414 20120419162547 @@ -266377,7 +266377,7 @@ - 00754cM2.01200024 000h + 00000cM2.01200024 000h 2549844-7 a20100419 20120419120144 @@ -266477,7 +266477,7 @@ - 00947cM2.01200024 000h + 00000cM2.01200024 000h 2550527-0 a20100422 20120423125056 @@ -266582,7 +266582,7 @@ - 01406cM2.01200024 000h + 00000cM2.01200024 000h 2550733-3 a20100423 20120423102711 @@ -266748,7 +266748,7 @@ - 00917cM2.01200024 000h + 00000cM2.01200024 000h 2550753-9 a20100423 20120423154245 @@ -266858,7 +266858,7 @@ - 01145cM2.01200024 000h + 00000cM2.01200024 000h 2550865-9 a20100426 20120423103917 @@ -267003,7 +267003,7 @@ - 01209cM2.01200024 000h + 00000cM2.01200024 000h 2550916-0 a20100426 20120423103715 @@ -267154,7 +267154,7 @@ - 01301cM2.01200024 000h + 00000cM2.01200024 000h 2550953-6 a20100426 20120423103042 @@ -267308,7 +267308,7 @@ - 01253cM2.01200024 000h + 00000cM2.01200024 000h 2551143-9 a20100427 20120420084808 @@ -267451,7 +267451,7 @@ - 01125cM2.01200024 000h + 00000cM2.01200024 000h 2552218-8 a20100504 20120423121120 @@ -267585,7 +267585,7 @@ - 01108cM2.01200024 000h + 00000cM2.01200024 000h 2552429-X a20100504 20120419125428 @@ -267708,7 +267708,7 @@ - 01330cM2.01200024 000h + 00000cM2.01200024 000h 2552540-2 a20100505 20120419125349 @@ -267820,7 +267820,7 @@ - 00945cM2.01200024 000h + 00000cM2.01200024 000h 2552924-9 a20100506 20120423202442 @@ -267941,7 +267941,7 @@ - 00452cM2.01200024 000h + 00000cM2.01200024 000h 2553195-5 a20100507 20120421102158 @@ -268015,7 +268015,7 @@ - 00442cM2.01200024 000h + 00000cM2.01200024 000h 2553470-1 a20100510 20120419103048 @@ -268094,7 +268094,7 @@ - 00992cM2.01200024 000h + 00000cM2.01200024 000h 2554313-1 a20100517 20120419094546 @@ -268219,7 +268219,7 @@ - 00995cM2.01200024 000h + 00000cM2.01200024 000h 2554326-X a20100517 20120419094532 @@ -268346,7 +268346,7 @@ - 00682cM2.01200024 000h + 00000cM2.01200024 000h 2554502-4 a20100517 20120419164150 @@ -268440,7 +268440,7 @@ - 00892cM2.01200024 000h + 00000cM2.01200024 000h 2554693-4 a20100518 20120419093900 @@ -268534,7 +268534,7 @@ - 00756cM2.01200024 000h + 00000cM2.01200024 000h 2555720-8 a20100526 20120419223011 @@ -268649,7 +268649,7 @@ - 00501cM2.01200024 000h + 00000cM2.01200024 000h 2555797-X a20100526 20120423112436 @@ -268729,7 +268729,7 @@ - 00877cM2.01200024 000h + 00000cM2.01200024 000h 2555882-1 a20100527 20110708122508 @@ -268831,7 +268831,7 @@ - 00731cM2.01200024 000h + 00000cM2.01200024 000h 2556466-3 a20100531 20120420213257 @@ -268925,7 +268925,7 @@ - 00683cM2.01200024 000h + 00000cM2.01200024 000h 2556584-9 a20100601 20120419103108 @@ -269031,7 +269031,7 @@ - 00475cM2.01200024 000h + 00000cM2.01200024 000h 2556685-4 a20100601 20120419105949 @@ -269116,7 +269116,7 @@ - 00493cM2.01200024 000h + 00000cM2.01200024 000h 2556827-9 a20100602 20120419100853 @@ -269189,7 +269189,7 @@ - 00649cM2.01200024 000h + 00000cM2.01200024 000h 2556960-0 a20100602 20120423104931 @@ -269274,7 +269274,7 @@ - 00661cM2.01200024 000h + 00000cM2.01200024 000h 2556967-3 a20100602 20120421092001 @@ -269367,7 +269367,7 @@ - 00563cM2.01200024 000h + 00000cM2.01200024 000h 2557063-8 a20100603 20110621150730 @@ -269449,7 +269449,7 @@ - 00430cM2.01200024 000h + 00000cM2.01200024 000h 2557150-3 a20100604 20120420111931 @@ -269516,7 +269516,7 @@ - 00760cM2.01200024 000h + 00000cM2.01200024 000h 2557434-6 a20100607 20120419213722 @@ -269617,7 +269617,7 @@ - 00853cM2.01200024 000h + 00000cM2.01200024 000h 2557771-2 a20100609 20120419103232 @@ -269734,7 +269734,7 @@ - 00606cM2.01200024 000h + 00000cM2.01200024 000h 2558018-8 a20100610 20120419090429 @@ -269823,7 +269823,7 @@ - 00842cM2.01200024 000h + 00000cM2.01200024 000h 2558616-6 a20100615 20120423174156 @@ -269932,7 +269932,7 @@ - 00843cM2.01200024 000h + 00000cM2.01200024 000h 2558672-5 a20100615 20110524223034 @@ -270049,7 +270049,7 @@ - 00553cM2.01200024 000h + 00000cM2.01200024 000h 2559627-5 a20100621 20120423160132 @@ -270123,7 +270123,7 @@ - 00524cM2.01200024 000h + 00000cM2.01200024 000h 2559763-2 a20100621 20120423152958 @@ -270205,7 +270205,7 @@ - 00553cM2.01200024 000h + 00000cM2.01200024 000h 2560385-1 a20100624 20120423151846 @@ -270293,7 +270293,7 @@ - 01640cM2.01200024 000h + 00000cM2.01200024 000h 2560394-2 a20100624 20120419132508 @@ -270439,7 +270439,7 @@ - 00752cM2.01200024 000h + 00000cM2.01200024 000h 2560466-1 a20100625 20120420073733 @@ -270543,7 +270543,7 @@ - 00834cM2.01200024 000h + 00000cM2.01200024 000h 2561608-0 a20100702 20120423152934 @@ -270654,7 +270654,7 @@ - 00625cM2.01200024 000h + 00000cM2.01200024 000h 2562482-9 a20100707 20120419100911 @@ -270743,7 +270743,7 @@ - 00732cM2.01200024 000h + 00000cM2.01200024 000h 2562591-3 a20100707 20120423124903 @@ -270831,7 +270831,7 @@ - 01243cM2.01200024 000h + 00000cM2.01200024 000h 2562618-8 a20100707 20120420195345 @@ -270952,7 +270952,7 @@ - 00634cM2.01200024 000h + 00000cM2.01200024 000h 2562720-X a20100708 20110714133341 @@ -271053,7 +271053,7 @@ - 00747cM2.01200024 000h + 00000cM2.01200024 000h 2562994-3 a20100709 20120420073842 @@ -271148,7 +271148,7 @@ - 00988cM2.01200024 000h + 00000cM2.01200024 000h 2563235-8 a20100712 20110708122612 @@ -271273,7 +271273,7 @@ - 00532cM2.01200024 000h + 00000cM2.01200024 000h 2563470-7 a20100713 20120420095208 @@ -271368,7 +271368,7 @@ - 00465cM2.01200024 000h + 00000cM2.01200024 000h 2563788-5 a20100715 20120423120912 @@ -271444,7 +271444,7 @@ - 00563cM2.01200024 000h + 00000cM2.01200024 000h 2563851-8 a20100715 20120419100446 @@ -271517,7 +271517,7 @@ - 00744cM2.01200024 000h + 00000cM2.01200024 000h 2564116-5 a20100716 20120420223018 @@ -271621,7 +271621,7 @@ - 00716cM2.01200024 000h + 00000cM2.01200024 000h 2564294-7 a20100719 20120419085241 @@ -271728,7 +271728,7 @@ - 01277cM2.01200024 000h + 00000cM2.01200024 000h 2564433-6 a20100719 20120419110851 @@ -271864,7 +271864,7 @@ - 00951cM2.01200024 000h + 00000cM2.01200024 000h 2564694-1 a20100720 20120423202442 @@ -271969,7 +271969,7 @@ - 00970cM2.01200024 000h + 00000cM2.01200024 000h 2565230-8 a20100722 20120423192954 @@ -272052,7 +272052,7 @@ - 00655cM2.01200024 000h + 00000cM2.01200024 000h 2565316-7 a20100723 20120423201658 @@ -272146,7 +272146,7 @@ - 00723cM2.01200024 000h + 00000cM2.01200024 000h 2565405-6 a20100723 20120117085520 @@ -272249,7 +272249,7 @@ - 01672cM2.01200024 000h + 00000cM2.01200024 000h 2566616-2 a20100730 20120423122205 @@ -272356,7 +272356,7 @@ - 00619cM2.01200024 000h + 00000cM2.01200024 000h 2566808-0 a20100802 20120423143436 @@ -272450,7 +272450,7 @@ - 00921cM2.01200024 000h + 00000cM2.01200024 000h 2567413-4 a20100805 20120423103047 @@ -272574,7 +272574,7 @@ - 00884cM2.01200024 000h + 00000cM2.01200024 000h 2567414-6 a20100805 20120423102617 @@ -272692,7 +272692,7 @@ - 00772cM2.01200024 000h + 00000cM2.01200024 000h 2568034-1 a20100810 20120420075755 @@ -272795,7 +272795,7 @@ - 00557cM2.01200024 000h + 00000cM2.01200024 000h 2568108-4 a20100810 20101207023049 @@ -272893,7 +272893,7 @@ - 00834cM2.01200024 000h + 00000cM2.01200024 000h 2568799-2 a20100813 20120423091642 @@ -273020,7 +273020,7 @@ - 01160cM2.01200024 000h + 00000cM2.01200024 000h 2568960-5 a20100816 20110708122701 @@ -273164,7 +273164,7 @@ - 00472cM2.01200024 000h + 00000cM2.01200024 000h 2568993-9 a20100816 20120413124821 @@ -273234,7 +273234,7 @@ - 00750cM2.01200024 000h + 00000cM2.01200024 000h 2569325-6 a20100817 20120423125511 @@ -273325,7 +273325,7 @@ - 01006cM2.01200024 000h + 00000cM2.01200024 000h 2569748-1 a20100819 20120419134800 @@ -273437,7 +273437,7 @@ - 00451cM2.01200024 000h + 00000cM2.01200024 000h 2569820-5 a20100819 20120413130833 @@ -273514,7 +273514,7 @@ - 00795cM2.01200024 000h + 00000cM2.01200024 000h 2569881-3 a20100820 20120423121019 @@ -273627,7 +273627,7 @@ - 00512cM2.01200024 000h + 00000cM2.01200024 000h 2570205-1 a20100824 20120420114450 @@ -273712,7 +273712,7 @@ - 00798cM2.01200024 000h + 00000cM2.01200024 000h 2570675-5 a20100826 20120423160402 @@ -273819,7 +273819,7 @@ - 00986cM2.01200024 000h + 00000cM2.01200024 000h 2570719-X a20100826 20120419103852 @@ -273937,7 +273937,7 @@ - 00813cM2.01200024 000h + 00000cM2.01200024 000h 2571370-X a20100831 20120423125954 @@ -274047,7 +274047,7 @@ - 00591cM2.01200024 000h + 00000cM2.01200024 000h 2571473-9 a20100901 20120423122715 @@ -274135,7 +274135,7 @@ - 00775cM2.01200024 000h + 00000cM2.01200024 000h 2571858-7 a20100902 20120419124759 @@ -274234,7 +274234,7 @@ - 00977cM2.01200024 000h + 00000cM2.01200024 000h 2571992-0 a20100903 20120420105917 @@ -274348,7 +274348,7 @@ - 00904cM2.01200024 000h + 00000cM2.01200024 000h 2572365-0 a20100907 20120423124408 @@ -274467,7 +274467,7 @@ - 01098cM2.01200024 000h + 00000cM2.01200024 000h 2572540-3 a20100908 20120420213655 @@ -274595,7 +274595,7 @@ - 00463cM2.01200024 000h + 00000cM2.01200024 000h 2574052-0 a20100921 20120423111301 @@ -274681,7 +274681,7 @@ - 00473cM2.01200024 000h + 00000cM2.01200024 000h 2574432-X a20100922 20120419214042 @@ -274754,7 +274754,7 @@ - 00396uM2.01200024 000h + 00000uM2.01200024 000h 2574446-X a20100922 20120420114519 @@ -274818,7 +274818,7 @@ - 01446cM2.01200024 000h + 00000cM2.01200024 000h 2574893-2 a20100927 20120420223019 @@ -274970,7 +274970,7 @@ - 00407cM2.01200024 000h + 00000cM2.01200024 000h 2575110-4 a20100928 20120423134057 @@ -275037,7 +275037,7 @@ - 01955cM2.01200024 000h + 00000cM2.01200024 000h 2575163-3 a20100928 20120419155255 @@ -275200,7 +275200,7 @@ - 01398cM2.01200024 000h + 00000cM2.01200024 000h 2575655-2 a20100930 20120419214040 @@ -275334,7 +275334,7 @@ - 01553cM2.01200024 000h + 00000cM2.01200024 000h 2575656-4 a20100930 20120419214039 @@ -275474,7 +275474,7 @@ - 01758cM2.01200024 000h + 00000cM2.01200024 000h 2575658-8 a20100930 20120423144157 @@ -275622,7 +275622,7 @@ - 00782cM2.01200024 000h + 00000cM2.01200024 000h 2575773-8 a20101001 20120420023022 @@ -275719,7 +275719,7 @@ - 01253cM2.01200024 000h + 00000cM2.01200024 000h 2575825-1 a20101001 20120423151015 @@ -275835,7 +275835,7 @@ - 00807cM2.01200024 000h + 00000cM2.01200024 000h 2576361-1 a20101006 20120420110013 @@ -275953,7 +275953,7 @@ - 00520cM2.01200024 000h + 00000cM2.01200024 000h 2576680-6 a20101008 20120420100254 @@ -276029,7 +276029,7 @@ - 00589cM2.01200024 000h + 00000cM2.01200024 000h 2577192-9 a20101013 20120420073439 @@ -276127,7 +276127,7 @@ - 00625cM2.01200024 000h + 00000cM2.01200024 000h 2577526-1 a20101015 20120420223019 @@ -276232,7 +276232,7 @@ - 01093cM2.01200024 000h + 00000cM2.01200024 000h 2577923-0 a20101019 20120420084641 @@ -276347,7 +276347,7 @@ - 00824cM2.01200024 000h + 00000cM2.01200024 000h 2578032-3 a20101019 20120423103346 @@ -276462,7 +276462,7 @@ - 00600cM2.01200024 000h + 00000cM2.01200024 000h 2578034-7 a20101019 20120423181826 @@ -276554,7 +276554,7 @@ - 00974cM2.01200024 000h + 00000cM2.01200024 000h 2578193-5 a20101020 20120423091114 @@ -276672,7 +276672,7 @@ - 00553cM2.01200024 000h + 00000cM2.01200024 000h 2578429-8 a20101021 20110708122823 @@ -276748,7 +276748,7 @@ - 00870cM2.01200024 000h + 00000cM2.01200024 000h 2578753-6 a20101025 20120420114145 @@ -276871,7 +276871,7 @@ - 01119cM2.01200024 000h + 00000cM2.01200024 000h 2579320-2 a20101028 20120420153736 @@ -276987,7 +276987,7 @@ - 01191cM2.01200024 000h + 00000cM2.01200024 000h 2579330-5 a20101028 20120420123355 @@ -277111,7 +277111,7 @@ - 00865cM2.01200024 000h + 00000cM2.01200024 000h 2579334-2 a20101028 20120420153838 @@ -277226,7 +277226,7 @@ - 01226cM2.01200024 000h + 00000cM2.01200024 000h 2579335-4 a20101028 20120420155602 @@ -277342,7 +277342,7 @@ - 00655cM2.01200024 000h + 00000cM2.01200024 000h 2579601-X a20101101 20110708122832 @@ -277445,7 +277445,7 @@ - 00708cM2.01200024 000h + 00000cM2.01200024 000h 2579980-0 a20101103 20120420213259 @@ -277539,7 +277539,7 @@ - 00858cM2.01200024 000h + 00000cM2.01200024 000h 2580455-8 a20101105 20120423081422 @@ -277639,7 +277639,7 @@ - 00522cM2.01200024 000h + 00000cM2.01200024 000h 2580675-0 a20101108 20120423202433 @@ -277712,7 +277712,7 @@ - 01243cM2.01200024 000h + 00000cM2.01200024 000h 2580924-6 a20101109 20120423152341 @@ -277840,7 +277840,7 @@ - 00754cM2.01200024 000h + 00000cM2.01200024 000h 2581271-3 a20101111 20120420114230 @@ -277948,7 +277948,7 @@ - 00888cM2.01200024 000h + 00000cM2.01200024 000h 2581290-7 a20101111 20120420113742 @@ -278059,7 +278059,7 @@ - 00626cM2.01200024 000h + 00000cM2.01200024 000h 2581336-5 a20101111 20101116223107 @@ -278158,7 +278158,7 @@ - 00695cM2.01200024 000h + 00000cM2.01200024 000h 2581996-3 a20101116 20120322165055 @@ -278251,7 +278251,7 @@ - 00658cM2.01200024 000h + 00000cM2.01200024 000h 2582052-7 a20101117 20120420074641 @@ -278345,7 +278345,7 @@ - 00647cM2.01200024 000h + 00000cM2.01200024 000h 2582206-8 a20101118 20120419120845 @@ -278433,7 +278433,7 @@ - 00798cM2.01200024 000h + 00000cM2.01200024 000h 2582453-3 a20101119 20120423115207 @@ -278554,7 +278554,7 @@ - 00647cM2.01200024 000h + 00000cM2.01200024 000h 2583235-9 a20101125 20120214105655 @@ -278661,7 +278661,7 @@ - 00544cM2.01200024 000h + 00000cM2.01200024 000h 2583485-X a20101126 20120419144919 @@ -278734,7 +278734,7 @@ - 00736cM2.01200024 000h + 00000cM2.01200024 000h 2583900-7 a20101130 20120423155959 @@ -278840,7 +278840,7 @@ - 00708cM2.01200024 000h + 00000cM2.01200024 000h 2584083-6 a20101201 20120423142711 @@ -278935,7 +278935,7 @@ - 00629cM2.01200024 000h + 00000cM2.01200024 000h 2584827-6 a20101207 20110103233046 @@ -279031,7 +279031,7 @@ - 00706cM2.01200024 000h + 00000cM2.01200024 000h 2585163-9 a20101208 20120419132928 @@ -279116,7 +279116,7 @@ - 00400cM2.01200024 000h + 00000cM2.01200024 000h 2585248-6 a20101209 20111115214214 @@ -279183,7 +279183,7 @@ - 01275cM2.01200024 000h + 00000cM2.01200024 000h 2585440-9 a20101210 20120420070104 @@ -279309,7 +279309,7 @@ - 00978cM2.01200024 000h + 00000cM2.01200024 000h 2585667-4 a20101213 20120420113808 @@ -279423,7 +279423,7 @@ - 01029cM2.01200024 000h + 00000cM2.01200024 000h 2586100-1 a20101214 20120419163429 @@ -279537,7 +279537,7 @@ - 00991cM2.01200024 000h + 00000cM2.01200024 000h 2586897-4 a20101221 20120423111012 @@ -279659,7 +279659,7 @@ - 00508cM2.01200024 000h + 00000cM2.01200024 000h 2586953-X a20101221 20111107130628 @@ -279726,7 +279726,7 @@ - 00566cM2.01200024 000h + 00000cM2.01200024 000h 2587082-8 a20101221 20120309221003 @@ -279814,7 +279814,7 @@ - 00833cM2.01200024 000h + 00000cM2.01200024 000h 2587124-9 a20101221 20120419115540 @@ -279918,7 +279918,7 @@ - 00615cM2.01200024 000h + 00000cM2.01200024 000h 2587329-5 a20101223 20120419090422 @@ -280009,7 +280009,7 @@ - 01175cM2.01200024 000h + 00000cM2.01200024 000h 2587331-3 a20101223 20110708122939 @@ -280136,7 +280136,7 @@ - 00890cM2.01200024 000h + 00000cM2.01200024 000h 2587659-4 a20110104 20120423152548 @@ -280240,7 +280240,7 @@ - 01062cM2.01200024 000h + 00000cM2.01200024 000h 2587681-8 a20110104 20120423152803 @@ -280347,7 +280347,7 @@ - 01073cM2.01200024 000h + 00000cM2.01200024 000h 2587710-0 a20110104 20120423153200 @@ -280457,7 +280457,7 @@ - 00528uM2.01200024 000h + 00000uM2.01200024 000h 2587814-1 a20110105 20120419105116 @@ -280539,7 +280539,7 @@ - 00948cM2.01200024 000h + 00000cM2.01200024 000h 2587925-X a20110106 20120423153446 @@ -280651,7 +280651,7 @@ - 01105cM2.01200024 000h + 00000cM2.01200024 000h 2587984-4 a20110106 20120423153634 @@ -280756,7 +280756,7 @@ - 01237cM2.01200024 000h + 00000cM2.01200024 000h 2587988-1 a20110106 20120423154123 @@ -280872,7 +280872,7 @@ - 01077cM2.01200024 000h + 00000cM2.01200024 000h 2588307-0 a20110110 20120423154833 @@ -280987,7 +280987,7 @@ - 00913cM2.01200024 000h + 00000cM2.01200024 000h 2588482-7 a20110111 20120420090501 @@ -281084,7 +281084,7 @@ - 00397cM2.01200024 000h + 00000cM2.01200024 000h 2589017-7 a20110112 20120423104718 @@ -281154,7 +281154,7 @@ - 00774cM2.01200024 000h + 00000cM2.01200024 000h 2589977-6 a20110118 20120423155239 @@ -281253,7 +281253,7 @@ - 00804cM2.01200024 000h + 00000cM2.01200024 000h 2590173-4 a20110119 20120419163304 @@ -281361,7 +281361,7 @@ - 00958cM2.01200024 000h + 00000cM2.01200024 000h 2590342-1 a20110119 20110325141114 @@ -281481,7 +281481,7 @@ - 00726cM2.01200024 000h + 00000cM2.01200024 000h 2591148-X a20110124 20120423114148 @@ -281569,7 +281569,7 @@ - 01072cM2.01200024 000h + 00000cM2.01200024 000h 2591930-1 a20110127 20120423113900 @@ -281710,7 +281710,7 @@ - 01214cM2.01200024 000h + 00000cM2.01200024 000h 2592011-X a20110128 20120423140223 @@ -281828,7 +281828,7 @@ - 01529cM2.01200024 000h + 00000cM2.01200024 000h 2592110-1 a20110128 20120420124627 @@ -281955,7 +281955,7 @@ - 01383cM2.01200024 000h + 00000cM2.01200024 000h 2592391-2 a20110131 20120423155720 @@ -282065,7 +282065,7 @@ - 00550cM2.01200024 000h + 00000cM2.01200024 000h 2592558-1 a20110201 20120423141205 @@ -282138,7 +282138,7 @@ - 00958cM2.01200024 000h + 00000cM2.01200024 000h 2592869-7 a20110203 20110601123612 @@ -282268,7 +282268,7 @@ - 00909cM2.01200024 000h + 00000cM2.01200024 000h 2592940-9 a20110203 20120308081206 @@ -282390,7 +282390,7 @@ - 00576cM2.01200024 000h + 00000cM2.01200024 000h 2593628-1 a20110208 20110303112739 @@ -282490,7 +282490,7 @@ - 00807cM2.01200024 000h + 00000cM2.01200024 000h 2593857-5 a20110209 20120423102358 @@ -282582,7 +282582,7 @@ - 00651cM2.01200024 000h + 00000cM2.01200024 000h 2594026-0 a20110210 20120423092239 @@ -282661,7 +282661,7 @@ - 00949cM2.01200024 000h + 00000cM2.01200024 000h 2594096-X a20110210 20120423102351 @@ -282766,7 +282766,7 @@ - 00868cM2.01200024 000h + 00000cM2.01200024 000h 2594099-5 a20110210 20120420100114 @@ -282863,7 +282863,7 @@ - 01038cM2.01200024 000h + 00000cM2.01200024 000h 2594178-1 a20110211 20120423165843 @@ -282987,7 +282987,7 @@ - 00983cM2.01200024 000h + 00000cM2.01200024 000h 2594310-8 a20110214 20120423110413 @@ -283095,7 +283095,7 @@ - 00857cM2.01200024 000h + 00000cM2.01200024 000h 2594389-3 a20110214 20120423104918 @@ -283197,7 +283197,7 @@ - 00902cM2.01200024 000h + 00000cM2.01200024 000h 2594442-3 a20110214 20120423115301 @@ -283302,7 +283302,7 @@ - 01078cM2.01200024 000h + 00000cM2.01200024 000h 2594453-8 a20110214 20120423160328 @@ -283411,7 +283411,7 @@ - 00825cM2.01200024 000h + 00000cM2.01200024 000h 2594525-7 a20110215 20120423113907 @@ -283513,7 +283513,7 @@ - 00874cM2.01200024 000h + 00000cM2.01200024 000h 2594561-0 a20110215 20120423112336 @@ -283615,7 +283615,7 @@ - 00908cM2.01200024 000h + 00000cM2.01200024 000h 2594587-7 a20110215 20120423120028 @@ -283717,7 +283717,7 @@ - 00825cM2.01200024 000h + 00000cM2.01200024 000h 2594606-7 a20110215 20120423145638 @@ -283819,7 +283819,7 @@ - 00845cM2.01200024 000h + 00000cM2.01200024 000h 2594740-0 a20110216 20120423140102 @@ -283924,7 +283924,7 @@ - 00941cM2.01200024 000h + 00000cM2.01200024 000h 2594788-6 a20110216 20120423125712 @@ -284026,7 +284026,7 @@ - 00909cM2.01200024 000h + 00000cM2.01200024 000h 2595049-6 a20110217 20120423171050 @@ -284125,7 +284125,7 @@ - 00856cM2.01200024 000h + 00000cM2.01200024 000h 2595095-2 a20110217 20110714050906 @@ -284249,7 +284249,7 @@ - 00907cM2.01200024 000h + 00000cM2.01200024 000h 2595101-4 a20110217 20120423172200 @@ -284354,7 +284354,7 @@ - 01002cM2.01200024 000h + 00000cM2.01200024 000h 2595277-8 a20110218 20120423175038 @@ -284459,7 +284459,7 @@ - 00832cM2.01200024 000h + 00000cM2.01200024 000h 2595526-3 a20110221 20120327134217 @@ -284577,7 +284577,7 @@ - 00995cM2.01200024 000h + 00000cM2.01200024 000h 2595934-7 a20110223 20120423141253 @@ -284708,7 +284708,7 @@ - 00341cM2.01200024 000h + 00000cM2.01200024 000h 2596120-2 a20110223 20120423154406 @@ -284769,7 +284769,7 @@ - 01152cM2.01200024 000h + 00000cM2.01200024 000h 2596336-3 a20110224 20120423162940 @@ -284881,7 +284881,7 @@ - 00921cM2.01200024 000h + 00000cM2.01200024 000h 2596426-4 a20110224 20120320101451 @@ -284992,7 +284992,7 @@ - 00638cM2.01200024 000h + 00000cM2.01200024 000h 2596437-9 a20110224 20120423150530 @@ -285089,7 +285089,7 @@ - 00463cM2.01200024 000h + 00000cM2.01200024 000h 2597013-6 a20110301 20120423160418 @@ -285159,7 +285159,7 @@ - 01244cM2.01200024 000h + 00000cM2.01200024 000h 2597029-X a20110301 20120423163504 @@ -285275,7 +285275,7 @@ - 00491cM2.01200024 000h + 00000cM2.01200024 000h 2597275-3 a20110302 20120423152213 @@ -285348,7 +285348,7 @@ - 00748cM2.01200024 000h + 00000cM2.01200024 000h 2597963-2 a20110307 20110728115459 @@ -285438,7 +285438,7 @@ - 00653cM2.01200024 000h + 00000cM2.01200024 000h 2598355-6 a20110309 20120314124816 @@ -285526,7 +285526,7 @@ - 00598cM2.01200024 000h + 00000cM2.01200024 000h 2598356-8 a20110309 20120423201919 @@ -285616,7 +285616,7 @@ - 01258cM2.01200024 000h + 00000cM2.01200024 000h 2598795-1 a20110310 20120322150645 @@ -285779,7 +285779,7 @@ - 00865cM2.01200024 000h + 00000cM2.01200024 000h 2598932-7 a20110311 20120423145031 @@ -285885,7 +285885,7 @@ - 01114cM2.01200024 000h + 00000cM2.01200024 000h 2598937-6 a20110311 20120423145007 @@ -286000,7 +286000,7 @@ - 01390cM2.01200024 000h + 00000cM2.01200024 000h 2599265-X a20110315 20120423105041 @@ -286121,7 +286121,7 @@ - 00875cM2.01200024 000h + 00000cM2.01200024 000h 2599542-X a20110316 20110714050906 @@ -286251,7 +286251,7 @@ - 00445cM2.01200024 000h + 00000cM2.01200024 000h 2599647-2 a20110316 20120420140636 @@ -286328,7 +286328,7 @@ - 00815cM2.01200024 000h + 00000cM2.01200024 000h 2599779-8 a20110317 20120420100215 @@ -286444,7 +286444,7 @@ - 00477cM2.01200024 000h + 00000cM2.01200024 000h 2600153-6 a20110318 20120423150704 @@ -286529,7 +286529,7 @@ - 00842cM2.01200024 000h + 00000cM2.01200024 000h 2600208-5 a20110318 20120423082739 @@ -286644,7 +286644,7 @@ - 01031cM2.01200024 000h + 00000cM2.01200024 000h 2600496-3 a20110322 20120420113746 @@ -286776,7 +286776,7 @@ - 00881cM2.01200024 000h + 00000cM2.01200024 000h 2600698-4 a20110323 20120423173122 @@ -286886,7 +286886,7 @@ - 00595cM2.01200024 000h + 00000cM2.01200024 000h 2601203-0 a20110325 20120419214026 @@ -286971,7 +286971,7 @@ - 00450cM2.01200024 000h + 00000cM2.01200024 000h 2601783-0 a20110329 20110504223135 @@ -287050,7 +287050,7 @@ - 00748cM2.01200024 000h + 00000cM2.01200024 000h 2602004-X a20110330 20120423165904 @@ -287153,7 +287153,7 @@ - 00963cM2.01200024 000h + 00000cM2.01200024 000h 2602433-0 a20110404 20120420100540 @@ -287278,7 +287278,7 @@ - 00662cM2.01200024 000h + 00000cM2.01200024 000h 2602768-9 a20110405 20120423163506 @@ -287373,7 +287373,7 @@ - 01276cM2.01200024 000h + 00000cM2.01200024 000h 2602909-1 a20110406 20120420094556 @@ -287503,7 +287503,7 @@ - 00795cM2.01200024 000h + 00000cM2.01200024 000h 2602938-8 a20110406 20120423202452 @@ -287609,7 +287609,7 @@ - 01403cM2.01200024 000h + 00000cM2.01200024 000h 2603273-9 a20110407 20120420110108 @@ -287773,7 +287773,7 @@ - 00938cM2.01200024 000h + 00000cM2.01200024 000h 2604137-6 a20110413 20110728120445 @@ -287879,7 +287879,7 @@ - 01022cM2.01200024 000h + 00000cM2.01200024 000h 2604233-2 a20110413 20110728121159 @@ -287984,7 +287984,7 @@ - 00538cM2.01200024 000h + 00000cM2.01200024 000h 2604602-7 a20110415 20120419103718 @@ -288052,7 +288052,7 @@ - 00745cM2.01200024 000h + 00000cM2.01200024 000h 2604629-5 a20110415 20120221134943 @@ -288163,7 +288163,7 @@ - 00617cM2.01200024 000h + 00000cM2.01200024 000h 2605169-2 a20110420 20110803223030 @@ -288265,7 +288265,7 @@ - 00504cM2.01200024 000h + 00000cM2.01200024 000h 2605225-8 a20110420 20120419131405 @@ -288335,7 +288335,7 @@ - 00981cM2.01200024 000h + 00000cM2.01200024 000h 2605352-4 a20110420 20120419130359 @@ -288442,7 +288442,7 @@ - 02030cM2.01200024 000h + 00000cM2.01200024 000h 2605785-2 a20110427 20120403223026 @@ -288632,7 +288632,7 @@ - 00762cM2.01200024 000h + 00000cM2.01200024 000h 2605883-2 a20110427 20120423114751 @@ -288750,7 +288750,7 @@ - 01201cM2.01200024 000h + 00000cM2.01200024 000h 2606130-2 a20110428 20120419154427 @@ -288911,7 +288911,7 @@ - 00949cM2.01200024 000h + 00000cM2.01200024 000h 2606439-X a20110502 20120419154626 @@ -289046,7 +289046,7 @@ - 01665cM2.01200024 000h + 00000cM2.01200024 000h 2606456-X a20110502 20120420213244 @@ -289174,7 +289174,7 @@ - 00525cM2.01200024 000h + 00000cM2.01200024 000h 2606709-2 a20110503 20120419102351 @@ -289262,7 +289262,7 @@ - 00844cM2.01200024 000h + 00000cM2.01200024 000h 2606718-3 a20110503 20110811125630 @@ -289374,7 +289374,7 @@ - 00407cM2.01200024 000h + 00000cM2.01200024 000h 2606764-X a20110503 20120419145244 @@ -289442,7 +289442,7 @@ - 01342cM2.01200024 000h + 00000cM2.01200024 000h 2606838-2 a20110503 20120420141101 @@ -289544,7 +289544,7 @@ - 00825cM2.01200024 000h + 00000cM2.01200024 000h 2607130-7 a20110505 20111109122250 @@ -289653,7 +289653,7 @@ - 00595cM2.01200024 000h + 00000cM2.01200024 000h 2607241-5 a20110505 20120420114108 @@ -289739,7 +289739,7 @@ - 01017cM2.01200024 000h + 00000cM2.01200024 000h 2607668-8 a20110509 20120420082407 @@ -289855,7 +289855,7 @@ - 00595cM2.01200024 000h + 00000cM2.01200024 000h 2607710-3 a20110509 20120423090605 @@ -289947,7 +289947,7 @@ - 00406cM2.01200024 000h + 00000cM2.01200024 000h 2607766-8 a20110509 20110728121034 @@ -290005,7 +290005,7 @@ - 00530cM2.01200024 000h + 00000cM2.01200024 000h 2608553-7 a20110512 20120423150312 @@ -290103,7 +290103,7 @@ - 00402cM2.01200024 000h + 00000cM2.01200024 000h 2608582-3 a20110512 20120420114101 @@ -290173,7 +290173,7 @@ - 00439cM2.01200024 000h + 00000cM2.01200024 000h 2608753-4 a20110513 20120420103028 @@ -290246,7 +290246,7 @@ - 00383cM2.01200024 000h + 00000cM2.01200024 000h 2608802-2 a20110513 20120420103018 @@ -290316,7 +290316,7 @@ - 00408cM2.01200024 000h + 00000cM2.01200024 000h 2608823-X a20110513 20120420112052 @@ -290386,7 +290386,7 @@ - 00576uM2.01200024 000h + 00000uM2.01200024 000h 2608838-1 a20110513 20120419133431 @@ -290483,7 +290483,7 @@ - 00411cM2.01200024 000h + 00000cM2.01200024 000h 2608976-2 a20110516 20120420114055 @@ -290553,7 +290553,7 @@ - 00403cM2.01200024 000h + 00000cM2.01200024 000h 2609070-3 a20110516 20120420102441 @@ -290623,7 +290623,7 @@ - 00481cM2.01200024 000h + 00000cM2.01200024 000h 2609217-7 a20110517 20120420114226 @@ -290699,7 +290699,7 @@ - 00415cM2.01200024 000h + 00000cM2.01200024 000h 2609285-2 a20110517 20120420114049 @@ -290772,7 +290772,7 @@ - 00394cM2.01200024 000h + 00000cM2.01200024 000h 2609451-4 a20110518 20120420114042 @@ -290842,7 +290842,7 @@ - 00567cM2.01200024 000h + 00000cM2.01200024 000h 2609555-5 a20110518 20120419153929 @@ -290921,7 +290921,7 @@ - 00659cM2.01200024 000h + 00000cM2.01200024 000h 2609595-6 a20110518 20120419153236 @@ -291003,7 +291003,7 @@ - 00485cM2.01200024 000h + 00000cM2.01200024 000h 2609626-2 a20110518 20120420102431 @@ -291081,7 +291081,7 @@ - 00502cM2.01200024 000h + 00000cM2.01200024 000h 2609671-7 a20110518 20111114204944 @@ -291154,7 +291154,7 @@ - 00802cM2.01200024 000h + 00000cM2.01200024 000h 2609739-4 a20110519 20120217094257 @@ -291257,7 +291257,7 @@ - 00385cM2.01200024 000h + 00000cM2.01200024 000h 2609851-9 a20110519 20120420112043 @@ -291327,7 +291327,7 @@ - 00513cM2.01200024 000h + 00000cM2.01200024 000h 2609864-7 a20110519 20120419164344 @@ -291400,7 +291400,7 @@ - 00406cM2.01200024 000h + 00000cM2.01200024 000h 2609874-X a20110519 20120420110457 @@ -291470,7 +291470,7 @@ - 00475cM2.01200024 000h + 00000cM2.01200024 000h 2610263-8 a20110523 20120420110451 @@ -291546,7 +291546,7 @@ - 00382cM2.01200024 000h + 00000cM2.01200024 000h 2610299-7 a20110523 20120420110444 @@ -291616,7 +291616,7 @@ - 00382cM2.01200024 000h + 00000cM2.01200024 000h 2610332-1 a20110523 20120420114035 @@ -291686,7 +291686,7 @@ - 00390cM2.01200024 000h + 00000cM2.01200024 000h 2610391-6 a20110523 20120420114240 @@ -291759,7 +291759,7 @@ - 00389cM2.01200024 000h + 00000cM2.01200024 000h 2610404-0 a20110523 20120420110438 @@ -291829,7 +291829,7 @@ - 00377cM2.01200024 000h + 00000cM2.01200024 000h 2610515-9 a20110524 20120420102423 @@ -291899,7 +291899,7 @@ - 00472cM2.01200024 000h + 00000cM2.01200024 000h 2610547-0 a20110524 20120420102416 @@ -291969,7 +291969,7 @@ - 00402cM2.01200024 000h + 00000cM2.01200024 000h 2610621-8 a20110524 20120420114019 @@ -292039,7 +292039,7 @@ - 00554cM2.01200024 000h + 00000cM2.01200024 000h 2610842-2 a20110524 20120209142500 @@ -292134,7 +292134,7 @@ - 00366cM2.01200024 000h + 00000cM2.01200024 000h 2610890-2 a20110525 20120420110431 @@ -292204,7 +292204,7 @@ - 00407cM2.01200024 000h + 00000cM2.01200024 000h 2610922-0 a20110525 20120420114013 @@ -292274,7 +292274,7 @@ - 00451cM2.01200024 000h + 00000cM2.01200024 000h 2610953-0 a20110525 20120420105838 @@ -292344,7 +292344,7 @@ - 00456cM2.01200024 000h + 00000cM2.01200024 000h 2611036-2 a20110525 20120420114006 @@ -292414,7 +292414,7 @@ - 00389cM2.01200024 000h + 00000cM2.01200024 000h 2611051-9 a20110525 20120420114000 @@ -292484,7 +292484,7 @@ - 00382cM2.01200024 000h + 00000cM2.01200024 000h 2611107-X a20110526 20120420114220 @@ -292554,7 +292554,7 @@ - 00374cM2.01200024 000h + 00000cM2.01200024 000h 2611214-0 a20110526 20120420105825 @@ -292624,7 +292624,7 @@ - 00924cM2.01200024 000h + 00000cM2.01200024 000h 2611362-4 a20110527 20120419121045 @@ -292748,7 +292748,7 @@ - 00421cM2.01200024 000h + 00000cM2.01200024 000h 2611460-4 a20110527 20120420102722 @@ -292818,7 +292818,7 @@ - 00387cM2.01200024 000h + 00000cM2.01200024 000h 2611529-3 a20110530 20120420113954 @@ -292888,7 +292888,7 @@ - 00400cM2.01200024 000h + 00000cM2.01200024 000h 2611534-7 a20110530 20120420102407 @@ -292958,7 +292958,7 @@ - 00381cM2.01200024 000h + 00000cM2.01200024 000h 2611540-2 a20110530 20120420105815 @@ -293028,7 +293028,7 @@ - 00366cM2.01200024 000h + 00000cM2.01200024 000h 2611588-8 a20110530 20120420105521 @@ -293098,7 +293098,7 @@ - 00372cM2.01200024 000h + 00000cM2.01200024 000h 2611590-6 a20110530 20120420105512 @@ -293168,7 +293168,7 @@ - 00375cM2.01200024 000h + 00000cM2.01200024 000h 2611595-5 a20110530 20120420102705 @@ -293238,7 +293238,7 @@ - 00410cM2.01200024 000h + 00000cM2.01200024 000h 2611601-7 a20110530 20120420113947 @@ -293311,7 +293311,7 @@ - 00370cM2.01200024 000h + 00000cM2.01200024 000h 2611620-0 a20110530 20120420102400 @@ -293381,7 +293381,7 @@ - 00427cM2.01200024 000h + 00000cM2.01200024 000h 2611666-2 a20110530 20120420102611 @@ -293454,7 +293454,7 @@ - 00445cM2.01200024 000h + 00000cM2.01200024 000h 2611722-8 a20110530 20120423102844 @@ -293524,7 +293524,7 @@ - 00815cM2.01200024 000h + 00000cM2.01200024 000h 2612010-0 a20110531 20120423100100 @@ -293641,7 +293641,7 @@ - 00429cM2.01200024 000h + 00000cM2.01200024 000h 2612095-1 a20110601 20120420113941 @@ -293716,7 +293716,7 @@ - 00455cM2.01200024 000h + 00000cM2.01200024 000h 2612113-X a20110601 20120420105502 @@ -293791,7 +293791,7 @@ - 01033cM2.01200024 000h + 00000cM2.01200024 000h 2612121-9 a20110601 20110801140140 @@ -293935,7 +293935,7 @@ - 00410cM2.01200024 000h + 00000cM2.01200024 000h 2612204-2 a20110601 20120420102352 @@ -294008,7 +294008,7 @@ - 00373cM2.01200024 000h + 00000cM2.01200024 000h 2612210-8 a20110601 20120420102345 @@ -294078,7 +294078,7 @@ - 00498cM2.01200024 000h + 00000cM2.01200024 000h 2612214-5 a20110601 20120423121331 @@ -294145,7 +294145,7 @@ - 00433cM2.01200024 000h + 00000cM2.01200024 000h 2612551-1 a20110606 20120419122703 @@ -294213,7 +294213,7 @@ - 00515cM2.01200024 000h + 00000cM2.01200024 000h 2612615-1 a20110606 20120420102336 @@ -294292,7 +294292,7 @@ - 00414cM2.01200024 000h + 00000cM2.01200024 000h 2612691-6 a20110607 20120420102328 @@ -294362,7 +294362,7 @@ - 00447cM2.01200024 000h + 00000cM2.01200024 000h 2612728-3 a20110607 20120420105448 @@ -294435,7 +294435,7 @@ - 00397cM2.01200024 000h + 00000cM2.01200024 000h 2612763-5 a20110607 20120420105440 @@ -294508,7 +294508,7 @@ - 00447cM2.01200024 000h + 00000cM2.01200024 000h 2612772-6 a20110607 20120420105429 @@ -294587,7 +294587,7 @@ - 00530cM2.01200024 000h + 00000cM2.01200024 000h 2613169-9 a20110608 20120420105415 @@ -294666,7 +294666,7 @@ - 00515cM2.01200024 000h + 00000cM2.01200024 000h 2613183-3 a20110608 20120420101224 @@ -294745,7 +294745,7 @@ - 00690cM2.01200024 000h + 00000cM2.01200024 000h 2613541-3 a20110610 20110915223135 @@ -294847,7 +294847,7 @@ - 00364cM2.01200024 000h + 00000cM2.01200024 000h 2613544-9 a20110610 20120420102316 @@ -294917,7 +294917,7 @@ - 00393cM2.01200024 000h + 00000cM2.01200024 000h 2613546-2 a20110610 20120420105308 @@ -294987,7 +294987,7 @@ - 00492cM2.01200024 000h + 00000cM2.01200024 000h 2613584-X a20110610 20120420113932 @@ -295064,7 +295064,7 @@ - 00393cM2.01200024 000h + 00000cM2.01200024 000h 2613637-5 a20110610 20120420113926 @@ -295134,7 +295134,7 @@ - 00608cM2.01200024 000h + 00000cM2.01200024 000h 2613727-6 a20110614 20120420075450 @@ -295224,7 +295224,7 @@ - 00426cM2.01200024 000h + 00000cM2.01200024 000h 2613878-5 a20110615 20120420102309 @@ -295294,7 +295294,7 @@ - 00680cM2.01200024 000h + 00000cM2.01200024 000h 2614016-0 a20110615 20120309155322 @@ -295388,7 +295388,7 @@ - 00942cM2.01200024 000h + 00000cM2.01200024 000h 2614132-2 a20110616 20110616115102 @@ -295496,7 +295496,7 @@ - 00399cM2.01200024 000h + 00000cM2.01200024 000h 2614457-8 a20110620 20120420114212 @@ -295566,7 +295566,7 @@ - 00407cM2.01200024 000h + 00000cM2.01200024 000h 2614465-7 a20110620 20120420113919 @@ -295636,7 +295636,7 @@ - 00439cM2.01200024 000h + 00000cM2.01200024 000h 2614496-7 a20110620 20120420113912 @@ -295706,7 +295706,7 @@ - 00707cM2.01200024 000h + 00000cM2.01200024 000h 2614800-6 a20110621 20120423152801 @@ -295804,7 +295804,7 @@ - 00502cM2.01200024 000h + 00000cM2.01200024 000h 2615147-9 a20110623 20120423104907 @@ -295880,7 +295880,7 @@ - 00475cM2.01200024 000h + 00000cM2.01200024 000h 2615356-7 a20110627 20120420114252 @@ -295950,7 +295950,7 @@ - 00338dM2.01200024 000h + 00000dM2.01200024 000h 2615377-4 a20110627 20120419134735 @@ -296002,7 +296002,7 @@ - 00431cM2.01200024 000h + 00000cM2.01200024 000h 2615427-4 a20110627 20120420113905 @@ -296078,7 +296078,7 @@ - 00460cM2.01200024 000h + 00000cM2.01200024 000h 2615450-X a20110627 20120420105253 @@ -296160,7 +296160,7 @@ - 00432cM2.01200024 000h + 00000cM2.01200024 000h 2615461-4 a20110627 20120420105244 @@ -296239,7 +296239,7 @@ - 00642cM2.01200024 000h + 00000cM2.01200024 000h 2615809-7 a20110628 20120423073336 @@ -296342,7 +296342,7 @@ - 00462cM2.01200024 000h + 00000cM2.01200024 000h 2615909-0 a20110629 20120423145630 @@ -296412,7 +296412,7 @@ - 00517cM2.01200024 000h + 00000cM2.01200024 000h 2615994-6 a20110629 20110907223045 @@ -296497,7 +296497,7 @@ - 01767cM2.01200024 000h + 00000cM2.01200024 000h 2616095-X a20110629 20120419155110 @@ -296636,7 +296636,7 @@ - 00920cM2.01200024 000h + 00000cM2.01200024 000h 2616308-1 a20110630 20120420084824 @@ -296745,7 +296745,7 @@ - 00665cM2.01200024 000h + 00000cM2.01200024 000h 2616844-3 a20110704 20120419162844 @@ -296838,7 +296838,7 @@ - 00396cM2.01200024 000h + 00000cM2.01200024 000h 2616993-9 a20110705 20120420114232 @@ -296908,7 +296908,7 @@ - 00459cM2.01200024 000h + 00000cM2.01200024 000h 2617014-0 a20110705 20120420105237 @@ -296984,7 +296984,7 @@ - 00611cM2.01200024 000h + 00000cM2.01200024 000h 2617094-2 a20110705 20120419164323 @@ -297072,7 +297072,7 @@ - 00946cM2.01200024 000h + 00000cM2.01200024 000h 2617266-5 a20110706 20120416074551 @@ -297175,7 +297175,7 @@ - 00446cM2.01200024 000h + 00000cM2.01200024 000h 2617468-6 a20110707 20120420102143 @@ -297251,7 +297251,7 @@ - 00386cM2.01200024 000h + 00000cM2.01200024 000h 2617511-3 a20110707 20120420105230 @@ -297321,7 +297321,7 @@ - 00389cM2.01200024 000h + 00000cM2.01200024 000h 2617528-9 a20110707 20120420113857 @@ -297391,7 +297391,7 @@ - 00387cM2.01200024 000h + 00000cM2.01200024 000h 2617549-6 a20110707 20120420114206 @@ -297461,7 +297461,7 @@ - 00429cM2.01200024 000h + 00000cM2.01200024 000h 2617697-X a20110707 20120420105223 @@ -297531,7 +297531,7 @@ - 00397cM2.01200024 000h + 00000cM2.01200024 000h 2617747-X a20110708 20120420101209 @@ -297601,7 +297601,7 @@ - 00465cM2.01200024 000h + 00000cM2.01200024 000h 2617755-9 a20110708 20120420101201 @@ -297680,7 +297680,7 @@ - 00455cM2.01200024 000h + 00000cM2.01200024 000h 2617765-1 a20110708 20120420101152 @@ -297762,7 +297762,7 @@ - 00670cM2.01200024 000h + 00000cM2.01200024 000h 2617818-7 a20110708 20120329104009 @@ -297862,7 +297862,7 @@ - 00511cM2.01200024 000h + 00000cM2.01200024 000h 2617830-8 a20110708 20120420101144 @@ -297946,7 +297946,7 @@ - 00449cM2.01200024 000h + 00000cM2.01200024 000h 2617844-8 a20110708 20120420101137 @@ -298023,7 +298023,7 @@ - 00560cM2.01200024 000h + 00000cM2.01200024 000h 2617851-5 a20110708 20120419091558 @@ -298114,7 +298114,7 @@ - 01019cM2.01200024 000h + 00000cM2.01200024 000h 2617919-2 a20110708 20120423083717 @@ -298204,7 +298204,7 @@ - 00379cM2.01200024 000h + 00000cM2.01200024 000h 2617948-9 a20110711 20120420102133 @@ -298274,7 +298274,7 @@ - 00546cM2.01200024 000h + 00000cM2.01200024 000h 2617961-1 a20110711 20120419095343 @@ -298365,7 +298365,7 @@ - 00393cM2.01200024 000h + 00000cM2.01200024 000h 2617982-9 a20110711 20120420102123 @@ -298435,7 +298435,7 @@ - 00432cM2.01200024 000h + 00000cM2.01200024 000h 2617992-1 a20110711 20120420102113 @@ -298514,7 +298514,7 @@ - 00406cM2.01200024 000h + 00000cM2.01200024 000h 2618131-9 a20110712 20120420113849 @@ -298587,7 +298587,7 @@ - 00435cM2.01200024 000h + 00000cM2.01200024 000h 2618140-X a20110712 20120420102101 @@ -298657,7 +298657,7 @@ - 00467cM2.01200024 000h + 00000cM2.01200024 000h 2618178-2 a20110712 20120420105208 @@ -298730,7 +298730,7 @@ - 00367cM2.01200024 000h + 00000cM2.01200024 000h 2618188-5 a20110712 20120420113841 @@ -298800,7 +298800,7 @@ - 00448cM2.01200024 000h + 00000cM2.01200024 000h 2618422-9 a20110713 20120420113834 @@ -298877,7 +298877,7 @@ - 00422cM2.01200024 000h + 00000cM2.01200024 000h 2618442-4 a20110713 20120420113827 @@ -298947,7 +298947,7 @@ - 00420cM2.01200024 000h + 00000cM2.01200024 000h 2618482-5 a20110713 20120420102053 @@ -299020,7 +299020,7 @@ - 00495cM2.01200024 000h + 00000cM2.01200024 000h 2618616-0 a20110714 20120420105158 @@ -299095,7 +299095,7 @@ - 00443cM2.01200024 000h + 00000cM2.01200024 000h 2618650-0 a20110714 20120420102045 @@ -299172,7 +299172,7 @@ - 00382cM2.01200024 000h + 00000cM2.01200024 000h 2618673-1 a20110714 20120420105148 @@ -299242,7 +299242,7 @@ - 00377cM2.01200024 000h + 00000cM2.01200024 000h 2618721-8 a20110714 20120420102035 @@ -299312,7 +299312,7 @@ - 00634cM2.01200024 000h + 00000cM2.01200024 000h 2618773-5 a20110714 20120420213256 @@ -299403,7 +299403,7 @@ - 00420cM2.01200024 000h + 00000cM2.01200024 000h 2618874-0 a20110715 20120420113819 @@ -299473,7 +299473,7 @@ - 00463cM2.01200024 000h + 00000cM2.01200024 000h 2618888-0 a20110715 20120420105137 @@ -299551,7 +299551,7 @@ - 00457cM2.01200024 000h + 00000cM2.01200024 000h 2618924-0 a20110715 20120420105129 @@ -299624,7 +299624,7 @@ - 00419cM2.01200024 000h + 00000cM2.01200024 000h 2618932-X a20110715 20120420105122 @@ -299697,7 +299697,7 @@ - 00396cM2.01200024 000h + 00000cM2.01200024 000h 2618998-7 a20110718 20120420102020 @@ -299767,7 +299767,7 @@ - 00661cM2.01200024 000h + 00000cM2.01200024 000h 2619009-6 a20110718 20120423153520 @@ -299858,7 +299858,7 @@ - 00478cM2.01200024 000h + 00000cM2.01200024 000h 2619015-1 a20110718 20120423114427 @@ -299937,7 +299937,7 @@ - 00604cM2.01200024 000h + 00000cM2.01200024 000h 2619030-8 a20110718 20120419102856 @@ -300022,7 +300022,7 @@ - 00443cM2.01200024 000h + 00000cM2.01200024 000h 2619084-9 a20110718 20120420113804 @@ -300095,7 +300095,7 @@ - 00420cM2.01200024 000h + 00000cM2.01200024 000h 2619092-8 a20110718 20120420102010 @@ -300168,7 +300168,7 @@ - 00420cM2.01200024 000h + 00000cM2.01200024 000h 2619099-0 a20110718 20120420113757 @@ -300240,7 +300240,7 @@ - 00460cM2.01200024 000h + 00000cM2.01200024 000h 2619360-7 a20110719 20120420105114 @@ -300313,7 +300313,7 @@ - 00412cM2.01200024 000h + 00000cM2.01200024 000h 2619377-2 a20110719 20120420113051 @@ -300386,7 +300386,7 @@ - 00460cM2.01200024 000h + 00000cM2.01200024 000h 2619487-9 a20110720 20120420102000 @@ -300456,7 +300456,7 @@ - 00525cM2.01200024 000h + 00000cM2.01200024 000h 2619751-0 a20110721 20120419214107 @@ -300533,7 +300533,7 @@ - 00402cM2.01200024 000h + 00000cM2.01200024 000h 2619884-8 a20110722 20120420114306 @@ -300606,7 +300606,7 @@ - 00421cM2.01200024 000h + 00000cM2.01200024 000h 2620037-5 a20110722 20120420101129 @@ -300679,7 +300679,7 @@ - 00684cM2.01200024 000h + 00000cM2.01200024 000h 2620210-4 a20110725 20120423141241 @@ -300749,7 +300749,7 @@ - 00394cM2.01200024 000h + 00000cM2.01200024 000h 2620241-4 a20110726 20120420214148 @@ -300810,7 +300810,7 @@ - 00630cM2.01200024 000h + 00000cM2.01200024 000h 2620435-6 a20110726 20120419162814 @@ -300904,7 +300904,7 @@ - 00408cM2.01200024 000h + 00000cM2.01200024 000h 2621339-4 a20110802 20120420105102 @@ -300977,7 +300977,7 @@ - 00546cM2.01200024 000h + 00000cM2.01200024 000h 2621363-1 a20110802 20120419123104 @@ -301062,7 +301062,7 @@ - 00572cM2.01200024 000h + 00000cM2.01200024 000h 2621424-6 a20110802 20120420113041 @@ -301148,7 +301148,7 @@ - 00513cM2.01200024 000h + 00000cM2.01200024 000h 2621434-9 a20110802 20120420113034 @@ -301234,7 +301234,7 @@ - 00532cM2.01200024 000h + 00000cM2.01200024 000h 2621474-X a20110802 20120420113027 @@ -301318,7 +301318,7 @@ - 00468cM2.01200024 000h + 00000cM2.01200024 000h 2621528-7 a20110803 20120420113019 @@ -301394,7 +301394,7 @@ - 00516cM2.01200024 000h + 00000cM2.01200024 000h 2621550-0 a20110803 20120420113012 @@ -301473,7 +301473,7 @@ - 00370cM2.01200024 000h + 00000cM2.01200024 000h 2621592-5 a20110803 20120420101121 @@ -301543,7 +301543,7 @@ - 00544cM2.01200024 000h + 00000cM2.01200024 000h 2621702-8 a20110803 20120419135337 @@ -301617,7 +301617,7 @@ - 00401cM2.01200024 000h + 00000cM2.01200024 000h 2621707-7 a20110803 20120420113005 @@ -301687,7 +301687,7 @@ - 00379cM2.01200024 000h + 00000cM2.01200024 000h 2621728-4 a20110803 20120420112957 @@ -301757,7 +301757,7 @@ - 00529cM2.01200024 000h + 00000cM2.01200024 000h 2621738-7 a20110803 20120420105056 @@ -301836,7 +301836,7 @@ - 00481cM2.01200024 000h + 00000cM2.01200024 000h 2621808-2 a20110804 20120420112948 @@ -301914,7 +301914,7 @@ - 00382cM2.01200024 000h + 00000cM2.01200024 000h 2621811-2 a20110804 20120420112939 @@ -301984,7 +301984,7 @@ - 00600cM2.01200024 000h + 00000cM2.01200024 000h 2622099-4 a20110805 20120423202459 @@ -302066,7 +302066,7 @@ - 00800cM2.01200024 000h + 00000cM2.01200024 000h 2622155-X a20110805 20120423143939 @@ -302150,7 +302150,7 @@ - 00415cM2.01200024 000h + 00000cM2.01200024 000h 2622217-6 a20110808 20120420112930 @@ -302223,7 +302223,7 @@ - 00424cM2.01200024 000h + 00000cM2.01200024 000h 2622244-9 a20110808 20120420105048 @@ -302294,7 +302294,7 @@ - 00575cM2.01200024 000h + 00000cM2.01200024 000h 2622245-0 a20110808 20110909223037 @@ -302400,7 +302400,7 @@ - 00412cM2.01200024 000h + 00000cM2.01200024 000h 2622252-8 a20110808 20120420105041 @@ -302475,7 +302475,7 @@ - 00399cM2.01200024 000h + 00000cM2.01200024 000h 2622374-0 a20110809 20120420114159 @@ -302548,7 +302548,7 @@ - 00485cM2.01200024 000h + 00000cM2.01200024 000h 2622435-5 a20110809 20120420112923 @@ -302624,7 +302624,7 @@ - 00410cM2.01200024 000h + 00000cM2.01200024 000h 2622501-3 a20110809 20120420112914 @@ -302697,7 +302697,7 @@ - 00427cM2.01200024 000h + 00000cM2.01200024 000h 2622520-7 a20110809 20120420112907 @@ -302775,7 +302775,7 @@ - 00511cM2.01200024 000h + 00000cM2.01200024 000h 2622599-2 a20110809 20120423094729 @@ -302855,7 +302855,7 @@ - 00515uM2.01200024 000h + 00000uM2.01200024 000h 2622780-0 a20110810 20120420091957 @@ -302931,7 +302931,7 @@ - 00477cM2.01200024 000h + 00000cM2.01200024 000h 2622868-3 a20110810 20120420214148 @@ -303004,7 +303004,7 @@ - 00448cM2.01200024 000h + 00000cM2.01200024 000h 2622988-2 a20110811 20120420104804 @@ -303082,7 +303082,7 @@ - 00676cM2.01200024 000h + 00000cM2.01200024 000h 2623113-X a20110811 20120420091910 @@ -303177,7 +303177,7 @@ - 00459cM2.01200024 000h + 00000cM2.01200024 000h 2623115-3 a20110811 20120214144821 @@ -303244,7 +303244,7 @@ - 00470cM2.01200024 000h + 00000cM2.01200024 000h 2623229-7 a20110812 20120420104745 @@ -303320,7 +303320,7 @@ - 00501cM2.01200024 000h + 00000cM2.01200024 000h 2623282-0 a20110812 20120420104635 @@ -303404,7 +303404,7 @@ - 00396cM2.01200024 000h + 00000cM2.01200024 000h 2623290-X a20110812 20120420104621 @@ -303474,7 +303474,7 @@ - 00858cM2.01200024 000h + 00000cM2.01200024 000h 2623312-5 a20110812 20120423202501 @@ -303584,7 +303584,7 @@ - 00533cM2.01200024 000h + 00000cM2.01200024 000h 2623319-8 a20110812 20120420104613 @@ -303662,7 +303662,7 @@ - 00441cM2.01200024 000h + 00000cM2.01200024 000h 2623376-9 a20110812 20120420104605 @@ -303732,7 +303732,7 @@ - 00485cM2.01200024 000h + 00000cM2.01200024 000h 2623381-2 a20110812 20120423140026 @@ -303799,7 +303799,7 @@ - 00605cM2.01200024 000h + 00000cM2.01200024 000h 2623427-0 a20110815 20120420104556 @@ -303878,7 +303878,7 @@ - 00411cM2.01200024 000h + 00000cM2.01200024 000h 2623455-5 a20110815 20120420112857 @@ -303951,7 +303951,7 @@ - 00463cM2.01200024 000h + 00000cM2.01200024 000h 2623481-6 a20110815 20120420101952 @@ -304024,7 +304024,7 @@ - 00434cM2.01200024 000h + 00000cM2.01200024 000h 2623513-4 a20110815 20120420104549 @@ -304099,7 +304099,7 @@ - 00443cM2.01200024 000h + 00000cM2.01200024 000h 2623538-9 a20110815 20120420101909 @@ -304172,7 +304172,7 @@ - 00512cM2.01200024 000h + 00000cM2.01200024 000h 2623857-3 a20110817 20120420101901 @@ -304248,7 +304248,7 @@ - 01301cM2.01200024 000h + 00000cM2.01200024 000h 2623867-6 a20110817 20120328103854 @@ -304388,7 +304388,7 @@ - 00367cM2.01200024 000h + 00000cM2.01200024 000h 2624038-5 a20110818 20120420101853 @@ -304458,7 +304458,7 @@ - 00437cM2.01200024 000h + 00000cM2.01200024 000h 2624040-3 a20110818 20120420101845 @@ -304531,7 +304531,7 @@ - 00400cM2.01200024 000h + 00000cM2.01200024 000h 2624044-0 a20110818 20120420101835 @@ -304604,7 +304604,7 @@ - 00459cM2.01200024 000h + 00000cM2.01200024 000h 2624428-7 a20110822 20120420104540 @@ -304677,7 +304677,7 @@ - 00515cM2.01200024 000h + 00000cM2.01200024 000h 2624477-9 a20110822 20120419152201 @@ -304753,7 +304753,7 @@ - 00382cM2.01200024 000h + 00000cM2.01200024 000h 2624533-4 a20110822 20120420101110 @@ -304823,7 +304823,7 @@ - 00385cM2.01200024 000h + 00000cM2.01200024 000h 2624574-7 a20110823 20120420104532 @@ -304893,7 +304893,7 @@ - 00409cM2.01200024 000h + 00000cM2.01200024 000h 2624641-7 a20110823 20120420112348 @@ -304966,7 +304966,7 @@ - 00465cM2.01200024 000h + 00000cM2.01200024 000h 2624801-3 a20110823 20120421115751 @@ -305040,7 +305040,7 @@ - 00405cM2.01200024 000h + 00000cM2.01200024 000h 2624950-9 a20110824 20120420101102 @@ -305110,7 +305110,7 @@ - 00467cM2.01200024 000h + 00000cM2.01200024 000h 2625004-4 a20110824 20120420101051 @@ -305183,7 +305183,7 @@ - 00473cM2.01200024 000h + 00000cM2.01200024 000h 2625149-8 a20110825 20120420104525 @@ -305261,7 +305261,7 @@ - 00360cM2.01200024 000h + 00000cM2.01200024 000h 2625231-4 a20110825 20120420101826 @@ -305331,7 +305331,7 @@ - 00757cM2.01200024 000h + 00000cM2.01200024 000h 2625250-8 a20110825 20120208224201 @@ -305443,7 +305443,7 @@ - 00794cM2.01200024 000h + 00000cM2.01200024 000h 2625414-1 a20110826 20120419082431 @@ -305550,7 +305550,7 @@ - 00643cM2.01200024 000h + 00000cM2.01200024 000h 2625468-2 a20110826 20120419101515 @@ -305626,7 +305626,7 @@ - 00461cM2.01200024 000h + 00000cM2.01200024 000h 2625647-2 a20110829 20120421094900 @@ -305702,7 +305702,7 @@ - 01022cM2.01200024 000h + 00000cM2.01200024 000h 2625663-0 a20110829 20120410145600 @@ -305823,7 +305823,7 @@ - 00393cM2.01200024 000h + 00000cM2.01200024 000h 2625732-4 a20110830 20120420101817 @@ -305893,7 +305893,7 @@ - 00502cM2.01200024 000h + 00000cM2.01200024 000h 2625932-1 a20110831 20120420101035 @@ -305966,7 +305966,7 @@ - 00379cM2.01200024 000h + 00000cM2.01200024 000h 2625981-3 a20110831 20120420101809 @@ -306036,7 +306036,7 @@ - 00402cM2.01200024 000h + 00000cM2.01200024 000h 2625994-1 a20110831 20120420101759 @@ -306109,7 +306109,7 @@ - 01989cM2.01200024 000h + 00000cM2.01200024 000h 2626044-X a20110831 20120419161733 @@ -306285,7 +306285,7 @@ - 01777cM2.01200024 000h + 00000cM2.01200024 000h 2626045-1 a20110831 20120419161516 @@ -306457,7 +306457,7 @@ - 00906cM2.01200024 000h + 00000cM2.01200024 000h 2626377-4 a20110902 20120419101009 @@ -306573,7 +306573,7 @@ - 00386cM2.01200024 000h + 00000cM2.01200024 000h 2626510-2 a20110905 20120420101746 @@ -306646,7 +306646,7 @@ - 00558cM2.01200024 000h + 00000cM2.01200024 000h 2626586-2 a20110905 20120423105124 @@ -306722,7 +306722,7 @@ - 00476cM2.01200024 000h + 00000cM2.01200024 000h 2626614-3 a20110905 20120420104516 @@ -306797,7 +306797,7 @@ - 00371cM2.01200024 000h + 00000cM2.01200024 000h 2626977-6 a20110907 20120420104509 @@ -306867,7 +306867,7 @@ - 00475cM2.01200024 000h + 00000cM2.01200024 000h 2627026-2 a20110907 20120420112341 @@ -306944,7 +306944,7 @@ - 00445cM2.01200024 000h + 00000cM2.01200024 000h 2627224-6 a20110908 20120420104457 @@ -307017,7 +307017,7 @@ - 00731cM2.01200024 000h + 00000cM2.01200024 000h 2627245-3 a20110908 20120403100442 @@ -307134,7 +307134,7 @@ - 00425cM2.01200024 000h + 00000cM2.01200024 000h 2627476-0 a20110909 20120420101737 @@ -307207,7 +307207,7 @@ - 00376cM2.01200024 000h + 00000cM2.01200024 000h 2627483-8 a20110909 20120420103533 @@ -307277,7 +307277,7 @@ - 00417cM2.01200024 000h + 00000cM2.01200024 000h 2627570-3 a20110912 20120420101728 @@ -307350,7 +307350,7 @@ - 00390cM2.01200024 000h + 00000cM2.01200024 000h 2627585-5 a20110912 20120420103525 @@ -307420,7 +307420,7 @@ - 00522cM2.01200024 000h + 00000cM2.01200024 000h 2627763-3 a20110913 20120420103518 @@ -307493,7 +307493,7 @@ - 00443cM2.01200024 000h + 00000cM2.01200024 000h 2627813-3 a20110913 20120420101433 @@ -307564,7 +307564,7 @@ - 00506cM2.01200024 000h + 00000cM2.01200024 000h 2627822-4 a20110913 20120420112334 @@ -307644,7 +307644,7 @@ - 00546cM2.01200024 000h + 00000cM2.01200024 000h 2627869-8 a20110913 20120420214154 @@ -307717,7 +307717,7 @@ - 00751cM2.01200024 000h + 00000cM2.01200024 000h 2627963-0 a20110913 20120423084113 @@ -307813,7 +307813,7 @@ - 00584cM2.01200024 000h + 00000cM2.01200024 000h 2628014-0 a20110914 20120420114152 @@ -307891,7 +307891,7 @@ - 00400cM2.01200024 000h + 00000cM2.01200024 000h 2628386-4 a20110915 20120419162140 @@ -307955,7 +307955,7 @@ - 00647cM2.01200024 000h + 00000cM2.01200024 000h 2628504-6 a20110916 20120423201953 @@ -308058,7 +308058,7 @@ - 00471cM2.01200024 000h + 00000cM2.01200024 000h 2629128-9 a20110921 20120419102742 @@ -308129,7 +308129,7 @@ - 00785cM2.01200024 000h + 00000cM2.01200024 000h 2629551-9 a20110923 20120419223022 @@ -308229,7 +308229,7 @@ - 00854cM2.01200024 000h + 00000cM2.01200024 000h 2629554-4 a20110923 20120423132308 @@ -308329,7 +308329,7 @@ - 00763cM2.01200024 000h + 00000cM2.01200024 000h 2629627-5 a20110923 20120423201556 @@ -308444,7 +308444,7 @@ - 00863cM2.01200024 000h + 00000cM2.01200024 000h 2629628-7 a20110923 20120423083301 @@ -308550,7 +308550,7 @@ - 00878cM2.01200024 000h + 00000cM2.01200024 000h 2629629-9 a20110923 20120423201556 @@ -308669,7 +308669,7 @@ - 00999cM2.01200024 000h + 00000cM2.01200024 000h 2629789-9 a20110926 20120420114426 @@ -308764,7 +308764,7 @@ - 00511cM2.01200024 000h + 00000cM2.01200024 000h 2629889-2 a20110926 20120419162556 @@ -308834,7 +308834,7 @@ - 00415cM2.01200024 000h + 00000cM2.01200024 000h 2630434-X a20110928 20120420101421 @@ -308907,7 +308907,7 @@ - 00910cM2.01200024 000h + 00000cM2.01200024 000h 2631222-0 a20111006 20120423140510 @@ -309023,7 +309023,7 @@ - 01283cM2.01200024 000h + 00000cM2.01200024 000h 2631230-X a20111006 20120423142016 @@ -309157,7 +309157,7 @@ - 00981cM2.01200024 000h + 00000cM2.01200024 000h 2631232-3 a20111006 20120423140752 @@ -309276,7 +309276,7 @@ - 01014cM2.01200024 000h + 00000cM2.01200024 000h 2631241-4 a20111006 20120423141838 @@ -309407,7 +309407,7 @@ - 01121cM2.01200024 000h + 00000cM2.01200024 000h 2631244-X a20111006 20120423135551 @@ -309540,7 +309540,7 @@ - 01051cM2.01200024 000h + 00000cM2.01200024 000h 2631272-4 a20111006 20120423141649 @@ -309665,7 +309665,7 @@ - 00931cM2.01200024 000h + 00000cM2.01200024 000h 2631273-6 a20111006 20120423111005 @@ -309784,7 +309784,7 @@ - 00915cM2.01200024 000h + 00000cM2.01200024 000h 2631277-3 a20111006 20120423135725 @@ -309900,7 +309900,7 @@ - 01276cM2.01200024 000h + 00000cM2.01200024 000h 2631280-3 a20111006 20120420095009 @@ -310027,7 +310027,7 @@ - 00418cM2.01200024 000h + 00000cM2.01200024 000h 2631486-1 a20111007 20120420120551 @@ -310098,7 +310098,7 @@ - 01046cM2.01200024 000h + 00000cM2.01200024 000h 2631631-6 a20111010 20120419090551 @@ -310211,7 +310211,7 @@ - 01049cM2.01200024 000h + 00000cM2.01200024 000h 2631636-5 a20111010 20120419090501 @@ -310324,7 +310324,7 @@ - 00490cM2.01200024 000h + 00000cM2.01200024 000h 2631775-8 a20111011 20120420112327 @@ -310406,7 +310406,7 @@ - 00547cM2.01200024 000h + 00000cM2.01200024 000h 2631941-X a20111011 20120419140933 @@ -310479,7 +310479,7 @@ - 00480cM2.01200024 000h + 00000cM2.01200024 000h 2632055-1 a20111012 20120420112321 @@ -310561,7 +310561,7 @@ - 00479cM2.01200024 000h + 00000cM2.01200024 000h 2632135-X a20111012 20120420100005 @@ -310643,7 +310643,7 @@ - 00480cM2.01200024 000h + 00000cM2.01200024 000h 2632138-5 a20111012 20120420103510 @@ -310725,7 +310725,7 @@ - 00531cM2.01200024 000h + 00000cM2.01200024 000h 2632204-3 a20111012 20120420101413 @@ -310803,7 +310803,7 @@ - 00466cM2.01200024 000h + 00000cM2.01200024 000h 2632210-9 a20111012 20120420101401 @@ -310876,7 +310876,7 @@ - 00504cM2.01200024 000h + 00000cM2.01200024 000h 2632377-1 a20111013 20120420101339 @@ -310949,7 +310949,7 @@ - 00555cM2.01200024 000h + 00000cM2.01200024 000h 2632399-0 a20111013 20120420103458 @@ -311022,7 +311022,7 @@ - 00738cM2.01200024 000h + 00000cM2.01200024 000h 2632519-6 a20111014 20120420103452 @@ -311101,7 +311101,7 @@ - 00612cM2.01200024 000h + 00000cM2.01200024 000h 2632522-6 a20111014 20120419105012 @@ -311192,7 +311192,7 @@ - 00406cM2.01200024 000h + 00000cM2.01200024 000h 2632527-5 a20111014 20120420114146 @@ -311265,7 +311265,7 @@ - 00423cM2.01200024 000h + 00000cM2.01200024 000h 2632654-1 a20111014 20120420101328 @@ -311338,7 +311338,7 @@ - 00478cM2.01200024 000h + 00000cM2.01200024 000h 2632739-9 a20111017 20120420112314 @@ -311416,7 +311416,7 @@ - 00532cM2.01200024 000h + 00000cM2.01200024 000h 2632873-2 a20111018 20120420103444 @@ -311497,7 +311497,7 @@ - 00471cM2.01200024 000h + 00000cM2.01200024 000h 2632924-4 a20111018 20120420103436 @@ -311570,7 +311570,7 @@ - 00937cM2.01200024 000h + 00000cM2.01200024 000h 2632966-9 a20111018 20120224100959 @@ -311698,7 +311698,7 @@ - 00447cM2.01200024 000h + 00000cM2.01200024 000h 2633155-X a20111019 20120420112307 @@ -311771,7 +311771,7 @@ - 00420cM2.01200024 000h + 00000cM2.01200024 000h 2633174-3 a20111019 20111020223151 @@ -311850,7 +311850,7 @@ - 00661cM2.01200024 000h + 00000cM2.01200024 000h 2633182-2 a20111019 20120117214118 @@ -311938,7 +311938,7 @@ - 00548cM2.01200024 000h + 00000cM2.01200024 000h 2633239-5 a20111019 20120412133447 @@ -312015,7 +312015,7 @@ - 00402cM2.01200024 000h + 00000cM2.01200024 000h 2633245-0 a20111019 20120420103429 @@ -312088,7 +312088,7 @@ - 00448cM2.01200024 000h + 00000cM2.01200024 000h 2633265-6 a20111019 20120420112301 @@ -312161,7 +312161,7 @@ - 00729cM2.01200024 000h + 00000cM2.01200024 000h 2633303-X a20111019 20120420145423 @@ -312271,7 +312271,7 @@ - 00699cM2.01200024 000h + 00000cM2.01200024 000h 2633448-3 a20111020 20120420131135 @@ -312350,7 +312350,7 @@ - 00426cM2.01200024 000h + 00000cM2.01200024 000h 2633455-0 a20111020 20120420103423 @@ -312423,7 +312423,7 @@ - 00428cM2.01200024 000h + 00000cM2.01200024 000h 2633473-2 a20111020 20120420103416 @@ -312496,7 +312496,7 @@ - 00418cM2.01200024 000h + 00000cM2.01200024 000h 2633480-X a20111020 20120420103409 @@ -312569,7 +312569,7 @@ - 00405cM2.01200024 000h + 00000cM2.01200024 000h 2633518-9 a20111020 20120420103401 @@ -312642,7 +312642,7 @@ - 00575cM2.01200024 000h + 00000cM2.01200024 000h 2633561-X a20111020 20120420112250 @@ -312721,7 +312721,7 @@ - 00491cM2.01200024 000h + 00000cM2.01200024 000h 2633575-X a20111020 20120420112241 @@ -312799,7 +312799,7 @@ - 00572cM2.01200024 000h + 00000cM2.01200024 000h 2633593-1 a20111020 20120420112234 @@ -312886,7 +312886,7 @@ - 00619cM2.01200024 000h + 00000cM2.01200024 000h 2633753-8 a20111021 20120419114741 @@ -312977,7 +312977,7 @@ - 00404cM2.01200024 000h + 00000cM2.01200024 000h 2633789-7 a20111021 20120420112226 @@ -313050,7 +313050,7 @@ - 00474cM2.01200024 000h + 00000cM2.01200024 000h 2633988-2 a20111024 20120420103352 @@ -313136,7 +313136,7 @@ - 00484cM2.01200024 000h + 00000cM2.01200024 000h 2633990-0 a20111024 20120420101311 @@ -313220,7 +313220,7 @@ - 00408cM2.01200024 000h + 00000cM2.01200024 000h 2634011-2 a20111024 20120420103344 @@ -313293,7 +313293,7 @@ - 00514cM2.01200024 000h + 00000cM2.01200024 000h 2634053-7 a20111024 20120420214147 @@ -313369,7 +313369,7 @@ - 00933cM2.01200024 000h + 00000cM2.01200024 000h 2634082-3 a20111024 20120420101119 @@ -313484,7 +313484,7 @@ - 00502cM2.01200024 000h + 00000cM2.01200024 000h 2634141-4 a20111025 20120420112214 @@ -313563,7 +313563,7 @@ - 00460cM2.01200024 000h + 00000cM2.01200024 000h 2634166-9 a20111025 20120420103334 @@ -313636,7 +313636,7 @@ - 00703cM2.01200024 000h + 00000cM2.01200024 000h 2634321-6 a20111025 20120423202437 @@ -313721,7 +313721,7 @@ - 00433cM2.01200024 000h + 00000cM2.01200024 000h 2634374-5 a20111026 20120420101234 @@ -313794,7 +313794,7 @@ - 00594cM2.01200024 000h + 00000cM2.01200024 000h 2634425-7 a20111026 20120420114139 @@ -313875,7 +313875,7 @@ - 00455cM2.01200024 000h + 00000cM2.01200024 000h 2634525-0 a20111026 20120420112207 @@ -313948,7 +313948,7 @@ - 00390cM2.01200024 000h + 00000cM2.01200024 000h 2634538-9 a20111026 20120420112200 @@ -314021,7 +314021,7 @@ - 00416cM2.01200024 000h + 00000cM2.01200024 000h 2634583-3 a20111027 20120420103322 @@ -314094,7 +314094,7 @@ - 00390cM2.01200024 000h + 00000cM2.01200024 000h 2634655-2 a20111027 20120420112154 @@ -314167,7 +314167,7 @@ - 00465cM2.01200024 000h + 00000cM2.01200024 000h 2635415-9 a20111102 20120420103315 @@ -314248,7 +314248,7 @@ - 00499cM2.01200024 000h + 00000cM2.01200024 000h 2635848-7 a20111103 20120419123340 @@ -314325,7 +314325,7 @@ - 00449cM2.01200024 000h + 00000cM2.01200024 000h 2635915-7 a20111104 20120420112146 @@ -314407,7 +314407,7 @@ - 00449cM2.01200024 000h + 00000cM2.01200024 000h 2635973-X a20111104 20120420114132 @@ -314489,7 +314489,7 @@ - 00791cM2.01200024 000h + 00000cM2.01200024 000h 2635994-7 a20111104 20111212233112 @@ -314616,7 +314616,7 @@ - 00701cM2.01200024 000h + 00000cM2.01200024 000h 2636288-0 a20111107 20120419161357 @@ -314695,7 +314695,7 @@ - 00853cM2.01200024 000h + 00000cM2.01200024 000h 2636572-8 a20111109 20120420120927 @@ -314789,7 +314789,7 @@ - 00525cM2.01200024 000h + 00000cM2.01200024 000h 2636864-X a20111110 20120117214054 @@ -314865,7 +314865,7 @@ - 01163cM2.01200024 000h + 00000cM2.01200024 000h 2636873-0 a20111110 20120419154954 @@ -314972,7 +314972,7 @@ - 00625cM2.01200024 000h + 00000cM2.01200024 000h 2636878-X a20111110 20120320165404 @@ -315057,7 +315057,7 @@ - 00727cM2.01200024 000h + 00000cM2.01200024 000h 2637039-6 a20111111 20120423202501 @@ -315154,7 +315154,7 @@ - 00641cM2.01200024 000h + 00000cM2.01200024 000h 2637057-8 a20111111 20120419160220 @@ -315255,7 +315255,7 @@ - 00487cM2.01200024 000h + 00000cM2.01200024 000h 2637058-X a20111111 20120420080744 @@ -315328,7 +315328,7 @@ - 00438cM2.01200024 000h + 00000cM2.01200024 000h 2637109-1 a20111111 20120420112134 @@ -315403,7 +315403,7 @@ - 00518cM2.01200024 000h + 00000cM2.01200024 000h 2637317-8 a20111114 20120419214059 @@ -315479,7 +315479,7 @@ - 00611cM2.01200024 000h + 00000cM2.01200024 000h 2637386-5 a20111115 20111208223100 @@ -315577,7 +315577,7 @@ - 00645cM2.01200024 000h + 00000cM2.01200024 000h 2638004-3 a20111117 20120420121849 @@ -315652,7 +315652,7 @@ - 00609cM2.01200024 000h + 00000cM2.01200024 000h 2638424-3 a20111122 20120419115524 @@ -315738,7 +315738,7 @@ - 00800cM2.01200024 000h + 00000cM2.01200024 000h 2638511-9 a20111122 20120405150107 @@ -315835,7 +315835,7 @@ - 01080cM2.01200024 000h + 00000cM2.01200024 000h 2639175-2 a20111124 20120423112836 @@ -315931,7 +315931,7 @@ - 00888cM2.01200024 000h + 00000cM2.01200024 000h 2639177-6 a20111124 20120423112609 @@ -316001,7 +316001,7 @@ - 00588cM2.01200024 000h + 00000cM2.01200024 000h 2639231-8 a20111125 20120423142759 @@ -316089,7 +316089,7 @@ - 00450cM2.01200024 000h + 00000cM2.01200024 000h 2639375-X a20111128 20120423134020 @@ -316166,7 +316166,7 @@ - 01067cM2.01200024 000h + 00000cM2.01200024 000h 2639408-X a20111128 20120423103027 @@ -316290,7 +316290,7 @@ - 00397cM2.01200024 000h + 00000cM2.01200024 000h 2639575-7 a20111129 20120420103308 @@ -316363,7 +316363,7 @@ - 00602cM2.01200024 000h + 00000cM2.01200024 000h 2640522-2 a20111205 20120420140647 @@ -316448,7 +316448,7 @@ - 00526cM2.01200024 000h + 00000cM2.01200024 000h 2640550-7 a20111205 20120423140904 @@ -316518,7 +316518,7 @@ - 00624cM2.01200024 000h + 00000cM2.01200024 000h 2640845-4 a20111206 20120419214056 @@ -316609,7 +316609,7 @@ - 01074cM2.01200024 000h + 00000cM2.01200024 000h 2640972-0 a20111206 20120420110318 @@ -316734,7 +316734,7 @@ - 00474cM2.01200024 000h + 00000cM2.01200024 000h 2641166-0 a20111207 20120419141421 @@ -316805,7 +316805,7 @@ - 00774cM2.01200024 000h + 00000cM2.01200024 000h 2641255-X a20111207 20120410073406 @@ -316878,7 +316878,7 @@ - 00973cM2.01200024 000h + 00000cM2.01200024 000h 2641502-1 a20111208 20120423125144 @@ -317001,7 +317001,7 @@ - 00720cM2.01200024 000h + 00000cM2.01200024 000h 2641860-5 a20111212 20120307142810 @@ -317098,7 +317098,7 @@ - 00635cM2.01200024 000h + 00000cM2.01200024 000h 2641913-0 a20111212 20120423080632 @@ -317200,7 +317200,7 @@ - 00822cM2.01200024 000h + 00000cM2.01200024 000h 2641954-3 a20111212 20120419223032 @@ -317303,7 +317303,7 @@ - 00877cM2.01200024 000h + 00000cM2.01200024 000h 2641968-3 a20111213 20120419145918 @@ -317427,7 +317427,7 @@ - 00536cM2.01200024 000h + 00000cM2.01200024 000h 2642053-3 a20111213 20120420094152 @@ -317513,7 +317513,7 @@ - 00901cM2.01200024 000h + 00000cM2.01200024 000h 2642160-4 a20111213 20120423111215 @@ -317610,7 +317610,7 @@ - 00572cM2.01200024 000h + 00000cM2.01200024 000h 2642351-0 a20111214 20120419123329 @@ -317707,7 +317707,7 @@ - 00817cM2.01200024 000h + 00000cM2.01200024 000h 2642390-X a20111214 20120419122451 @@ -317826,7 +317826,7 @@ - 00570uM2.01200024 000h + 00000uM2.01200024 000h 2642421-6 a20111214 20120420154405 @@ -317922,7 +317922,7 @@ - 00697cM2.01200024 000h + 00000cM2.01200024 000h 2642446-0 a20111214 20120420100450 @@ -318010,7 +318010,7 @@ - 00648cM2.01200024 000h + 00000cM2.01200024 000h 2642481-2 a20111214 20120420125306 @@ -318099,7 +318099,7 @@ - 00934cM2.01200024 000h + 00000cM2.01200024 000h 2642872-6 a20111216 20120420143911 @@ -318193,7 +318193,7 @@ - 00896cM2.01200024 000h + 00000cM2.01200024 000h 2642915-9 a20111216 20120420143946 @@ -318278,7 +318278,7 @@ - 00635cM2.01200024 000h + 00000cM2.01200024 000h 2642929-9 a20111216 20120423130308 @@ -318380,7 +318380,7 @@ - 00363cM2.01200024 000h + 00000cM2.01200024 000h 2643055-1 a20111219 20120126214932 @@ -318444,7 +318444,7 @@ - 01003cM2.01200024 000h + 00000cM2.01200024 000h 2643667-X a20111222 20120419223034 @@ -318561,7 +318561,7 @@ - 00508cM2.01200024 000h + 00000cM2.01200024 000h 2643788-0 a20111223 20120420135448 @@ -318640,7 +318640,7 @@ - 00851cM2.01200024 000h + 00000cM2.01200024 000h 2643882-3 a20111227 20120423124223 @@ -318734,7 +318734,7 @@ - 00522cM2.01200024 000h + 00000cM2.01200024 000h 2643920-7 a20111228 20120213210522 @@ -318811,7 +318811,7 @@ - 00735cM2.01200024 000h + 00000cM2.01200024 000h 2643933-5 a20111228 20120420151255 @@ -318908,7 +318908,7 @@ - 00462cM2.01200024 000h + 00000cM2.01200024 000h 2644001-5 a20111229 20120420104621 @@ -318978,7 +318978,7 @@ - 00872cM2.01200024 000h + 00000cM2.01200024 000h 2644110-X a20120102 20120308223107 @@ -319080,7 +319080,7 @@ - 01471cM2.01200024 000h + 00000cM2.01200024 000h 2644194-9 a20120103 20120214223226 @@ -319224,7 +319224,7 @@ - 01162cM2.01200024 000h + 00000cM2.01200024 000h 2644195-0 a20120103 20120209101429 @@ -319359,7 +319359,7 @@ - 00768cM2.01200024 000h + 00000cM2.01200024 000h 2644280-2 a20120104 20120309101736 @@ -319451,7 +319451,7 @@ - 00744cM2.01200024 000h + 00000cM2.01200024 000h 2644396-X a20120104 20120313224947 @@ -319561,7 +319561,7 @@ - 00653cM2.01200024 000h + 00000cM2.01200024 000h 2644402-1 a20120104 20120307154849 @@ -319673,7 +319673,7 @@ - 00378cM2.01200024 000h + 00000cM2.01200024 000h 2644423-9 a20120104 20120104170444 @@ -319737,7 +319737,7 @@ - 01069cM2.01200024 000h + 00000cM2.01200024 000h 2644448-3 a20120105 20120420093856 @@ -319850,7 +319850,7 @@ - 00634cM2.01200024 000h + 00000cM2.01200024 000h 2644461-6 a20120105 20120420073548 @@ -319948,7 +319948,7 @@ - 00749cM2.01200024 000h + 00000cM2.01200024 000h 2644537-2 a20120105 20120419112335 @@ -320061,7 +320061,7 @@ - 00946cM2.01200024 000h + 00000cM2.01200024 000h 2644540-2 a20120105 20120419113053 @@ -320183,7 +320183,7 @@ - 00763cM2.01200024 000h + 00000cM2.01200024 000h 2644544-X a20120105 20120419111858 @@ -320296,7 +320296,7 @@ - 00408cM2.01200024 000h + 00000cM2.01200024 000h 2644716-2 a20120106 20120221075426 @@ -320364,7 +320364,7 @@ - 01025cM2.01200024 000h + 00000cM2.01200024 000h 2645047-1 a20120110 20120423113120 @@ -320448,7 +320448,7 @@ - 00420cM2.01200024 000h + 00000cM2.01200024 000h 2645058-6 a20120110 20120420112126 @@ -320521,7 +320521,7 @@ - 00674cM2.01200024 000h + 00000cM2.01200024 000h 2645521-3 a20120112 20120419163502 @@ -320612,7 +320612,7 @@ - 00446cM2.01200024 000h + 00000cM2.01200024 000h 2645522-5 a20120112 20120420103302 @@ -320685,7 +320685,7 @@ - 00725cM2.01200024 000h + 00000cM2.01200024 000h 2645931-0 a20120113 20120420113725 @@ -320780,7 +320780,7 @@ - 00700cM2.01200024 000h + 00000cM2.01200024 000h 2646133-X a20120116 20120423193631 @@ -320860,7 +320860,7 @@ - 00803cM2.01200024 000h + 00000cM2.01200024 000h 2646142-0 a20120116 20120423091942 @@ -320975,7 +320975,7 @@ - 00418cM2.01200024 000h + 00000cM2.01200024 000h 2646163-8 a20120116 20120420112117 @@ -321048,7 +321048,7 @@ - 01028cM2.01200024 000h + 00000cM2.01200024 000h 2646314-3 a20120117 20120423170511 @@ -321162,7 +321162,7 @@ - 00916cM2.01200024 000h + 00000cM2.01200024 000h 2646332-5 a20120117 20120420103936 @@ -321282,7 +321282,7 @@ - 00396cM2.01200024 000h + 00000cM2.01200024 000h 2646381-7 a20120117 20120420114319 @@ -321355,7 +321355,7 @@ - 00839cM2.01200024 000h + 00000cM2.01200024 000h 2646548-6 a20120117 20120420112434 @@ -321464,7 +321464,7 @@ - 00415cM2.01200024 000h + 00000cM2.01200024 000h 2646604-1 a20120118 20120420112106 @@ -321537,7 +321537,7 @@ - 00382cM2.01200024 000h + 00000cM2.01200024 000h 2646788-4 a20120118 20120420214201 @@ -321602,7 +321602,7 @@ - 00929cM2.01200024 000h + 00000cM2.01200024 000h 2647131-0 a20120119 20120420101720 @@ -321721,7 +321721,7 @@ - 00602cM2.01200024 000h + 00000cM2.01200024 000h 2647272-7 a20120120 20120420144356 @@ -321815,7 +321815,7 @@ - 00804cM2.01200024 000h + 00000cM2.01200024 000h 2647349-5 a20120120 20120313081317 @@ -321933,7 +321933,7 @@ - 00444cM2.01200024 000h + 00000cM2.01200024 000h 2647459-1 a20120123 20120420103255 @@ -322009,7 +322009,7 @@ - 01123cM2.01200024 000h + 00000cM2.01200024 000h 2647559-5 a20120123 20120420123604 @@ -322164,7 +322164,7 @@ - 01008cM2.01200024 000h + 00000cM2.01200024 000h 2647626-5 a20120123 20120420131822 @@ -322267,7 +322267,7 @@ - 00519cM2.01200024 000h + 00000cM2.01200024 000h 2647688-5 a20120123 20120229223120 @@ -322362,7 +322362,7 @@ - 01358cM2.01200024 000h + 00000cM2.01200024 000h 2647700-2 a20120123 20120309104353 @@ -322506,7 +322506,7 @@ - 00437cM2.01200024 000h + 00000cM2.01200024 000h 2647922-9 a20120124 20120420114127 @@ -322579,7 +322579,7 @@ - 00516cM2.01200024 000h + 00000cM2.01200024 000h 2648055-4 a20120125 20120423155835 @@ -322662,7 +322662,7 @@ - 00654cM2.01200024 000h + 00000cM2.01200024 000h 2648062-1 a20120125 20120125100157 @@ -322750,7 +322750,7 @@ - 00413cM2.01200024 000h + 00000cM2.01200024 000h 2648078-5 a20120125 20120420114259 @@ -322823,7 +322823,7 @@ - 00918cM2.01200024 000h + 00000cM2.01200024 000h 2648089-X a20120125 20120327223229 @@ -322954,7 +322954,7 @@ - 00949cM2.01200024 000h + 00000cM2.01200024 000h 2648151-0 a20120125 20120330133329 @@ -323066,7 +323066,7 @@ - 00413cM2.01200024 000h + 00000cM2.01200024 000h 2648154-6 a20120125 20120420114312 @@ -323139,7 +323139,7 @@ - 00690cM2.01200024 000h + 00000cM2.01200024 000h 2648185-6 a20120125 20120423131517 @@ -323244,7 +323244,7 @@ - 00478cM2.01200024 000h + 00000cM2.01200024 000h 2648316-6 a20120126 20120420112100 @@ -323317,7 +323317,7 @@ - 00412cM2.01200024 000h + 00000cM2.01200024 000h 2648355-5 a20120126 20120420103248 @@ -323390,7 +323390,7 @@ - 00433cM2.01200024 000h + 00000cM2.01200024 000h 2648399-3 a20120126 20120420103242 @@ -323470,7 +323470,7 @@ - 00544cM2.01200024 000h + 00000cM2.01200024 000h 2648445-6 a20120126 20120420112310 @@ -323552,7 +323552,7 @@ - 00433cM2.01200024 000h + 00000cM2.01200024 000h 2648447-X a20120126 20120420103235 @@ -323619,7 +323619,7 @@ - 00504cM2.01200024 000h + 00000cM2.01200024 000h 2648470-5 a20120126 20120423202454 @@ -323695,7 +323695,7 @@ - 00388cM2.01200024 000h + 00000cM2.01200024 000h 2648576-X a20120127 20120420103228 @@ -323768,7 +323768,7 @@ - 00949cM2.01200024 000h + 00000cM2.01200024 000h 2648611-8 a20120127 20120423152645 @@ -323885,7 +323885,7 @@ - 00850cM2.01200024 000h + 00000cM2.01200024 000h 2648820-6 a20120130 20120423102358 @@ -323987,7 +323987,7 @@ - 00982cM2.01200024 000h + 00000cM2.01200024 000h 2649068-7 a20120131 20120423202502 @@ -324069,7 +324069,7 @@ - 00332cM2.01200024 000h + 00000cM2.01200024 000h 2649184-9 a20120201 20120419083648 @@ -324124,7 +324124,7 @@ - 00419cM2.01200024 000h + 00000cM2.01200024 000h 2649260-X a20120201 20120420103222 @@ -324197,7 +324197,7 @@ - 00824cM2.01200024 000h + 00000cM2.01200024 000h 2649268-4 a20120201 20120214214357 @@ -324291,7 +324291,7 @@ - 00611cM2.01200024 000h + 00000cM2.01200024 000h 2649284-2 a20120201 20120215223143 @@ -324388,7 +324388,7 @@ - 00418cM2.01200024 000h + 00000cM2.01200024 000h 2649313-5 a20120202 20120420103104 @@ -324461,7 +324461,7 @@ - 00431cM2.01200024 000h + 00000cM2.01200024 000h 2649325-1 a20120202 20120420103056 @@ -324534,7 +324534,7 @@ - 00897cM2.01200024 000h + 00000cM2.01200024 000h 2649372-X a20120202 20120420083308 @@ -324644,7 +324644,7 @@ - 00597cM2.01200024 000h + 00000cM2.01200024 000h 2649490-5 a20120202 20120419103007 @@ -324725,7 +324725,7 @@ - 00667cM2.01200024 000h + 00000cM2.01200024 000h 2649611-2 a20120203 20120420122804 @@ -324811,7 +324811,7 @@ - 01703cM2.01200024 000h + 00000cM2.01200024 000h 2649989-7 a20120207 20120419161718 @@ -324981,7 +324981,7 @@ - 01551cM2.01200024 000h + 00000cM2.01200024 000h 2649993-9 a20120207 20120419161501 @@ -325138,7 +325138,7 @@ - 00656cM2.01200024 000h + 00000cM2.01200024 000h 2650081-4 a20120207 20120423082735 @@ -325219,7 +325219,7 @@ - 00817cM2.01200024 000h + 00000cM2.01200024 000h 2650117-X a20120207 20120420213702 @@ -325317,7 +325317,7 @@ - 00941cM2.01200024 000h + 00000cM2.01200024 000h 2650119-3 a20120207 20120420213700 @@ -325418,7 +325418,7 @@ - 00455cM2.01200024 000h + 00000cM2.01200024 000h 2650175-2 a20120208 20120420114120 @@ -325497,7 +325497,7 @@ - 00403cM2.01200024 000h + 00000cM2.01200024 000h 2650296-3 a20120208 20120420103048 @@ -325570,7 +325570,7 @@ - 00354cM2.01200024 000h + 00000cM2.01200024 000h 2650431-5 a20120209 20120420214206 @@ -325631,7 +325631,7 @@ - 00578cM2.01200024 000h + 00000cM2.01200024 000h 2650611-7 a20120210 20120423122240 @@ -325716,7 +325716,7 @@ - 00480cM2.01200024 000h + 00000cM2.01200024 000h 2650638-5 a20120210 20120420223111 @@ -325799,7 +325799,7 @@ - 01042cM2.01200024 000h + 00000cM2.01200024 000h 2650748-1 a20120214 20120312211459 @@ -325893,7 +325893,7 @@ - 00803cM2.01200024 000h + 00000cM2.01200024 000h 2650772-9 a20120214 20120305204612 @@ -326004,7 +326004,7 @@ - 00524cM2.01200024 000h + 00000cM2.01200024 000h 2650868-0 a20120214 20120419082128 @@ -326083,7 +326083,7 @@ - 00451cM2.01200024 000h + 00000cM2.01200024 000h 2650881-3 a20120214 20120423201855 @@ -326151,7 +326151,7 @@ - 00730cM2.01200024 000h + 00000cM2.01200024 000h 2651046-7 a20120215 20120420120223 @@ -326259,7 +326259,7 @@ - 00656cM2.01200024 000h + 00000cM2.01200024 000h 2651093-5 a20120215 20120423112919 @@ -326357,7 +326357,7 @@ - 00845cM2.01200024 000h + 00000cM2.01200024 000h 2651209-9 a20120216 20120419142426 @@ -326462,7 +326462,7 @@ - 01291cM2.01200024 000h + 00000cM2.01200024 000h 2651295-6 a20120216 20120423084736 @@ -326587,7 +326587,7 @@ - 01129cM2.01200024 000h + 00000cM2.01200024 000h 2651296-8 a20120216 20120216111736 @@ -326690,7 +326690,7 @@ - 00501cM2.01200024 000h + 00000cM2.01200024 000h 2651329-8 a20120216 20120420120000 @@ -326769,7 +326769,7 @@ - 00760cM2.01200024 000h + 00000cM2.01200024 000h 2651380-8 a20120216 20120420223113 @@ -326869,7 +326869,7 @@ - 00990cM2.01200024 000h + 00000cM2.01200024 000h 2651423-0 a20120216 20120423091250 @@ -326994,7 +326994,7 @@ - 01092cM2.01200024 000h + 00000cM2.01200024 000h 2651663-9 a20120220 20120419101651 @@ -327100,7 +327100,7 @@ - 00527cM2.01200024 000h + 00000cM2.01200024 000h 2651679-2 a20120220 20120420213659 @@ -327183,7 +327183,7 @@ - 00365cM2.01200024 000h + 00000cM2.01200024 000h 2651703-6 a20120220 20120419122738 @@ -327248,7 +327248,7 @@ - 00440cM2.01200024 000h + 00000cM2.01200024 000h 2651760-7 a20120220 20120302213955 @@ -327324,7 +327324,7 @@ - 01918cM2.01200024 000h + 00000cM2.01200024 000h 2651918-5 a20120221 20120404223114 @@ -327486,7 +327486,7 @@ - 01874cM2.01200024 000h + 00000cM2.01200024 000h 2651920-3 a20120221 20120419130456 @@ -327645,7 +327645,7 @@ - 00368cM2.01200024 000h + 00000cM2.01200024 000h 2652303-6 a20120223 20120423103325 @@ -327703,7 +327703,7 @@ - 00869cM2.01200024 000h + 00000cM2.01200024 000h 2652337-1 a20120223 20120423094809 @@ -327815,7 +327815,7 @@ - 00426cM2.01200024 000h + 00000cM2.01200024 000h 2652414-4 a20120224 20120419111026 @@ -327873,7 +327873,7 @@ - 00738cM2.01200024 000h + 00000cM2.01200024 000h 2652436-3 a20120224 20120224101003 @@ -327970,7 +327970,7 @@ - 00310cM2.01200024 000h + 00000cM2.01200024 000h 2652483-1 a20120224 20120420100021 @@ -328019,7 +328019,7 @@ - 00690cM2.01200024 000h + 00000cM2.01200024 000h 2652679-7 a20120227 20120420113028 @@ -328123,7 +328123,7 @@ - 00890cM2.01200024 000h + 00000cM2.01200024 000h 2652689-X a20120227 20120423200908 @@ -328214,7 +328214,7 @@ - 00603cM2.01200024 000h + 00000cM2.01200024 000h 2652752-2 a20120227 20120423103346 @@ -328297,7 +328297,7 @@ - 00965cM2.01200024 000h + 00000cM2.01200024 000h 2652781-9 a20120227 20120307124921 @@ -328393,7 +328393,7 @@ - 00437cM2.01200024 000h + 00000cM2.01200024 000h 2652787-X a20120227 20120404111109 @@ -328464,7 +328464,7 @@ - 00447cM2.01200024 000h + 00000cM2.01200024 000h 2652882-4 a20120228 20120306223206 @@ -328540,7 +328540,7 @@ - 00643cM2.01200024 000h + 00000cM2.01200024 000h 2652945-2 a20120228 20120423181540 @@ -328638,7 +328638,7 @@ - 00603cM2.01200024 000h + 00000cM2.01200024 000h 2653029-6 a20120228 20120420113019 @@ -328736,7 +328736,7 @@ - 00668cM2.01200024 000h + 00000cM2.01200024 000h 2653090-9 a20120229 20120419223045 @@ -328840,7 +328840,7 @@ - 00454cM2.01200024 000h + 00000cM2.01200024 000h 2653103-3 a20120229 20120419213347 @@ -328916,7 +328916,7 @@ - 00832cM2.01200024 000h + 00000cM2.01200024 000h 2653145-8 a20120229 20120423154435 @@ -329030,7 +329030,7 @@ - 01256cM2.01200024 000h + 00000cM2.01200024 000h 2653147-1 a20120229 20120420144320 @@ -329154,7 +329154,7 @@ - 00815cM2.01200024 000h + 00000cM2.01200024 000h 2653156-2 a20120229 20120420223116 @@ -329269,7 +329269,7 @@ - 00694cM2.01200024 000h + 00000cM2.01200024 000h 2653171-9 a20120229 20120326164946 @@ -329366,7 +329366,7 @@ - 00660cM2.01200024 000h + 00000cM2.01200024 000h 2653246-3 a20120229 20120420103927 @@ -329433,7 +329433,7 @@ - 01366cM2.01200024 000h + 00000cM2.01200024 000h 2653337-6 a20120301 20120419101745 @@ -329557,7 +329557,7 @@ - 01073cM2.01200024 000h + 00000cM2.01200024 000h 2653367-4 a20120301 20120419101541 @@ -329671,7 +329671,7 @@ - 01076cM2.01200024 000h + 00000cM2.01200024 000h 2659538-2 a20120301 20120423125646 @@ -329783,7 +329783,7 @@ - 00875cM2.01200024 000h + 00000cM2.01200024 000h 2653414-9 a20120301 20120403223156 @@ -329903,7 +329903,7 @@ - 01345cM2.01200024 000h + 00000cM2.01200024 000h 2653434-4 a20120301 20120419144513 @@ -330035,7 +330035,7 @@ - 01271cM2.01200024 000h + 00000cM2.01200024 000h 2653480-0 a20120301 20120420110826 @@ -330159,7 +330159,7 @@ - 00837cM2.01200024 000h + 00000cM2.01200024 000h 2653544-0 a20120302 20120320134558 @@ -330250,7 +330250,7 @@ - 00506cM2.01200024 000h + 00000cM2.01200024 000h 2653719-9 a20120305 20120420213544 @@ -330335,7 +330335,7 @@ - 00635cM2.01200024 000h + 00000cM2.01200024 000h 2653780-1 a20120305 20120319233104 @@ -330428,7 +330428,7 @@ - 00593cM2.01200024 000h + 00000cM2.01200024 000h 2653826-X a20120305 20120419213552 @@ -330519,7 +330519,7 @@ - 00625cM2.01200024 000h + 00000cM2.01200024 000h 2653928-7 a20120306 20120423202443 @@ -330598,7 +330598,7 @@ - 00924cM2.01200024 000h + 00000cM2.01200024 000h 2653935-4 a20120306 20120423084453 @@ -330715,7 +330715,7 @@ - 01065cM2.01200024 000h + 00000cM2.01200024 000h 2654042-3 a20120307 20120420105148 @@ -330847,7 +330847,7 @@ - 00502uM2.01200024 000h + 00000uM2.01200024 000h 2654163-4 a20120307 20120420154718 @@ -330932,7 +330932,7 @@ - 00789cM2.01200024 000h + 00000cM2.01200024 000h 2654269-9 a20120308 20120419101449 @@ -331025,7 +331025,7 @@ - 00744cM2.01200024 000h + 00000cM2.01200024 000h 2654479-9 a20120309 20120411213642 @@ -331122,7 +331122,7 @@ - 00713cM2.01200024 000h + 00000cM2.01200024 000h 2654487-8 a20120309 20120420223121 @@ -331223,7 +331223,7 @@ - 00982cM2.01200024 000h + 00000cM2.01200024 000h 2654570-6 a20120312 20120402132614 @@ -331348,7 +331348,7 @@ - 00626cM2.01200024 000h + 00000cM2.01200024 000h 2654596-2 a20120312 20120423142146 @@ -331445,7 +331445,7 @@ - 00679cM2.01200024 000h + 00000cM2.01200024 000h 2654597-4 a20120312 20120423140817 @@ -331545,7 +331545,7 @@ - 00445cM2.01200024 000h + 00000cM2.01200024 000h 2654657-7 a20120312 20120420223121 @@ -331627,7 +331627,7 @@ - 01926cM2.01200024 000h + 00000cM2.01200024 000h 2654676-0 a20120312 20120420144224 @@ -331788,7 +331788,7 @@ - 00949cM2.01200024 000h + 00000cM2.01200024 000h 2654704-1 a20120312 20120423120325 @@ -331895,7 +331895,7 @@ - 00718cM2.01200024 000h + 00000cM2.01200024 000h 2654733-8 a20120312 20120423134424 @@ -331989,7 +331989,7 @@ - 00520cM2.01200024 000h + 00000cM2.01200024 000h 2654814-8 a20120312 20120423121615 @@ -332062,7 +332062,7 @@ - 00753cM2.01200024 000h + 00000cM2.01200024 000h 2654839-2 a20120313 20120327214823 @@ -332164,7 +332164,7 @@ - 00603cM2.01200024 000h + 00000cM2.01200024 000h 2654846-X a20120313 20120420115548 @@ -332249,7 +332249,7 @@ - 00674cM2.01200024 000h + 00000cM2.01200024 000h 2654880-X a20120313 20120419123536 @@ -332353,7 +332353,7 @@ - 00644cM2.01200024 000h + 00000cM2.01200024 000h 2654928-1 a20120313 20120419110411 @@ -332432,7 +332432,7 @@ - 01555cM2.01200024 000h + 00000cM2.01200024 000h 2654946-3 a20120313 20120419174831 @@ -332592,7 +332592,7 @@ - 02004cM2.01200024 000h + 00000cM2.01200024 000h 2654962-1 a20120313 20120419161704 @@ -332771,7 +332771,7 @@ - 01854cM2.01200024 000h + 00000cM2.01200024 000h 2654966-9 a20120313 20120419161441 @@ -332937,7 +332937,7 @@ - 00784cM2.01200024 000h + 00000cM2.01200024 000h 2654967-0 a20120313 20120420223124 @@ -333048,7 +333048,7 @@ - 00642cM2.01200024 000h + 00000cM2.01200024 000h 2655031-3 a20120313 20120420085243 @@ -333134,7 +333134,7 @@ - 01063cM2.01200024 000h + 00000cM2.01200024 000h 2655114-7 a20120314 20120423145737 @@ -333234,7 +333234,7 @@ - 00512cM2.01200024 000h + 00000cM2.01200024 000h 2655416-1 a20120315 20120423091906 @@ -333323,7 +333323,7 @@ - 00738cM2.01200024 000h + 00000cM2.01200024 000h 2655582-7 a20120316 20120327134417 @@ -333405,7 +333405,7 @@ - 01020cM2.01200024 000h + 00000cM2.01200024 000h 2655611-X a20120316 20120423083400 @@ -333543,7 +333543,7 @@ - 00320cM2.01200024 000h + 00000cM2.01200024 000h 2655615-7 a20120316 20120420083310 @@ -333595,7 +333595,7 @@ - 00616cM2.01200024 000h + 00000cM2.01200024 000h 2655666-2 a20120316 20120423082359 @@ -333690,7 +333690,7 @@ - 00419cM2.01200024 000h + 00000cM2.01200024 000h 2655742-3 a20120319 20120419131243 @@ -333754,7 +333754,7 @@ - 00472cM2.01200024 000h + 00000cM2.01200024 000h 2655747-2 a20120319 20120419135949 @@ -333830,7 +333830,7 @@ - 01045cM2.01200024 000h + 00000cM2.01200024 000h 2655890-7 a20120319 20120423131933 @@ -333971,7 +333971,7 @@ - 00425cM2.01200024 000h + 00000cM2.01200024 000h 2655936-5 a20120319 20120420110405 @@ -334035,7 +334035,7 @@ - 00478cM2.01200024 000h + 00000cM2.01200024 000h 2655951-1 a20120320 20120419214042 @@ -334111,7 +334111,7 @@ - 00682cM2.01200024 000h + 00000cM2.01200024 000h 2655961-4 a20120320 20120419122132 @@ -334209,7 +334209,7 @@ - 01060cM2.01200024 000h + 00000cM2.01200024 000h 2656014-8 a20120320 20120420105323 @@ -334295,7 +334295,7 @@ - 01191cM2.01200024 000h + 00000cM2.01200024 000h 2656160-8 a20120320 20120411083202 @@ -334427,7 +334427,7 @@ - 00456cM2.01200024 000h + 00000cM2.01200024 000h 2656187-6 a20120321 20120321081327 @@ -334494,7 +334494,7 @@ - 00455cM2.01200024 000h + 00000cM2.01200024 000h 2656214-5 a20120321 20120423122831 @@ -334570,7 +334570,7 @@ - 00735cM2.01200024 000h + 00000cM2.01200024 000h 2656244-3 a20120321 20120420115712 @@ -334684,7 +334684,7 @@ - 00634cM2.01200024 000h + 00000cM2.01200024 000h 2656268-6 a20120321 20120420152625 @@ -334775,7 +334775,7 @@ - 00696cM2.01200024 000h + 00000cM2.01200024 000h 2656271-6 a20120321 20120420115434 @@ -334883,7 +334883,7 @@ - 00761cM2.01200024 000h + 00000cM2.01200024 000h 2656274-1 a20120321 20120423202142 @@ -334980,7 +334980,7 @@ - 00649cM2.01200024 000h + 00000cM2.01200024 000h 2656386-1 a20120321 20120420114135 @@ -335053,7 +335053,7 @@ - 00725cM2.01200024 000h + 00000cM2.01200024 000h 2656514-6 a20120322 20120423154251 @@ -335157,7 +335157,7 @@ - 00753cM2.01200024 000h + 00000cM2.01200024 000h 2656537-7 a20120322 20120419120207 @@ -335251,7 +335251,7 @@ - 00366dM2.01200024 000h + 00000dM2.01200024 000h 2656608-4 a20120322 20120420121109 @@ -335318,7 +335318,7 @@ - 00294dM2.01200024 000h + 00000dM2.01200024 000h 2656609-6 a20120322 20120420121022 @@ -335370,7 +335370,7 @@ - 00685cM2.01200024 000h + 00000cM2.01200024 000h 2656672-2 a20120323 20120328223204 @@ -335476,7 +335476,7 @@ - 00527cM2.01200024 000h + 00000cM2.01200024 000h 2656682-5 a20120323 20120419111643 @@ -335553,7 +335553,7 @@ - 00327cM2.01200024 000h + 00000cM2.01200024 000h 2656742-8 a20120323 20120419094549 @@ -335611,7 +335611,7 @@ - 00852cM2.01200024 000h + 00000cM2.01200024 000h 2656870-6 a20120326 20120419223050 @@ -335718,7 +335718,7 @@ - 00828cM2.01200024 000h + 00000cM2.01200024 000h 2656905-X a20120326 20120419163509 @@ -335821,7 +335821,7 @@ - 01229cM2.01200024 000h + 00000cM2.01200024 000h 2656912-7 a20120326 20120420125741 @@ -335933,7 +335933,7 @@ - 00967cM2.01200024 000h + 00000cM2.01200024 000h 2656919-X a20120326 20120420114336 @@ -336033,7 +336033,7 @@ - 00525cM2.01200024 000h + 00000cM2.01200024 000h 2657008-7 a20120327 20120423200640 @@ -336109,7 +336109,7 @@ - 00490cM2.01200024 000h + 00000cM2.01200024 000h 2657023-3 a20120327 20120423120142 @@ -336182,7 +336182,7 @@ - 01423cM2.01200024 000h + 00000cM2.01200024 000h 2657046-4 a20120327 20120420223133 @@ -336324,7 +336324,7 @@ - 00591cM2.01200024 000h + 00000cM2.01200024 000h 2657062-2 a20120327 20120420153652 @@ -336399,7 +336399,7 @@ - 00842cM2.01200024 000h + 00000cM2.01200024 000h 2657093-2 a20120327 20120327213943 @@ -336508,7 +336508,7 @@ - 01040cM2.01200024 000h + 00000cM2.01200024 000h 2657101-8 a20120327 20120404223127 @@ -336641,7 +336641,7 @@ - 00630cM2.01200024 000h + 00000cM2.01200024 000h 2657131-6 a20120327 20120423124203 @@ -336732,7 +336732,7 @@ - 00482cM2.01200024 000h + 00000cM2.01200024 000h 2657162-6 a20120327 20120420213150 @@ -336815,7 +336815,7 @@ - 00493cM2.01200024 000h + 00000cM2.01200024 000h 2657183-3 a20120327 20120420214147 @@ -336885,7 +336885,7 @@ - 00975cM2.01200024 000h + 00000cM2.01200024 000h 2657235-7 a20120328 20120423083607 @@ -336999,7 +336999,7 @@ - 01048cM2.01200024 000h + 00000cM2.01200024 000h 2657240-0 a20120328 20120423084537 @@ -337116,7 +337116,7 @@ - 00948cM2.01200024 000h + 00000cM2.01200024 000h 2657243-6 a20120328 20120423084826 @@ -337227,7 +337227,7 @@ - 01300cM2.01200024 000h + 00000cM2.01200024 000h 2657245-X a20120328 20120423085020 @@ -337347,7 +337347,7 @@ - 01267cM2.01200024 000h + 00000cM2.01200024 000h 2657249-7 a20120328 20120423085547 @@ -337470,7 +337470,7 @@ - 01121cM2.01200024 000h + 00000cM2.01200024 000h 2657252-7 a20120328 20120423085334 @@ -337590,7 +337590,7 @@ - 01254cM2.01200024 000h + 00000cM2.01200024 000h 2657257-6 a20120328 20120423085151 @@ -337713,7 +337713,7 @@ - 01059cM2.01200024 000h + 00000cM2.01200024 000h 2657260-6 a20120328 20120423085930 @@ -337833,7 +337833,7 @@ - 01138cM2.01200024 000h + 00000cM2.01200024 000h 2657263-1 a20120328 20120423090014 @@ -337956,7 +337956,7 @@ - 00519cM2.01200024 000h + 00000cM2.01200024 000h 2657269-2 a20120328 20120419142023 @@ -338030,7 +338030,7 @@ - 01521cM2.01200024 000h + 00000cM2.01200024 000h 2657272-2 a20120328 20120423091717 @@ -338150,7 +338150,7 @@ - 01361cM2.01200024 000h + 00000cM2.01200024 000h 2657278-3 a20120328 20120423092109 @@ -338267,7 +338267,7 @@ - 00974cM2.01200024 000h + 00000cM2.01200024 000h 2657282-5 a20120328 20120423090334 @@ -338381,7 +338381,7 @@ - 00638cM2.01200024 000h + 00000cM2.01200024 000h 2657283-7 a20120328 20120423200902 @@ -338464,7 +338464,7 @@ - 01200cM2.01200024 000h + 00000cM2.01200024 000h 2657286-2 a20120328 20120423090407 @@ -338578,7 +338578,7 @@ - 01197cM2.01200024 000h + 00000cM2.01200024 000h 2657289-8 a20120328 20120423090455 @@ -338695,7 +338695,7 @@ - 01161cM2.01200024 000h + 00000cM2.01200024 000h 2657290-4 a20120328 20120423090551 @@ -338812,7 +338812,7 @@ - 01075cM2.01200024 000h + 00000cM2.01200024 000h 2657292-8 a20120328 20120423090737 @@ -338932,7 +338932,7 @@ - 00804cM2.01200024 000h + 00000cM2.01200024 000h 2657355-6 a20120328 20120420085109 @@ -339028,7 +339028,7 @@ - 00840cM2.01200024 000h + 00000cM2.01200024 000h 2657434-2 a20120329 20120419082702 @@ -339145,7 +339145,7 @@ - 01125cM2.01200024 000h + 00000cM2.01200024 000h 2657437-8 a20120329 20120423090115 @@ -339271,7 +339271,7 @@ - 01194cM2.01200024 000h + 00000cM2.01200024 000h 2657443-3 a20120329 20120423090625 @@ -339397,7 +339397,7 @@ - 01182cM2.01200024 000h + 00000cM2.01200024 000h 2657444-5 a20120329 20120423090701 @@ -339526,7 +339526,7 @@ - 00991cM2.01200024 000h + 00000cM2.01200024 000h 2657447-0 a20120329 20120423090810 @@ -339640,7 +339640,7 @@ - 00976cM2.01200024 000h + 00000cM2.01200024 000h 2657466-4 a20120329 20120329213322 @@ -339758,7 +339758,7 @@ - 00515cM2.01200024 000h + 00000cM2.01200024 000h 2657475-5 a20120329 20120423100419 @@ -339831,7 +339831,7 @@ - 01047cM2.01200024 000h + 00000cM2.01200024 000h 2657479-2 a20120329 20120423085442 @@ -339951,7 +339951,7 @@ - 00984cM2.01200024 000h + 00000cM2.01200024 000h 2657480-9 a20120329 20120423090853 @@ -340068,7 +340068,7 @@ - 01339cM2.01200024 000h + 00000cM2.01200024 000h 2657506-1 a20120329 20120423140605 @@ -340182,7 +340182,7 @@ - 00555cM2.01200024 000h + 00000cM2.01200024 000h 2657524-3 a20120329 20120419213810 @@ -340249,7 +340249,7 @@ - 00598cM2.01200024 000h + 00000cM2.01200024 000h 2657528-0 a20120329 20120419213603 @@ -340331,7 +340331,7 @@ - 00573cM2.01200024 000h + 00000cM2.01200024 000h 2657552-8 a20120329 20120423190537 @@ -340422,7 +340422,7 @@ - 00321cM2.01200024 000h + 00000cM2.01200024 000h 2657674-0 a20120330 20120419091800 @@ -340474,7 +340474,7 @@ - 00444cM2.01200024 000h + 00000cM2.01200024 000h 2657679-X a20120330 20120419151743 @@ -340544,7 +340544,7 @@ - 00467cM2.01200024 000h + 00000cM2.01200024 000h 2657728-8 a20120330 20120419223052 @@ -340623,7 +340623,7 @@ - 00805cM2.01200024 000h + 00000cM2.01200024 000h 2657753-7 a20120330 20120419223053 @@ -340731,7 +340731,7 @@ - 00634cM2.01200024 000h + 00000cM2.01200024 000h 2657784-7 a20120330 20120419122000 @@ -340811,7 +340811,7 @@ - 00893cM2.01200024 000h + 00000cM2.01200024 000h 2657875-X a20120402 20120420223136 @@ -340935,7 +340935,7 @@ - 00503cM2.01200024 000h + 00000cM2.01200024 000h 2657894-3 a20120402 20120419082840 @@ -341008,7 +341008,7 @@ - 00700cM2.01200024 000h + 00000cM2.01200024 000h 2657899-2 a20120402 20120419223053 @@ -341117,7 +341117,7 @@ - 00878cM2.01200024 000h + 00000cM2.01200024 000h 2657909-1 a20120402 20120419223053 @@ -341244,7 +341244,7 @@ - 00582cM2.01200024 000h + 00000cM2.01200024 000h 2657933-9 a20120402 20120419223053 @@ -341335,7 +341335,7 @@ - 00444cM2.01200024 000h + 00000cM2.01200024 000h 2657973-X a20120403 20120420214144 @@ -341402,7 +341402,7 @@ - 00341cM2.01200024 000h + 00000cM2.01200024 000h 2657987-X a20120403 20120419142425 @@ -341463,7 +341463,7 @@ - 00686cM2.01200024 000h + 00000cM2.01200024 000h 2657996-0 a20120403 20120420101943 @@ -341561,7 +341561,7 @@ - 00694cM2.01200024 000h + 00000cM2.01200024 000h 2658001-9 a20120403 20120420101849 @@ -341656,7 +341656,7 @@ - 00673cM2.01200024 000h + 00000cM2.01200024 000h 2658014-7 a20120403 20120419223054 @@ -341756,7 +341756,7 @@ - 01097cM2.01200024 000h + 00000cM2.01200024 000h 2658028-7 a20120403 20120423141945 @@ -341886,7 +341886,7 @@ - 00422cM2.01200024 000h + 00000cM2.01200024 000h 2658030-5 a20120403 20120419113256 @@ -341965,7 +341965,7 @@ - 00967cM2.01200024 000h + 00000cM2.01200024 000h 2658045-7 a20120403 20120423202130 @@ -342081,7 +342081,7 @@ - 00650cM2.01200024 000h + 00000cM2.01200024 000h 2658084-6 a20120403 20120419223054 @@ -342188,7 +342188,7 @@ - 00701cM2.01200024 000h + 00000cM2.01200024 000h 2658093-7 a20120403 20120423184815 @@ -342273,7 +342273,7 @@ - 00889cM2.01200024 000h + 00000cM2.01200024 000h 2658199-1 a20120404 20120419223054 @@ -342384,7 +342384,7 @@ - 00837cM2.01200024 000h + 00000cM2.01200024 000h 2658208-9 a20120404 20120420145529 @@ -342507,7 +342507,7 @@ - 00693cM2.01200024 000h + 00000cM2.01200024 000h 2658209-0 a20120404 20120423121300 @@ -342586,7 +342586,7 @@ - 00545cM2.01200024 000h + 00000cM2.01200024 000h 2658267-3 a20120404 20120423100207 @@ -342671,7 +342671,7 @@ - 01083cM2.01200024 000h + 00000cM2.01200024 000h 2658282-X a20120404 20120410223130 @@ -342808,7 +342808,7 @@ - 00916cM2.01200024 000h + 00000cM2.01200024 000h 2658324-0 a20120404 20120419150142 @@ -342914,7 +342914,7 @@ - 00749cM2.01200024 000h + 00000cM2.01200024 000h 2658373-2 a20120405 20120423071425 @@ -343007,7 +343007,7 @@ - 00660cM2.01200024 000h + 00000cM2.01200024 000h 2658377-X a20120405 20120423131708 @@ -343098,7 +343098,7 @@ - 00804cM2.01200024 000h + 00000cM2.01200024 000h 2658378-1 a20120405 20120423071340 @@ -343194,7 +343194,7 @@ - 00775cM2.01200024 000h + 00000cM2.01200024 000h 2658386-0 a20120405 20120405092721 @@ -343279,7 +343279,7 @@ - 00738cM2.01200024 000h + 00000cM2.01200024 000h 2658400-1 a20120405 20120420180959 @@ -343368,7 +343368,7 @@ - 00469cM2.01200024 000h + 00000cM2.01200024 000h 2658402-5 a20120405 20120423185558 @@ -343445,7 +343445,7 @@ - 00376cM2.01200024 000h + 00000cM2.01200024 000h 2658406-2 a20120405 20120405101020 @@ -343506,7 +343506,7 @@ - 00916cM2.01200024 000h + 00000cM2.01200024 000h 2658407-4 a20120405 20120419084333 @@ -343615,7 +343615,7 @@ - 00976cM2.01200024 000h + 00000cM2.01200024 000h 2658425-6 a20120405 20120423115839 @@ -343727,7 +343727,7 @@ - 00880cM2.01200024 000h + 00000cM2.01200024 000h 2658431-1 a20120405 20120423115911 @@ -343833,7 +343833,7 @@ - 00923cM2.01200024 000h + 00000cM2.01200024 000h 2658467-0 a20120405 20120419223054 @@ -343932,7 +343932,7 @@ - 01340cM2.01200024 000h + 00000cM2.01200024 000h 2658471-2 a20120405 20120423125715 @@ -344052,7 +344052,7 @@ - 00535cM2.01200024 000h + 00000cM2.01200024 000h 2658478-5 a20120405 20120420223139 @@ -344141,7 +344141,7 @@ - 00749cM2.01200024 000h + 00000cM2.01200024 000h 2658510-8 a20120405 20120420151204 @@ -344247,7 +344247,7 @@ - 00491cM2.01200024 000h + 00000cM2.01200024 000h 2658537-6 a20120410 20120423152703 @@ -344326,7 +344326,7 @@ - 00755cM2.01200024 000h + 00000cM2.01200024 000h 2658570-4 a20120410 20120419223055 @@ -344435,7 +344435,7 @@ - 00681cM2.01200024 000h + 00000cM2.01200024 000h 2658573-X a20120410 20120419223055 @@ -344538,7 +344538,7 @@ - 00782cM2.01200024 000h + 00000cM2.01200024 000h 2658582-0 a20120410 20120419223055 @@ -344645,7 +344645,7 @@ - 01012cM2.01200024 000h + 00000cM2.01200024 000h 2658585-6 a20120410 20120420223139 @@ -344761,7 +344761,7 @@ - 00642cM2.01200024 000h + 00000cM2.01200024 000h 2658605-8 a20120410 20120419101559 @@ -344855,7 +344855,7 @@ - 00447cM2.01200024 000h + 00000cM2.01200024 000h 2658663-0 a20120410 20120419223055 @@ -344935,7 +344935,7 @@ - 00829cM2.01200024 000h + 00000cM2.01200024 000h 2658676-9 a20120410 20120419153910 @@ -345029,7 +345029,7 @@ - 00569cM2.01200024 000h + 00000cM2.01200024 000h 2658686-1 a20120410 20120423120534 @@ -345114,7 +345114,7 @@ - 00446cM2.01200024 000h + 00000cM2.01200024 000h 2658702-6 a20120410 20120419223055 @@ -345197,7 +345197,7 @@ - 01284cM2.01200024 000h + 00000cM2.01200024 000h 2658703-8 a20120410 20120419122456 @@ -345329,7 +345329,7 @@ - 00650cM2.01200024 000h + 00000cM2.01200024 000h 2658725-7 a20120411 20120423141538 @@ -345429,7 +345429,7 @@ - 00727cM2.01200024 000h + 00000cM2.01200024 000h 2658726-9 a20120411 20120423142152 @@ -345529,7 +345529,7 @@ - 00821cM2.01200024 000h + 00000cM2.01200024 000h 2658733-6 a20120411 20120423115147 @@ -345627,7 +345627,7 @@ - 00848cM2.01200024 000h + 00000cM2.01200024 000h 2658735-X a20120411 20120419133225 @@ -345729,7 +345729,7 @@ - 00833cM2.01200024 000h + 00000cM2.01200024 000h 2658740-3 a20120411 20120419130313 @@ -345829,7 +345829,7 @@ - 00515cM2.01200024 000h + 00000cM2.01200024 000h 2658742-7 a20120411 20120419094321 @@ -345908,7 +345908,7 @@ - 00575cM2.01200024 000h + 00000cM2.01200024 000h 2658743-9 a20120411 20120419223055 @@ -346002,7 +346002,7 @@ - 00741cM2.01200024 000h + 00000cM2.01200024 000h 2658749-X a20120411 20120411102702 @@ -346095,7 +346095,7 @@ - 01004cM2.01200024 000h + 00000cM2.01200024 000h 2658753-1 a20120411 20120419081957 @@ -346186,7 +346186,7 @@ - 00946cM2.01200024 000h + 00000cM2.01200024 000h 2658757-9 a20120411 20120419082239 @@ -346274,7 +346274,7 @@ - 00488cM2.01200024 000h + 00000cM2.01200024 000h 2658762-2 a20120411 20120419223055 @@ -346365,7 +346365,7 @@ - 00502cM2.01200024 000h + 00000cM2.01200024 000h 2658764-6 a20120411 20120419223056 @@ -346456,7 +346456,7 @@ - 00492cM2.01200024 000h + 00000cM2.01200024 000h 2658765-8 a20120411 20120419223056 @@ -346547,7 +346547,7 @@ - 01684cM2.01200024 000h + 00000cM2.01200024 000h 2658771-3 a20120411 20120419161646 @@ -346697,7 +346697,7 @@ - 00720cM2.01200024 000h + 00000cM2.01200024 000h 2658777-4 a20120411 20120423125556 @@ -346798,7 +346798,7 @@ - 00963cM2.01200024 000h + 00000cM2.01200024 000h 2658778-6 a20120411 20120423200710 @@ -346913,7 +346913,7 @@ - 00536cM2.01200024 000h + 00000cM2.01200024 000h 2658779-8 a20120411 20120420100212 @@ -346992,7 +346992,7 @@ - 00643cM2.01200024 000h + 00000cM2.01200024 000h 2658780-4 a20120411 20120420223140 @@ -347081,7 +347081,7 @@ - 01532cM2.01200024 000h + 00000cM2.01200024 000h 2658782-8 a20120411 20120419161426 @@ -347224,7 +347224,7 @@ - 00747cM2.01200024 000h + 00000cM2.01200024 000h 2658789-0 a20120411 20120419133403 @@ -347323,7 +347323,7 @@ - 00384cM2.01200024 000h + 00000cM2.01200024 000h 2658804-3 a20120411 20120423143745 @@ -347394,7 +347394,7 @@ - 01704cM2.01200024 000h + 00000cM2.01200024 000h 2658817-1 a20120411 20120419161629 @@ -347547,7 +347547,7 @@ - 00803cM2.01200024 000h + 00000cM2.01200024 000h 2658821-3 a20120411 20120412121148 @@ -347653,7 +347653,7 @@ - 01575cM2.01200024 000h + 00000cM2.01200024 000h 2658822-5 a20120411 20120419161537 @@ -347796,7 +347796,7 @@ - 00635cM2.01200024 000h + 00000cM2.01200024 000h 2658823-7 a20120411 20120420223140 @@ -347888,7 +347888,7 @@ - 00796cM2.01200024 000h + 00000cM2.01200024 000h 2658845-6 a20120411 20120419223056 @@ -348000,7 +348000,7 @@ - 00751cM2.01200024 000h + 00000cM2.01200024 000h 2658860-2 a20120412 20120423073055 @@ -348107,7 +348107,7 @@ - 00489cM2.01200024 000h + 00000cM2.01200024 000h 2658864-X a20120412 20120423154035 @@ -348183,7 +348183,7 @@ - 00570cM2.01200024 000h + 00000cM2.01200024 000h 2658883-3 a20120412 20120423102018 @@ -348269,7 +348269,7 @@ - 00398cM2.01200024 000h + 00000cM2.01200024 000h 2658895-X a20120412 20120423200645 @@ -348343,7 +348343,7 @@ - 00540cM2.01200024 000h + 00000cM2.01200024 000h 2658904-7 a20120412 20120423113938 @@ -348429,7 +348429,7 @@ - 00646cM2.01200024 000h + 00000cM2.01200024 000h 2658910-2 a20120412 20120420163325 @@ -348517,7 +348517,7 @@ - 00950cM2.01200024 000h + 00000cM2.01200024 000h 2658938-2 a20120412 20120419095434 @@ -348619,7 +348619,7 @@ - 00742cM2.01200024 000h + 00000cM2.01200024 000h 2658940-0 a20120412 20120419170456 @@ -348712,7 +348712,7 @@ - 00515cM2.01200024 000h + 00000cM2.01200024 000h 2658950-3 a20120412 20120419090620 @@ -348791,7 +348791,7 @@ - 00943cM2.01200024 000h + 00000cM2.01200024 000h 2658952-7 a20120412 20120420092540 @@ -348890,7 +348890,7 @@ - 00321cM2.01200024 000h + 00000cM2.01200024 000h 2658954-0 a20120412 20120420132351 @@ -348939,7 +348939,7 @@ - 00650cM2.01200024 000h + 00000cM2.01200024 000h 2658955-2 a20120412 20120423122328 @@ -349034,7 +349034,7 @@ - 00324cM2.01200024 000h + 00000cM2.01200024 000h 2658956-4 a20120412 20120420132431 @@ -349083,7 +349083,7 @@ - 00313cM2.01200024 000h + 00000cM2.01200024 000h 2658958-8 a20120412 20120420132240 @@ -349132,7 +349132,7 @@ - 00310cM2.01200024 000h + 00000cM2.01200024 000h 2658959-X a20120412 20120420132200 @@ -349181,7 +349181,7 @@ - 04575cM2.01200024 000h + 00000cM2.01200024 000h 2658971-0 a20120412 20120419085043 @@ -349344,7 +349344,7 @@ - 00381cM2.01200024 000h + 00000cM2.01200024 000h 2658986-2 a20120413 20120419214101 @@ -349408,7 +349408,7 @@ - 00625cM2.01200024 000h + 00000cM2.01200024 000h 2659017-7 a20120413 20120423120522 @@ -349496,7 +349496,7 @@ - 00696cM2.01200024 000h + 00000cM2.01200024 000h 2659022-0 a20120413 20120419125951 @@ -349581,7 +349581,7 @@ - 00569cM2.01200024 000h + 00000cM2.01200024 000h 2659028-1 a20120413 20120419141158 @@ -349667,7 +349667,7 @@ - 00610cM2.01200024 000h + 00000cM2.01200024 000h 2659037-2 a20120413 20120420082358 @@ -349764,7 +349764,7 @@ - 00678cM2.01200024 000h + 00000cM2.01200024 000h 2659059-1 a20120413 20120423092424 @@ -349855,7 +349855,7 @@ - 00391cM2.01200024 000h + 00000cM2.01200024 000h 2659064-5 a20120413 20120423123153 @@ -349919,7 +349919,7 @@ - 00666cM2.01200024 000h + 00000cM2.01200024 000h 2659070-0 a20120413 20120420122050 @@ -350006,7 +350006,7 @@ - 00714cM2.01200024 000h + 00000cM2.01200024 000h 2659072-4 a20120413 20120423092540 @@ -350097,7 +350097,7 @@ - 00555cM2.01200024 000h + 00000cM2.01200024 000h 2659073-6 a20120413 20120413131604 @@ -350167,7 +350167,7 @@ - 01059cM2.01200024 000h + 00000cM2.01200024 000h 2659135-2 a20120414 20120419182346 @@ -350279,7 +350279,7 @@ - 00348nM2.01200024 000h + 00000nM2.01200024 000h 2659139-X a20120416 20120416072646 @@ -350340,7 +350340,7 @@ - 00432nM2.01200024 000h + 00000nM2.01200024 000h 2659140-6 a20120416 20120416073053 @@ -350404,7 +350404,7 @@ - 00324nM2.01200024 000h + 00000nM2.01200024 000h 2659141-8 a20120419 20120419081922 @@ -350456,7 +350456,7 @@ - 00618nM2.01200024 000h + 00000nM2.01200024 000h 2659142-X a20120419 20120419083253 @@ -350539,7 +350539,7 @@ - 00456nM2.01200024 000h + 00000nM2.01200024 000h 2659143-1 a20120419 20120419083126 @@ -350612,7 +350612,7 @@ - 00523nM2.01200024 000h + 00000nM2.01200024 000h 2659144-3 a20120419 20120420150045 @@ -350686,7 +350686,7 @@ - 00397nM2.01200024 000h + 00000nM2.01200024 000h 2659145-5 a20120419 20120419083835 @@ -350750,7 +350750,7 @@ - 00434nM2.01200024 000h + 00000nM2.01200024 000h 2659146-7 a20120419 20120419084619 @@ -350821,7 +350821,7 @@ - 00517nM2.01200024 000h + 00000nM2.01200024 000h 2659147-9 a20120419 20120419084657 @@ -350895,7 +350895,7 @@ - 00324nM2.01200024 000h + 00000nM2.01200024 000h 2659149-2 a20120419 20120419084456 @@ -350954,7 +350954,7 @@ - 00399nM2.01200024 000h + 00000nM2.01200024 000h 2659150-9 a20120419 20120419084507 @@ -351025,7 +351025,7 @@ - 00329nM2.01200024 000h + 00000nM2.01200024 000h 2659151-0 a20120419 20120419142258 @@ -351080,7 +351080,7 @@ - 00444nM2.01200024 000h + 00000nM2.01200024 000h 2659152-2 a20120419 20120419085042 @@ -351144,7 +351144,7 @@ - 00329nM2.01200024 000h + 00000nM2.01200024 000h 2659153-4 a20120419 20120419085238 @@ -351196,7 +351196,7 @@ - 00361nM2.01200024 000h + 00000nM2.01200024 000h 2659154-6 a20120419 20120419085901 @@ -351254,7 +351254,7 @@ - 00443nM2.01200024 000h + 00000nM2.01200024 000h 2659155-8 a20120419 20120419091233 @@ -351315,7 +351315,7 @@ - 00752nM2.01200024 000h + 00000nM2.01200024 000h 2659156-X a20120419 20120419093124 @@ -351395,7 +351395,7 @@ - 00373nM2.01200024 000h + 00000nM2.01200024 000h 2659157-1 a20120419 20120419092114 @@ -351456,7 +351456,7 @@ - 00424nM2.01200024 000h + 00000nM2.01200024 000h 2659158-3 a20120419 20120419093005 @@ -351527,7 +351527,7 @@ - 00553nM2.01200024 000h + 00000nM2.01200024 000h 2659159-5 a20120419 20120419094134 @@ -351609,7 +351609,7 @@ - 00635nM2.01200024 000h + 00000nM2.01200024 000h 2659161-3 a20120419 20120419094056 @@ -351697,7 +351697,7 @@ - 00300nM2.01200024 000h + 00000nM2.01200024 000h 2659162-5 a20120419 20120419094332 @@ -351746,7 +351746,7 @@ - 00362nM2.01200024 000h + 00000nM2.01200024 000h 2659163-7 a20120419 20120419094431 @@ -351810,7 +351810,7 @@ - 00590nM2.01200024 000h + 00000nM2.01200024 000h 2659164-9 a20120419 20120419094853 @@ -351880,7 +351880,7 @@ - 00508nM2.01200024 000h + 00000nM2.01200024 000h 2659165-0 a20120419 20120419095559 @@ -351950,7 +351950,7 @@ - 00707nM2.01200024 000h + 00000nM2.01200024 000h 2659166-2 a20120419 20120419095745 @@ -352061,7 +352061,7 @@ - 00427nM2.01200024 000h + 00000nM2.01200024 000h 2659167-4 a20120419 20120419103045 @@ -352137,7 +352137,7 @@ - 00351nM2.01200024 000h + 00000nM2.01200024 000h 2659168-6 a20120419 20120420130335 @@ -352192,7 +352192,7 @@ - 01016nM2.01200024 000h + 00000nM2.01200024 000h 2659169-8 a20120419 20120419102047 @@ -352316,7 +352316,7 @@ - 00605nM2.01200024 000h + 00000nM2.01200024 000h 2659170-4 a20120419 20120419102301 @@ -352402,7 +352402,7 @@ - 00483nM2.01200024 000h + 00000nM2.01200024 000h 2659171-6 a20120419 20120420100803 @@ -352475,7 +352475,7 @@ - 01088nM2.01200024 000h + 00000nM2.01200024 000h 2659172-8 a20120419 20120419105618 @@ -352608,7 +352608,7 @@ - 01011nM2.01200024 000h + 00000nM2.01200024 000h 2659173-X a20120419 20120423123558 @@ -352696,7 +352696,7 @@ - 00631nM2.01200024 000h + 00000nM2.01200024 000h 2659174-1 a20120419 20120419213549 @@ -352793,7 +352793,7 @@ - 00628nM2.01200024 000h + 00000nM2.01200024 000h 2659175-3 a20120419 20120419104404 @@ -352872,7 +352872,7 @@ - 00447nM2.01200024 000h + 00000nM2.01200024 000h 2659176-5 a20120419 20120419104811 @@ -352949,7 +352949,7 @@ - 00414nM2.01200024 000h + 00000nM2.01200024 000h 2659177-7 a20120419 20120419105000 @@ -353007,7 +353007,7 @@ - 00293nM2.01200024 000h + 00000nM2.01200024 000h 2659178-9 a20120419 20120419105346 @@ -353056,7 +353056,7 @@ - 00844nM2.01200024 000h + 00000nM2.01200024 000h 2659179-0 a20120419 20120419213554 @@ -353151,7 +353151,7 @@ - 00479nM2.01200024 000h + 00000nM2.01200024 000h 2659180-7 a20120419 20120419114303 @@ -353221,7 +353221,7 @@ - 00486nM2.01200024 000h + 00000nM2.01200024 000h 2659181-9 a20120419 20120419105922 @@ -353294,7 +353294,7 @@ - 00416nM2.01200024 000h + 00000nM2.01200024 000h 2659182-0 a20120419 20120419105936 @@ -353362,7 +353362,7 @@ - 00373nM2.01200024 000h + 00000nM2.01200024 000h 2659183-2 a20120419 20120419110035 @@ -353429,7 +353429,7 @@ - 00869nM2.01200024 000h + 00000nM2.01200024 000h 2659184-4 a20120419 20120419110944 @@ -353529,7 +353529,7 @@ - 00492nM2.01200024 000h + 00000nM2.01200024 000h 2659185-6 a20120419 20120419110431 @@ -353581,7 +353581,7 @@ - 00457nM2.01200024 000h + 00000nM2.01200024 000h 2659186-8 a20120419 20120419110718 @@ -353648,7 +353648,7 @@ - 00338nM2.01200024 000h + 00000nM2.01200024 000h 2659187-X a20120419 20120419110817 @@ -353703,7 +353703,7 @@ - 00448nM2.01200024 000h + 00000nM2.01200024 000h 2659188-1 a20120419 20120419120831 @@ -353780,7 +353780,7 @@ - 00337nM2.01200024 000h + 00000nM2.01200024 000h 2659189-3 a20120419 20120419213115 @@ -353832,7 +353832,7 @@ - 00387nM2.01200024 000h + 00000nM2.01200024 000h 2659190-X a20120419 20120419112136 @@ -353899,7 +353899,7 @@ - 00405nM2.01200024 000h + 00000nM2.01200024 000h 2659191-1 a20120419 20120419112259 @@ -353970,7 +353970,7 @@ - 00583nM2.01200024 000h + 00000nM2.01200024 000h 2659192-3 a20120419 20120419122050 @@ -354043,7 +354043,7 @@ - 00394nM2.01200024 000h + 00000nM2.01200024 000h 2659193-5 a20120419 20120419213610 @@ -354098,7 +354098,7 @@ - 00833nM2.01200024 000h + 00000nM2.01200024 000h 2659194-7 a20120419 20120419113135 @@ -354192,7 +354192,7 @@ - 00436nM2.01200024 000h + 00000nM2.01200024 000h 2659195-9 a20120419 20120419113915 @@ -354265,7 +354265,7 @@ - 00706nM2.01200024 000h + 00000nM2.01200024 000h 2659196-0 a20120419 20120419114337 @@ -354350,7 +354350,7 @@ - 00414nM2.01200024 000h + 00000nM2.01200024 000h 2659197-2 a20120419 20120419115843 @@ -354426,7 +354426,7 @@ - 00691nM2.01200024 000h + 00000nM2.01200024 000h 2659198-4 a20120419 20120419115807 @@ -354514,7 +354514,7 @@ - 00486nM2.01200024 000h + 00000nM2.01200024 000h 2659200-9 a20120419 20120419120146 @@ -354581,7 +354581,7 @@ - 00448nM2.01200024 000h + 00000nM2.01200024 000h 2659201-0 a20120419 20120419121401 @@ -354654,7 +354654,7 @@ - 00545nM2.01200024 000h + 00000nM2.01200024 000h 2659202-2 a20120419 20120419120430 @@ -354731,7 +354731,7 @@ - 00496nM2.01200024 000h + 00000nM2.01200024 000h 2659203-4 a20120419 20120419120542 @@ -354808,7 +354808,7 @@ - 00742nM2.01200024 000h + 00000nM2.01200024 000h 2659204-6 a20120419 20120419121345 @@ -354881,7 +354881,7 @@ - 01394nM2.01200024 000h + 00000nM2.01200024 000h 2659205-8 a20120419 20120419121955 @@ -355005,7 +355005,7 @@ - 00355nM2.01200024 000h + 00000nM2.01200024 000h 2659206-X a20120419 20120419121452 @@ -355063,7 +355063,7 @@ - 00597nM2.01200024 000h + 00000nM2.01200024 000h 2659207-1 a20120419 20120419121758 @@ -355141,7 +355141,7 @@ - 01690nM2.01200024 000h + 00000nM2.01200024 000h 2659208-3 a20120419 20120420090101 @@ -355290,7 +355290,7 @@ - 00482nM2.01200024 000h + 00000nM2.01200024 000h 2659209-5 a20120419 20120419122225 @@ -355368,7 +355368,7 @@ - 00350nM2.01200024 000h + 00000nM2.01200024 000h 2659210-1 a20120419 20120419122327 @@ -355430,7 +355430,7 @@ - 00629nM2.01200024 000h + 00000nM2.01200024 000h 2659211-3 a20120419 20120423084701 @@ -355515,7 +355515,7 @@ - 00633nM2.01200024 000h + 00000nM2.01200024 000h 2659212-5 a20120419 20120423111648 @@ -355606,7 +355606,7 @@ - 00485nM2.01200024 000h + 00000nM2.01200024 000h 2659213-7 a20120419 20120419123254 @@ -355684,7 +355684,7 @@ - 00648nM2.01200024 000h + 00000nM2.01200024 000h 2659214-9 a20120419 20120419124232 @@ -355771,7 +355771,7 @@ - 00611nM2.01200024 000h + 00000nM2.01200024 000h 2659215-0 a20120419 20120419123752 @@ -355844,7 +355844,7 @@ - 00703nM2.01200024 000h + 00000nM2.01200024 000h 2659216-2 a20120419 20120419123716 @@ -355935,7 +355935,7 @@ - 00643nM2.01200024 000h + 00000nM2.01200024 000h 2659217-4 a20120419 20120419123735 @@ -356008,7 +356008,7 @@ - 01073nM2.01200024 000h + 00000nM2.01200024 000h 2659218-6 a20120419 20120419123748 @@ -356107,7 +356107,7 @@ - 00557nM2.01200024 000h + 00000nM2.01200024 000h 2659219-8 a20120419 20120419124028 @@ -356188,7 +356188,7 @@ - 00526nM2.01200024 000h + 00000nM2.01200024 000h 2659220-4 a20120419 20120419124617 @@ -356277,7 +356277,7 @@ - 00339nM2.01200024 000h + 00000nM2.01200024 000h 2659221-6 a20120419 20120419124659 @@ -356329,7 +356329,7 @@ - 00568nM2.01200024 000h + 00000nM2.01200024 000h 2659222-8 a20120419 20120419124717 @@ -356409,7 +356409,7 @@ - 00372nM2.01200024 000h + 00000nM2.01200024 000h 2659223-X a20120419 20120419124905 @@ -356467,7 +356467,7 @@ - 00359nM2.01200024 000h + 00000nM2.01200024 000h 2659224-1 a20120419 20120420133530 @@ -356528,7 +356528,7 @@ - 00583nM2.01200024 000h + 00000nM2.01200024 000h 2659226-5 a20120419 20120419125331 @@ -356615,7 +356615,7 @@ - 00314nM2.01200024 000h + 00000nM2.01200024 000h 2659227-7 a20120419 20120419125259 @@ -356673,7 +356673,7 @@ - 00411nM2.01200024 000h + 00000nM2.01200024 000h 2659228-9 a20120419 20120419125537 @@ -356734,7 +356734,7 @@ - 00851nM2.01200024 000h + 00000nM2.01200024 000h 2659229-0 a20120419 20120419131047 @@ -356825,7 +356825,7 @@ - 00449nM2.01200024 000h + 00000nM2.01200024 000h 2659230-7 a20120419 20120419130920 @@ -356895,7 +356895,7 @@ - 01018nM2.01200024 000h + 00000nM2.01200024 000h 2659231-9 a20120419 20120419131009 @@ -356998,7 +356998,7 @@ - 00383nM2.01200024 000h + 00000nM2.01200024 000h 2659232-0 a20120419 20120419132339 @@ -357065,7 +357065,7 @@ - 00312nM2.01200024 000h + 00000nM2.01200024 000h 2659234-4 a20120419 20120419133644 @@ -357117,7 +357117,7 @@ - 00553nM2.01200024 000h + 00000nM2.01200024 000h 2659235-6 a20120419 20120419133945 @@ -357196,7 +357196,7 @@ - 00345nM2.01200024 000h + 00000nM2.01200024 000h 2659236-8 a20120419 20120419134051 @@ -357248,7 +357248,7 @@ - 01515nM2.01200024 000h + 00000nM2.01200024 000h 2659237-X a20120419 20120419161613 @@ -357398,7 +357398,7 @@ - 00807nM2.01200024 000h + 00000nM2.01200024 000h 2659238-1 a20120419 20120419213750 @@ -357508,7 +357508,7 @@ - 00671nM2.01200024 000h + 00000nM2.01200024 000h 2659239-3 a20120419 20120423123845 @@ -357602,7 +357602,7 @@ - 01329nM2.01200024 000h + 00000nM2.01200024 000h 2659240-X a20120419 20120419161409 @@ -357741,7 +357741,7 @@ - 00344nM2.01200024 000h + 00000nM2.01200024 000h 2659241-1 a20120419 20120419135824 @@ -357793,7 +357793,7 @@ - 01129nM2.01200024 000h + 00000nM2.01200024 000h 2659242-3 a20120419 20120419140610 @@ -357907,7 +357907,7 @@ - 00454nM2.01200024 000h + 00000nM2.01200024 000h 2659243-5 a20120419 20120419213756 @@ -357989,7 +357989,7 @@ - 00488nM2.01200024 000h + 00000nM2.01200024 000h 2659244-7 a20120419 20120419141222 @@ -358071,7 +358071,7 @@ - 00358nM2.01200024 000h + 00000nM2.01200024 000h 2659245-9 a20120419 20120419141052 @@ -358135,7 +358135,7 @@ - 00448nM2.01200024 000h + 00000nM2.01200024 000h 2659246-0 a20120419 20120419141313 @@ -358209,7 +358209,7 @@ - 00660nM2.01200024 000h + 00000nM2.01200024 000h 2659247-2 a20120419 20120419213759 @@ -358289,7 +358289,7 @@ - 00702nM2.01200024 000h + 00000nM2.01200024 000h 2659248-4 a20120419 20120419142408 @@ -358371,7 +358371,7 @@ - 00337nM2.01200024 000h + 00000nM2.01200024 000h 2659249-6 a20120419 20120419142543 @@ -358426,7 +358426,7 @@ - 00422nM2.01200024 000h + 00000nM2.01200024 000h 2659250-2 a20120419 20120419142636 @@ -358493,7 +358493,7 @@ - 00493nM2.01200024 000h + 00000nM2.01200024 000h 2659252-6 a20120419 20120419143210 @@ -358566,7 +358566,7 @@ - 00455nM2.01200024 000h + 00000nM2.01200024 000h 2659253-8 a20120419 20120423103636 @@ -358646,7 +358646,7 @@ - 00378nM2.01200024 000h + 00000nM2.01200024 000h 2659254-X a20120419 20120419152538 @@ -358713,7 +358713,7 @@ - 00287nM2.01200024 000h + 00000nM2.01200024 000h 2659255-1 a20120419 20120419144036 @@ -358765,7 +358765,7 @@ - 00462nM2.01200024 000h + 00000nM2.01200024 000h 2659256-3 a20120419 20120419144116 @@ -358838,7 +358838,7 @@ - 00338nM2.01200024 000h + 00000nM2.01200024 000h 2659257-5 a20120419 20120419213805 @@ -358890,7 +358890,7 @@ - 00640nM2.01200024 000h + 00000nM2.01200024 000h 2659258-7 a20120419 20120420143746 @@ -358981,7 +358981,7 @@ - 00490nM2.01200024 000h + 00000nM2.01200024 000h 2659259-9 a20120419 20120419145058 @@ -359052,7 +359052,7 @@ - 00837nM2.01200024 000h + 00000nM2.01200024 000h 2659260-5 a20120419 20120419145845 @@ -359152,7 +359152,7 @@ - 00894nM2.01200024 000h + 00000nM2.01200024 000h 2659261-7 a20120419 20120419145537 @@ -359261,7 +359261,7 @@ - 00382nM2.01200024 000h + 00000nM2.01200024 000h 2659262-9 a20120419 20120419150951 @@ -359316,7 +359316,7 @@ - 00406nM2.01200024 000h + 00000nM2.01200024 000h 2659263-0 a20120419 20120419155438 @@ -359378,7 +359378,7 @@ - 00404nM2.01200024 000h + 00000nM2.01200024 000h 2659264-2 a20120419 20120419152157 @@ -359457,7 +359457,7 @@ - 00499nM2.01200024 000h + 00000nM2.01200024 000h 2659265-4 a20120419 20120419151710 @@ -359536,7 +359536,7 @@ - 00669nM2.01200024 000h + 00000nM2.01200024 000h 2659266-6 a20120419 20120419151557 @@ -359615,7 +359615,7 @@ - 00565nM2.01200024 000h + 00000nM2.01200024 000h 2659267-8 a20120419 20120420145928 @@ -359691,7 +359691,7 @@ - 00734nM2.01200024 000h + 00000nM2.01200024 000h 2659268-X a20120419 20120420155056 @@ -359767,7 +359767,7 @@ - 01872nM2.01200024 000h + 00000nM2.01200024 000h 2659269-1 a20120419 20120419170143 @@ -359919,7 +359919,7 @@ - 00515nM2.01200024 000h + 00000nM2.01200024 000h 2659270-8 a20120419 20120419213415 @@ -360001,7 +360001,7 @@ - 00459nM2.01200024 000h + 00000nM2.01200024 000h 2659271-X a20120419 20120419155936 @@ -360071,7 +360071,7 @@ - 00416nM2.01200024 000h + 00000nM2.01200024 000h 2659272-1 a20120419 20120419155910 @@ -360135,7 +360135,7 @@ - 00780nM2.01200024 000h + 00000nM2.01200024 000h 2659273-3 a20120419 20120423084631 @@ -360235,7 +360235,7 @@ - 00714nM2.01200024 000h + 00000nM2.01200024 000h 2659274-5 a20120419 20120419160636 @@ -360325,7 +360325,7 @@ - 00733nM2.01200024 000h + 00000nM2.01200024 000h 2659275-7 a20120419 20120419161124 @@ -360418,7 +360418,7 @@ - 00436nM2.01200024 000h + 00000nM2.01200024 000h 2659276-9 a20120419 20120419160952 @@ -360488,7 +360488,7 @@ - 00376nM2.01200024 000h + 00000nM2.01200024 000h 2659277-0 a20120419 20120419161212 @@ -360558,7 +360558,7 @@ - 00692nM2.01200024 000h + 00000nM2.01200024 000h 2659278-2 a20120419 20120423111531 @@ -360654,7 +360654,7 @@ - 00555nM2.01200024 000h + 00000nM2.01200024 000h 2659279-4 a20120419 20120419161843 @@ -360736,7 +360736,7 @@ - 00422nM2.01200024 000h + 00000nM2.01200024 000h 2659280-0 a20120419 20120419161931 @@ -360800,7 +360800,7 @@ - 01420nM2.01200024 000h + 00000nM2.01200024 000h 2659281-2 a20120419 20120419162833 @@ -360966,7 +360966,7 @@ - 00732nM2.01200024 000h + 00000nM2.01200024 000h 2659282-4 a20120419 20120419162255 @@ -361068,7 +361068,7 @@ - 01774nM2.01200024 000h + 00000nM2.01200024 000h 2659283-6 a20120419 20120419170127 @@ -361210,7 +361210,7 @@ - 00667nM2.01200024 000h + 00000nM2.01200024 000h 2659284-8 a20120419 20120419162805 @@ -361300,7 +361300,7 @@ - 00739nM2.01200024 000h + 00000nM2.01200024 000h 2659285-X a20120419 20120420145106 @@ -361396,7 +361396,7 @@ - 01614nM2.01200024 000h + 00000nM2.01200024 000h 2659286-1 a20120419 20120419170954 @@ -361544,7 +361544,7 @@ - 00424nM2.01200024 000h + 00000nM2.01200024 000h 2659287-3 a20120419 20120419170147 @@ -361617,7 +361617,7 @@ - 01329nM2.01200024 000h + 00000nM2.01200024 000h 2659288-5 a20120419 20120419170919 @@ -361755,7 +361755,7 @@ - 00577nM2.01200024 000h + 00000nM2.01200024 000h 2659289-7 a20120419 20120420090603 @@ -361825,7 +361825,7 @@ - 00734nM2.01200024 000h + 00000nM2.01200024 000h 2659290-3 a20120419 20120419172411 @@ -361913,7 +361913,7 @@ - 00672nM2.01200024 000h + 00000nM2.01200024 000h 2659291-5 a20120419 20120419213441 @@ -362009,7 +362009,7 @@ - 01505nM2.01200024 000h + 00000nM2.01200024 000h 2659292-7 a20120419 20120419183006 @@ -362160,7 +362160,7 @@ - 01286nM2.01200024 000h + 00000nM2.01200024 000h 2659293-9 a20120419 20120419182208 @@ -362301,7 +362301,7 @@ - 00503nM2.01200024 000h + 00000nM2.01200024 000h 2659294-0 a20120419 20120419194733 @@ -362374,7 +362374,7 @@ - 00506nM2.01200024 000h + 00000nM2.01200024 000h 2659295-2 a20120419 20120419200801 @@ -362453,7 +362453,7 @@ - 00498nM2.01200024 000h + 00000nM2.01200024 000h 2659302-6 a20120420 20120420073222 @@ -362538,7 +362538,7 @@ - 00514nM2.01200024 000h + 00000nM2.01200024 000h 2659303-8 a20120420 20120420074408 @@ -362606,7 +362606,7 @@ - 00802nM2.01200024 000h + 00000nM2.01200024 000h 2659304-X a20120420 20120420074624 @@ -362696,7 +362696,7 @@ - 00435nM2.01200024 000h + 00000nM2.01200024 000h 2659305-1 a20120420 20120420081550 @@ -362763,7 +362763,7 @@ - 00433nM2.01200024 000h + 00000nM2.01200024 000h 2659306-3 a20120420 20120420080911 @@ -362815,7 +362815,7 @@ - 00370nM2.01200024 000h + 00000nM2.01200024 000h 2659307-5 a20120420 20120420081226 @@ -362864,7 +362864,7 @@ - 00418nM2.01200024 000h + 00000nM2.01200024 000h 2659308-7 a20120420 20120420081536 @@ -362916,7 +362916,7 @@ - 00444nM2.01200024 000h + 00000nM2.01200024 000h 2659309-9 a20120420 20120420081643 @@ -362986,7 +362986,7 @@ - 00798nM2.01200024 000h + 00000nM2.01200024 000h 2659310-5 a20120420 20120420084153 @@ -363076,7 +363076,7 @@ - 00923nM2.01200024 000h + 00000nM2.01200024 000h 2659311-7 a20120420 20120420082550 @@ -363172,7 +363172,7 @@ - 00450nM2.01200024 000h + 00000nM2.01200024 000h 2659312-9 a20120420 20120420083008 @@ -363245,7 +363245,7 @@ - 00878nM2.01200024 000h + 00000nM2.01200024 000h 2659313-0 a20120420 20120420084139 @@ -363344,7 +363344,7 @@ - 00835nM2.01200024 000h + 00000nM2.01200024 000h 2659314-2 a20120420 20120420084204 @@ -363437,7 +363437,7 @@ - 01157nM2.01200024 000h + 00000nM2.01200024 000h 2659315-4 a20120420 20120420084953 @@ -363566,7 +363566,7 @@ - 00804nM2.01200024 000h + 00000nM2.01200024 000h 2659316-6 a20120420 20120420084608 @@ -363656,7 +363656,7 @@ - 00498nM2.01200024 000h + 00000nM2.01200024 000h 2659317-8 a20120420 20120420093224 @@ -363732,7 +363732,7 @@ - 00371nM2.01200024 000h + 00000nM2.01200024 000h 2659318-X a20120420 20120420213520 @@ -363800,7 +363800,7 @@ - 00749nM2.01200024 000h + 00000nM2.01200024 000h 2659319-1 a20120420 20120420085644 @@ -363889,7 +363889,7 @@ - 00536nM2.01200024 000h + 00000nM2.01200024 000h 2659320-8 a20120420 20120420090325 @@ -363959,7 +363959,7 @@ - 00803nM2.01200024 000h + 00000nM2.01200024 000h 2659321-X a20120420 20120420085906 @@ -364052,7 +364052,7 @@ - 01229nM2.01200024 000h + 00000nM2.01200024 000h 2659322-1 a20120420 20120420085905 @@ -364181,7 +364181,7 @@ - 00729nM2.01200024 000h + 00000nM2.01200024 000h 2659323-3 a20120420 20120420090240 @@ -364271,7 +364271,7 @@ - 00817nM2.01200024 000h + 00000nM2.01200024 000h 2659324-5 a20120420 20120420090305 @@ -364364,7 +364364,7 @@ - 00809nM2.01200024 000h + 00000nM2.01200024 000h 2659325-7 a20120420 20120420090903 @@ -364460,7 +364460,7 @@ - 00504nM2.01200024 000h + 00000nM2.01200024 000h 2659326-9 a20120420 20120420213124 @@ -364521,7 +364521,7 @@ - 00847nM2.01200024 000h + 00000nM2.01200024 000h 2659327-0 a20120420 20120420091340 @@ -364620,7 +364620,7 @@ - 00678nM2.01200024 000h + 00000nM2.01200024 000h 2659328-2 a20120420 20120420091617 @@ -364710,7 +364710,7 @@ - 00890nM2.01200024 000h + 00000nM2.01200024 000h 2659329-4 a20120420 20120420091845 @@ -364806,7 +364806,7 @@ - 00998nM2.01200024 000h + 00000nM2.01200024 000h 2659330-0 a20120420 20120420095306 @@ -364909,7 +364909,7 @@ - 00362nM2.01200024 000h + 00000nM2.01200024 000h 2659331-2 a20120420 20120420092543 @@ -364974,7 +364974,7 @@ - 00881nM2.01200024 000h + 00000nM2.01200024 000h 2659375-0 a20120420 20120420213524 @@ -365085,7 +365085,7 @@ - 01381nM2.01200024 000h + 00000nM2.01200024 000h 2659332-4 a20120420 20120423202516 @@ -365203,7 +365203,7 @@ - 00317nM2.01200024 000h + 00000nM2.01200024 000h 2659333-6 a20120420 20120420093937 @@ -365255,7 +365255,7 @@ - 00776nM2.01200024 000h + 00000nM2.01200024 000h 2659334-8 a20120420 20120420094525 @@ -365339,7 +365339,7 @@ - 00915nM2.01200024 000h + 00000nM2.01200024 000h 2659335-X a20120420 20120420095336 @@ -365438,7 +365438,7 @@ - 00617nM2.01200024 000h + 00000nM2.01200024 000h 2659336-1 a20120420 20120420095427 @@ -365528,7 +365528,7 @@ - 00849nM2.01200024 000h + 00000nM2.01200024 000h 2659337-3 a20120420 20120420095544 @@ -365621,7 +365621,7 @@ - 00862nM2.01200024 000h + 00000nM2.01200024 000h 2659338-5 a20120420 20120420100046 @@ -365717,7 +365717,7 @@ - 00922nM2.01200024 000h + 00000nM2.01200024 000h 2659339-7 a20120420 20120420100300 @@ -365832,7 +365832,7 @@ - 01121nM2.01200024 000h + 00000nM2.01200024 000h 2659340-3 a20120420 20120420100556 @@ -365941,7 +365941,7 @@ - 00325nM2.01200024 000h + 00000nM2.01200024 000h 2659341-5 a20120420 20120420100942 @@ -365993,7 +365993,7 @@ - 01212nM2.01200024 000h + 00000nM2.01200024 000h 2659342-7 a20120420 20120420110724 @@ -366114,7 +366114,7 @@ - 01172nM2.01200024 000h + 00000nM2.01200024 000h 2659343-9 a20120420 20120420101334 @@ -366235,7 +366235,7 @@ - 01049nM2.01200024 000h + 00000nM2.01200024 000h 2659344-0 a20120420 20120420101748 @@ -366341,7 +366341,7 @@ - 01861nM2.01200024 000h + 00000nM2.01200024 000h 2659345-2 a20120420 20120420104051 @@ -366470,7 +366470,7 @@ - 00432nM2.01200024 000h + 00000nM2.01200024 000h 2659346-4 a20120420 20120420101658 @@ -366534,7 +366534,7 @@ - 00312nM2.01200024 000h + 00000nM2.01200024 000h 2659347-6 a20120420 20120420213144 @@ -366586,7 +366586,7 @@ - 00937nM2.01200024 000h + 00000nM2.01200024 000h 2659348-8 a20120420 20120420102010 @@ -366692,7 +366692,7 @@ - 01142nM2.01200024 000h + 00000nM2.01200024 000h 2659349-X a20120420 20120420102244 @@ -366798,7 +366798,7 @@ - 00533nM2.01200024 000h + 00000nM2.01200024 000h 2659350-6 a20120420 20120420103838 @@ -366883,7 +366883,7 @@ - 00973nM2.01200024 000h + 00000nM2.01200024 000h 2659351-8 a20120420 20120420102855 @@ -366989,7 +366989,7 @@ - 00925nM2.01200024 000h + 00000nM2.01200024 000h 2659352-X a20120420 20120423094906 @@ -367084,7 +367084,7 @@ - 02357nM2.01200024 000h + 00000nM2.01200024 000h 2659353-1 a20120420 20120420121316 @@ -367225,7 +367225,7 @@ - 01124nM2.01200024 000h + 00000nM2.01200024 000h 2659354-3 a20120420 20120420104908 @@ -367344,7 +367344,7 @@ - 00436nM2.01200024 000h + 00000nM2.01200024 000h 2659355-5 a20120420 20120420105246 @@ -367411,7 +367411,7 @@ - 00327nM2.01200024 000h + 00000nM2.01200024 000h 2659356-7 a20120420 20120420105347 @@ -367469,7 +367469,7 @@ - 00777nM2.01200024 000h + 00000nM2.01200024 000h 2659357-9 a20120420 20120420105506 @@ -367559,7 +367559,7 @@ - 00743nM2.01200024 000h + 00000nM2.01200024 000h 2659358-0 a20120420 20120420105733 @@ -367646,7 +367646,7 @@ - 00908nM2.01200024 000h + 00000nM2.01200024 000h 2659359-2 a20120420 20120420213547 @@ -367760,7 +367760,7 @@ - 00755nM2.01200024 000h + 00000nM2.01200024 000h 2659360-9 a20120420 20120420110147 @@ -367847,7 +367847,7 @@ - 00409nM2.01200024 000h + 00000nM2.01200024 000h 2659361-0 a20120420 20120420110053 @@ -367914,7 +367914,7 @@ - 00352nM2.01200024 000h + 00000nM2.01200024 000h 2659362-2 a20120420 20120420110152 @@ -367966,7 +367966,7 @@ - 00391nM2.01200024 000h + 00000nM2.01200024 000h 2659363-4 a20120420 20120420111608 @@ -368030,7 +368030,7 @@ - 00707nM2.01200024 000h + 00000nM2.01200024 000h 2659364-6 a20120420 20120420110652 @@ -368114,7 +368114,7 @@ - 00736nM2.01200024 000h + 00000nM2.01200024 000h 2659365-8 a20120420 20120420111054 @@ -368201,7 +368201,7 @@ - 00363nM2.01200024 000h + 00000nM2.01200024 000h 2659366-X a20120420 20120420111652 @@ -368265,7 +368265,7 @@ - 00327nM2.01200024 000h + 00000nM2.01200024 000h 2659367-1 a20120420 20120420111950 @@ -368314,7 +368314,7 @@ - 00633nM2.01200024 000h + 00000nM2.01200024 000h 2659368-3 a20120420 20120420165901 @@ -368387,7 +368387,7 @@ - 00357nM2.01200024 000h + 00000nM2.01200024 000h 2659369-5 a20120420 20120420113925 @@ -368448,7 +368448,7 @@ - 00377nM2.01200024 000h + 00000nM2.01200024 000h 2659370-1 a20120420 20120420113824 @@ -368515,7 +368515,7 @@ - 00555nM2.01200024 000h + 00000nM2.01200024 000h 2659371-3 a20120420 20120423114244 @@ -368594,7 +368594,7 @@ - 00384nM2.01200024 000h + 00000nM2.01200024 000h 2659372-5 a20120420 20120420213650 @@ -368646,7 +368646,7 @@ - 00538nM2.01200024 000h + 00000nM2.01200024 000h 2659373-7 a20120420 20120420213654 @@ -368728,7 +368728,7 @@ - 00722nM2.01200024 000h + 00000nM2.01200024 000h 2659376-2 a20120420 20120420115950 @@ -368822,7 +368822,7 @@ - 00334nM2.01200024 000h + 00000nM2.01200024 000h 2659377-4 a20120420 20120420115903 @@ -368883,7 +368883,7 @@ - 00680nM2.01200024 000h + 00000nM2.01200024 000h 2659378-6 a20120420 20120423094943 @@ -368971,7 +368971,7 @@ - 00686nM2.01200024 000h + 00000nM2.01200024 000h 2659379-8 a20120420 20120420120400 @@ -369056,7 +369056,7 @@ - 00721nM2.01200024 000h + 00000nM2.01200024 000h 2659380-4 a20120420 20120420120204 @@ -369144,7 +369144,7 @@ - 00772nM2.01200024 000h + 00000nM2.01200024 000h 2659381-6 a20120420 20120420120332 @@ -369226,7 +369226,7 @@ - 02488nM2.01200024 000h + 00000nM2.01200024 000h 2659382-8 a20120420 20120420122144 @@ -369379,7 +369379,7 @@ - 00510nM2.01200024 000h + 00000nM2.01200024 000h 2659383-X a20120420 20120420121256 @@ -369460,7 +369460,7 @@ - 01390nM2.01200024 000h + 00000nM2.01200024 000h 2659384-1 a20120420 20120423081944 @@ -369583,7 +369583,7 @@ - 00862nM2.01200024 000h + 00000nM2.01200024 000h 2659385-3 a20120420 20120423140438 @@ -369678,7 +369678,7 @@ - 00757nM2.01200024 000h + 00000nM2.01200024 000h 2659386-5 a20120420 20120420122103 @@ -369775,7 +369775,7 @@ - 00490nM2.01200024 000h + 00000nM2.01200024 000h 2659387-7 a20120420 20120420122553 @@ -369857,7 +369857,7 @@ - 00321nM2.01200024 000h + 00000nM2.01200024 000h 2659388-9 a20120420 20120420124621 @@ -369909,7 +369909,7 @@ - 00749nM2.01200024 000h + 00000nM2.01200024 000h 2659389-0 a20120420 20120420131506 @@ -369998,7 +369998,7 @@ - 00693nM2.01200024 000h + 00000nM2.01200024 000h 2659390-7 a20120420 20120420213309 @@ -370069,7 +370069,7 @@ - 00325nM2.01200024 000h + 00000nM2.01200024 000h 2659391-9 a20120420 20120420132507 @@ -370127,7 +370127,7 @@ - 00729nM2.01200024 000h + 00000nM2.01200024 000h 2659393-2 a20120420 20120420213713 @@ -370236,7 +370236,7 @@ - 00641nM2.01200024 000h + 00000nM2.01200024 000h 2659394-4 a20120420 20120420145123 @@ -370324,7 +370324,7 @@ - 00510nM2.01200024 000h + 00000nM2.01200024 000h 2659395-6 a20120420 20120420213724 @@ -370410,7 +370410,7 @@ - 00277nM2.01200024 000h + 00000nM2.01200024 000h 2659396-8 a20120420 20120420162458 @@ -370459,7 +370459,7 @@ - 00480nM2.01200024 000h + 00000nM2.01200024 000h 2659397-X a20120420 20120420135030 @@ -370520,7 +370520,7 @@ - 00398nM2.01200024 000h + 00000nM2.01200024 000h 2659398-1 a20120420 20120420135113 @@ -370585,7 +370585,7 @@ - 00989nM2.01200024 000h + 00000nM2.01200024 000h 2659399-3 a20120420 20120420135811 @@ -370692,7 +370692,7 @@ - 00389nM2.01200024 000h + 00000nM2.01200024 000h 2659400-6 a20120420 20120420141741 @@ -370747,7 +370747,7 @@ - 00480nM2.01200024 000h + 00000nM2.01200024 000h 2659401-8 a20120420 20120420142813 @@ -370815,7 +370815,7 @@ - 00666nM2.01200024 000h + 00000nM2.01200024 000h 2659402-X a20120420 20120420143618 @@ -370909,7 +370909,7 @@ - 00292nM2.01200024 000h + 00000nM2.01200024 000h 2659403-1 a20120420 20120420143730 @@ -370958,7 +370958,7 @@ - 00306nM2.01200024 000h + 00000nM2.01200024 000h 2659404-3 a20120420 20120420144105 @@ -371016,7 +371016,7 @@ - 00374nM2.01200024 000h + 00000nM2.01200024 000h 2659405-5 a20120420 20120420145628 @@ -371084,7 +371084,7 @@ - 00806nM2.01200024 000h + 00000nM2.01200024 000h 2659406-7 a20120420 20120420150620 @@ -371183,7 +371183,7 @@ - 01221nM2.01200024 000h + 00000nM2.01200024 000h 2659407-9 a20120420 20120420145943 @@ -371278,7 +371278,7 @@ - 00490nM2.01200024 000h + 00000nM2.01200024 000h 2659408-0 a20120420 20120420150648 @@ -371351,7 +371351,7 @@ - 00409nM2.01200024 000h + 00000nM2.01200024 000h 2659409-2 a20120420 20120420151635 @@ -371415,7 +371415,7 @@ - 00413nM2.01200024 000h + 00000nM2.01200024 000h 2659410-9 a20120420 20120420151915 @@ -371479,7 +371479,7 @@ - 00734nM2.01200024 000h + 00000nM2.01200024 000h 2659411-0 a20120420 20120420152522 @@ -371568,7 +371568,7 @@ - 00392nM2.01200024 000h + 00000nM2.01200024 000h 2659412-2 a20120420 20120420152836 @@ -371636,7 +371636,7 @@ - 00391nM2.01200024 000h + 00000nM2.01200024 000h 2659413-4 a20120420 20120420153959 @@ -371688,7 +371688,7 @@ - 00468nM2.01200024 000h + 00000nM2.01200024 000h 2659414-6 a20120420 20120420214012 @@ -371770,7 +371770,7 @@ - 00380nM2.01200024 000h + 00000nM2.01200024 000h 2659415-8 a20120420 20120420185822 @@ -371825,7 +371825,7 @@ - 00422nM2.01200024 000h + 00000nM2.01200024 000h 2659426-2 a20120421 20120421111554 @@ -371895,7 +371895,7 @@ - 00524nM2.01200024 000h + 00000nM2.01200024 000h 2659427-4 a20120421 20120421110728 @@ -371966,7 +371966,7 @@ - 00410nM2.01200024 000h + 00000nM2.01200024 000h 2659428-6 a20120421 20120421152455 @@ -372036,7 +372036,7 @@ - 00638nM2.01200024 000h + 00000nM2.01200024 000h 2659430-4 a20120423 20120423074051 @@ -372127,7 +372127,7 @@ - 00674nM2.01200024 000h + 00000nM2.01200024 000h 2659431-6 a20120423 20120423152143 @@ -372224,7 +372224,7 @@ - 01150nM2.01200024 000h + 00000nM2.01200024 000h 2659432-8 a20120423 20120423082429 @@ -372344,7 +372344,7 @@ - 00665nM2.01200024 000h + 00000nM2.01200024 000h 2659433-X a20120423 20120423082042 @@ -372435,7 +372435,7 @@ - 01191nM2.01200024 000h + 00000nM2.01200024 000h 2659434-1 a20120423 20120423083209 @@ -372558,7 +372558,7 @@ - 00721nM2.01200024 000h + 00000nM2.01200024 000h 2659435-3 a20120423 20120423082546 @@ -372652,7 +372652,7 @@ - 01220nM2.01200024 000h + 00000nM2.01200024 000h 2659436-5 a20120423 20120423083851 @@ -372775,7 +372775,7 @@ - 00725nM2.01200024 000h + 00000nM2.01200024 000h 2659437-7 a20120423 20120423083403 @@ -372875,7 +372875,7 @@ - 01484nM2.01200024 000h + 00000nM2.01200024 000h 2659438-9 a20120423 20120423084431 @@ -373004,7 +373004,7 @@ - 01596nM2.01200024 000h + 00000nM2.01200024 000h 2659439-0 a20120423 20120423084311 @@ -373133,7 +373133,7 @@ - 00783nM2.01200024 000h + 00000nM2.01200024 000h 2659440-7 a20120423 20120423084457 @@ -373230,7 +373230,7 @@ - 00384nM2.01200024 000h + 00000nM2.01200024 000h 2659441-9 a20120423 20120423084842 @@ -373285,7 +373285,7 @@ - 01166nM2.01200024 000h + 00000nM2.01200024 000h 2659442-0 a20120423 20120423085048 @@ -373411,7 +373411,7 @@ - 00913nM2.01200024 000h + 00000nM2.01200024 000h 2659443-2 a20120423 20120423085235 @@ -373508,7 +373508,7 @@ - 00698nM2.01200024 000h + 00000nM2.01200024 000h 2659444-4 a20120423 20120423085920 @@ -373593,7 +373593,7 @@ - 00578nM2.01200024 000h + 00000nM2.01200024 000h 2659445-6 a20120423 20120423090814 @@ -373670,7 +373670,7 @@ - 00512nM2.01200024 000h + 00000nM2.01200024 000h 2659446-8 a20120423 20120423090248 @@ -373740,7 +373740,7 @@ - 00644nM2.01200024 000h + 00000nM2.01200024 000h 2659447-X a20120423 20120423090442 @@ -373834,7 +373834,7 @@ - 01476nM2.01200024 000h + 00000nM2.01200024 000h 2659448-1 a20120423 20120423091022 @@ -373954,7 +373954,7 @@ - 00641nM2.01200024 000h + 00000nM2.01200024 000h 2659449-3 a20120423 20120423090716 @@ -374045,7 +374045,7 @@ - 01609nM2.01200024 000h + 00000nM2.01200024 000h 2659450-X a20120423 20120423091731 @@ -374168,7 +374168,7 @@ - 00691nM2.01200024 000h + 00000nM2.01200024 000h 2659451-1 a20120423 20120423091400 @@ -374253,7 +374253,7 @@ - 00630nM2.01200024 000h + 00000nM2.01200024 000h 2659452-3 a20120423 20120423091707 @@ -374341,7 +374341,7 @@ - 00818nM2.01200024 000h + 00000nM2.01200024 000h 2659453-5 a20120423 20120423091847 @@ -374432,7 +374432,7 @@ - 00899nM2.01200024 000h + 00000nM2.01200024 000h 2659454-7 a20120423 20120423092146 @@ -374543,7 +374543,7 @@ - 00661nM2.01200024 000h + 00000nM2.01200024 000h 2659455-9 a20120423 20120423100027 @@ -374637,7 +374637,7 @@ - 00898nM2.01200024 000h + 00000nM2.01200024 000h 2659456-0 a20120423 20120423105834 @@ -374741,7 +374741,7 @@ - 01045nM2.01200024 000h + 00000nM2.01200024 000h 2659457-2 a20120423 20120423131604 @@ -374854,7 +374854,7 @@ - 00367nM2.01200024 000h + 00000nM2.01200024 000h 2659458-4 a20120423 20120423200645 @@ -374912,7 +374912,7 @@ - 00431nM2.01200024 000h + 00000nM2.01200024 000h 2659459-6 a20120423 20120423094326 @@ -374970,7 +374970,7 @@ - 00391nM2.01200024 000h + 00000nM2.01200024 000h 2659460-2 a20120423 20120423094936 @@ -375031,7 +375031,7 @@ - 00524nM2.01200024 000h + 00000nM2.01200024 000h 2659461-4 a20120423 20120423094941 @@ -375116,7 +375116,7 @@ - 00804nM2.01200024 000h + 00000nM2.01200024 000h 2659462-6 a20120423 20120423200649 @@ -375213,7 +375213,7 @@ - 00911nM2.01200024 000h + 00000nM2.01200024 000h 2659463-8 a20120423 20120423095930 @@ -375314,7 +375314,7 @@ - 00415nM2.01200024 000h + 00000nM2.01200024 000h 2659464-X a20120423 20120423200650 @@ -375387,7 +375387,7 @@ - 00999nM2.01200024 000h + 00000nM2.01200024 000h 2659465-1 a20120423 20120423200650 @@ -375519,7 +375519,7 @@ - 00456nM2.01200024 000h + 00000nM2.01200024 000h 2659466-3 a20120423 20120423100404 @@ -375584,7 +375584,7 @@ - 00540nM2.01200024 000h + 00000nM2.01200024 000h 2659467-5 a20120423 20120423201622 @@ -375660,7 +375660,7 @@ - 00675nM2.01200024 000h + 00000nM2.01200024 000h 2659468-7 a20120423 20120423100408 @@ -375745,7 +375745,7 @@ - 00808nM2.01200024 000h + 00000nM2.01200024 000h 2659469-9 a20120423 20120423100936 @@ -375842,7 +375842,7 @@ - 00359nM2.01200024 000h + 00000nM2.01200024 000h 2659470-5 a20120423 20120423101601 @@ -375903,7 +375903,7 @@ - 00786nM2.01200024 000h + 00000nM2.01200024 000h 2659471-7 a20120423 20120423200656 @@ -376000,7 +376000,7 @@ - 00420nM2.01200024 000h + 00000nM2.01200024 000h 2659472-9 a20120423 20120423201635 @@ -376058,7 +376058,7 @@ - 00883nM2.01200024 000h + 00000nM2.01200024 000h 2659473-0 a20120423 20120423112003 @@ -376158,7 +376158,7 @@ - 00804nM2.01200024 000h + 00000nM2.01200024 000h 2659474-2 a20120423 20120423105430 @@ -376257,7 +376257,7 @@ - 00720nM2.01200024 000h + 00000nM2.01200024 000h 2659475-4 a20120423 20120423103413 @@ -376359,7 +376359,7 @@ - 00858nM2.01200024 000h + 00000nM2.01200024 000h 2659476-6 a20120423 20120423110101 @@ -376458,7 +376458,7 @@ - 00449nM2.01200024 000h + 00000nM2.01200024 000h 2659477-8 a20120423 20120423103926 @@ -376522,7 +376522,7 @@ - 00743nM2.01200024 000h + 00000nM2.01200024 000h 2659478-X a20120423 20120423133610 @@ -376613,7 +376613,7 @@ - 00388nM2.01200024 000h + 00000nM2.01200024 000h 2659479-1 a20120423 20120423104651 @@ -376683,7 +376683,7 @@ - 00707nM2.01200024 000h + 00000nM2.01200024 000h 2659480-8 a20120423 20120423105033 @@ -376771,7 +376771,7 @@ - 00378nM2.01200024 000h + 00000nM2.01200024 000h 2659481-X a20120423 20120423200711 @@ -376842,7 +376842,7 @@ - 00444nM2.01200024 000h + 00000nM2.01200024 000h 2659482-1 a20120423 20120423201658 @@ -376919,7 +376919,7 @@ - 01156nM2.01200024 000h + 00000nM2.01200024 000h 2659483-3 a20120423 20120423201658 @@ -377026,7 +377026,7 @@ - 00563nM2.01200024 000h + 00000nM2.01200024 000h 2659484-5 a20120423 20120423105644 @@ -377105,7 +377105,7 @@ - 01162nM2.01200024 000h + 00000nM2.01200024 000h 2659485-7 a20120423 20120423113233 @@ -377224,7 +377224,7 @@ - 00389nM2.01200024 000h + 00000nM2.01200024 000h 2659486-9 a20120423 20120423105734 @@ -377288,7 +377288,7 @@ - 01045nM2.01200024 000h + 00000nM2.01200024 000h 2659487-0 a20120423 20120423162135 @@ -377403,7 +377403,7 @@ - 00372nM2.01200024 000h + 00000nM2.01200024 000h 2659488-2 a20120423 20120423200807 @@ -377458,7 +377458,7 @@ - 00660nM2.01200024 000h + 00000nM2.01200024 000h 2659489-4 a20120423 20120423110146 @@ -377552,7 +377552,7 @@ - 00736nM2.01200024 000h + 00000nM2.01200024 000h 2659490-0 a20120423 20120423110639 @@ -377643,7 +377643,7 @@ - 00717nM2.01200024 000h + 00000nM2.01200024 000h 2659491-2 a20120423 20120423110821 @@ -377731,7 +377731,7 @@ - 00480nM2.01200024 000h + 00000nM2.01200024 000h 2659492-4 a20120423 20120423200810 @@ -377813,7 +377813,7 @@ - 00645nM2.01200024 000h + 00000nM2.01200024 000h 2659493-6 a20120423 20120423111314 @@ -377898,7 +377898,7 @@ - 00584nM2.01200024 000h + 00000nM2.01200024 000h 2659494-8 a20120423 20120423201836 @@ -377989,7 +377989,7 @@ - 00949nM2.01200024 000h + 00000nM2.01200024 000h 2659495-X a20120423 20120423144652 @@ -378098,7 +378098,7 @@ - 00637nM2.01200024 000h + 00000nM2.01200024 000h 2659496-1 a20120423 20120423201837 @@ -378194,7 +378194,7 @@ - 00645nM2.01200024 000h + 00000nM2.01200024 000h 2659497-3 a20120423 20120423112110 @@ -378285,7 +378285,7 @@ - 00633nM2.01200024 000h + 00000nM2.01200024 000h 2659498-5 a20120423 20120423112238 @@ -378370,7 +378370,7 @@ - 00623nM2.01200024 000h + 00000nM2.01200024 000h 2659499-7 a20120423 20120423112359 @@ -378461,7 +378461,7 @@ - 00728nM2.01200024 000h + 00000nM2.01200024 000h 2659500-X a20120423 20120423112635 @@ -378552,7 +378552,7 @@ - 01097nM2.01200024 000h + 00000nM2.01200024 000h 2659501-1 a20120423 20120423122950 @@ -378656,7 +378656,7 @@ - 00678nM2.01200024 000h + 00000nM2.01200024 000h 2659502-3 a20120423 20120423112658 @@ -378750,7 +378750,7 @@ - 00350nM2.01200024 000h + 00000nM2.01200024 000h 2659503-5 a20120423 20120423112640 @@ -378808,7 +378808,7 @@ - 00639nM2.01200024 000h + 00000nM2.01200024 000h 2659504-7 a20120423 20120423112920 @@ -378899,7 +378899,7 @@ - 00684nM2.01200024 000h + 00000nM2.01200024 000h 2659505-9 a20120423 20120423200817 @@ -378996,7 +378996,7 @@ - 00630nM2.01200024 000h + 00000nM2.01200024 000h 2659506-0 a20120423 20120423113429 @@ -379087,7 +379087,7 @@ - 00952nM2.01200024 000h + 00000nM2.01200024 000h 2659507-2 a20120423 20120423125912 @@ -379208,7 +379208,7 @@ - 01233nM2.01200024 000h + 00000nM2.01200024 000h 2659508-4 a20120423 20120423114427 @@ -379327,7 +379327,7 @@ - 00706nM2.01200024 000h + 00000nM2.01200024 000h 2659509-6 a20120423 20120423113253 @@ -379412,7 +379412,7 @@ - 00667nM2.01200024 000h + 00000nM2.01200024 000h 2659510-2 a20120423 20120423113355 @@ -379503,7 +379503,7 @@ - 00292nM2.01200024 000h + 00000nM2.01200024 000h 2659511-4 a20120423 20120423120348 @@ -379555,7 +379555,7 @@ - 01218nM2.01200024 000h + 00000nM2.01200024 000h 2659512-6 a20120423 20120423114502 @@ -379674,7 +379674,7 @@ - 00643nM2.01200024 000h + 00000nM2.01200024 000h 2659513-8 a20120423 20120423114039 @@ -379765,7 +379765,7 @@ - 01095nM2.01200024 000h + 00000nM2.01200024 000h 2659514-X a20120423 20120423120037 @@ -379882,7 +379882,7 @@ - 00776nM2.01200024 000h + 00000nM2.01200024 000h 2659515-1 a20120423 20120423114608 @@ -379982,7 +379982,7 @@ - 00622nM2.01200024 000h + 00000nM2.01200024 000h 2659516-3 a20120423 20120423122402 @@ -380058,7 +380058,7 @@ - 00897nM2.01200024 000h + 00000nM2.01200024 000h 2659517-5 a20120423 20120423200823 @@ -380170,7 +380170,7 @@ - 00720nM2.01200024 000h + 00000nM2.01200024 000h 2659521-7 a20120423 20120423115128 @@ -380264,7 +380264,7 @@ - 00506nM2.01200024 000h + 00000nM2.01200024 000h 2659522-9 a20120423 20120423115141 @@ -380331,7 +380331,7 @@ - 00713nM2.01200024 000h + 00000nM2.01200024 000h 2659523-0 a20120423 20120423144154 @@ -380410,7 +380410,7 @@ - 00762nM2.01200024 000h + 00000nM2.01200024 000h 2659524-2 a20120423 20120423115324 @@ -380495,7 +380495,7 @@ - 01003nM2.01200024 000h + 00000nM2.01200024 000h 2659525-4 a20120423 20120423115513 @@ -380608,7 +380608,7 @@ - 00518nM2.01200024 000h + 00000nM2.01200024 000h 2659526-6 a20120423 20120423115828 @@ -380687,7 +380687,7 @@ - 00900nM2.01200024 000h + 00000nM2.01200024 000h 2659527-8 a20120423 20120423120456 @@ -380794,7 +380794,7 @@ - 00537nM2.01200024 000h + 00000nM2.01200024 000h 2659528-X a20120423 20120423120813 @@ -380868,7 +380868,7 @@ - 00953nM2.01200024 000h + 00000nM2.01200024 000h 2659530-8 a20120423 20120423121709 @@ -380979,7 +380979,7 @@ - 00397nM2.01200024 000h + 00000nM2.01200024 000h 2659531-X a20120423 20120423121620 @@ -381043,7 +381043,7 @@ - 00785nM2.01200024 000h + 00000nM2.01200024 000h 2659532-1 a20120423 20120423121541 @@ -381143,7 +381143,7 @@ - 00900nM2.01200024 000h + 00000nM2.01200024 000h 2659533-3 a20120423 20120423121631 @@ -381254,7 +381254,7 @@ - 00629nM2.01200024 000h + 00000nM2.01200024 000h 2659534-5 a20120423 20120423144123 @@ -381330,7 +381330,7 @@ - 00480nM2.01200024 000h + 00000nM2.01200024 000h 2659535-7 a20120423 20120423155454 @@ -381403,7 +381403,7 @@ - 00562nM2.01200024 000h + 00000nM2.01200024 000h 2659536-9 a20120423 20120423200834 @@ -381485,7 +381485,7 @@ - 00580nM2.01200024 000h + 00000nM2.01200024 000h 2659537-0 a20120423 20120423123757 @@ -381569,7 +381569,7 @@ - 00509nM2.01200024 000h + 00000nM2.01200024 000h 2659539-4 a20120423 20120423143443 @@ -381639,7 +381639,7 @@ - 00527nM2.01200024 000h + 00000nM2.01200024 000h 2659540-0 a20120423 20120423200837 @@ -381716,7 +381716,7 @@ - 00694nM2.01200024 000h + 00000nM2.01200024 000h 2659541-2 a20120423 20120423200838 @@ -381816,7 +381816,7 @@ - 00533nM2.01200024 000h + 00000nM2.01200024 000h 2659542-4 a20120423 20120423130614 @@ -381889,7 +381889,7 @@ - 01046nM2.01200024 000h + 00000nM2.01200024 000h 2659543-6 a20120423 20120423151408 @@ -381999,7 +381999,7 @@ - 01071nM2.01200024 000h + 00000nM2.01200024 000h 2659544-8 a20120423 20120423133514 @@ -382099,7 +382099,7 @@ - 00443nM2.01200024 000h + 00000nM2.01200024 000h 2659545-X a20120423 20120423133639 @@ -382165,7 +382165,7 @@ - 00342nM2.01200024 000h + 00000nM2.01200024 000h 2659546-1 a20120423 20120423201919 @@ -382217,7 +382217,7 @@ - 00387nM2.01200024 000h + 00000nM2.01200024 000h 2659547-3 a20120423 20120423134252 @@ -382278,7 +382278,7 @@ - 00441nM2.01200024 000h + 00000nM2.01200024 000h 2659549-7 a20120423 20120423134958 @@ -382345,7 +382345,7 @@ - 00381nM2.01200024 000h + 00000nM2.01200024 000h 2659550-3 a20120423 20120423135614 @@ -382397,7 +382397,7 @@ - 00622nM2.01200024 000h + 00000nM2.01200024 000h 2659551-5 a20120423 20120423140212 @@ -382474,7 +382474,7 @@ - 00389nM2.01200024 000h + 00000nM2.01200024 000h 2659552-7 a20120423 20120423140159 @@ -382535,7 +382535,7 @@ - 00790nM2.01200024 000h + 00000nM2.01200024 000h 2659553-9 a20120423 20120423140902 @@ -382625,7 +382625,7 @@ - 00786nM2.01200024 000h + 00000nM2.01200024 000h 2659554-0 a20120423 20120423140830 @@ -382715,7 +382715,7 @@ - 00536nM2.01200024 000h + 00000nM2.01200024 000h 2659555-2 a20120423 20120423141917 @@ -382782,7 +382782,7 @@ - 00381nM2.01200024 000h + 00000nM2.01200024 000h 2659556-4 a20120423 20120423142553 @@ -382852,7 +382852,7 @@ - 00335nM2.01200024 000h + 00000nM2.01200024 000h 2659557-6 a20120423 20120423144638 @@ -382910,7 +382910,7 @@ - 01061nM2.01200024 000h + 00000nM2.01200024 000h 2659558-8 a20120423 20120423162206 @@ -383029,7 +383029,7 @@ - 00415nM2.01200024 000h + 00000nM2.01200024 000h 2659559-X a20120423 20120423144518 @@ -383099,7 +383099,7 @@ - 00595nM2.01200024 000h + 00000nM2.01200024 000h 2659560-6 a20120423 20120423150659 @@ -383176,7 +383176,7 @@ - 00466nM2.01200024 000h + 00000nM2.01200024 000h 2659561-8 a20120423 20120423202001 @@ -383253,7 +383253,7 @@ - 00635nM2.01200024 000h + 00000nM2.01200024 000h 2659562-X a20120423 20120423145843 @@ -383335,7 +383335,7 @@ - 00713nM2.01200024 000h + 00000nM2.01200024 000h 2659563-1 a20120423 20120423150555 @@ -383420,7 +383420,7 @@ - 00503nM2.01200024 000h + 00000nM2.01200024 000h 2659564-3 a20120423 20120423202006 @@ -383496,7 +383496,7 @@ - 00783nM2.01200024 000h + 00000nM2.01200024 000h 2659565-5 a20120423 20120423151125 @@ -383584,7 +383584,7 @@ - 00366nM2.01200024 000h + 00000nM2.01200024 000h 2659566-7 a20120423 20120423151826 @@ -383645,7 +383645,7 @@ - 00833nM2.01200024 000h + 00000nM2.01200024 000h 2659567-9 a20120423 20120423153342 @@ -383744,7 +383744,7 @@ - 00845nM2.01200024 000h + 00000nM2.01200024 000h 2659568-0 a20120423 20120423153156 @@ -383843,7 +383843,7 @@ - 00474nM2.01200024 000h + 00000nM2.01200024 000h 2659569-2 a20120423 20120423152322 @@ -383916,7 +383916,7 @@ - 00843nM2.01200024 000h + 00000nM2.01200024 000h 2659570-9 a20120423 20120423152335 @@ -384004,7 +384004,7 @@ - 00829nM2.01200024 000h + 00000nM2.01200024 000h 2659571-0 a20120423 20120423152958 @@ -384100,7 +384100,7 @@ - 00843nM2.01200024 000h + 00000nM2.01200024 000h 2659572-2 a20120423 20120423152930 @@ -384196,7 +384196,7 @@ - 00395nM2.01200024 000h + 00000nM2.01200024 000h 2659573-4 a20120423 20120423153031 @@ -384266,7 +384266,7 @@ - 00577nM2.01200024 000h + 00000nM2.01200024 000h 2659574-6 a20120423 20120423153444 @@ -384342,7 +384342,7 @@ - 00445nM2.01200024 000h + 00000nM2.01200024 000h 2659575-8 a20120423 20120423153705 @@ -384412,7 +384412,7 @@ - 00575nM2.01200024 000h + 00000nM2.01200024 000h 2659576-X a20120423 20120423153744 @@ -384495,7 +384495,7 @@ - 00766nM2.01200024 000h + 00000nM2.01200024 000h 2659577-1 a20120423 20120423155055 @@ -384586,7 +384586,7 @@ - 00646nM2.01200024 000h + 00000nM2.01200024 000h 2659578-3 a20120423 20120423155716 @@ -384669,7 +384669,7 @@ - 01387nM2.01200024 000h + 00000nM2.01200024 000h 2659579-5 a20120423 20120423202127 @@ -384772,7 +384772,7 @@ - 00764nM2.01200024 000h + 00000nM2.01200024 000h 2659580-1 a20120423 20120423202127 @@ -384868,7 +384868,7 @@ - 00411nM2.01200024 000h + 00000nM2.01200024 000h 2659581-3 a20120423 20120423161341 @@ -384938,7 +384938,7 @@ - 00527nM2.01200024 000h + 00000nM2.01200024 000h 2659582-5 a20120423 20120423161639 @@ -385018,7 +385018,7 @@ - 00565nM2.01200024 000h + 00000nM2.01200024 000h 2659583-7 a20120423 20120423202136 @@ -385100,7 +385100,7 @@ - 00468nM2.01200024 000h + 00000nM2.01200024 000h 2659584-9 a20120423 20120423164542 @@ -385176,7 +385176,7 @@ - 00925nM2.01200024 000h + 00000nM2.01200024 000h 2659585-0 a20120423 20120423170125 @@ -385285,7 +385285,7 @@ - 00487nM2.01200024 000h + 00000nM2.01200024 000h 2659586-2 a20120423 20120423171500 @@ -385358,7 +385358,7 @@ - 00494nM2.01200024 000h + 00000nM2.01200024 000h 2659587-4 a20120423 20120423172054 @@ -385431,7 +385431,7 @@ - 00711nM2.01200024 000h + 00000nM2.01200024 000h 2659588-6 a20120423 20120423202148 @@ -385534,7 +385534,7 @@ - 00493nM2.01200024 000h + 00000nM2.01200024 000h 2659589-8 a20120423 20120423172409 @@ -385607,7 +385607,7 @@ - 02860nM2.01200024 000h + 00000nM2.01200024 000h 2659590-4 a20120423 20120423183835 @@ -385665,7 +385665,7 @@ - 00887cM2.01200024 000h + 00000cM2.01200024 000h 2659296-4 a20041102 20120420023002 @@ -385761,7 +385761,7 @@ - 00600cM2.01200024 000h + 00000cM2.01200024 000h 2659416-X a20041102 20120421023004 @@ -385846,7 +385846,7 @@ - 00554cM2.01200024 000h + 00000cM2.01200024 000h 2595224-9 a20041102 20110218050041 @@ -385934,7 +385934,7 @@ - 00488cM2.01200024 000h + 00000cM2.01200024 000h 2659297-6 a20041102 20120420023002 @@ -386016,7 +386016,7 @@ - 00800cM2.01200024 000h + 00000cM2.01200024 000h 2659298-8 a20050217 20120420023002 @@ -386104,7 +386104,7 @@ - 00774cM2.01200024 000h + 00000cM2.01200024 000h 2298820-8 a19741104 20120420110134 @@ -386202,7 +386202,7 @@ - 01088cM2.01200024 000h + 00000cM2.01200024 000h 2366818-0 a19810616 20090506213716 @@ -386308,7 +386308,7 @@ - 00988cM2.01200024 000h + 00000cM2.01200024 000h 2298790-3 a19791015 20120420125414 @@ -386433,7 +386433,7 @@ - 00694cM2.01200024 000h + 00000cM2.01200024 000h 2367296-1 a19781108 20090805023442 @@ -386554,7 +386554,7 @@ - 00826cM2.01200024 000h + 00000cM2.01200024 000h 2397903-3 a19810211 20120419085512 @@ -386661,7 +386661,7 @@ - 00520cM2.01200024 000h + 00000cM2.01200024 000h 2294768-1 a19840810 20120420085649 @@ -386750,7 +386750,7 @@ - 00612cM2.01200024 000h + 00000cM2.01200024 000h 2319961-1 a19851129 20120420075515 @@ -386860,7 +386860,7 @@ - 00480cM2.01200024 000h + 00000cM2.01200024 000h 2294160-5 a19861008 20120420085618 @@ -386949,7 +386949,7 @@ - 00605cM2.01200024 000h + 00000cM2.01200024 000h 2319675-0 a19861117 20120420193917 @@ -387036,7 +387036,7 @@ - 00620cM2.01200024 000h + 00000cM2.01200024 000h 2319674-9 a19861117 20120420194312 @@ -387123,7 +387123,7 @@ - 00598cM2.01200024 000h + 00000cM2.01200024 000h 2294083-2 a19861203 20120423104332 @@ -387208,7 +387208,7 @@ - 00424cM2.01200024 000h + 00000cM2.01200024 000h 2293927-1 a19870507 20120420093950 @@ -387288,7 +387288,7 @@ - 00798cM2.01200024 000h + 00000cM2.01200024 000h 2398751-0 a19871110 20120420150839 @@ -387403,7 +387403,7 @@ - 00753cM2.01200024 000h + 00000cM2.01200024 000h 2368536-0 a19881207 20120419113319 @@ -387503,7 +387503,7 @@ - 00447cM2.01200024 000h + 00000cM2.01200024 000h 2293139-9 a19890404 20110519112034 @@ -387582,7 +387582,7 @@ - 00585cM2.01200024 000h + 00000cM2.01200024 000h 2318491-7 a19900131 20120419102622 @@ -387670,7 +387670,7 @@ - 01216cM2.01200024 000h + 00000cM2.01200024 000h 2496505-4 a19920401 20120419093513 @@ -387798,7 +387798,7 @@ - 01260cM2.01200024 000h + 00000cM2.01200024 000h 2496506-6 a19920422 20120419095426 @@ -387926,7 +387926,7 @@ - 01522cM2.01200024 000h + 00000cM2.01200024 000h 2496507-8 a19920422 20120419095843 @@ -388064,7 +388064,7 @@ - 01212cM2.01200024 000h + 00000cM2.01200024 000h 2496508-X a19920422 20120419094606 @@ -388185,7 +388185,7 @@ - 00672cM2.01200024 000h + 00000cM2.01200024 000h 2658978-3 a19930324 20120420075311 @@ -388306,7 +388306,7 @@ - 01530cM2.01200024 000h + 00000cM2.01200024 000h 2384888-1 a19930421 20120423101409 @@ -388459,7 +388459,7 @@ - 00460cM2.01200024 000h + 00000cM2.01200024 000h 2606227-6 a20020905 20120420103038 @@ -388544,7 +388544,7 @@ - 00420cM2.01200024 000h + 00000cM2.01200024 000h 2622666-2 a20020905 20120420114114 @@ -388621,7 +388621,7 @@ - 00580cM2.01200024 000h + 00000cM2.01200024 000h 2481259-6 a20030205 20120423071641 @@ -388708,7 +388708,7 @@ - 00563cM2.01200024 000h + 00000cM2.01200024 000h 2356753-3 a20041102 20120420142720 @@ -388793,7 +388793,7 @@ - 00787cM2.01200024 000h + 00000cM2.01200024 000h 2356752-1 a20041102 20120423143138 @@ -388887,7 +388887,7 @@ - 00849cM2.01200024 000h + 00000cM2.01200024 000h 2356143-9 a20041102 20120423111524 @@ -389008,7 +389008,7 @@ - 00834cM2.01200024 000h + 00000cM2.01200024 000h 2355859-3 a20041102 20120423101752 @@ -389099,7 +389099,7 @@ - 00494cM2.01200024 000h + 00000cM2.01200024 000h 2353188-5 a20041102 20110530191738 @@ -389175,7 +389175,7 @@ - 01226cM2.01200024 000h + 00000cM2.01200024 000h 2352709-2 a20041102 20120423104843 @@ -389285,7 +389285,7 @@ - 00686cM2.01200024 000h + 00000cM2.01200024 000h 2352476-5 a20041102 20111202095459 @@ -389370,7 +389370,7 @@ - 00528cM2.01200024 000h + 00000cM2.01200024 000h 2350440-7 a20041102 20120419143144 @@ -389449,7 +389449,7 @@ - 00511cM2.01200024 000h + 00000cM2.01200024 000h 2349814-6 a20041102 20110530192715 @@ -389525,7 +389525,7 @@ - 00515cM2.01200024 000h + 00000cM2.01200024 000h 2332104-0 a20050217 20120420175625 @@ -389598,7 +389598,7 @@ - 00458cM2.01200024 000h + 00000cM2.01200024 000h 2577261-2 a19950728 20101014023004 @@ -389680,7 +389680,7 @@ - 00768cM2.01200024 000h + 00000cM2.01200024 000h 2386971-9 a19951109 20120420151440 @@ -389789,7 +389789,7 @@ - 01081cM2.01200024 000h + 00000cM2.01200024 000h 2311331-5 a19960212 20120420111630 @@ -389925,7 +389925,7 @@ - 00538cM2.01200024 000h + 00000cM2.01200024 000h 2288750-7 a19960228 20100616124549 @@ -390011,7 +390011,7 @@ - 00854cM2.01200024 000h + 00000cM2.01200024 000h 2288747-7 a19960228 20110303101535 @@ -390102,7 +390102,7 @@ - 00774cM2.01200024 000h + 00000cM2.01200024 000h 2480855-6 a19960418 20120423105911 @@ -390215,7 +390215,7 @@ - 00839cM2.01200024 000h + 00000cM2.01200024 000h 2310710-8 a19960828 20120415112056 @@ -390333,7 +390333,7 @@ - 00562cM2.01200024 000h + 00000cM2.01200024 000h 2389853-7 a19960917 20120423162343 @@ -390416,7 +390416,7 @@ - 02013cM2.01200024 000h + 00000cM2.01200024 000h 2370899-2 a19961129 20120415113735 @@ -390525,7 +390525,7 @@ - 00472cM2.01200024 000h + 00000cM2.01200024 000h 2288105-0 a19961210 20120423104756 @@ -390610,7 +390610,7 @@ - 00623cM2.01200024 000h + 00000cM2.01200024 000h 2370952-2 a19970127 20120423104404 @@ -390692,7 +390692,7 @@ - 00669cM2.01200024 000h + 00000cM2.01200024 000h 2659417-1 a19970611 20120423081829 @@ -390807,7 +390807,7 @@ - 00901cM2.01200024 000h + 00000cM2.01200024 000h 2659418-3 a19971128 20120421023005 @@ -390934,7 +390934,7 @@ - 02818cM2.01200024 000h + 00000cM2.01200024 000h 2389602-4 a19980217 20120420085645 @@ -391155,7 +391155,7 @@ - 00926cM2.01200024 000h + 00000cM2.01200024 000h 2438063-5 a19980408 20120419140754 @@ -391290,7 +391290,7 @@ - 00943cM2.01200024 000h + 00000cM2.01200024 000h 2302845-2 a19980528 20120423122916 @@ -391418,7 +391418,7 @@ - 00786cM2.01200024 000h + 00000cM2.01200024 000h 2302811-7 a19980722 20120419105135 @@ -391525,7 +391525,7 @@ - 00546cM2.01200024 000h + 00000cM2.01200024 000h 2286719-3 a19980923 20120423104301 @@ -391631,7 +391631,7 @@ - 00665cM2.01200024 000h + 00000cM2.01200024 000h 2286174-9 a19990701 20100309094926 @@ -391728,7 +391728,7 @@ - 01229cM2.01200024 000h + 00000cM2.01200024 000h 2302626-1 a19990713 20120419122758 @@ -391861,7 +391861,7 @@ - 01063cM2.01200024 000h + 00000cM2.01200024 000h 2302622-4 a19990715 20120420115555 @@ -391981,7 +391981,7 @@ - 00727cM2.01200024 000h + 00000cM2.01200024 000h 2659419-5 a20000217 20120421023005 @@ -392087,7 +392087,7 @@ - 00589cM2.01200024 000h + 00000cM2.01200024 000h 2659420-1 a20000228 20120421023006 @@ -392187,7 +392187,7 @@ - 00834cM2.01200024 000h + 00000cM2.01200024 000h 2659421-3 a20000301 20120421023006 @@ -392296,7 +392296,7 @@ - 00588cM2.01200024 000h + 00000cM2.01200024 000h 2659422-5 a20000302 20120421023007 @@ -392396,7 +392396,7 @@ - 00729cM2.01200024 000h + 00000cM2.01200024 000h 2659423-7 a20000302 20120421023007 @@ -392493,7 +392493,7 @@ - 00514cM2.01200024 000h + 00000cM2.01200024 000h 2659299-X a20000302 20120420023005 @@ -392587,7 +392587,7 @@ - 00572cM2.01200024 000h + 00000cM2.01200024 000h 2659424-9 a20000307 20120421023107 @@ -392672,7 +392672,7 @@ - 00938cM2.01200024 000h + 00000cM2.01200024 000h 2659429-8 a20000307 20120423065247 @@ -392769,7 +392769,7 @@ - 00640cM2.01200024 000h + 00000cM2.01200024 000h 2659425-0 a20000307 20120421023008 @@ -392854,7 +392854,7 @@ - 00805cM2.01200024 000h + 00000cM2.01200024 000h 2659300-2 a20000307 20120420023005 @@ -392954,7 +392954,7 @@ - 00693cM2.01200024 000h + 00000cM2.01200024 000h 2659301-4 a20000313 20120420023005 @@ -393066,7 +393066,7 @@ - 00959cM2.01200024 000h + 00000cM2.01200024 000h 2396368-2 a20001027 20120413075720 @@ -393175,7 +393175,7 @@ - 01195cM2.01200024 000h + 00000cM2.01200024 000h 2298255-3 a20001130 20120420161550 @@ -393311,7 +393311,7 @@ - 00529cM2.01200024 000h + 00000cM2.01200024 000h 2462870-0 a20010213 20120419083655 @@ -393405,7 +393405,7 @@ - 01066cM2.01200024 000h + 00000cM2.01200024 000h 2484313-1 a20010404 20120419102633 @@ -393523,7 +393523,7 @@ - 01077cM2.01200024 000h + 00000cM2.01200024 000h 2484314-3 a20010404 20120419102941 @@ -393641,7 +393641,7 @@ - 01076cM2.01200024 000h + 00000cM2.01200024 000h 2484315-5 a20010404 20120419103504 @@ -393759,7 +393759,7 @@ - 01066cM2.01200024 000h + 00000cM2.01200024 000h 2484376-3 a20010404 20120419103325 @@ -393877,7 +393877,7 @@ - 00881cM2.01200024 000h + 00000cM2.01200024 000h 2458725-4 a20010620 20120419105544 @@ -393981,7 +393981,7 @@ - 01131cM2.01200024 000h + 00000cM2.01200024 000h 2298163-9 a20010622 20120419163550 @@ -394101,7 +394101,7 @@ - 01128cM2.01200024 000h + 00000cM2.01200024 000h 2484316-7 a20010713 20120415101946 @@ -394235,7 +394235,7 @@ - 01575cM2.01200024 000h + 00000cM2.01200024 000h 2302183-4 a20010730 20120415113718 @@ -394347,7 +394347,7 @@ - 01064cM2.01200024 000h + 00000cM2.01200024 000h 2413269-X a20011105 20110511161908 @@ -394495,7 +394495,7 @@ - 00750cM2.01200024 000h + 00000cM2.01200024 000h 2284479-X a20020114 20120423095303 @@ -394610,7 +394610,7 @@ - 00526cM2.01200024 000h + 00000cM2.01200024 000h 2384922-8 a20020118 20120423140210 @@ -394702,7 +394702,7 @@ - 00804cM2.01200024 000h + 00000cM2.01200024 000h 2302051-9 a20020301 20120419145253 @@ -394825,7 +394825,7 @@ - 00855cM2.01200024 000h + 00000cM2.01200024 000h 2302040-4 a20020322 20120419130122 @@ -394934,7 +394934,7 @@ - 00734cM2.01200024 000h + 00000cM2.01200024 000h 2284307-3 a20020415 20120419123240 @@ -395049,7 +395049,7 @@ - 00970cM2.01200024 000h + 00000cM2.01200024 000h 2301919-0 a20020906 20120419100940 @@ -395161,7 +395161,7 @@ - 01395cM2.01200024 000h + 00000cM2.01200024 000h 2301839-2 a20021212 20120423150941 @@ -395286,7 +395286,7 @@ - 00795cM2.01200024 000h + 00000cM2.01200024 000h 2301764-8 a20030225 20120423114513 @@ -395384,7 +395384,7 @@ - 00829cM2.01200024 000h + 00000cM2.01200024 000h 2301718-1 a20030408 20120420110553 @@ -395496,7 +395496,7 @@ - 00613cM2.01200024 000h + 00000cM2.01200024 000h 2283628-7 a20030411 20120423083147 @@ -395581,7 +395581,7 @@ - 01555cM2.01200024 000h + 00000cM2.01200024 000h 2421721-9 a20030506 20120419094817 @@ -395731,7 +395731,7 @@ - 01519cM2.01200024 000h + 00000cM2.01200024 000h 2497432-8 a20030509 20120420145616 @@ -395864,7 +395864,7 @@ - 01213cM2.01200024 000h + 00000cM2.01200024 000h 2372894-2 a20030604 20120208223934 @@ -396006,7 +396006,7 @@ - 00591cM2.01200024 000h + 00000cM2.01200024 000h 2283533-7 a20030605 20120423164755 @@ -396101,7 +396101,7 @@ - 00693cM2.01200024 000h + 00000cM2.01200024 000h 2283486-2 a20030702 20120420110045 @@ -396200,7 +396200,7 @@ - 00537cM2.01200024 000h + 00000cM2.01200024 000h 2283477-1 a20030703 20120423153608 @@ -396286,7 +396286,7 @@ - 00522cM2.01200024 000h + 00000cM2.01200024 000h 2283315-8 a20031001 20120423135124 @@ -396372,7 +396372,7 @@ - 00701cM2.01200024 000h + 00000cM2.01200024 000h 2468885-X a20031006 20120420113553 @@ -396480,7 +396480,7 @@ - 00599cM2.01200024 000h + 00000cM2.01200024 000h 2451462-7 a20031201 20120423201928 @@ -396581,7 +396581,7 @@ - 00457cM2.01200024 000h + 00000cM2.01200024 000h 2283136-8 a20031219 20110706130710 @@ -396666,7 +396666,7 @@ - 01120cM2.01200024 000h + 00000cM2.01200024 000h 2387419-3 a20040206 20120420113554 @@ -396815,7 +396815,7 @@ - 00718cM2.01200024 000h + 00000cM2.01200024 000h 2297768-5 a20040318 20120419134438 @@ -396915,7 +396915,7 @@ - 01213cM2.01200024 000h + 00000cM2.01200024 000h 2576213-8 a20040318 20120423140307 @@ -397063,7 +397063,7 @@ - 00721cM2.01200024 000h + 00000cM2.01200024 000h 2395532-6 a20040322 20120420134537 @@ -397157,7 +397157,7 @@ - 00379cM2.01200024 000h + 00000cM2.01200024 000h 2282310-4 a20050218 20120420142506 @@ -397224,7 +397224,7 @@ - 01167cM2.01200024 000h + 00000cM2.01200024 000h 2398514-8 a20050304 20120423160233 @@ -397342,7 +397342,7 @@ - 00900cM2.01200024 000h + 00000cM2.01200024 000h 2300985-8 a20050413 20120423143817 @@ -397456,7 +397456,7 @@ - 00751cM2.01200024 000h + 00000cM2.01200024 000h 2464460-2 a20050428 20120420112435 @@ -397562,7 +397562,7 @@ - 00735cM2.01200024 000h + 00000cM2.01200024 000h 2190440-6 a20050601 20120419112023 @@ -397644,7 +397644,7 @@ - 00538cM2.01200024 000h + 00000cM2.01200024 000h 2191021-2 a20050607 20120423152529 @@ -397733,7 +397733,7 @@ - 00516cM2.01200024 000h + 00000cM2.01200024 000h 2191552-0 a20050610 20120419182622 @@ -397810,7 +397810,7 @@ - 01911cM2.01200024 000h + 00000cM2.01200024 000h 2191683-4 a20050613 20120423084835 @@ -397942,7 +397942,7 @@ - 01489cM2.01200024 000h + 00000cM2.01200024 000h 2191774-7 a20050614 20120420090640 @@ -398089,7 +398089,7 @@ - 01158cM2.01200024 000h + 00000cM2.01200024 000h 2191959-8 a20050615 20120423101830 @@ -398218,7 +398218,7 @@ - 01258cM2.01200024 000h + 00000cM2.01200024 000h 2192461-2 a20050620 20120423160142 @@ -398355,7 +398355,7 @@ - 00559cM2.01200024 000h + 00000cM2.01200024 000h 2193017-X a20050623 20120423143420 @@ -398454,7 +398454,7 @@ - 00729cM2.01200024 000h + 00000cM2.01200024 000h 2193030-2 a20050623 20120423114944 @@ -398558,7 +398558,7 @@ - 00684cM2.01200024 000h + 00000cM2.01200024 000h 2193602-X a20050629 20120423140558 @@ -398643,7 +398643,7 @@ - 00664cM2.01200024 000h + 00000cM2.01200024 000h 2193758-8 a20050630 20120420153058 @@ -398735,7 +398735,7 @@ - 01310cM2.01200024 000h + 00000cM2.01200024 000h 2193930-5 a20050701 20120420104037 @@ -398864,7 +398864,7 @@ - 00627cM2.01200024 000h + 00000cM2.01200024 000h 2195144-5 a20050712 20120423201840 @@ -398955,7 +398955,7 @@ - 01069cM2.01200024 000h + 00000cM2.01200024 000h 2195234-6 a20050713 20120423094209 @@ -399099,7 +399099,7 @@ - 00471cM2.01200024 000h + 00000cM2.01200024 000h 2195247-4 a20050713 20120423121313 @@ -399172,7 +399172,7 @@ - 01960cM2.01200024 000h + 00000cM2.01200024 000h 2195743-5 a20050718 20120423120815 @@ -399361,7 +399361,7 @@ - 00674cM2.01200024 000h + 00000cM2.01200024 000h 2195773-3 a20050718 20120421110706 @@ -399455,7 +399455,7 @@ - 00838cM2.01200024 000h + 00000cM2.01200024 000h 2196053-7 a20050719 20120420213256 @@ -399564,7 +399564,7 @@ - 00599cM2.01200024 000h + 00000cM2.01200024 000h 2196862-7 a20050726 20120423151905 @@ -399658,7 +399658,7 @@ - 00459cM2.01200024 000h + 00000cM2.01200024 000h 2197357-X a20050728 20120423095702 @@ -399728,7 +399728,7 @@ - 00808cM2.01200024 000h + 00000cM2.01200024 000h 2197528-0 a20050731 20120419121441 @@ -399828,7 +399828,7 @@ - 00461cM2.01200024 000h + 00000cM2.01200024 000h 2197816-5 a20050802 20120420152536 @@ -399907,7 +399907,7 @@ - 00724cM2.01200024 000h + 00000cM2.01200024 000h 2198354-9 a20050805 20120419145720 @@ -400010,7 +400010,7 @@ - 00644cM2.01200024 000h + 00000cM2.01200024 000h 2199051-7 a20050812 20120419152226 @@ -400119,7 +400119,7 @@ - 00796cM2.01200024 000h + 00000cM2.01200024 000h 2199525-4 a20050817 20120423104813 @@ -400230,7 +400230,7 @@ - 01096cM2.01200024 000h + 00000cM2.01200024 000h 2199568-0 a20050817 20100118230451 @@ -400378,7 +400378,7 @@ - 00383cM2.01200024 000h + 00000cM2.01200024 000h 2199954-5 a20050822 20120419214046 @@ -400445,7 +400445,7 @@ - 00826cM2.01200024 000h + 00000cM2.01200024 000h 2200747-7 a20050826 20120419115233 @@ -400549,7 +400549,7 @@ - 00548cM2.01200024 000h + 00000cM2.01200024 000h 2200796-9 a20050829 20120423151455 @@ -400641,7 +400641,7 @@ - 00813cM2.01200024 000h + 00000cM2.01200024 000h 2201865-7 a20050907 20120423095854 @@ -400744,7 +400744,7 @@ - 00578cM2.01200024 000h + 00000cM2.01200024 000h 2297275-4 a20050912 20120423142938 @@ -400835,7 +400835,7 @@ - 00898cM2.01200024 000h + 00000cM2.01200024 000h 2203449-3 a20050920 20120415120622 @@ -400940,7 +400940,7 @@ - 00911cM2.01200024 000h + 00000cM2.01200024 000h 2203452-3 a20050920 20120415120624 @@ -401048,7 +401048,7 @@ - 00601cM2.01200024 000h + 00000cM2.01200024 000h 2373616-1 a20050921 20120419093221 @@ -401136,7 +401136,7 @@ - 01014cM2.01200024 000h + 00000cM2.01200024 000h 2300755-2 a20050923 20120423152353 @@ -401264,7 +401264,7 @@ - 00748cM2.01200024 000h + 00000cM2.01200024 000h 2204374-3 a20050923 20120415111944 @@ -401374,7 +401374,7 @@ - 00643cM2.01200024 000h + 00000cM2.01200024 000h 2205429-7 a20051005 20120419141021 @@ -401453,7 +401453,7 @@ - 00595cM2.01200024 000h + 00000cM2.01200024 000h 2207029-1 a20051019 20120419143405 @@ -401535,7 +401535,7 @@ - 00651cM2.01200024 000h + 00000cM2.01200024 000h 2207828-9 a20051026 20120419102521 @@ -401626,7 +401626,7 @@ - 01097cM2.01200024 000h + 00000cM2.01200024 000h 2208003-X a20051027 20120420163247 @@ -401759,7 +401759,7 @@ - 01172cM2.01200024 000h + 00000cM2.01200024 000h 2208367-4 a20051031 20120423135620 @@ -401875,7 +401875,7 @@ - 01932cM2.01200024 000h + 00000cM2.01200024 000h 2208471-X a20051102 20120419111916 @@ -402030,7 +402030,7 @@ - 00716cM2.01200024 000h + 00000cM2.01200024 000h 2461196-7 a20051114 20120415115629 @@ -402148,7 +402148,7 @@ - 00906cM2.01200024 000h + 00000cM2.01200024 000h 2210399-5 a20051117 20120415112610 @@ -402251,7 +402251,7 @@ - 00496cM2.01200024 000h + 00000cM2.01200024 000h 2210477-X a20051117 20120415113936 @@ -402330,7 +402330,7 @@ - 01035cM2.01200024 000h + 00000cM2.01200024 000h 2210539-6 a20051117 20120420095549 @@ -402462,7 +402462,7 @@ - 00863cM2.01200024 000h + 00000cM2.01200024 000h 2210668-6 a20051118 20110829211310 @@ -402556,7 +402556,7 @@ - 00405cM2.01200024 000h + 00000cM2.01200024 000h 2210790-3 a20051121 20120423104559 @@ -402626,7 +402626,7 @@ - 00764cM2.01200024 000h + 00000cM2.01200024 000h 2210868-3 a20051121 20120419094506 @@ -402725,7 +402725,7 @@ - 00792cM2.01200024 000h + 00000cM2.01200024 000h 2211892-5 a20051129 20120419183041 @@ -402836,7 +402836,7 @@ - 00710cM2.01200024 000h + 00000cM2.01200024 000h 2212116-X a20051130 20120423120046 @@ -402926,7 +402926,7 @@ - 00755cM2.01200024 000h + 00000cM2.01200024 000h 2212361-1 a20051202 20120420214218 @@ -403018,7 +403018,7 @@ - 01154cM2.01200024 000h + 00000cM2.01200024 000h 2455545-9 a20051207 20120423124430 @@ -403144,7 +403144,7 @@ - 01130cM2.01200024 000h + 00000cM2.01200024 000h 2212942-X a20051207 20110607161251 @@ -403286,7 +403286,7 @@ - 01028cM2.01200024 000h + 00000cM2.01200024 000h 2213020-2 a20051208 20120423160313 @@ -403413,7 +403413,7 @@ - 00990cM2.01200024 000h + 00000cM2.01200024 000h 2414646-8 a20051220 20120420104331 @@ -403532,7 +403532,7 @@ - 01016cM2.01200024 000h + 00000cM2.01200024 000h 2215334-2 a20051229 20120307103347 @@ -403660,7 +403660,7 @@ - 00519cM2.01200024 000h + 00000cM2.01200024 000h 2215516-8 a20060103 20120423145958 @@ -403749,7 +403749,7 @@ - 00633cM2.01200024 000h + 00000cM2.01200024 000h 2216277-X a20060109 20120423135605 @@ -403847,7 +403847,7 @@ - 00987cM2.01200024 000h + 00000cM2.01200024 000h 2297126-9 a20060113 20120415112027 @@ -403966,7 +403966,7 @@ - 00364cM2.01200024 000h + 00000cM2.01200024 000h 2217557-X a20060118 20070430204800 @@ -404033,7 +404033,7 @@ - 00517cM2.01200024 000h + 00000cM2.01200024 000h 2217739-5 a20060118 20120423142512 @@ -404125,7 +404125,7 @@ - 00501cM2.01200024 000h + 00000cM2.01200024 000h 2218904-X a20060125 20120419122531 @@ -404212,7 +404212,7 @@ - 00739cM2.01200024 000h + 00000cM2.01200024 000h 2218924-5 a20060125 20120419094256 @@ -404312,7 +404312,7 @@ - 01402cM2.01200024 000h + 00000cM2.01200024 000h 2219059-4 a20060126 20120415120650 @@ -404458,7 +404458,7 @@ - 00929cM2.01200024 000h + 00000cM2.01200024 000h 2219226-8 a20060127 20090106235019 @@ -404583,7 +404583,7 @@ - 01081cM2.01200024 000h + 00000cM2.01200024 000h 2219983-4 a20060201 20120419160309 @@ -404710,7 +404710,7 @@ - 00629cM2.01200024 000h + 00000cM2.01200024 000h 2220270-5 a20060202 20120415112146 @@ -404798,7 +404798,7 @@ - 00464cM2.01200024 000h + 00000cM2.01200024 000h 2220571-8 a20060203 20090417213721 @@ -404871,7 +404871,7 @@ - 01064cM2.01200024 000h + 00000cM2.01200024 000h 2220795-8 a20060206 20120412113644 @@ -405003,7 +405003,7 @@ - 00793cM2.01200024 000h + 00000cM2.01200024 000h 2221183-4 a20060208 20120423094021 @@ -405108,7 +405108,7 @@ - 00489cM2.01200024 000h + 00000cM2.01200024 000h 2455555-1 a20060213 20120423112037 @@ -405193,7 +405193,7 @@ - 00721cM2.01200024 000h + 00000cM2.01200024 000h 2223018-X a20060220 20120419135136 @@ -405304,7 +405304,7 @@ - 00679cM2.01200024 000h + 00000cM2.01200024 000h 2223385-4 a20060221 20120419213608 @@ -405398,7 +405398,7 @@ - 00787cM2.01200024 000h + 00000cM2.01200024 000h 2223573-5 a20060222 20120415113745 @@ -405514,7 +405514,7 @@ - 01068cM2.01200024 000h + 00000cM2.01200024 000h 2225553-9 a20060307 20120419105226 @@ -405647,7 +405647,7 @@ - 00739cM2.01200024 000h + 00000cM2.01200024 000h 2225941-7 a20060309 20120419134437 @@ -405743,7 +405743,7 @@ - 01075cM2.01200024 000h + 00000cM2.01200024 000h 2226460-7 a20060313 20120419140835 @@ -405864,7 +405864,7 @@ - 00720cM2.01200024 000h + 00000cM2.01200024 000h 2226670-7 a20060314 20120423174820 @@ -405943,7 +405943,7 @@ - 00853cM2.01200024 000h + 00000cM2.01200024 000h 2226788-8 a20060315 20120423105929 @@ -406064,7 +406064,7 @@ - 01634cM2.01200024 000h + 00000cM2.01200024 000h 2227039-5 a20060316 20120419121813 @@ -406203,7 +406203,7 @@ - 00599cM2.01200024 000h + 00000cM2.01200024 000h 2227153-3 a20060316 20120208233142 @@ -406287,7 +406287,7 @@ - 00654cM2.01200024 000h + 00000cM2.01200024 000h 2227295-1 a20060317 20090512225524 @@ -406384,7 +406384,7 @@ - 00505cM2.01200024 000h + 00000cM2.01200024 000h 2227348-7 a20060317 20120423104910 @@ -406463,7 +406463,7 @@ - 00954cM2.01200024 000h + 00000cM2.01200024 000h 2415643-7 a20060320 20120423124400 @@ -406598,7 +406598,7 @@ - 00655cM2.01200024 000h + 00000cM2.01200024 000h 2228401-1 a20060324 20120420102008 @@ -406692,7 +406692,7 @@ - 00540cM2.01200024 000h + 00000cM2.01200024 000h 2229205-6 a20060330 20120419135859 @@ -406765,7 +406765,7 @@ - 00922cM2.01200024 000h + 00000cM2.01200024 000h 2229755-8 a20060403 20110618220522 @@ -406891,7 +406891,7 @@ - 00574cM2.01200024 000h + 00000cM2.01200024 000h 2522319-7 a20060404 20120420114417 @@ -406986,7 +406986,7 @@ - 00476cM2.01200024 000h + 00000cM2.01200024 000h 2230258-X a20060405 20100309101022 @@ -407068,7 +407068,7 @@ - 00654cM2.01200024 000h + 00000cM2.01200024 000h 2230466-6 a20060406 20120415101740 @@ -407181,7 +407181,7 @@ - 00457cM2.01200024 000h + 00000cM2.01200024 000h 2230592-0 a20060407 20120420214210 @@ -407251,7 +407251,7 @@ - 00622cM2.01200024 000h + 00000cM2.01200024 000h 2231091-5 a20060411 20120423085912 @@ -407338,7 +407338,7 @@ - 00677cM2.01200024 000h + 00000cM2.01200024 000h 2231767-3 a20060418 20120423095236 @@ -407441,7 +407441,7 @@ - 01287cM2.01200024 000h + 00000cM2.01200024 000h 2231865-3 a20060419 20120419092549 @@ -407590,7 +407590,7 @@ - 01546cM2.01200024 000h + 00000cM2.01200024 000h 2231975-X a20060419 20120210190549 @@ -407741,7 +407741,7 @@ - 01035cM2.01200024 000h + 00000cM2.01200024 000h 2232607-8 a20060425 20120423092648 @@ -407849,7 +407849,7 @@ - 00556cM2.01200024 000h + 00000cM2.01200024 000h 2233425-7 a20060502 20120420122806 @@ -407928,7 +407928,7 @@ - 00776cM2.01200024 000h + 00000cM2.01200024 000h 2233446-4 a20060502 20120420122850 @@ -408029,7 +408029,7 @@ - 00711cM2.01200024 000h + 00000cM2.01200024 000h 2234191-2 a20060508 20120420082228 @@ -408126,7 +408126,7 @@ - 00865cM2.01200024 000h + 00000cM2.01200024 000h 2234210-2 a20060508 20120423123134 @@ -408220,7 +408220,7 @@ - 00815cM2.01200024 000h + 00000cM2.01200024 000h 2234717-3 a20060510 20120415111851 @@ -408339,7 +408339,7 @@ - 00413cM2.01200024 000h + 00000cM2.01200024 000h 2235565-0 a20060516 20090624120342 @@ -408415,7 +408415,7 @@ - 00458cM2.01200024 000h + 00000cM2.01200024 000h 2235693-9 a20060517 20090224010755 @@ -408491,7 +408491,7 @@ - 00523cM2.01200024 000h + 00000cM2.01200024 000h 2236156-X a20060519 20120415112123 @@ -408576,7 +408576,7 @@ - 00523cM2.01200024 000h + 00000cM2.01200024 000h 2236431-6 a20060522 20120423141930 @@ -408668,7 +408668,7 @@ - 01031cM2.01200024 000h + 00000cM2.01200024 000h 2236671-4 a20060524 20120419162656 @@ -408791,7 +408791,7 @@ - 00603cM2.01200024 000h + 00000cM2.01200024 000h 2236672-6 a20060524 20120420114105 @@ -408864,7 +408864,7 @@ - 00576cM2.01200024 000h + 00000cM2.01200024 000h 2236709-3 a20060524 20120423125730 @@ -408958,7 +408958,7 @@ - 00732cM2.01200024 000h + 00000cM2.01200024 000h 2236956-9 a20060526 20120419091328 @@ -409054,7 +409054,7 @@ - 00602cM2.01200024 000h + 00000cM2.01200024 000h 2237016-X a20060526 20120419223304 @@ -409157,7 +409157,7 @@ - 00430cM2.01200024 000h + 00000cM2.01200024 000h 2239025-X a20060613 20120420114924 @@ -409233,7 +409233,7 @@ - 01430cM2.01200024 000h + 00000cM2.01200024 000h 2239226-9 a20060615 20120415115934 @@ -409360,7 +409360,7 @@ - 00766cM2.01200024 000h + 00000cM2.01200024 000h 2241287-6 a20060703 20120423152317 @@ -409473,7 +409473,7 @@ - 00603cM2.01200024 000h + 00000cM2.01200024 000h 2241429-0 a20060703 20120415120341 @@ -409555,7 +409555,7 @@ - 01117cM2.01200024 000h + 00000cM2.01200024 000h 2241717-5 a20060705 20120419085846 @@ -409658,7 +409658,7 @@ - 00435cM2.01200024 000h + 00000cM2.01200024 000h 2241915-9 a20060706 20120420103949 @@ -409731,7 +409731,7 @@ - 00469cM2.01200024 000h + 00000cM2.01200024 000h 2242615-2 a20060712 20120420213804 @@ -409807,7 +409807,7 @@ - 00949cM2.01200024 000h + 00000cM2.01200024 000h 2242992-X a20060714 20120415120628 @@ -409914,7 +409914,7 @@ - 00875cM2.01200024 000h + 00000cM2.01200024 000h 2373922-8 a20060717 20100419221632 @@ -410026,7 +410026,7 @@ - 00625cM2.01200024 000h + 00000cM2.01200024 000h 2243372-7 a20060718 20110513163106 @@ -410108,7 +410108,7 @@ - 00666cM2.01200024 000h + 00000cM2.01200024 000h 2243431-8 a20060718 20120420104212 @@ -410199,7 +410199,7 @@ - 00609cM2.01200024 000h + 00000cM2.01200024 000h 2243688-1 a20060720 20110714032055 @@ -410300,7 +410300,7 @@ - 01099cM2.01200024 000h + 00000cM2.01200024 000h 2245739-2 a20060803 20120415112338 @@ -410432,7 +410432,7 @@ - 00552cM2.01200024 000h + 00000cM2.01200024 000h 2245860-8 a20060804 20120423114358 @@ -410518,7 +410518,7 @@ - 01334cM2.01200024 000h + 00000cM2.01200024 000h 2245995-9 a20060807 20101124215308 @@ -410660,7 +410660,7 @@ - 01082cM2.01200024 000h + 00000cM2.01200024 000h 2246172-3 a20060807 20120419144443 @@ -410795,7 +410795,7 @@ - 00878cM2.01200024 000h + 00000cM2.01200024 000h 2246646-0 a20060809 20120415113050 @@ -410910,7 +410910,7 @@ - 00951cM2.01200024 000h + 00000cM2.01200024 000h 2246929-1 a20060811 20120423125219 @@ -411004,7 +411004,7 @@ - 01340cM2.01200024 000h + 00000cM2.01200024 000h 2246998-9 a20060811 20120410113924 @@ -411143,7 +411143,7 @@ - 01039cM2.01200024 000h + 00000cM2.01200024 000h 2247000-1 a20060812 20080122221745 @@ -411257,7 +411257,7 @@ - 01583cM2.01200024 000h + 00000cM2.01200024 000h 2247073-6 a20060814 20111208150623 @@ -411416,7 +411416,7 @@ - 00401cM2.01200024 000h + 00000cM2.01200024 000h 2248118-7 a20060823 20060906220627 @@ -411483,7 +411483,7 @@ - 00905cM2.01200024 000h + 00000cM2.01200024 000h 2248579-X a20060828 20100917080320 @@ -411586,7 +411586,7 @@ - 01404cM2.01200024 000h + 00000cM2.01200024 000h 2249015-2 a20060830 20120423074700 @@ -411727,7 +411727,7 @@ - 00995cM2.01200024 000h + 00000cM2.01200024 000h 2249069-3 a20060830 20120420132907 @@ -411852,7 +411852,7 @@ - 01868cM2.01200024 000h + 00000cM2.01200024 000h 2250313-4 a20060908 20120420141053 @@ -411985,7 +411985,7 @@ - 01968cM2.01200024 000h + 00000cM2.01200024 000h 2250341-9 a20060908 20120420141000 @@ -412118,7 +412118,7 @@ - 00754cM2.01200024 000h + 00000cM2.01200024 000h 2250346-8 a20060908 20120419102327 @@ -412241,7 +412241,7 @@ - 01852cM2.01200024 000h + 00000cM2.01200024 000h 2250357-2 a20060908 20120420141146 @@ -412374,7 +412374,7 @@ - 01793cM2.01200024 000h + 00000cM2.01200024 000h 2250412-6 a20060908 20120420140850 @@ -412501,7 +412501,7 @@ - 00401cM2.01200024 000h + 00000cM2.01200024 000h 2250902-1 a20060914 20120419153329 @@ -412565,7 +412565,7 @@ - 00838cM2.01200024 000h + 00000cM2.01200024 000h 2251063-1 a20060915 20120420140452 @@ -412701,7 +412701,7 @@ - 00788cM2.01200024 000h + 00000cM2.01200024 000h 2252339-X a20060927 20120423201907 @@ -412814,7 +412814,7 @@ - 01068cM2.01200024 000h + 00000cM2.01200024 000h 2252542-7 a20060928 20120420113755 @@ -412923,7 +412923,7 @@ - 00987cM2.01200024 000h + 00000cM2.01200024 000h 2253993-1 a20061010 20110504105554 @@ -413032,7 +413032,7 @@ - 00934cM2.01200024 000h + 00000cM2.01200024 000h 2255207-8 a20061019 20120419085312 @@ -413155,7 +413155,7 @@ - 00540cM2.01200024 000h + 00000cM2.01200024 000h 2255420-8 a20061020 20100713195150 @@ -413236,7 +413236,7 @@ - 01340cM2.01200024 000h + 00000cM2.01200024 000h 2255918-8 a20061024 20120420113714 @@ -413368,7 +413368,7 @@ - 00796cM2.01200024 000h + 00000cM2.01200024 000h 2296718-7 a20061025 20120419102807 @@ -413462,7 +413462,7 @@ - 00704cM2.01200024 000h + 00000cM2.01200024 000h 2296706-0 a20061026 20120419102934 @@ -413556,7 +413556,7 @@ - 01431cM2.01200024 000h + 00000cM2.01200024 000h 2395794-3 a20061027 20120423094258 @@ -413696,7 +413696,7 @@ - 00980cM2.01200024 000h + 00000cM2.01200024 000h 2256722-7 a20061031 20120415113940 @@ -413820,7 +413820,7 @@ - 01450cM2.01200024 000h + 00000cM2.01200024 000h 2256808-6 a20061101 20120420213243 @@ -413960,7 +413960,7 @@ - 00630cM2.01200024 000h + 00000cM2.01200024 000h 2257309-4 a20061106 20110630123742 @@ -414051,7 +414051,7 @@ - 00564cM2.01200024 000h + 00000cM2.01200024 000h 2296665-1 a20061106 20120420095724 @@ -414139,7 +414139,7 @@ - 00514cM2.01200024 000h + 00000cM2.01200024 000h 2257521-2 a20061107 20120423140358 @@ -414225,7 +414225,7 @@ - 00700cM2.01200024 000h + 00000cM2.01200024 000h 2257665-4 a20061107 20120423111922 @@ -414312,7 +414312,7 @@ - 00557cM2.01200024 000h + 00000cM2.01200024 000h 2296653-5 a20061107 20120420100032 @@ -414400,7 +414400,7 @@ - 00569cM2.01200024 000h + 00000cM2.01200024 000h 2598327-1 a20061108 20120423155254 @@ -414497,7 +414497,7 @@ - 00727cM2.01200024 000h + 00000cM2.01200024 000h 2258046-3 a20061109 20100705211201 @@ -414585,7 +414585,7 @@ - 00617cM2.01200024 000h + 00000cM2.01200024 000h 2300181-1 a20061113 20120415111906 @@ -414682,7 +414682,7 @@ - 00667cM2.01200024 000h + 00000cM2.01200024 000h 2258854-1 a20061116 20120419100220 @@ -414793,7 +414793,7 @@ - 00673cM2.01200024 000h + 00000cM2.01200024 000h 2258855-3 a20061116 20120419223304 @@ -414906,7 +414906,7 @@ - 00537cM2.01200024 000h + 00000cM2.01200024 000h 2296601-8 a20061116 20120420101825 @@ -414991,7 +414991,7 @@ - 00402cM2.01200024 000h + 00000cM2.01200024 000h 2259785-2 a20061122 20120420162013 @@ -415061,7 +415061,7 @@ - 00677cM2.01200024 000h + 00000cM2.01200024 000h 2260254-9 a20061124 20120415120451 @@ -415167,7 +415167,7 @@ - 01222cM2.01200024 000h + 00000cM2.01200024 000h 2260436-4 a20061127 20120415112158 @@ -415320,7 +415320,7 @@ - 00766cM2.01200024 000h + 00000cM2.01200024 000h 2260720-1 a20061128 20120420163347 @@ -415433,7 +415433,7 @@ - 00679cM2.01200024 000h + 00000cM2.01200024 000h 2260776-6 a20061129 20120419135336 @@ -415541,7 +415541,7 @@ - 00949cM2.01200024 000h + 00000cM2.01200024 000h 2409217-4 a20061204 20120423095732 @@ -415647,7 +415647,7 @@ - 00967cM2.01200024 000h + 00000cM2.01200024 000h 2261942-2 a20061206 20120419084305 @@ -415789,7 +415789,7 @@ - 01240cM2.01200024 000h + 00000cM2.01200024 000h 2262851-4 a20061213 20120415111910 @@ -415914,7 +415914,7 @@ - 01513cM2.01200024 000h + 00000cM2.01200024 000h 2263153-7 a20061214 20120415113225 @@ -416045,7 +416045,7 @@ - 00852cM2.01200024 000h + 00000cM2.01200024 000h 2263169-0 a20061214 20120423113215 @@ -416172,7 +416172,7 @@ - 00954cM2.01200024 000h + 00000cM2.01200024 000h 2263548-8 a20061218 20101025153020 @@ -416294,7 +416294,7 @@ - 01488cM2.01200024 000h + 00000cM2.01200024 000h 2263774-6 a20061219 20120423131341 @@ -416427,7 +416427,7 @@ - 00566cM2.01200024 000h + 00000cM2.01200024 000h 2374948-9 a20061219 20120420100150 @@ -416521,7 +416521,7 @@ - 00467cM2.01200024 000h + 00000cM2.01200024 000h 2264076-9 a20061220 20120423152754 @@ -416588,7 +416588,7 @@ - 00787cM2.01200024 000h + 00000cM2.01200024 000h 2264199-3 a20061221 20120419091146 @@ -416684,7 +416684,7 @@ - 00722cM2.01200024 000h + 00000cM2.01200024 000h 2264700-4 a20070103 20120415112132 @@ -416796,7 +416796,7 @@ - 01529cM2.01200024 000h + 00000cM2.01200024 000h 2264797-1 a20070104 20120420101825 @@ -416946,7 +416946,7 @@ - 01046cM2.01200024 000h + 00000cM2.01200024 000h 2265247-4 a20070109 20120423104422 @@ -417064,7 +417064,7 @@ - 01133cM2.01200024 000h + 00000cM2.01200024 000h 2265427-6 a20070110 20120420094145 @@ -417194,7 +417194,7 @@ - 00523cM2.01200024 000h + 00000cM2.01200024 000h 2265506-2 a20070111 20120229075707 @@ -417277,7 +417277,7 @@ - 01245cM2.01200024 000h + 00000cM2.01200024 000h 2433340-2 a20070122 20120423094627 @@ -417416,7 +417416,7 @@ - 00677cM2.01200024 000h + 00000cM2.01200024 000h 2267940-6 a20070129 20120415112414 @@ -417525,7 +417525,7 @@ - 01024cM2.01200024 000h + 00000cM2.01200024 000h 2267965-0 a20070129 20120423083758 @@ -417645,7 +417645,7 @@ - 00789cM2.01200024 000h + 00000cM2.01200024 000h 2268542-X a20070201 20100309103323 @@ -417748,7 +417748,7 @@ - 00741cM2.01200024 000h + 00000cM2.01200024 000h 2268984-9 a20070205 20120415113727 @@ -417850,7 +417850,7 @@ - 01081cM2.01200024 000h + 00000cM2.01200024 000h 2269168-6 a20070206 20120423115702 @@ -417995,7 +417995,7 @@ - 01133cM2.01200024 000h + 00000cM2.01200024 000h 2269673-8 a20070208 20120420162423 @@ -418104,7 +418104,7 @@ - 00570cM2.01200024 000h + 00000cM2.01200024 000h 2269678-7 a20070208 20120419141718 @@ -418186,7 +418186,7 @@ - 00992cM2.01200024 000h + 00000cM2.01200024 000h 2269776-7 a20070209 20120423142657 @@ -418293,7 +418293,7 @@ - 00816cM2.01200024 000h + 00000cM2.01200024 000h 2269825-5 a20070209 20120423101233 @@ -418384,7 +418384,7 @@ - 00709cM2.01200024 000h + 00000cM2.01200024 000h 2300063-6 a20070209 20120423113418 @@ -418488,7 +418488,7 @@ - 00818cM2.01200024 000h + 00000cM2.01200024 000h 2270237-4 a20070213 20120419100659 @@ -418595,7 +418595,7 @@ - 01247cM2.01200024 000h + 00000cM2.01200024 000h 2270672-0 a20070215 20120222122359 @@ -418741,7 +418741,7 @@ - 00726cM2.01200024 000h + 00000cM2.01200024 000h 2270722-0 a20070215 20120420140546 @@ -418838,7 +418838,7 @@ - 01257cM2.01200024 000h + 00000cM2.01200024 000h 2271774-2 a20070223 20120411092627 @@ -418971,7 +418971,7 @@ - 01957cM2.01200024 000h + 00000cM2.01200024 000h 2272275-0 a20070227 20120420152143 @@ -419086,7 +419086,7 @@ - 00577cM2.01200024 000h + 00000cM2.01200024 000h 2272382-1 a20070228 20120420152027 @@ -419174,7 +419174,7 @@ - 00958cM2.01200024 000h + 00000cM2.01200024 000h 2272782-6 a20070302 20120116222528 @@ -419283,7 +419283,7 @@ - 00880cM2.01200024 000h + 00000cM2.01200024 000h 2272966-5 a20070305 20120419145940 @@ -419394,7 +419394,7 @@ - 00721cM2.01200024 000h + 00000cM2.01200024 000h 2273541-0 a20070307 20110304084354 @@ -419491,7 +419491,7 @@ - 00715cM2.01200024 000h + 00000cM2.01200024 000h 2273543-4 a20070307 20110304084340 @@ -419588,7 +419588,7 @@ - 00599cM2.01200024 000h + 00000cM2.01200024 000h 2273600-1 a20070308 20120419091801 @@ -419676,7 +419676,7 @@ - 00656cM2.01200024 000h + 00000cM2.01200024 000h 2273781-9 a20070309 20120420141501 @@ -419761,7 +419761,7 @@ - 01598cM2.01200024 000h + 00000cM2.01200024 000h 2273873-3 a20070309 20120420123436 @@ -419901,7 +419901,7 @@ - 01440cM2.01200024 000h + 00000cM2.01200024 000h 2274090-9 a20070312 20120419111121 @@ -420024,7 +420024,7 @@ - 00712cM2.01200024 000h + 00000cM2.01200024 000h 2274254-2 a20070313 20120415112042 @@ -420128,7 +420128,7 @@ - 00685cM2.01200024 000h + 00000cM2.01200024 000h 2274709-6 a20070314 20120420112926 @@ -420234,7 +420234,7 @@ - 01184cM2.01200024 000h + 00000cM2.01200024 000h 2276791-5 a20070329 20110714050836 @@ -420392,7 +420392,7 @@ - 01045cM2.01200024 000h + 00000cM2.01200024 000h 2277041-0 a20070330 20120423122933 @@ -420512,7 +420512,7 @@ - 00699cM2.01200024 000h + 00000cM2.01200024 000h 2277806-8 a20070405 20100524232926 @@ -420603,7 +420603,7 @@ - 01114cM2.01200024 000h + 00000cM2.01200024 000h 2278061-0 a20070411 20120209130544 @@ -420728,7 +420728,7 @@ - 00504cM2.01200024 000h + 00000cM2.01200024 000h 2278236-9 a20070412 20120423111333 @@ -420810,7 +420810,7 @@ - 00782cM2.01200024 000h + 00000cM2.01200024 000h 2279040-8 a20070418 20120419134408 @@ -420920,7 +420920,7 @@ - 00867cM2.01200024 000h + 00000cM2.01200024 000h 2280145-5 a20070425 20120415120610 @@ -421027,7 +421027,7 @@ - 01270cM2.01200024 000h + 00000cM2.01200024 000h 2280248-4 a20070425 20110714050838 @@ -421185,7 +421185,7 @@ - 00921cM2.01200024 000h + 00000cM2.01200024 000h 2280780-9 a20070427 20120415120534 @@ -421309,7 +421309,7 @@ - 00745cM2.01200024 000h + 00000cM2.01200024 000h 2296053-3 a20070503 20120423131305 @@ -421403,7 +421403,7 @@ - 00762cM2.01200024 000h + 00000cM2.01200024 000h 2296225-6 a20070503 20111111134244 @@ -421522,7 +421522,7 @@ - 00666cM2.01200024 000h + 00000cM2.01200024 000h 2296256-6 a20070504 20120419141139 @@ -421618,7 +421618,7 @@ - 01233cM2.01200024 000h + 00000cM2.01200024 000h 2296515-4 a20070504 20120423141106 @@ -421757,7 +421757,7 @@ - 01268cM2.01200024 000h + 00000cM2.01200024 000h 2296516-6 a20070504 20120423141043 @@ -421899,7 +421899,7 @@ - 00933cM2.01200024 000h + 00000cM2.01200024 000h 2299028-8 a20070507 20120415113933 @@ -422023,7 +422023,7 @@ - 00587cM2.01200024 000h + 00000cM2.01200024 000h 2300032-6 a20070511 20120423140328 @@ -422117,7 +422117,7 @@ - 00696cM2.01200024 000h + 00000cM2.01200024 000h 2303679-5 a20070514 20120420100352 @@ -422214,7 +422214,7 @@ - 00630cM2.01200024 000h + 00000cM2.01200024 000h 2303880-9 a20070514 20120415113937 @@ -422305,7 +422305,7 @@ - 00831cM2.01200024 000h + 00000cM2.01200024 000h 2303945-0 a20070515 20120423124639 @@ -422419,7 +422419,7 @@ - 01365cM2.01200024 000h + 00000cM2.01200024 000h 2316314-8 a20070521 20120420073507 @@ -422567,7 +422567,7 @@ - 00653cM2.01200024 000h + 00000cM2.01200024 000h 2323555-X a20070531 20110914160728 @@ -422643,7 +422643,7 @@ - 00975cM2.01200024 000h + 00000cM2.01200024 000h 2375717-6 a20070702 20120423153238 @@ -422756,7 +422756,7 @@ - 01374cM2.01200024 000h + 00000cM2.01200024 000h 2375725-5 a20070702 20120415101912 @@ -422890,7 +422890,7 @@ - 00899cM2.01200024 000h + 00000cM2.01200024 000h 2377461-7 a20070711 20120420085450 @@ -422997,7 +422997,7 @@ - 00765cM2.01200024 000h + 00000cM2.01200024 000h 2377465-4 a20070711 20120420090102 @@ -423104,7 +423104,7 @@ - 00795cM2.01200024 000h + 00000cM2.01200024 000h 2377467-8 a20070711 20120420085851 @@ -423202,7 +423202,7 @@ - 01244cM2.01200024 000h + 00000cM2.01200024 000h 2377772-2 a20070712 20100208225650 @@ -423343,7 +423343,7 @@ - 00589cM2.01200024 000h + 00000cM2.01200024 000h 2378195-6 a20070716 20120420122157 @@ -423438,7 +423438,7 @@ - 00797cM2.01200024 000h + 00000cM2.01200024 000h 2378398-9 a20070717 20120415112912 @@ -423548,7 +423548,7 @@ - 00673cM2.01200024 000h + 00000cM2.01200024 000h 2378430-1 a20070717 20120419213423 @@ -423643,7 +423643,7 @@ - 01108cM2.01200024 000h + 00000cM2.01200024 000h 2378498-2 a20070717 20120415111940 @@ -423766,7 +423766,7 @@ - 00543cM2.01200024 000h + 00000cM2.01200024 000h 2379163-9 a20070719 20120420082542 @@ -423836,7 +423836,7 @@ - 01106cM2.01200024 000h + 00000cM2.01200024 000h 2379418-5 a20070723 20120423131917 @@ -423973,7 +423973,7 @@ - 00457cM2.01200024 000h + 00000cM2.01200024 000h 2379654-6 a20070724 20120415120334 @@ -424049,7 +424049,7 @@ - 00973cM2.01200024 000h + 00000cM2.01200024 000h 2379764-2 a20070724 20120410093019 @@ -424176,7 +424176,7 @@ - 01099cM2.01200024 000h + 00000cM2.01200024 000h 2381356-8 a20070803 20120419101127 @@ -424288,7 +424288,7 @@ - 01814cM2.01200024 000h + 00000cM2.01200024 000h 2381721-5 a20070807 20120419095652 @@ -424461,7 +424461,7 @@ - 00702cM2.01200024 000h + 00000cM2.01200024 000h 2381814-1 a20070808 20090319023033 @@ -424555,7 +424555,7 @@ - 00611cM2.01200024 000h + 00000cM2.01200024 000h 2382299-5 a20070810 20120420095332 @@ -424634,7 +424634,7 @@ - 00771cM2.01200024 000h + 00000cM2.01200024 000h 2382641-1 a20070814 20120419105503 @@ -424728,7 +424728,7 @@ - 00795cM2.01200024 000h + 00000cM2.01200024 000h 2383597-7 a20070820 20120423111359 @@ -424828,7 +424828,7 @@ - 00806cM2.01200024 000h + 00000cM2.01200024 000h 2384186-2 a20070823 20120419140205 @@ -424918,7 +424918,7 @@ - 00907cM2.01200024 000h + 00000cM2.01200024 000h 2384445-0 a20070824 20120420223618 @@ -425038,7 +425038,7 @@ - 00797cM2.01200024 000h + 00000cM2.01200024 000h 2385396-7 a20070831 20120420135107 @@ -425132,7 +425132,7 @@ - 00901cM2.01200024 000h + 00000cM2.01200024 000h 2385842-4 a20070904 20120415120706 @@ -425249,7 +425249,7 @@ - 00671cM2.01200024 000h + 00000cM2.01200024 000h 2386100-9 a20070905 20120419155921 @@ -425337,7 +425337,7 @@ - 00997cM2.01200024 000h + 00000cM2.01200024 000h 2387531-8 a20070914 20120423093729 @@ -425461,7 +425461,7 @@ - 00671cM2.01200024 000h + 00000cM2.01200024 000h 2387591-4 a20070914 20120423170244 @@ -425540,7 +425540,7 @@ - 01269cM2.01200024 000h + 00000cM2.01200024 000h 2387608-6 a20070914 20120423201908 @@ -425663,7 +425663,7 @@ - 01262cM2.01200024 000h + 00000cM2.01200024 000h 2387628-1 a20070914 20120423093218 @@ -425792,7 +425792,7 @@ - 01097cM2.01200024 000h + 00000cM2.01200024 000h 2388834-9 a20070921 20120419105620 @@ -425889,7 +425889,7 @@ - 01485cM2.01200024 000h + 00000cM2.01200024 000h 2389088-5 a20070925 20120420112035 @@ -426020,7 +426020,7 @@ - 00972cM2.01200024 000h + 00000cM2.01200024 000h 2390226-7 a20071002 20120415120743 @@ -426149,7 +426149,7 @@ - 00761cM2.01200024 000h + 00000cM2.01200024 000h 2390485-9 a20071004 20120420072101 @@ -426252,7 +426252,7 @@ - 00927cM2.01200024 000h + 00000cM2.01200024 000h 2390921-3 a20071008 20120423202524 @@ -426344,7 +426344,7 @@ - 00711cM2.01200024 000h + 00000cM2.01200024 000h 2392864-5 a20071023 20120415120344 @@ -426451,7 +426451,7 @@ - 00977cM2.01200024 000h + 00000cM2.01200024 000h 2393731-2 a20071026 20120415113039 @@ -426583,7 +426583,7 @@ - 00950cM2.01200024 000h + 00000cM2.01200024 000h 2394755-X a20071105 20120419113106 @@ -426698,7 +426698,7 @@ - 00583cM2.01200024 000h + 00000cM2.01200024 000h 2395342-1 a20071107 20120420111314 @@ -426795,7 +426795,7 @@ - 00874cM2.01200024 000h + 00000cM2.01200024 000h 2395388-3 a20071107 20120420112627 @@ -426909,7 +426909,7 @@ - 00883cM2.01200024 000h + 00000cM2.01200024 000h 2395574-0 a20071108 20120419151508 @@ -427029,7 +427029,7 @@ - 00967cM2.01200024 000h + 00000cM2.01200024 000h 2396756-0 a20071115 20120423142613 @@ -427141,7 +427141,7 @@ - 01079cM2.01200024 000h + 00000cM2.01200024 000h 2397217-8 a20071119 20120415115910 @@ -427268,7 +427268,7 @@ - 01235cM2.01200024 000h + 00000cM2.01200024 000h 2397446-1 a20071120 20120423095628 @@ -427416,7 +427416,7 @@ - 00500cM2.01200024 000h + 00000cM2.01200024 000h 2398895-2 a20071129 20100722183151 @@ -427492,7 +427492,7 @@ - 00487cM2.01200024 000h + 00000cM2.01200024 000h 2399234-7 a20071203 20120419084456 @@ -427580,7 +427580,7 @@ - 00821cM2.01200024 000h + 00000cM2.01200024 000h 2399703-5 a20071205 20120208224042 @@ -427693,7 +427693,7 @@ - 00952cM2.01200024 000h + 00000cM2.01200024 000h 2400086-3 a20071206 20120415112409 @@ -427787,7 +427787,7 @@ - 00922cM2.01200024 000h + 00000cM2.01200024 000h 2400090-5 a20071206 20120419100453 @@ -427901,7 +427901,7 @@ - 00659cM2.01200024 000h + 00000cM2.01200024 000h 2400129-6 a20071207 20120420162433 @@ -428003,7 +428003,7 @@ - 00501cM2.01200024 000h + 00000cM2.01200024 000h 2400136-3 a20071207 20120423180644 @@ -428085,7 +428085,7 @@ - 00716cM2.01200024 000h + 00000cM2.01200024 000h 2402316-4 a20071220 20120419152346 @@ -428178,7 +428178,7 @@ - 00922cM2.01200024 000h + 00000cM2.01200024 000h 2403650-X a20080110 20120419111016 @@ -428286,7 +428286,7 @@ - 00783cM2.01200024 000h + 00000cM2.01200024 000h 2405324-7 a20080118 20120124072841 @@ -428382,7 +428382,7 @@ - 00572cM2.01200024 000h + 00000cM2.01200024 000h 2405401-X a20080118 20120423083519 @@ -428473,7 +428473,7 @@ - 00963cM2.01200024 000h + 00000cM2.01200024 000h 2405535-9 a20080121 20120320082409 @@ -428582,7 +428582,7 @@ - 00521cM2.01200024 000h + 00000cM2.01200024 000h 2405883-X a20080122 20100118230741 @@ -428667,7 +428667,7 @@ - 01149cM2.01200024 000h + 00000cM2.01200024 000h 2406026-4 a20080123 20120419123712 @@ -428778,7 +428778,7 @@ - 00790cM2.01200024 000h + 00000cM2.01200024 000h 2406241-8 a20080124 20120423183730 @@ -428890,7 +428890,7 @@ - 01134cM2.01200024 000h + 00000cM2.01200024 000h 2406333-2 a20080124 20120420103658 @@ -429013,7 +429013,7 @@ - 00825cM2.01200024 000h + 00000cM2.01200024 000h 2407186-9 a20080129 20100426132448 @@ -429122,7 +429122,7 @@ - 00546cM2.01200024 000h + 00000cM2.01200024 000h 2407377-5 a20080130 20120419092124 @@ -429209,7 +429209,7 @@ - 00970cM2.01200024 000h + 00000cM2.01200024 000h 2407672-7 a20080131 20120415120513 @@ -429325,7 +429325,7 @@ - 00701cM2.01200024 000h + 00000cM2.01200024 000h 2407731-8 a20080131 20120420163850 @@ -429425,7 +429425,7 @@ - 01316cM2.01200024 000h + 00000cM2.01200024 000h 2408025-1 a20080201 20100202214001 @@ -429527,7 +429527,7 @@ - 00480cM2.01200024 000h + 00000cM2.01200024 000h 2408345-8 a20080205 20120419084217 @@ -429609,7 +429609,7 @@ - 00972cM2.01200024 000h + 00000cM2.01200024 000h 2408443-8 a20080205 20080815151437 @@ -429712,7 +429712,7 @@ - 00983cM2.01200024 000h + 00000cM2.01200024 000h 2409379-8 a20080211 20100309113056 @@ -429844,7 +429844,7 @@ - 00427cM2.01200024 000h + 00000cM2.01200024 000h 2411492-3 a20080220 20090505235124 @@ -429923,7 +429923,7 @@ - 00927cM2.01200024 000h + 00000cM2.01200024 000h 2412687-1 a20080226 20120419150140 @@ -430030,7 +430030,7 @@ - 01050cM2.01200024 000h + 00000cM2.01200024 000h 2412698-6 a20080226 20120419150131 @@ -430152,7 +430152,7 @@ - 00985cM2.01200024 000h + 00000cM2.01200024 000h 2412822-3 a20080227 20120419112114 @@ -430281,7 +430281,7 @@ - 01013cM2.01200024 000h + 00000cM2.01200024 000h 2412959-8 a20080227 20120420102621 @@ -430393,7 +430393,7 @@ - 00386cM2.01200024 000h + 00000cM2.01200024 000h 2413070-9 a20080228 20120419140023 @@ -430460,7 +430460,7 @@ - 01623cM2.01200024 000h + 00000cM2.01200024 000h 2415175-0 a20080311 20120423085242 @@ -430627,7 +430627,7 @@ - 01185cM2.01200024 000h + 00000cM2.01200024 000h 2415439-8 a20080312 20120423074417 @@ -430781,7 +430781,7 @@ - 01069cM2.01200024 000h + 00000cM2.01200024 000h 2415743-0 a20080313 20120419165619 @@ -430921,7 +430921,7 @@ - 00858cM2.01200024 000h + 00000cM2.01200024 000h 2416214-0 a20080317 20120423143130 @@ -431025,7 +431025,7 @@ - 00488cM2.01200024 000h + 00000cM2.01200024 000h 2417188-8 a20080325 20090118151003 @@ -431083,7 +431083,7 @@ - 00859cM2.01200024 000h + 00000cM2.01200024 000h 2417919-X a20080328 20120419083541 @@ -431189,7 +431189,7 @@ - 01043cM2.01200024 000h + 00000cM2.01200024 000h 2418362-3 a20080401 20120419150133 @@ -431309,7 +431309,7 @@ - 00671cM2.01200024 000h + 00000cM2.01200024 000h 2418402-0 a20080401 20120415112734 @@ -431418,7 +431418,7 @@ - 00943cM2.01200024 000h + 00000cM2.01200024 000h 2420520-5 a20080410 20120415112701 @@ -431542,7 +431542,7 @@ - 00952cM2.01200024 000h + 00000cM2.01200024 000h 2420711-1 a20080411 20120402135501 @@ -431658,7 +431658,7 @@ - 00622cM2.01200024 000h + 00000cM2.01200024 000h 2420890-5 a20080414 20120423081757 @@ -431755,7 +431755,7 @@ - 00708cM2.01200024 000h + 00000cM2.01200024 000h 2421751-7 a20080417 20120415115655 @@ -431864,7 +431864,7 @@ - 00687cM2.01200024 000h + 00000cM2.01200024 000h 2421943-5 a20080418 20120415115622 @@ -431979,7 +431979,7 @@ - 01210cM2.01200024 000h + 00000cM2.01200024 000h 2422003-6 a20080418 20120420213258 @@ -432107,7 +432107,7 @@ - 00565cM2.01200024 000h + 00000cM2.01200024 000h 2422440-6 a20080422 20120419101312 @@ -432177,7 +432177,7 @@ - 00769cM2.01200024 000h + 00000cM2.01200024 000h 2422907-6 a20080423 20120419105835 @@ -432269,7 +432269,7 @@ - 00680cM2.01200024 000h + 00000cM2.01200024 000h 2423138-1 a20080424 20120420090308 @@ -432357,7 +432357,7 @@ - 01435cM2.01200024 000h + 00000cM2.01200024 000h 2423703-6 a20080428 20120420070227 @@ -432511,7 +432511,7 @@ - 00688cM2.01200024 000h + 00000cM2.01200024 000h 2423805-3 a20080429 20120419163244 @@ -432609,7 +432609,7 @@ - 00738cM2.01200024 000h + 00000cM2.01200024 000h 2423999-9 a20080429 20120423122519 @@ -432703,7 +432703,7 @@ - 01117cM2.01200024 000h + 00000cM2.01200024 000h 2424023-0 a20080429 20120423112929 @@ -432833,7 +432833,7 @@ - 00459cM2.01200024 000h + 00000cM2.01200024 000h 2424591-4 a20080505 20100118230751 @@ -432915,7 +432915,7 @@ - 00490cM2.01200024 000h + 00000cM2.01200024 000h 2425393-5 a20080507 20120423202445 @@ -432982,7 +432982,7 @@ - 00666cM2.01200024 000h + 00000cM2.01200024 000h 2425453-8 a20080508 20120420075009 @@ -433076,7 +433076,7 @@ - 01132cM2.01200024 000h + 00000cM2.01200024 000h 2425639-0 a20080508 20120420100025 @@ -433182,7 +433182,7 @@ - 00969cM2.01200024 000h + 00000cM2.01200024 000h 2426164-6 a20080513 20120415101901 @@ -433303,7 +433303,7 @@ - 01081cM2.01200024 000h + 00000cM2.01200024 000h 2426328-X a20080514 20120419123418 @@ -433437,7 +433437,7 @@ - 00824cM2.01200024 000h + 00000cM2.01200024 000h 2427266-8 a20080520 20120423143532 @@ -433545,7 +433545,7 @@ - 00355cM2.01200024 000h + 00000cM2.01200024 000h 2428299-6 a20080527 20120419105013 @@ -433609,7 +433609,7 @@ - 00982cM2.01200024 000h + 00000cM2.01200024 000h 2428960-7 a20080529 20120423105507 @@ -433723,7 +433723,7 @@ - 00551cM2.01200024 000h + 00000cM2.01200024 000h 2429077-4 a20080529 20120419164302 @@ -433805,7 +433805,7 @@ - 01652cM2.01200024 000h + 00000cM2.01200024 000h 2429375-1 a20080530 20111111122730 @@ -433952,7 +433952,7 @@ - 00533cM2.01200024 000h + 00000cM2.01200024 000h 2430313-6 a20080604 20120423202435 @@ -434025,7 +434025,7 @@ - 00803cM2.01200024 000h + 00000cM2.01200024 000h 2430956-4 a20080609 20120419164351 @@ -434132,7 +434132,7 @@ - 01265cM2.01200024 000h + 00000cM2.01200024 000h 2432032-8 a20080613 20080627213425 @@ -434224,7 +434224,7 @@ - 00496cM2.01200024 000h + 00000cM2.01200024 000h 2432232-5 a20080616 20120420123444 @@ -434303,7 +434303,7 @@ - 00741cM2.01200024 000h + 00000cM2.01200024 000h 2432578-8 a20080617 20120302084439 @@ -434412,7 +434412,7 @@ - 00489cM2.01200024 000h + 00000cM2.01200024 000h 2432733-5 a20080618 20120423160305 @@ -434482,7 +434482,7 @@ - 00444cM2.01200024 000h + 00000cM2.01200024 000h 2433332-3 a20080623 20120423202516 @@ -434552,7 +434552,7 @@ - 01138cM2.01200024 000h + 00000cM2.01200024 000h 2433415-7 a20080623 20120423081750 @@ -434663,7 +434663,7 @@ - 00867cM2.01200024 000h + 00000cM2.01200024 000h 2433957-X a20080625 20120419103317 @@ -434780,7 +434780,7 @@ - 00724cM2.01200024 000h + 00000cM2.01200024 000h 2434124-1 a20080626 20120419144519 @@ -434889,7 +434889,7 @@ - 00555cM2.01200024 000h + 00000cM2.01200024 000h 2434236-1 a20080626 20120415101806 @@ -434965,7 +434965,7 @@ - 00728cM2.01200024 000h + 00000cM2.01200024 000h 2434741-3 a20080630 20090406135049 @@ -435072,7 +435072,7 @@ - 00730cM2.01200024 000h + 00000cM2.01200024 000h 2434840-5 a20080701 20120419093414 @@ -435175,7 +435175,7 @@ - 00728cM2.01200024 000h + 00000cM2.01200024 000h 2434973-2 a20080701 20120419162704 @@ -435262,7 +435262,7 @@ - 00521cM2.01200024 000h + 00000cM2.01200024 000h 2435078-3 a20080701 20120420110531 @@ -435350,7 +435350,7 @@ - 01032cM2.01200024 000h + 00000cM2.01200024 000h 2435089-8 a20080701 20120420133637 @@ -435477,7 +435477,7 @@ - 01454cM2.01200024 000h + 00000cM2.01200024 000h 2435711-X a20080703 20120419135517 @@ -435617,7 +435617,7 @@ - 01116cM2.01200024 000h + 00000cM2.01200024 000h 2435812-5 a20080704 20120420154947 @@ -435729,7 +435729,7 @@ - 00854cM2.01200024 000h + 00000cM2.01200024 000h 2436286-4 a20080708 20120423155218 @@ -435856,7 +435856,7 @@ - 00515cM2.01200024 000h + 00000cM2.01200024 000h 2437781-8 a20080715 20120423201013 @@ -435941,7 +435941,7 @@ - 01181cM2.01200024 000h + 00000cM2.01200024 000h 2438094-5 a20080716 20120423150724 @@ -436069,7 +436069,7 @@ - 00598cM2.01200024 000h + 00000cM2.01200024 000h 2438705-8 a20080718 20120419100500 @@ -436145,7 +436145,7 @@ - 00664cM2.01200024 000h + 00000cM2.01200024 000h 2438773-3 a20080718 20120423160228 @@ -436246,7 +436246,7 @@ - 01062cM2.01200024 000h + 00000cM2.01200024 000h 2439499-3 a20080723 20120415115909 @@ -436363,7 +436363,7 @@ - 00957cM2.01200024 000h + 00000cM2.01200024 000h 2439900-0 a20080724 20120419123022 @@ -436471,7 +436471,7 @@ - 01941cM2.01200024 000h + 00000cM2.01200024 000h 2440561-9 a20080728 20120420213245 @@ -436605,7 +436605,7 @@ - 00484cM2.01200024 000h + 00000cM2.01200024 000h 2440578-4 a20080728 20100323111009 @@ -436681,7 +436681,7 @@ - 00457cM2.01200024 000h + 00000cM2.01200024 000h 2442580-1 a20080805 20120423202521 @@ -436751,7 +436751,7 @@ - 00757cM2.01200024 000h + 00000cM2.01200024 000h 2442932-6 a20080806 20120423102328 @@ -436844,7 +436844,7 @@ - 03278cM2.01200024 000h + 00000cM2.01200024 000h 2443459-0 a20080807 20120419140918 @@ -437079,7 +437079,7 @@ - 00558cM2.01200024 000h + 00000cM2.01200024 000h 2444026-7 a20080811 20120423121409 @@ -437149,7 +437149,7 @@ - 00878cM2.01200024 000h + 00000cM2.01200024 000h 2444092-9 a20080811 20120131054206 @@ -437259,7 +437259,7 @@ - 00452cM2.01200024 000h + 00000cM2.01200024 000h 2444151-X a20080812 20120420110437 @@ -437329,7 +437329,7 @@ - 00541cM2.01200024 000h + 00000cM2.01200024 000h 2446187-8 a20080820 20120419123137 @@ -437405,7 +437405,7 @@ - 01094cM2.01200024 000h + 00000cM2.01200024 000h 2446612-8 a20080822 20120209155500 @@ -437536,7 +437536,7 @@ - 00768cM2.01200024 000h + 00000cM2.01200024 000h 2446718-2 a20080822 20120419142715 @@ -437634,7 +437634,7 @@ - 00473cM2.01200024 000h + 00000cM2.01200024 000h 2447407-1 a20080827 20120419122308 @@ -437698,7 +437698,7 @@ - 00668cM2.01200024 000h + 00000cM2.01200024 000h 2447431-9 a20080827 20120423082641 @@ -437804,7 +437804,7 @@ - 00737cM2.01200024 000h + 00000cM2.01200024 000h 2447851-9 a20080828 20120420090218 @@ -437904,7 +437904,7 @@ - 00489cM2.01200024 000h + 00000cM2.01200024 000h 2448193-2 a20080829 20120423202436 @@ -437974,7 +437974,7 @@ - 00627cM2.01200024 000h + 00000cM2.01200024 000h 2448715-6 a20080902 20120415112300 @@ -438066,7 +438066,7 @@ - 01184cM2.01200024 000h + 00000cM2.01200024 000h 2448793-4 a20080903 20120415113259 @@ -438179,7 +438179,7 @@ - 01329cM2.01200024 000h + 00000cM2.01200024 000h 2449015-5 a20080903 20120423121035 @@ -438321,7 +438321,7 @@ - 00722cM2.01200024 000h + 00000cM2.01200024 000h 2449534-7 a20080908 20120423154906 @@ -438422,7 +438422,7 @@ - 00751cM2.01200024 000h + 00000cM2.01200024 000h 2452932-1 a20080924 20120423143755 @@ -438521,7 +438521,7 @@ - 00654cM2.01200024 000h + 00000cM2.01200024 000h 2453681-7 a20080926 20120420125758 @@ -438627,7 +438627,7 @@ - 00439cM2.01200024 000h + 00000cM2.01200024 000h 2453756-1 a20080926 20120420135538 @@ -438694,7 +438694,7 @@ - 01023cM2.01200024 000h + 00000cM2.01200024 000h 2454176-X a20080929 20120419125620 @@ -438794,7 +438794,7 @@ - 00701cM2.01200024 000h + 00000cM2.01200024 000h 2454570-3 a20080930 20120419214033 @@ -438898,7 +438898,7 @@ - 02520cM2.01200024 000h + 00000cM2.01200024 000h 2456049-2 a20081007 20110118142949 @@ -439054,7 +439054,7 @@ - 01385cM2.01200024 000h + 00000cM2.01200024 000h 2456193-9 a20081007 20110118142905 @@ -439179,7 +439179,7 @@ - 00508cM2.01200024 000h + 00000cM2.01200024 000h 2456194-0 a20081007 20120419214051 @@ -439252,7 +439252,7 @@ - 01316cM2.01200024 000h + 00000cM2.01200024 000h 2458246-3 a20081015 20120423151053 @@ -439364,7 +439364,7 @@ - 00398cM2.01200024 000h + 00000cM2.01200024 000h 2458272-4 a20081015 20120420175402 @@ -439431,7 +439431,7 @@ - 00819cM2.01200024 000h + 00000cM2.01200024 000h 2458426-5 a20081016 20120415112343 @@ -439537,7 +439537,7 @@ - 00929cM2.01200024 000h + 00000cM2.01200024 000h 2458758-8 a20081017 20090114010256 @@ -439671,7 +439671,7 @@ - 00661cM2.01200024 000h + 00000cM2.01200024 000h 2459011-3 a20081020 20120419130257 @@ -439773,7 +439773,7 @@ - 00952cM2.01200024 000h + 00000cM2.01200024 000h 2459025-3 a20081020 20120423105539 @@ -439882,7 +439882,7 @@ - 00506cM2.01200024 000h + 00000cM2.01200024 000h 2459760-0 a20081022 20120423085226 @@ -439968,7 +439968,7 @@ - 00461cM2.01200024 000h + 00000cM2.01200024 000h 2460230-9 a20081024 20120415150433 @@ -440035,7 +440035,7 @@ - 00863cM2.01200024 000h + 00000cM2.01200024 000h 2461116-5 a20081028 20120420084038 @@ -440159,7 +440159,7 @@ - 00570cM2.01200024 000h + 00000cM2.01200024 000h 2462183-3 a20081031 20120423202527 @@ -440239,7 +440239,7 @@ - 00702cM2.01200024 000h + 00000cM2.01200024 000h 2462488-3 a20081103 20120423161456 @@ -440336,7 +440336,7 @@ - 00686cM2.01200024 000h + 00000cM2.01200024 000h 2464956-9 a20081113 20120423111330 @@ -440442,7 +440442,7 @@ - 00548cM2.01200024 000h + 00000cM2.01200024 000h 2465288-X a20081114 20100429105638 @@ -440539,7 +440539,7 @@ - 01608cM2.01200024 000h + 00000cM2.01200024 000h 2466267-7 a20081119 20120423152321 @@ -440712,7 +440712,7 @@ - 00507cM2.01200024 000h + 00000cM2.01200024 000h 2466549-6 a20081120 20120423121516 @@ -440782,7 +440782,7 @@ - 00453cM2.01200024 000h + 00000cM2.01200024 000h 2466756-0 a20081120 20120419100908 @@ -440849,7 +440849,7 @@ - 00951cM2.01200024 000h + 00000cM2.01200024 000h 2467089-3 a20081124 20120423083403 @@ -440952,7 +440952,7 @@ - 00757cM2.01200024 000h + 00000cM2.01200024 000h 2468256-1 a20081201 20100713200053 @@ -441046,7 +441046,7 @@ - 00746cM2.01200024 000h + 00000cM2.01200024 000h 2468687-6 a20081203 20120419101634 @@ -441152,7 +441152,7 @@ - 00910cM2.01200024 000h + 00000cM2.01200024 000h 2469424-1 a20081206 20120415112215 @@ -441265,7 +441265,7 @@ - 00811cM2.01200024 000h + 00000cM2.01200024 000h 2469531-2 a20081208 20091027235322 @@ -441380,7 +441380,7 @@ - 00916cM2.01200024 000h + 00000cM2.01200024 000h 2470296-1 a20081211 20120423171435 @@ -441479,7 +441479,7 @@ - 00645cM2.01200024 000h + 00000cM2.01200024 000h 2471058-1 a20081216 20120419163100 @@ -441573,7 +441573,7 @@ - 01141cM2.01200024 000h + 00000cM2.01200024 000h 2471392-2 a20081217 20120423104940 @@ -441691,7 +441691,7 @@ - 01277cM2.01200024 000h + 00000cM2.01200024 000h 2471612-1 a20081218 20120419104538 @@ -441836,7 +441836,7 @@ - 00978cM2.01200024 000h + 00000cM2.01200024 000h 2471634-0 a20081218 20120423144151 @@ -441945,7 +441945,7 @@ - 00868cM2.01200024 000h + 00000cM2.01200024 000h 2471753-8 a20081219 20120423143622 @@ -442066,7 +442066,7 @@ - 00478cM2.01200024 000h + 00000cM2.01200024 000h 2471822-1 a20081219 20090113235654 @@ -442157,7 +442157,7 @@ - 00868cM2.01200024 000h + 00000cM2.01200024 000h 2471868-3 a20081222 20120423104533 @@ -442281,7 +442281,7 @@ - 00931cM2.01200024 000h + 00000cM2.01200024 000h 2472115-3 a20081230 20120420135923 @@ -442412,7 +442412,7 @@ - 00571cM2.01200024 000h + 00000cM2.01200024 000h 2472205-4 a20090105 20120419101200 @@ -442485,7 +442485,7 @@ - 00559cM2.01200024 000h + 00000cM2.01200024 000h 2472339-3 a20090106 20120419094758 @@ -442561,7 +442561,7 @@ - 00765cM2.01200024 000h + 00000cM2.01200024 000h 2472602-3 a20090107 20120419151512 @@ -442647,7 +442647,7 @@ - 01077cM2.01200024 000h + 00000cM2.01200024 000h 2473124-9 a20090112 20120419150119 @@ -442767,7 +442767,7 @@ - 01826cM2.01200024 000h + 00000cM2.01200024 000h 2473740-9 a20090114 20120419155045 @@ -442933,7 +442933,7 @@ - 01103cM2.01200024 000h + 00000cM2.01200024 000h 2473783-5 a20090114 20120423154230 @@ -443041,7 +443041,7 @@ - 01367cM2.01200024 000h + 00000cM2.01200024 000h 2474318-5 a20090119 20120423145910 @@ -443180,7 +443180,7 @@ - 00745cM2.01200024 000h + 00000cM2.01200024 000h 2474899-7 a20090121 20120419092014 @@ -443280,7 +443280,7 @@ - 01003cM2.01200024 000h + 00000cM2.01200024 000h 2475144-3 a20090122 20120214142402 @@ -443412,7 +443412,7 @@ - 00807cM2.01200024 000h + 00000cM2.01200024 000h 2475537-0 a20090123 20110228083050 @@ -443519,7 +443519,7 @@ - 00686cM2.01200024 000h + 00000cM2.01200024 000h 2475627-1 a20090126 20120415113725 @@ -443613,7 +443613,7 @@ - 01281cM2.01200024 000h + 00000cM2.01200024 000h 2476197-7 a20090127 20120423112047 @@ -443751,7 +443751,7 @@ - 01158cM2.01200024 000h + 00000cM2.01200024 000h 2476956-3 a20090130 20120423140429 @@ -443865,7 +443865,7 @@ - 00647cM2.01200024 000h + 00000cM2.01200024 000h 2477037-1 a20090130 20120323170105 @@ -443954,7 +443954,7 @@ - 00690cM2.01200024 000h + 00000cM2.01200024 000h 2478090-X a20090205 20120420110907 @@ -444057,7 +444057,7 @@ - 00876cM2.01200024 000h + 00000cM2.01200024 000h 2478407-2 a20090206 20110607084713 @@ -444181,7 +444181,7 @@ - 01259cM2.01200024 000h + 00000cM2.01200024 000h 2478438-2 a20090206 20120419093652 @@ -444336,7 +444336,7 @@ - 00929cM2.01200024 000h + 00000cM2.01200024 000h 2478568-4 a20090209 20120423123555 @@ -444462,7 +444462,7 @@ - 00860cM2.01200024 000h + 00000cM2.01200024 000h 2478571-4 a20090209 20120423124257 @@ -444578,7 +444578,7 @@ - 01037cM2.01200024 000h + 00000cM2.01200024 000h 2479301-2 a20090211 20120423124145 @@ -444704,7 +444704,7 @@ - 00650cM2.01200024 000h + 00000cM2.01200024 000h 2479540-9 a20090212 20120423121653 @@ -444792,7 +444792,7 @@ - 00887cM2.01200024 000h + 00000cM2.01200024 000h 2480037-5 a20090217 20091214232618 @@ -444898,7 +444898,7 @@ - 00848cM2.01200024 000h + 00000cM2.01200024 000h 2480104-5 a20090217 20120423072706 @@ -445009,7 +445009,7 @@ - 00661cM2.01200024 000h + 00000cM2.01200024 000h 2480984-6 a20090220 20120423095040 @@ -445104,7 +445104,7 @@ - 00978cM2.01200024 000h + 00000cM2.01200024 000h 2480993-7 a20090220 20120423102359 @@ -445231,7 +445231,7 @@ - 00693cM2.01200024 000h + 00000cM2.01200024 000h 2481005-8 a20090220 20120423095026 @@ -445334,7 +445334,7 @@ - 00511cM2.01200024 000h + 00000cM2.01200024 000h 2481314-X a20090224 20120419110929 @@ -445417,7 +445417,7 @@ - 00410cM2.01200024 000h + 00000cM2.01200024 000h 2481343-6 a20090224 20120419142137 @@ -445484,7 +445484,7 @@ - 00464cM2.01200024 000h + 00000cM2.01200024 000h 2481442-8 a20090224 20120423104840 @@ -445560,7 +445560,7 @@ - 00974cM2.01200024 000h + 00000cM2.01200024 000h 2483212-1 a20090304 20120423111157 @@ -445674,7 +445674,7 @@ - 00606cM2.01200024 000h + 00000cM2.01200024 000h 2483427-0 a20090305 20120419124323 @@ -445754,7 +445754,7 @@ - 00831cM2.01200024 000h + 00000cM2.01200024 000h 2483461-0 a20090305 20120415112402 @@ -445857,7 +445857,7 @@ - 00536cM2.01200024 000h + 00000cM2.01200024 000h 2483491-9 a20090305 20100713200158 @@ -445943,7 +445943,7 @@ - 00898cM2.01200024 000h + 00000cM2.01200024 000h 2483785-4 a20090306 20111028103320 @@ -446066,7 +446066,7 @@ - 00649cM2.01200024 000h + 00000cM2.01200024 000h 2483963-2 a20090309 20120420135142 @@ -446154,7 +446154,7 @@ - 00745cM2.01200024 000h + 00000cM2.01200024 000h 2484170-5 a20090310 20100309114343 @@ -446248,7 +446248,7 @@ - 00889cM2.01200024 000h + 00000cM2.01200024 000h 2485221-1 a20090316 20120419150126 @@ -446355,7 +446355,7 @@ - 01407cM2.01200024 000h + 00000cM2.01200024 000h 2485282-X a20090316 20120419153954 @@ -446507,7 +446507,7 @@ - 01005cM2.01200024 000h + 00000cM2.01200024 000h 2485353-7 a20090316 20120420065439 @@ -446631,7 +446631,7 @@ - 00555cM2.01200024 000h + 00000cM2.01200024 000h 2485494-3 a20090317 20120419101415 @@ -446701,7 +446701,7 @@ - 00650cM2.01200024 000h + 00000cM2.01200024 000h 2485761-0 a20090318 20120415120700 @@ -446804,7 +446804,7 @@ - 00925cM2.01200024 000h + 00000cM2.01200024 000h 2486506-0 a20090323 20120419150138 @@ -446914,7 +446914,7 @@ - 00902cM2.01200024 000h + 00000cM2.01200024 000h 2486518-7 a20090323 20120419150133 @@ -447024,7 +447024,7 @@ - 01149cM2.01200024 000h + 00000cM2.01200024 000h 2486520-5 a20090323 20120419150131 @@ -447145,7 +447145,7 @@ - 00974cM2.01200024 000h + 00000cM2.01200024 000h 2486526-6 a20090323 20120419150134 @@ -447262,7 +447262,7 @@ - 01456cM2.01200024 000h + 00000cM2.01200024 000h 2486530-8 a20090323 20120419150132 @@ -447397,7 +447397,7 @@ - 00636cM2.01200024 000h + 00000cM2.01200024 000h 2486691-X a20090323 20110902104736 @@ -447501,7 +447501,7 @@ - 00712cM2.01200024 000h + 00000cM2.01200024 000h 2486766-4 a20090324 20120415112926 @@ -447604,7 +447604,7 @@ - 01426cM2.01200024 000h + 00000cM2.01200024 000h 2487256-8 a20090325 20120423142834 @@ -447734,7 +447734,7 @@ - 00522cM2.01200024 000h + 00000cM2.01200024 000h 2487302-0 a20090325 20120420160809 @@ -447806,7 +447806,7 @@ - 00790cM2.01200024 000h + 00000cM2.01200024 000h 2487346-9 a20090325 20120415120627 @@ -447912,7 +447912,7 @@ - 02012cM2.01200024 000h + 00000cM2.01200024 000h 2487359-7 a20090325 20120420213246 @@ -448083,7 +448083,7 @@ - 00655cM2.01200024 000h + 00000cM2.01200024 000h 2487527-2 a20090326 20120208233419 @@ -448180,7 +448180,7 @@ - 01210cM2.01200024 000h + 00000cM2.01200024 000h 2488105-3 a20090330 20120419150126 @@ -448303,7 +448303,7 @@ - 00793cM2.01200024 000h + 00000cM2.01200024 000h 2488246-X a20090331 20111129100256 @@ -448405,7 +448405,7 @@ - 01079cM2.01200024 000h + 00000cM2.01200024 000h 2488255-0 a20090331 20120420223618 @@ -448534,7 +448534,7 @@ - 00642cM2.01200024 000h + 00000cM2.01200024 000h 2488286-0 a20090331 20120419150024 @@ -448634,7 +448634,7 @@ - 01032cM2.01200024 000h + 00000cM2.01200024 000h 2488877-1 a20090402 20120419150129 @@ -448753,7 +448753,7 @@ - 01016cM2.01200024 000h + 00000cM2.01200024 000h 2489388-2 a20090406 20120419150120 @@ -448866,7 +448866,7 @@ - 00546cM2.01200024 000h + 00000cM2.01200024 000h 2489738-3 a20090408 20090623235441 @@ -448954,7 +448954,7 @@ - 01032cM2.01200024 000h + 00000cM2.01200024 000h 2490540-9 a20090416 20120419213652 @@ -449090,7 +449090,7 @@ - 00991cM2.01200024 000h + 00000cM2.01200024 000h 2490892-7 a20090420 20120419152104 @@ -449219,7 +449219,7 @@ - 00777cM2.01200024 000h + 00000cM2.01200024 000h 2491485-X a20090422 20110401145404 @@ -449331,7 +449331,7 @@ - 00708cM2.01200024 000h + 00000cM2.01200024 000h 2491498-8 a20090422 20120420085356 @@ -449435,7 +449435,7 @@ - 00917cM2.01200024 000h + 00000cM2.01200024 000h 2492607-3 a20090428 20120227100624 @@ -449571,7 +449571,7 @@ - 00907cM2.01200024 000h + 00000cM2.01200024 000h 2492693-0 a20090428 20120419104135 @@ -449689,7 +449689,7 @@ - 01316cM2.01200024 000h + 00000cM2.01200024 000h 2493005-2 a20090429 20120419134949 @@ -449831,7 +449831,7 @@ - 00342cM2.01200024 000h + 00000cM2.01200024 000h 2493987-0 a20090506 20090507064215 @@ -449892,7 +449892,7 @@ - 00776cM2.01200024 000h + 00000cM2.01200024 000h 2495622-3 a20090515 20110913090707 @@ -450004,7 +450004,7 @@ - 00791cM2.01200024 000h + 00000cM2.01200024 000h 2495896-7 a20090518 20120302174429 @@ -450113,7 +450113,7 @@ - 00736cM2.01200024 000h + 00000cM2.01200024 000h 2496178-4 a20090519 20120415111938 @@ -450225,7 +450225,7 @@ - 00877cM2.01200024 000h + 00000cM2.01200024 000h 2496475-X a20090520 20120415115003 @@ -450339,7 +450339,7 @@ - 00945cM2.01200024 000h + 00000cM2.01200024 000h 2496484-0 a20090520 20120419150140 @@ -450447,7 +450447,7 @@ - 00744cM2.01200024 000h + 00000cM2.01200024 000h 2497237-X a20090527 20120423113957 @@ -450562,7 +450562,7 @@ - 00997cM2.01200024 000h + 00000cM2.01200024 000h 2497714-7 a20090529 20120420084347 @@ -450684,7 +450684,7 @@ - 00909cM2.01200024 000h + 00000cM2.01200024 000h 2498108-4 a20090603 20120419094447 @@ -450790,7 +450790,7 @@ - 00918cM2.01200024 000h + 00000cM2.01200024 000h 2498542-9 a20090605 20120131094842 @@ -450912,7 +450912,7 @@ - 00336cM2.01200024 000h + 00000cM2.01200024 000h 2498675-6 a20090608 20111020213928 @@ -450970,7 +450970,7 @@ - 00384cM2.01200024 000h + 00000cM2.01200024 000h 2498781-5 a20090608 20120419111902 @@ -451040,7 +451040,7 @@ - 00565cM2.01200024 000h + 00000cM2.01200024 000h 2499203-3 a20090610 20090707235829 @@ -451131,7 +451131,7 @@ - 00862cM2.01200024 000h + 00000cM2.01200024 000h 2499902-7 a20090615 20110413223340 @@ -451243,7 +451243,7 @@ - 00738cM2.01200024 000h + 00000cM2.01200024 000h 2500128-0 a20090616 20120423142952 @@ -451338,7 +451338,7 @@ - 00741cM2.01200024 000h + 00000cM2.01200024 000h 2501572-2 a20090624 20091007154903 @@ -451449,7 +451449,7 @@ - 00869cM2.01200024 000h + 00000cM2.01200024 000h 2501689-1 a20090625 20120420081103 @@ -451555,7 +451555,7 @@ - 00533cM2.01200024 000h + 00000cM2.01200024 000h 2501971-5 a20090626 20120423174529 @@ -451643,7 +451643,7 @@ - 00723cM2.01200024 000h + 00000cM2.01200024 000h 2502303-2 a20090629 20120423153005 @@ -451742,7 +451742,7 @@ - 00575cM2.01200024 000h + 00000cM2.01200024 000h 2505315-2 a20090715 20120420163118 @@ -451837,7 +451837,7 @@ - 00350cM2.01200024 000h + 00000cM2.01200024 000h 2505845-9 a20090717 20120423121206 @@ -451898,7 +451898,7 @@ - 00813cM2.01200024 000h + 00000cM2.01200024 000h 2506110-0 a20090720 20090728113713 @@ -452002,7 +452002,7 @@ - 00999cM2.01200024 000h + 00000cM2.01200024 000h 2507468-4 a20090728 20120419223304 @@ -452115,7 +452115,7 @@ - 00595cM2.01200024 000h + 00000cM2.01200024 000h 2507870-7 a20090730 20120423122848 @@ -452197,7 +452197,7 @@ - 01416cM2.01200024 000h + 00000cM2.01200024 000h 2508474-4 a20090804 20110902124318 @@ -452358,7 +452358,7 @@ - 01096cM2.01200024 000h + 00000cM2.01200024 000h 2509424-5 a20090810 20110204140722 @@ -452480,7 +452480,7 @@ - 00897cM2.01200024 000h + 00000cM2.01200024 000h 2509920-6 a20090812 20120308140325 @@ -452607,7 +452607,7 @@ - 00858cM2.01200024 000h + 00000cM2.01200024 000h 2511009-3 a20090819 20110607082900 @@ -452738,7 +452738,7 @@ - 00972cM2.01200024 000h + 00000cM2.01200024 000h 2511089-5 a20090820 20120420113818 @@ -452857,7 +452857,7 @@ - 00729cM2.01200024 000h + 00000cM2.01200024 000h 2511434-7 a20090821 20091124115722 @@ -452958,7 +452958,7 @@ - 00661cM2.01200024 000h + 00000cM2.01200024 000h 2511466-9 a20090821 20120423153129 @@ -453034,7 +453034,7 @@ - 00937cM2.01200024 000h + 00000cM2.01200024 000h 2511546-7 a20090824 20120423152942 @@ -453139,7 +453139,7 @@ - 00928cM2.01200024 000h + 00000cM2.01200024 000h 2512520-5 a20090828 20110510155548 @@ -453260,7 +453260,7 @@ - 01321cM2.01200024 000h + 00000cM2.01200024 000h 2512544-8 a20090828 20120419104738 @@ -453400,7 +453400,7 @@ - 00638cM2.01200024 000h + 00000cM2.01200024 000h 2513462-0 a20090904 20120423120629 @@ -453476,7 +453476,7 @@ - 00705cM2.01200024 000h + 00000cM2.01200024 000h 2513513-2 a20090904 20120423115755 @@ -453555,7 +453555,7 @@ - 00602cM2.01200024 000h + 00000cM2.01200024 000h 2513551-X a20090904 20120423113617 @@ -453634,7 +453634,7 @@ - 00646cM2.01200024 000h + 00000cM2.01200024 000h 2513563-6 a20090904 20120423111615 @@ -453713,7 +453713,7 @@ - 00612cM2.01200024 000h + 00000cM2.01200024 000h 2513614-8 a20090907 20120423105057 @@ -453792,7 +453792,7 @@ - 00707cM2.01200024 000h + 00000cM2.01200024 000h 2513804-2 a20090907 20100915130145 @@ -453883,7 +453883,7 @@ - 00728cM2.01200024 000h + 00000cM2.01200024 000h 2513986-1 a20090908 20120419223305 @@ -453996,7 +453996,7 @@ - 00918cM2.01200024 000h + 00000cM2.01200024 000h 2515436-9 a20090917 20120419110903 @@ -454110,7 +454110,7 @@ - 01030cM2.01200024 000h + 00000cM2.01200024 000h 2515734-6 a20090918 20110930093042 @@ -454245,7 +454245,7 @@ - 00678cM2.01200024 000h + 00000cM2.01200024 000h 2517127-6 a20090928 20120419150732 @@ -454342,7 +454342,7 @@ - 01207cM2.01200024 000h + 00000cM2.01200024 000h 2517699-7 a20091001 20101006102226 @@ -454477,7 +454477,7 @@ - 00351cM2.01200024 000h + 00000cM2.01200024 000h 2518168-3 a20091006 20120420214207 @@ -454538,7 +454538,7 @@ - 00889cM2.01200024 000h + 00000cM2.01200024 000h 2518489-1 a20091007 20120415120725 @@ -454636,7 +454636,7 @@ - 00497cM2.01200024 000h + 00000cM2.01200024 000h 2520344-7 a20091019 20120423104444 @@ -454715,7 +454715,7 @@ - 00629cM2.01200024 000h + 00000cM2.01200024 000h 2520913-9 a20091021 20120420154008 @@ -454817,7 +454817,7 @@ - 00638cM2.01200024 000h + 00000cM2.01200024 000h 2521070-1 a20091022 20120423091952 @@ -454909,7 +454909,7 @@ - 00561cM2.01200024 000h + 00000cM2.01200024 000h 2521120-1 a20091022 20120423181503 @@ -454989,7 +454989,7 @@ - 00672cM2.01200024 000h + 00000cM2.01200024 000h 2521386-6 a20091023 20120419094731 @@ -455082,7 +455082,7 @@ - 00589cM2.01200024 000h + 00000cM2.01200024 000h 2522123-1 a20091028 20120423132346 @@ -455168,7 +455168,7 @@ - 01046cM2.01200024 000h + 00000cM2.01200024 000h 2522159-0 a20091028 20120420075652 @@ -455304,7 +455304,7 @@ - 00360uM2.01200024 000h + 00000uM2.01200024 000h 2522333-1 a20091029 20120419112700 @@ -455362,7 +455362,7 @@ - 00689cM2.01200024 000h + 00000cM2.01200024 000h 2522570-4 a20091030 20120423155848 @@ -455466,7 +455466,7 @@ - 01155cM2.01200024 000h + 00000cM2.01200024 000h 2522809-2 a20091102 20120405163015 @@ -455569,7 +455569,7 @@ - 00492cM2.01200024 000h + 00000cM2.01200024 000h 2523565-5 a20091105 20120423105519 @@ -455648,7 +455648,7 @@ - 01268cM2.01200024 000h + 00000cM2.01200024 000h 2523690-8 a20091106 20120420110022 @@ -455783,7 +455783,7 @@ - 00506cM2.01200024 000h + 00000cM2.01200024 000h 2524144-8 a20091109 20120423180247 @@ -455871,7 +455871,7 @@ - 01601cM2.01200024 000h + 00000cM2.01200024 000h 2524929-0 a20091112 20110708104354 @@ -455996,7 +455996,7 @@ - 00808cM2.01200024 000h + 00000cM2.01200024 000h 2526980-X a20091125 20120423075856 @@ -456100,7 +456100,7 @@ - 00726cM2.01200024 000h + 00000cM2.01200024 000h 2528615-8 a20091207 20120419223305 @@ -456218,7 +456218,7 @@ - 00628cM2.01200024 000h + 00000cM2.01200024 000h 2529519-6 a20091210 20120420130220 @@ -456321,7 +456321,7 @@ - 01032cM2.01200024 000h + 00000cM2.01200024 000h 2529759-4 a20091211 20120419112610 @@ -456451,7 +456451,7 @@ - 00807cM2.01200024 000h + 00000cM2.01200024 000h 2530757-5 a20091218 20120415120530 @@ -456578,7 +456578,7 @@ - 01298cM2.01200024 000h + 00000cM2.01200024 000h 2530957-2 a20091221 20120419172316 @@ -456708,7 +456708,7 @@ - 01690cM2.01200024 000h + 00000cM2.01200024 000h 2531292-3 a20091230 20120420213246 @@ -456830,7 +456830,7 @@ - 01154cM2.01200024 000h + 00000cM2.01200024 000h 2531779-9 a20100106 20120423082528 @@ -456952,7 +456952,7 @@ - 00951cM2.01200024 000h + 00000cM2.01200024 000h 2532144-4 a20100108 20120405143612 @@ -457074,7 +457074,7 @@ - 00898cM2.01200024 000h + 00000cM2.01200024 000h 2532318-0 a20100111 20120307103441 @@ -457192,7 +457192,7 @@ - 01160cM2.01200024 000h + 00000cM2.01200024 000h 2532423-8 a20100112 20120209143605 @@ -457345,7 +457345,7 @@ - 01080cM2.01200024 000h + 00000cM2.01200024 000h 2532577-2 a20100112 20120420150906 @@ -457470,7 +457470,7 @@ - 00979cM2.01200024 000h + 00000cM2.01200024 000h 2532937-6 a20100114 20111108122749 @@ -457590,7 +457590,7 @@ - 00834cM2.01200024 000h + 00000cM2.01200024 000h 2532984-4 a20100114 20120419100824 @@ -457684,7 +457684,7 @@ - 00874cM2.01200024 000h + 00000cM2.01200024 000h 2533052-4 a20100114 20100713200441 @@ -457806,7 +457806,7 @@ - 00557cM2.01200024 000h + 00000cM2.01200024 000h 2533061-5 a20100114 20120419130346 @@ -457901,7 +457901,7 @@ - 00978cM2.01200024 000h + 00000cM2.01200024 000h 2533667-8 a20100118 20120419092535 @@ -458024,7 +458024,7 @@ - 00588cM2.01200024 000h + 00000cM2.01200024 000h 2536188-0 a20100129 20120419085058 diff --git a/src/test/resources/org/xbib/marc/dialects/mab/DE-605-aleph-publish.xml.mapped.xml b/src/test/resources/org/xbib/marc/dialects/mab/DE-605-aleph-publish.xml.mapped.xml index 0102f44..d821161 100644 --- a/src/test/resources/org/xbib/marc/dialects/mab/DE-605-aleph-publish.xml.mapped.xml +++ b/src/test/resources/org/xbib/marc/dialects/mab/DE-605-aleph-publish.xml.mapped.xml @@ -1,6 +1,6 @@ - 00860vM2.01200024 000h + 00000vM2.01200024 000h 00860vM2.01200024------h diff --git a/src/test/resources/org/xbib/marc/dialects/mab/aleph-mab.mrc.mapped.xml b/src/test/resources/org/xbib/marc/dialects/mab/aleph-mab.mrc.mapped.xml index eb33de3..c743ef7 100644 --- a/src/test/resources/org/xbib/marc/dialects/mab/aleph-mab.mrc.mapped.xml +++ b/src/test/resources/org/xbib/marc/dialects/mab/aleph-mab.mrc.mapped.xml @@ -1,1483 +1,1483 @@ - + - 00800nM2.01100024 000h + 00000nM2.01100024 000h HT016983451 20111004 20111206 20140616 - + BV039600502 BVB - + BVBBV039600502 - + a|1uc||||||17 - + XA-DE-BW - + ger - + ||||||||g||||| - + m||||||| - + 361 - + 708 - + ZDB-59-BPG - + iall - + 60 - + 978-3-621-27683-2 - + Schandry, Rainer (DE-588)120139901 - + Biologische Psychologie - + Elektronische Ressource - + [mit Add-on] - + Rainer Schandry - + 3., vollst. überarb. Aufl. - + Weinheim - + Beltz - + 2011 - + 2011 - + 596 S. : Ill., graph. Darst. - + Druckausg. Schandry, Rainer: Biologische Psychologie HT016879875 - + Gesehen am: 06.12.2011 - + 978-3-621-27844-7 - + Online-Ressource - + 610 - + 150 - + CZ 1000 - + WW 4200 - + 612.8 612.8 DDC22ger - + Physiologische Psychologie (DE-588)4076126-5 - + Lehrbuch - + Online-Publikation - 01075nM2.01100024 000h + 00000nM2.01100024 000h HT016980609 20110929 20111216 20140616 - + HBZHT016980609 - + a|1uc||||||17 - + XA-DE-BW - + ger - + ||||||||g||||| - + m||||||| - + 361 - + 468 - + ZDB-59-BPA - + iall - + 60 - + 978-3-621-27806-5 - + Heinrichs, Nina 1973- (DE-588)12484085X - + Lohaus, Arnold 1954- (DE-588)115417141 - + Klinische Entwicklungspsychologie kompakt - + Elektronische Ressource - + psychische Störungen im Kindes- und Jugendalter ; [mit Add-on] - + Nina Heinrichs ; Arnold Lohaus - + 1. Aufl. - + Weinheim [u.a.] - + Beltz - + 2011 - + 220 S. : Ill., graph. Darst. - + Druckausg. Heinrichs, Nina: Klinische Entwicklungspsychologie kompakt HT016873568 - + 978-3-621-27899-7 - + Online-Ressource - + 610 - + 150 - + CU 5000 - + 618.928907 618.92 616.89 DDC22ger - + Kind (DE-588)4030550-8 - + Jugend (DE-588)4028859-6 - + Entwicklungsstörung (DE-588)4014966-3 - + Psychische Störung (DE-588)4047686-8 - + Psychopathologie (DE-588)4047724-1 - + Entwicklungspsychologie (DE-588)4014963-8 - + Lehrbuch - + Online-Publikation - 00757nM2.01100024 000h + 00000nM2.01100024 000h HT016978781 20110928 20120319 20140616 - + HBZHT016978781 - + a|1uc||||||17 - + XA-DE-BW - + ger - + ||||||||g||||| - + m||||||| - + 361 - + 708 - + ZDB-59-BPA - + iall - + 60 - + 978-3-621-27792-1 - + Treier, Michael (DE-588)122337875 - + Personalpsychologie kompakt - + Elektronische Ressource - + [mit Add-on] - + Michael Treier - + 1. Aufl. - + Weinheim [u.a.] - + Beltz - + 2011 - + 220 S. : graph. Darst. - + Kompakt - + Druckausg. Treier, Michael: Personalpsychologie kompakt HT016873618 - + Gesehen am: 19.03.2012 - + 978-3-621-27911-6 - + Online-Ressource - + 650 - + 150 - + QV 570 - + CW 4700 - + 658.30019 658.3 DDC22ger 019 - + Personalpsychologie (DE-588)4784219-2 - + Online-Publikation - 00949nM2.01100024 000h + 00000nM2.01100024 000h HT016984572 20111005 20120116 20140616 - + BV039600772 BVB - + BVBBV039600772 - + a|1uc||||||17 - + XA-DE-BW - + ger - + ||||||||g||||| - + m||||||| - + 361 - + 294 - + ZDB-59-BPG - + iall - + 60 - + 978-3-621-27524-8 - + Eid, Michael 1963- (DE-588)130635405 - + Gollwitzer, Mario 1973- (DE-588)123250196 - + Schmitt, Manfred (DE-588)132779420 - + Statistik und Forschungsmethoden - + Elektronische Ressource - + Lehrbuch ; [mit Add-on] - + Michael Eid ; Mario Gollwitzer ; Manfred Schmitt - + 2., korr. Aufl. - + Weinheim [u.a.] - + Beltz - + 2011 - + XXXII, 982 S. : graph. Darst. - + Druckausg. Eid, Michael: Statistik und Forschungsmethoden HT017013654 - + Gesehen am: 06.12.2011 - + 978-3-621-27834-8 - + Online-Ressource - + 510 - + SK 850 - + QH 254 - + CM 4000 - + MR 2000 - + MR 2100 - + 519.5 519.5 DDC22ger - + Statistik (DE-588)4056995-0 - + Lehrbuch - + Online-Publikation - 00802nM2.01100024 000h + 00000nM2.01100024 000h HT016979194 20110928 20120319 20140616 - + HBZHT016979194 - + a|1uc||||||17 - + XA-DE-BW - + ger - + ||||||||g||||| - + m||||||| - + 361 - + 708 - + ZDB-59-BPA - + iall - + 60 - + 978-3-621-27773-0 - + Schnotz, Wolfgang 1946- (DE-588)109223292 - + Pädagogische Psychologie kompakt - + Elektronische Ressource - + [mit Add-on] - + Wolfgang Schnotz - + 2., überarb. und erw. Aufl. - + Weinheim - + Beltz - + 2011 - + 221 S. : Ill., graph. Darst. - + Druckausg. Schnotz, Wolfgang: Pädagogische Psychologie kompakt HT016661083 - + Gesehen am: 19.03.2012 - + 978-3-621-27907-9 - + Online-Ressource - + 370 - + 150 - + CX 1000 - + CX 3000 - + 370.15 370.15 DDC22ger - + Pädagogische Psychologie (DE-588)4044321-8 - + Lehrbuch - + Online-Publikation - 00907nM2.01100024 000h + 00000nM2.01100024 000h HT016980352 20110929 20120319 20140616 - + HBZHT016980352 - + a|1uc||||||17 - + XA-DE-BW - + ger - + ||||||||g||||| - + m||||||| - + 361 - + 708 - + ZDB-59-BPA - + iall - + 60 - + 978-3-621-27594-1 - + Kals, Elisabeth 1966- (DE-588)122147979 - + Gallenmüller-Roschmann, Jutta 1957- (DE-588)123532256 - + Arbeits- und Organisationspsychologie kompakt - + Elektronische Ressource - + [mit Add-on] - + Elisabeth Kals ; Jutta Gallenmüller-Roschmann - + 2., überarb. Aufl. - + Weinheim [u.a.] - + Beltz - + 2011 - + 256 S. : graph. Darst. - + Druckausg. Kals, Elisabeth: Arbeits- und Organisationspsychologie kompakt HT016657155 - + Gesehen am: 19.03.2012 - + 978-3-621-27901-7 - + Online-Ressource - + 650 - + 150 - + QP 342 - + CW 1500 - + CW 4500 - + 658.30019 658.3 DDC22ger 019 - + Personalpsychologie (DE-588)4784219-2 - + Online-Publikation - 00858nM2.01100024 000h + 00000nM2.01100024 000h HT016983768 20111004 20140527 20140616 - + BV039600622 BVB - + BVBBV039600622 - + a|1uc||||||17 - + XA-DE-BW - + ger - + ||||||||g||||| - + m||||||| - + 361 - + Dü 62 - + ZDB-59-BPG ZDB-22-CAN - + iall - + 60 - + 978-3-621-27770-9 - + Lamnek, Siegfried 1943- (DE-588)120446049 - + Qualitative Sozialforschung - + Elektronische Ressource - + Lehrbuch ; [mit Add-on] - + Siegfried Lamnek - + 5., überarb. Aufl. - + Weinheim [u.a.] - + Beltz - + 2010 - + XIV, 748 S. : graph. Darst. - + Druckausg. Lamnek, Siegfried: Qualitative Sozialforschung HT016365019 - + Gesehen am: 12.3.2012 - + 978-3-621-27840-9 - + Online-Ressource - + 300 - + CM 3600 - + MR 2800 - + CV 2000 - + MR 2000 - + 300.723 300 DDC22ger 0723 - + Qualitative Sozialforschung (DE-588)4395695-6 - + Lehrbuch - + Online-Publikation - 00841nM2.01100024 000h + 00000nM2.01100024 000h HT016979244 20110928 20120730 20140616 - + HBZHT016979244 - + a|1uc||||||37 - + XA-DE-BW - + ger - + ||||||||g||||| - + me|||||| - + 361 - + 708 - + ZDB-59-BPA - + iall - + 60 - + 978-3-621-27690-0 - + Rost, Detlef H. 1945- (DE-588)120732564 [Hrsg.] - + Handwörterbuch Pädagogische Psychologie - + Elektronische Ressource - + Detlef H. Rost (Hrsg.) - + 4., überarb. und erw. Aufl. - + Weinheim [u.a.] - + Beltz - + 2010 - + XIV, 1020 S. : graph. Darst. - + Druckausg. Handwörterbuch Pädagogische Psychologie HT016395334 - + Gesehen am: 19.03.2012 - + 978-3-621-27906-2 - + Online-Ressource - + 370 - + 150 - + CX 1000 - + 370.1503 370.15 DDC22ger 03 - + Pädagogische Psychologie (DE-588)4044321-8 - + Wörterbuch (DE-588)4066724-8 - + Online-Publikation (DE-588)4511937-5 - 00798nM2.01100024 000h + 00000nM2.01100024 000h HT016979076 20110928 20120322 20140616 - + HBZHT016979076 - + a|1uc||||||17 - + XA-DE-BW - + ger - + ||||||||g||||| - + m||||||| - + 361 - + 708 - + ZDB-59-BPA - + iall - + 60 - + 978-3-621-27565-1 - + Suhling, Stefan (DE-588)123120772 - + Greve, Werner 1959- (DE-588)130634999 - + Kriminalpsychologie kompakt - + Elektronische Ressource - + [mit Add-on] - + Stefan Suhling ; Werner Greve - + 1. Aufl. - + Weinheim [u.a.] - + Beltz - + 2010 - + 196 S. : graph. Darst. - + Druckausg. Suhling, Stefan: Kriminalpsychologie kompakt HT016497428 - + Gesehen am: 22.03.2012 - + 978-3-621-27916-1 - + Online-Ressource - + 360 - + 150 - + CW 8100 - + 364.3 364.3 DDC22ger - + Kriminalpsychologie (DE-588)4033186-6 - + Lehrbuch - + Online-Publikation - 00948nM2.01100024 000h + 00000nM2.01100024 000h HT016982637 20110930 20120315 20140616 - + BV039597081 BVB - + BVBBV039597081 - + a|1uc||||||17 - + XA-DE-BW - + ger - + ||||||||g||||| - + m||||||| - + 361 - + 708 - + ZDB-59-BPG - + iall - + 60 - + 978-3-621-27666-5 - + Schmitt, Manfred (DE-588)132779420 - + Altstötter-Gleich, Christine (DE-588)114846618 - + Differentielle Psychologie und Persönlichkeitspsychologie kompakt - + Elektronische Ressource - + [mit Add-on] - + Manfred Schmitt ; Christine Altstötter-Gleich - + 1. Aufl. - + Weinheim [u.a.] - + Beltz - + 2010 - + XII, 187 S. : Ill., graph. Darst. - + Druckausg. Schmitt, Manfred: Differentielle Psychologie und Persönlichkeitspsychologie kompakt HT016205029 - + Gesehen am: 15.03.2012 - + 978-3-621-27856-0 - + Online-Ressource - + 150 - + CR 1000 - + CV 1000 - + 155.2 155.2 DDC22ger - + Persönlichkeitspsychologie (DE-588)4075996-9 - + Lehrbuch - + Online-Publikation - 00918nM2.01100024 000h + 00000nM2.01100024 000h HT016983725 20111004 20140123 20140616 - + BV039600588 BVB - + BVBBV039600588 - + a|1uc||||||17 - + XA-DE-BW - + ger - + ||||||||g||||| - + m||||||| - + 361 - + 294 - + ZDB-59-BPG - + iall - + 60 - + 978-3-621-27702-0 - + Luhmann, Maike (DE-588)13623450X - + R für Einsteiger - + Elektronische Ressource - + Einführung in die Statistiksoftware für die Sozialwissenschaften ; [mit Add-on] - + Maike Luhmann - + 1. Aufl. - + Weinheim [u.a.] - + Beltz - + 2010 - + XI, 305 S. : graph. Darst. - + Druckausg. Luhmann, Maike: R für Einsteiger HT016204416 - + Gesehen am: 15.03.2012 - + 978-3-621-27841-6 - + Online-Ressource - + 510 - + 300 - + 004 - + QH 231 - + CM 4000 - + MR 2100 - + ST 250 - + ST 601 - + ST 650 - + 519.50285555 519.5 005.55 DDC22ger 0285 - + Statistik (DE-588)4056995-0 - + R Programm (DE-588)4705956-4 - + Online-Publikation - + 213 - 00742nM2.01100024 000h + 00000nM2.01100024 000h HT016977854 20110927 20120315 20140616 - + BV039596996 BVB - + BVBBV039596996 - + a|1uc||||||17 - + XA-DE-BW - + ger - + ||||||||g||||| - + m||||||| - + 361 - + 708 - + ZDB-59-BPG - + iall - + 60 - + 978-3-621-27646-7 - + Rost, Detlef H. 1945- (DE-588)120732564 - + Intelligenz - + Elektronische Ressource - + Fakten und Mythen - + Detlef H. Rost - + 1. Aufl. - + Weinheim [u.a.] - + Beltz PVU - + 2009 - + 2009 - + VIII, 368 S. : graph. Darst. - + Druckausg. Rost, Detlef H.: Intelligenz HT015850019 - + Gesehen am: 15.03.2012 - + 978-3-621-27908-6 - + Online-Ressource - + 150 - + CR 5000 - + DF 4500 - + 153.9 153.9 DDC22ger - + Intelligenz (DE-588)4027251-5 - + Online-Publikation diff --git a/src/test/resources/org/xbib/marc/dialects/mab/aleph-mab.mrc.xml b/src/test/resources/org/xbib/marc/dialects/mab/aleph-mab.mrc.xml index b34d69b..be0b8c1 100644 --- a/src/test/resources/org/xbib/marc/dialects/mab/aleph-mab.mrc.xml +++ b/src/test/resources/org/xbib/marc/dialects/mab/aleph-mab.mrc.xml @@ -1 +1 @@ -00800nM2.01100024 000h HT016983451201110042011120620140616BV039600502BVBBVBBV039600502a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPGiall60978-3-621-27683-2Schandry, Rainer(DE-588)120139901Biologische PsychologieElektronische Ressource[mit Add-on]Rainer Schandry3., vollst. überarb. Aufl.WeinheimBeltz20112011596 S. : Ill., graph. Darst.Druckausg.Schandry, Rainer: Biologische PsychologieHT016879875Gesehen am: 06.12.2011978-3-621-27844-7Online-Ressource610150CZ 1000WW 4200612.8612.8DDC22gerPhysiologische Psychologie(DE-588)4076126-5LehrbuchOnline-Publikation01075nM2.01100024 000h HT016980609201109292011121620140616HBZHT016980609a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361468ZDB-59-BPAiall60978-3-621-27806-5Heinrichs, Nina1973-(DE-588)12484085XLohaus, Arnold1954-(DE-588)115417141Klinische Entwicklungspsychologie kompaktElektronische Ressourcepsychische Störungen im Kindes- und Jugendalter ; [mit Add-on]Nina Heinrichs ; Arnold Lohaus1. Aufl.Weinheim [u.a.]Beltz2011220 S. : Ill., graph. Darst.Druckausg.Heinrichs, Nina: Klinische Entwicklungspsychologie kompaktHT016873568978-3-621-27899-7Online-Ressource610150CU 5000618.928907618.92616.89DDC22gerKind(DE-588)4030550-8Jugend(DE-588)4028859-6Entwicklungsstörung(DE-588)4014966-3Psychische Störung(DE-588)4047686-8Psychopathologie(DE-588)4047724-1Entwicklungspsychologie(DE-588)4014963-8LehrbuchOnline-Publikation00757nM2.01100024 000h HT016978781201109282012031920140616HBZHT016978781a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPAiall60978-3-621-27792-1Treier, Michael(DE-588)122337875Personalpsychologie kompaktElektronische Ressource[mit Add-on]Michael Treier1. Aufl.Weinheim [u.a.]Beltz2011220 S. : graph. Darst.KompaktDruckausg.Treier, Michael: Personalpsychologie kompaktHT016873618Gesehen am: 19.03.2012978-3-621-27911-6Online-Ressource650150QV 570CW 4700658.30019658.3DDC22ger019Personalpsychologie(DE-588)4784219-2Online-Publikation00949nM2.01100024 000h HT016984572201110052012011620140616BV039600772BVBBVBBV039600772a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361294ZDB-59-BPGiall60978-3-621-27524-8Eid, Michael1963-(DE-588)130635405Gollwitzer, Mario1973-(DE-588)123250196Schmitt, Manfred(DE-588)132779420Statistik und ForschungsmethodenElektronische RessourceLehrbuch ; [mit Add-on]Michael Eid ; Mario Gollwitzer ; Manfred Schmitt2., korr. Aufl.Weinheim [u.a.]Beltz2011XXXII, 982 S. : graph. Darst.Druckausg.Eid, Michael: Statistik und ForschungsmethodenHT017013654Gesehen am: 06.12.2011978-3-621-27834-8Online-Ressource510SK 850QH 254CM 4000MR 2000MR 2100519.5519.5DDC22gerStatistik(DE-588)4056995-0LehrbuchOnline-Publikation00802nM2.01100024 000h HT016979194201109282012031920140616HBZHT016979194a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPAiall60978-3-621-27773-0Schnotz, Wolfgang1946-(DE-588)109223292Pädagogische Psychologie kompaktElektronische Ressource[mit Add-on]Wolfgang Schnotz2., überarb. und erw. Aufl.WeinheimBeltz2011221 S. : Ill., graph. Darst.Druckausg.Schnotz, Wolfgang: Pädagogische Psychologie kompaktHT016661083Gesehen am: 19.03.2012978-3-621-27907-9Online-Ressource370150CX 1000CX 3000370.15370.15DDC22gerPädagogische Psychologie(DE-588)4044321-8LehrbuchOnline-Publikation00907nM2.01100024 000h HT016980352201109292012031920140616HBZHT016980352a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPAiall60978-3-621-27594-1Kals, Elisabeth1966-(DE-588)122147979Gallenmüller-Roschmann, Jutta1957-(DE-588)123532256Arbeits- und Organisationspsychologie kompaktElektronische Ressource[mit Add-on]Elisabeth Kals ; Jutta Gallenmüller-Roschmann2., überarb. Aufl.Weinheim [u.a.]Beltz2011256 S. : graph. Darst.Druckausg.Kals, Elisabeth: Arbeits- und Organisationspsychologie kompaktHT016657155Gesehen am: 19.03.2012978-3-621-27901-7Online-Ressource650150QP 342CW 1500CW 4500658.30019658.3DDC22ger019Personalpsychologie(DE-588)4784219-2Online-Publikation00858nM2.01100024 000h HT016983768201110042014052720140616BV039600622BVBBVBBV039600622a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361Dü 62ZDB-59-BPGZDB-22-CANiall60978-3-621-27770-9Lamnek, Siegfried1943-(DE-588)120446049Qualitative SozialforschungElektronische RessourceLehrbuch ; [mit Add-on]Siegfried Lamnek5., überarb. Aufl.Weinheim [u.a.]Beltz2010XIV, 748 S. : graph. Darst.Druckausg.Lamnek, Siegfried: Qualitative SozialforschungHT016365019Gesehen am: 12.3.2012978-3-621-27840-9Online-Ressource300CM 3600MR 2800CV 2000MR 2000300.723300DDC22ger0723Qualitative Sozialforschung(DE-588)4395695-6LehrbuchOnline-Publikation00841nM2.01100024 000h HT016979244201109282012073020140616HBZHT016979244a|1uc||||||37XA-DE-BWger||||||||g|||||me||||||361708ZDB-59-BPAiall60978-3-621-27690-0Rost, Detlef H.1945-(DE-588)120732564[Hrsg.]Handwörterbuch Pädagogische PsychologieElektronische RessourceDetlef H. Rost (Hrsg.)4., überarb. und erw. Aufl.Weinheim [u.a.]Beltz2010XIV, 1020 S. : graph. Darst.Druckausg.Handwörterbuch Pädagogische PsychologieHT016395334Gesehen am: 19.03.2012978-3-621-27906-2Online-Ressource370150CX 1000370.1503370.15DDC22ger03Pädagogische Psychologie(DE-588)4044321-8Wörterbuch(DE-588)4066724-8Online-Publikation(DE-588)4511937-500798nM2.01100024 000h HT016979076201109282012032220140616HBZHT016979076a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPAiall60978-3-621-27565-1Suhling, Stefan(DE-588)123120772Greve, Werner1959-(DE-588)130634999Kriminalpsychologie kompaktElektronische Ressource[mit Add-on]Stefan Suhling ; Werner Greve1. Aufl.Weinheim [u.a.]Beltz2010196 S. : graph. Darst.Druckausg.Suhling, Stefan: Kriminalpsychologie kompaktHT016497428Gesehen am: 22.03.2012978-3-621-27916-1Online-Ressource360150CW 8100364.3364.3DDC22gerKriminalpsychologie(DE-588)4033186-6LehrbuchOnline-Publikation00948nM2.01100024 000h HT016982637201109302012031520140616BV039597081BVBBVBBV039597081a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPGiall60978-3-621-27666-5Schmitt, Manfred(DE-588)132779420Altstötter-Gleich, Christine(DE-588)114846618Differentielle Psychologie und Persönlichkeitspsychologie kompaktElektronische Ressource[mit Add-on]Manfred Schmitt ; Christine Altstötter-Gleich1. Aufl.Weinheim [u.a.]Beltz2010XII, 187 S. : Ill., graph. Darst.Druckausg.Schmitt, Manfred: Differentielle Psychologie und Persönlichkeitspsychologie kompaktHT016205029Gesehen am: 15.03.2012978-3-621-27856-0Online-Ressource150CR 1000CV 1000155.2155.2DDC22gerPersönlichkeitspsychologie(DE-588)4075996-9LehrbuchOnline-Publikation00918nM2.01100024 000h HT016983725201110042014012320140616BV039600588BVBBVBBV039600588a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361294ZDB-59-BPGiall60978-3-621-27702-0Luhmann, Maike(DE-588)13623450XR für EinsteigerElektronische RessourceEinführung in die Statistiksoftware für die Sozialwissenschaften ; [mit Add-on]Maike Luhmann1. Aufl.Weinheim [u.a.]Beltz2010XI, 305 S. : graph. Darst.Druckausg.Luhmann, Maike: R für EinsteigerHT016204416Gesehen am: 15.03.2012978-3-621-27841-6Online-Ressource510300004QH 231CM 4000MR 2100ST 250ST 601ST 650519.50285555519.5005.55DDC22ger0285Statistik(DE-588)4056995-0RProgramm(DE-588)4705956-4Online-Publikation21300742nM2.01100024 000h HT016977854201109272012031520140616BV039596996BVBBVBBV039596996a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPGiall60978-3-621-27646-7Rost, Detlef H.1945-(DE-588)120732564IntelligenzElektronische RessourceFakten und MythenDetlef H. Rost1. Aufl.Weinheim [u.a.]Beltz PVU20092009VIII, 368 S. : graph. Darst.Druckausg.Rost, Detlef H.: IntelligenzHT015850019Gesehen am: 15.03.2012978-3-621-27908-6Online-Ressource150CR 5000DF 4500153.9153.9DDC22gerIntelligenz(DE-588)4027251-5Online-Publikation \ No newline at end of file +00000nM2.01100024 000h HT016983451201110042011120620140616BV039600502BVBBVBBV039600502a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPGiall60978-3-621-27683-2Schandry, Rainer(DE-588)120139901Biologische PsychologieElektronische Ressource[mit Add-on]Rainer Schandry3., vollst. überarb. Aufl.WeinheimBeltz20112011596 S. : Ill., graph. Darst.Druckausg.Schandry, Rainer: Biologische PsychologieHT016879875Gesehen am: 06.12.2011978-3-621-27844-7Online-Ressource610150CZ 1000WW 4200612.8612.8DDC22gerPhysiologische Psychologie(DE-588)4076126-5LehrbuchOnline-Publikation00000nM2.01100024 000h HT016980609201109292011121620140616HBZHT016980609a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361468ZDB-59-BPAiall60978-3-621-27806-5Heinrichs, Nina1973-(DE-588)12484085XLohaus, Arnold1954-(DE-588)115417141Klinische Entwicklungspsychologie kompaktElektronische Ressourcepsychische Störungen im Kindes- und Jugendalter ; [mit Add-on]Nina Heinrichs ; Arnold Lohaus1. Aufl.Weinheim [u.a.]Beltz2011220 S. : Ill., graph. Darst.Druckausg.Heinrichs, Nina: Klinische Entwicklungspsychologie kompaktHT016873568978-3-621-27899-7Online-Ressource610150CU 5000618.928907618.92616.89DDC22gerKind(DE-588)4030550-8Jugend(DE-588)4028859-6Entwicklungsstörung(DE-588)4014966-3Psychische Störung(DE-588)4047686-8Psychopathologie(DE-588)4047724-1Entwicklungspsychologie(DE-588)4014963-8LehrbuchOnline-Publikation00000nM2.01100024 000h HT016978781201109282012031920140616HBZHT016978781a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPAiall60978-3-621-27792-1Treier, Michael(DE-588)122337875Personalpsychologie kompaktElektronische Ressource[mit Add-on]Michael Treier1. Aufl.Weinheim [u.a.]Beltz2011220 S. : graph. Darst.KompaktDruckausg.Treier, Michael: Personalpsychologie kompaktHT016873618Gesehen am: 19.03.2012978-3-621-27911-6Online-Ressource650150QV 570CW 4700658.30019658.3DDC22ger019Personalpsychologie(DE-588)4784219-2Online-Publikation00000nM2.01100024 000h HT016984572201110052012011620140616BV039600772BVBBVBBV039600772a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361294ZDB-59-BPGiall60978-3-621-27524-8Eid, Michael1963-(DE-588)130635405Gollwitzer, Mario1973-(DE-588)123250196Schmitt, Manfred(DE-588)132779420Statistik und ForschungsmethodenElektronische RessourceLehrbuch ; [mit Add-on]Michael Eid ; Mario Gollwitzer ; Manfred Schmitt2., korr. Aufl.Weinheim [u.a.]Beltz2011XXXII, 982 S. : graph. Darst.Druckausg.Eid, Michael: Statistik und ForschungsmethodenHT017013654Gesehen am: 06.12.2011978-3-621-27834-8Online-Ressource510SK 850QH 254CM 4000MR 2000MR 2100519.5519.5DDC22gerStatistik(DE-588)4056995-0LehrbuchOnline-Publikation00000nM2.01100024 000h HT016979194201109282012031920140616HBZHT016979194a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPAiall60978-3-621-27773-0Schnotz, Wolfgang1946-(DE-588)109223292Pädagogische Psychologie kompaktElektronische Ressource[mit Add-on]Wolfgang Schnotz2., überarb. und erw. Aufl.WeinheimBeltz2011221 S. : Ill., graph. Darst.Druckausg.Schnotz, Wolfgang: Pädagogische Psychologie kompaktHT016661083Gesehen am: 19.03.2012978-3-621-27907-9Online-Ressource370150CX 1000CX 3000370.15370.15DDC22gerPädagogische Psychologie(DE-588)4044321-8LehrbuchOnline-Publikation00000nM2.01100024 000h HT016980352201109292012031920140616HBZHT016980352a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPAiall60978-3-621-27594-1Kals, Elisabeth1966-(DE-588)122147979Gallenmüller-Roschmann, Jutta1957-(DE-588)123532256Arbeits- und Organisationspsychologie kompaktElektronische Ressource[mit Add-on]Elisabeth Kals ; Jutta Gallenmüller-Roschmann2., überarb. Aufl.Weinheim [u.a.]Beltz2011256 S. : graph. Darst.Druckausg.Kals, Elisabeth: Arbeits- und Organisationspsychologie kompaktHT016657155Gesehen am: 19.03.2012978-3-621-27901-7Online-Ressource650150QP 342CW 1500CW 4500658.30019658.3DDC22ger019Personalpsychologie(DE-588)4784219-2Online-Publikation00000nM2.01100024 000h HT016983768201110042014052720140616BV039600622BVBBVBBV039600622a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361Dü 62ZDB-59-BPGZDB-22-CANiall60978-3-621-27770-9Lamnek, Siegfried1943-(DE-588)120446049Qualitative SozialforschungElektronische RessourceLehrbuch ; [mit Add-on]Siegfried Lamnek5., überarb. Aufl.Weinheim [u.a.]Beltz2010XIV, 748 S. : graph. Darst.Druckausg.Lamnek, Siegfried: Qualitative SozialforschungHT016365019Gesehen am: 12.3.2012978-3-621-27840-9Online-Ressource300CM 3600MR 2800CV 2000MR 2000300.723300DDC22ger0723Qualitative Sozialforschung(DE-588)4395695-6LehrbuchOnline-Publikation00000nM2.01100024 000h HT016979244201109282012073020140616HBZHT016979244a|1uc||||||37XA-DE-BWger||||||||g|||||me||||||361708ZDB-59-BPAiall60978-3-621-27690-0Rost, Detlef H.1945-(DE-588)120732564[Hrsg.]Handwörterbuch Pädagogische PsychologieElektronische RessourceDetlef H. Rost (Hrsg.)4., überarb. und erw. Aufl.Weinheim [u.a.]Beltz2010XIV, 1020 S. : graph. Darst.Druckausg.Handwörterbuch Pädagogische PsychologieHT016395334Gesehen am: 19.03.2012978-3-621-27906-2Online-Ressource370150CX 1000370.1503370.15DDC22ger03Pädagogische Psychologie(DE-588)4044321-8Wörterbuch(DE-588)4066724-8Online-Publikation(DE-588)4511937-500000nM2.01100024 000h HT016979076201109282012032220140616HBZHT016979076a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPAiall60978-3-621-27565-1Suhling, Stefan(DE-588)123120772Greve, Werner1959-(DE-588)130634999Kriminalpsychologie kompaktElektronische Ressource[mit Add-on]Stefan Suhling ; Werner Greve1. Aufl.Weinheim [u.a.]Beltz2010196 S. : graph. Darst.Druckausg.Suhling, Stefan: Kriminalpsychologie kompaktHT016497428Gesehen am: 22.03.2012978-3-621-27916-1Online-Ressource360150CW 8100364.3364.3DDC22gerKriminalpsychologie(DE-588)4033186-6LehrbuchOnline-Publikation00000nM2.01100024 000h HT016982637201109302012031520140616BV039597081BVBBVBBV039597081a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPGiall60978-3-621-27666-5Schmitt, Manfred(DE-588)132779420Altstötter-Gleich, Christine(DE-588)114846618Differentielle Psychologie und Persönlichkeitspsychologie kompaktElektronische Ressource[mit Add-on]Manfred Schmitt ; Christine Altstötter-Gleich1. Aufl.Weinheim [u.a.]Beltz2010XII, 187 S. : Ill., graph. Darst.Druckausg.Schmitt, Manfred: Differentielle Psychologie und Persönlichkeitspsychologie kompaktHT016205029Gesehen am: 15.03.2012978-3-621-27856-0Online-Ressource150CR 1000CV 1000155.2155.2DDC22gerPersönlichkeitspsychologie(DE-588)4075996-9LehrbuchOnline-Publikation00000nM2.01100024 000h HT016983725201110042014012320140616BV039600588BVBBVBBV039600588a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361294ZDB-59-BPGiall60978-3-621-27702-0Luhmann, Maike(DE-588)13623450XR für EinsteigerElektronische RessourceEinführung in die Statistiksoftware für die Sozialwissenschaften ; [mit Add-on]Maike Luhmann1. Aufl.Weinheim [u.a.]Beltz2010XI, 305 S. : graph. Darst.Druckausg.Luhmann, Maike: R für EinsteigerHT016204416Gesehen am: 15.03.2012978-3-621-27841-6Online-Ressource510300004QH 231CM 4000MR 2100ST 250ST 601ST 650519.50285555519.5005.55DDC22ger0285Statistik(DE-588)4056995-0RProgramm(DE-588)4705956-4Online-Publikation21300000nM2.01100024 000h HT016977854201109272012031520140616BV039596996BVBBVBBV039596996a|1uc||||||17XA-DE-BWger||||||||g|||||m|||||||361708ZDB-59-BPGiall60978-3-621-27646-7Rost, Detlef H.1945-(DE-588)120732564IntelligenzElektronische RessourceFakten und MythenDetlef H. Rost1. Aufl.Weinheim [u.a.]Beltz PVU20092009VIII, 368 S. : graph. Darst.Druckausg.Rost, Detlef H.: IntelligenzHT015850019Gesehen am: 15.03.2012978-3-621-27908-6Online-Ressource150CR 5000DF 4500153.9153.9DDC22gerIntelligenz(DE-588)4027251-5Online-Publikation \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/dialects/mab/diskette/DE-Bo410-sample.ma2.xml b/src/test/resources/org/xbib/marc/dialects/mab/diskette/DE-Bo410-sample.ma2.xml index f6fff88..a886607 100644 --- a/src/test/resources/org/xbib/marc/dialects/mab/diskette/DE-Bo410-sample.ma2.xml +++ b/src/test/resources/org/xbib/marc/dialects/mab/diskette/DE-Bo410-sample.ma2.xml @@ -1,26503 +1,26503 @@ - + - 00001nM2.02200024 000h + 00000nM2.02200024 000h 1030001 20151216160529 - + a|||d||||||1| - + a - + s - + Bellmann, Lutz - + Datenlage und Interpretation der Weiterbildung in Deutschland. - + Lutz Bellmann - + Bielefeld - + Bertelsmann - + 2003 - + 101 S. - + Bibl. - + Schriftenreihe der Expertenkommission Finanzierung Lebenslangen Lernens - + 2 - + ISBN 3-7639-3083-3 - + Weiterbildung - + Deutschland - + Diese Expertise gibt eine umfassende Darstellung des vorhandenen Datenmaterials der beruflichen wie auch nichtberuflichen Weiterbildung in Deutschland unter besonderer Berücksichtigung des individuellen Weiterbildungsverhaltens. Sie umfasst eine Beschreibung und Bewertung des vorhandenen Datenmaterials. - + Weiterbildung - + Deutschland - + Weiterbildungsstatistik - + Deutschland - 00002nM2.02200024 000h + 00000nM2.02200024 000h 1030002 20151216160529 - + a|||d||||||1| - + a - + s - + Kil, Monika - - Deutsches Institut für Erwachsenenbildung <Bonn> + + Deutsches Institut für Erwachsenenbildung <Bonn> - + Organisationsveränderungen in Weiterbildungseinrichtungen - + empirische Analysen und Ansatzpunkte für Entwicklung und Forschung. - + Monika Kil - + Bielefeld - + Bertelsmann - + 2003 - + 160 S. - + Bibl. - + Theorie und Praxis der Erwachsenenbildung - + ISBN 3-7639-1843-4 - + http://www.die-bonn.de/doks/kil0201.pdf - + Organisationsentwicklung - + Weiterbildung - + Weiterbildungsforschung - + Empirische Untersuchung - + Zahlreiche Organisationsentwicklungs-, Qualitätsentwicklungs- und Beratungsprojekte wurden bisher in Weiterbildungsorganisationen durchgeführt. Die Ansatzpunkte Verfahrensweisen und Ergebnisse dieser Prozesse sind bisher für Außenstehende nur schwer zugänglich. - + Erwachsenenbildung - + Organisation - + Volkshochschule - - Organisation <Struktur> + + Organisation <Struktur> - 00003nM2.02200024 000h + 00000nM2.02200024 000h 0000871 19991119 20070110192846 20151216160529 20070915 - + 529766-7zDNB - + 012833770 - + 529766-7 - + ZDB529766-7 - + b|1dcz|z|||37 - + XA-DE - + a|a||||||||||| - + p||||||zm|||||| - + 3,2 - + Ztschr. - + Personalführung - + Für alle die Personalverantwortung tragen - + Hrsg. Deutsche Gesellschaft für Personalführung - + Special leadership - + 1.1968 - 13.1980; 1981 - 1992,10; 25.1992,11 - - + Düsseldorf - + Deutsche Gesellschaft für Personalführung - + 1992-2003 - + Ungezählte Beil. ab 2001: Special leadership - + 0723-3868 - + Personalwesen - + Zeitschrift - 00004nM2.02200024 000h + 00000nM2.02200024 000h 1030003 20151216160529 - + a|||d||||||1| - + a - + a - + Jordanov, Petra - + Frauen lernen anders - beim Ingenieurstudium in Strahlsund - + der Frauenstudiengang - + "Wirtschaftsingenieurwesen" an der FH Starhlsund eröffnet Perspektiven für die Reform des - + Ingenieurstudiums. - + Petra Jordanov - + 2003 - + (2003)1, S. 20-29. - + 0000871 - + Frau - + Lernen - + Studiengang - + Fachhochschule - + Ingenieur - + Forschung - + Technik - + Befragung - 00006nM2.02200024 000h + 00000nM2.02200024 000h 1030004 20151216160529 - + a|||d||||||1| - + a - + a - + Henschel, Henning - + "Wilderness Experience" - Die Natur der Lehrmeisterin - + mit Grenzerfahrungen in der Natur organisiert die Dräger AG ungewöhnliche Lernchancen für ihren Führungsnachwuchs. - + Henning Henschel - + 2003 - + (2003)1, S. 30-35. - + 0000871 - + Lernort - + Training - + Natur - + Berufliche Weiterbildung - + Erwachsenenbildung - + Lernen - 00008nM2.02200024 000h + 00000nM2.02200024 000h 1030005 20151216160530 - + a|||d||||||37 - + a - + a - + Spielen, Lernen, Probehandeln: Training auf der Theaterbühne - + Erfahrungsbericht einer - + Teilnehmerin an einem "Galli Training" zu den Lernchancen in einem ungewöhnlichen - + Kommunikationstraining. - + 2003 - + (2003)1, S. 36-39. - + 0000871 - + Teilnehmer - + Erlebnisbericht - + Theater - + Erwachsenenbildung - + Lernen - + Berufliche Weiterbildung - + Konflikt - 00009nM2.02200024 000h + 00000nM2.02200024 000h 1030006 20151216160530 - + a|||d||||||1| - + a - + m - + Gigerenzer, Gerd - + ¬Das¬ Einmaleins der Skepsis - + über den richtigen Umgang mit Zahlen und Risiken. - + Gerd Gigerenzer - + 3. Aufl. - + Berlin - + Berlin-Verl - + 2003 - + 406 S. - + Bibl., Reg. - + ISBN 3-8270-0079-3 - + Statistik - + Anwendung - + Wahrnehmung - + Information - + Kommunikation - 00010nM2.02200024 000h + 00000nM2.02200024 000h 1030007 20151216160530 - + a|||d||||||37 - + a - + s - + Wallraven, Klaus Peter [Hrsg.] - + Handbuch politische Bildung in den neuen Bundesländern. - + Hrsg. von Klaus Peter Wallraven - + Schwalbach/Ts. - + Wochenschau-Verl - + 2003 - + 398 S. - + Literaturverzeichnis S. 382-389 - + Reihe Politik und Bildung - + 28 - + ISBN 3-87920-627-9 - + Politische Bildung - + Neue Bundesländer - + Handbuch - + Politische Bildung - + Schule - 00011nM2.02200024 000h + 00000nM2.02200024 000h 0000069 20151216160530 - + a|||d||||||37 - + a - + Psychologie heute - + Weinheim - + Beltz - + 1981-2003 - + 0340-1677 - 00012nM2.02200024 000h + 00000nM2.02200024 000h 1030009 20151216160530 - + a|||d||||||1| - + a - + a - + Lepenies, Wolf - + Alter Ruhm und neue Armut - + warum Deutschlands Bildungswesen so sehr ins Hintertreffen - + geraten ist - und wie es den Anschluss wiederfinden könnte. - + Wolf Lepenies - + 2003 - + 30(2003)1, S. 60-69. - + 0000069 - + Bildung - + Kritik - + Vortrag - + Bildungssystem - + Deutschland - + Bildung - + Deutschland - 00013nM2.02200024 000h + 00000nM2.02200024 000h 0000898 20151216160530 - + a|||d||||||37 - + a - - Deutsches Institut für Erwachsenenbildung <Bonn> + + Deutsches Institut für Erwachsenenbildung <Bonn> - + DIE Zeitschrift für Erwachsenenbildung - + Bielefeld - + Bertelsmann - + 1993 - 2003 - + 0945-3164 - + http://www.diezeitschrift.de/archiv_1996_1993.asp - + http://www.diezeitschrift.de/archiv_1999_1997.asp - + http://www.diezeitschrift.de/archiv_2002-2000.asp - + http://www.diezeitschrift.de/archiv_2003_2005.asp - 00014nM2.02200024 000h + 00000nM2.02200024 000h 1030010 20151216160530 - + a|||d||||||1| - + a - + a - + Herrmann, Doris - + Bildungseinrichtungen lernen von der Wirtschaft: "Das Kerngeschäft muss lukrativ sein" - + Doris Herrmann - + 2003 - + 10(2003)1, S. 22-24 - + 0000898 - + http://www.die-bonn.de/doks/herrmann0301.pdf Volltext - + Interview - + Bildungseinrichtung - + Organisationsberatung - + Erwachsenenbildung - + Wirtschaft - + Berufliche Weiterbildung - + Doris Herrmann war Unternehmensberaterin bei Kienbaum Management Consultans im Bereich Bildung und Wissenschaft. Sie begleitete Hochschulen und Weiterbildungseinrichtungen bei Reorganisationsprozessen. Demnächst wird sie bei der Akkreditierungsagentur AQAS in Bonn Begutachtungsverfahren für die neuen Studiengänge Bachelor und Master koordinieren. Auf die Frage, was Bildungseinrichtungen von der Wirtschaft lernen können, macht sie für vier Bereiche erheblichen Veränderungsbedarf aus: Professionalisierung der Leitung, Kundenorientierung, Qualitätssicherung und Personalentwicklung. - 00016nM2.02200024 000h + 00000nM2.02200024 000h 1030011 20151216160530 - + a|||d||||||1| - + a - + a - + Schäffter, Ortfried - + Wenn Strukturen "Lerenen" gelingen lassen - + "Organisation" aus erwachsenenpädagogischer Sicht - + Ortfried Schäffter - + 2003 - + 10(2003)1, S. 25-28 - + 0000898 - + http://www.die-bonn.de/doks/schaeffter0301.pdf Volltext - + Lernen - + Organisationslernen - + Erwachsenenbildung - + Organisationsentwicklung - + Bildungseinrichtung - + Auf den ersten Blick klingt Ortfried Schäffters These banal: Eine "pädagogische" Organisation ist eine, der es gelingt, das Zusammenspiel aller ihrer Kräfte erfolgreich auf die Erbringung ihrer spezifischen - nämlich pädagogischen - Leistung zu lenken. Genau bedacht bedeutet dies aber, dass eine pädagogische Organisation eine ist, die "Lernen" erreicht. Ihre Leistung misst sich nicht in Verwahrzahlen, Versorgungszeiten, Hilfs- oder Beratungsaktivitäten. Und auch nicht am Umsatz. Dass "Lernen" mehr als eine unbeabsichtigte Nebenwirkung ist, müssen die Strukturen möglich machen. Das meint "pädagogische Organisationstheorie". - 00018nM2.02200024 000h + 00000nM2.02200024 000h 1030012 20151216160530 - + a|||d||||||1| - + a - + a - + Dollhausen, Karin - + Kultur, System, Netzwerk - + Anstösse durch die soziologische Organisationstheorie - + Karin Dollhausen - + 2003 - + 10(2003)1, S. 29-32 - + 0000898 - + http://www.die-bonn.de/doks/dollhausen0306.pdf Volltext - + Organisation - + Bildungseinrichtung - + Netzwerk - + Weiterbildungsmarkt - + Theorie - + Erwachsenenbildung - + Der gegenwärtige Diskurs in der Weiterbildung handelt immer wieder von Kulturen, Systemen und Netzwerken. Karin Dollhausen unterstützt diesen Diskurs durch eine saubere Unterscheidung der organisationssoziologischen Bedeutungen dieser zentralen Begriffe. Anschließend klärt sie, was jeder einzelne der Begriffe für öffentliche Weiterbildungseinrichtungen bedeuten kann und soll: "Kultur" als das Wie des Innenverhältnisses der Organisation lenkt den Blick auf das interne Kommunikationsgeschehen. Die Systemperspektive deutet vorhandene Umweltbezüge als "hausgemacht". Das "Netzwerk" schließlich reflektiert den Ort der Einrichtung im Feld kooperierender und um Marktanteile bemühter Institutionen. - 00020nM2.02200024 000h + 00000nM2.02200024 000h 1030013 20151216160530 - + a|||d||||||1| - + a - + a - + Kil, Monika - + Im Zentrum steht die Person - + der Beitrag der Pychologie zum Diskurs über Organisation - + Monika Kil - + 2003 - + 10(2003)1, S. 33-36 - + Bibl. - + 0000898 - + http://www.die-bonn.de/doks/kil0302.pdf Volltext - + Organisationsforschung - + Psychologie - + Pädagogische Psychologie - + Organisationspsychologie - + Erwachsenenbildung - + Bildungseinrichtung - + Den Blick auf die Personen und Akteure in Organisationen zu richten, steht von jeher im Fokus der psychologischen Organisationsforschung. Monika Kil verweist darauf, dass auch die Pädagogische Psychologie, die Kognitions- und die Sozialpsychologie Erkenntnisse liefern, die zur lernförderlichen Gestaltung von Weiterbildungsorganisationen beitragen können. Die Entwicklung einer "Lernkultur" ist dabei ein Aspekt. Der Überblick über weitere Entwicklungen und Befunde eröffnet darüber hinaus neue Dimensionen für den Diskurs über Organisation in der Erwachsenen- und Weiterbildung. - 00022nM2.02200024 000h + 00000nM2.02200024 000h 1030014 20151216160530 - + a|||d||||||1| - + a - + a - + Hartkemeyer, Johannes F. - + Moden, Modelle, Mythen, Menschen - + Weiterbildungsorganisationen im Prozess der Modernisierung - + Johannes F. Hartkemeyer - + 2003 - + 10(2003)1, S. 37-40 - + 0000898 - + http://www.die-bonn.de/doks/hartkemeyer0301.pdf Volltext - + Bildungseinrichtung - + Erwachsenenbildung - + Management - + Organisationsentwicklung - + Wer in der Praxis die Leitung von Weiterbildungseinrichtungen beobachtet, kann ein Lied von schnell wechselnden Managementstrategien singen. Johannes Hartkemeyer, selber Leiter einer VHS, sichtet die Moden der Vergangenheit und gibt Leitgedanken für den Umgang mit kurzlebigen Moden einerseits und mit dem Thema Organisationsentwicklung andererseits an die Hand. Sein Rat ist: Eine "lernende Organisation" sein, in einem permanenten Reflexionsprozess ihre "mentalen Modelle" beachten und an der Sinnfrage orientiert bleiben! Frei nach dem Buch der Sprüche (Altes Testament): "Ein Volk ohne Visionen geht zugrunde". - 00024nM2.02200024 000h + 00000nM2.02200024 000h 1030015 20151216160531 - + a|||d||||||1| - + a - + a - + Pruisken, Thomas - + Erwachsenenbildung hat sich schon immer "organisiert" - + Thomas Pruisken - + 2003 - + 10(2003)1, S. 42 - + 0000898 - + http://www.die-bonn.de/doks/pruisken0301.pdf Volltext - + Erwachsenenbildung - + Organisation - + Geschichte der Erwachsenenbildung - + Ein historischer Längsschnitt zum Thema Organisation in der Erwachsenenbildung vom 18. Jahrhundert bis heute. - 00026nM2.02200024 000h + 00000nM2.02200024 000h 1030016 20151216160531 - + a|||d||||||1| - + a - + a - + Mavridis, Savvas - + Erwachsenenbildung in Griechenland - + Savvas Mavridis - + 2003 - + 10(2003)1, S. 43-46 - + 0000898 - + http://www.die-bonn.de/doks/mavridis0301.pdf Volltext - + Bildungssystem - + Chancengleichheit - + Wettbewerb - + Griechenland - + Im griechischen Bildungssystem reproduziert sich die historisch-kulturelle und regionale Segmentierung der Gesellschaft. Gab es früher die Spaltung zwischen (westlichen) Auslandsgriechen mit ihrer hohen Bildung und den ungebildeten Einheimischen, so finden wir heute wohlhabende griechische Studierende an westlichen Universitäten und die Mehrheit der Jugend in den rückständigen Hochschulen des Landes. Auch in der Erwachsenenbildung werden die bestehende Spaltung festgezurrt und Chancengleichheit nicht erreicht. Griechenland verliert so auf Dauer seine internationale Wettbewerbsfähigkeit. - + Erwachsenenbildung - + Griechenland - 00028nM2.02200024 000h + 00000nM2.02200024 000h 1030017 20151216160531 - + a|||d||||||1| - + a - + a - + Ioannidou, Alexandra - + Anwendung und Praxisrelevanz von Weiterbildungsstatistiken - + Alexandra Ioannidou - + 2003 - + 10(2003)1, S. 47-49 - + 0000898 - + http://www.die-bonn.de/doks/ioannidou0301.pdf Volltext - + Bildungsstatistik - + Weiterbildung - + Weiterbildungsbereich - + Erwachsenenbildung - + In jüngster Zeit ist die Akzeptanz von Statistik im Bildungsbereich gestiegen. Nicht zuletzt als Konsequenz der Veröffentlichung internationaler Vergleichsstudien wie TIMSS und PISA wird statistischen Erhebungen wieder größere Beachtung geschenkt, da sie doch einige unbekannte Fakten ans Licht gebracht haben. Alexandra Ioannidou bereitet den gegenwärtigen Stand der Statistikbemühungen im Weiterbildungsbereich auf und spezifiziert den Gewinn für die Einrichtungen. - - Deutsches Institut für Erwachsenenbildung <Bonn> + + Deutsches Institut für Erwachsenenbildung <Bonn> - + Projekt - 00029nM2.02200024 000h + 00000nM2.02200024 000h 1030018 20151216160531 - + a|||d||||||1| - + a - + m - + Münz, Stefan - + Nefzer, Wolfgang - + Java Script Referenz. - + Stefan Münz ; Wolfgang Nefzer - + Poing - + Franzis' Verl - + 2003 - + 480 S. + 1 CD-ROM. - + ISBN 3-7723-6520-5 - + Computer - + Handbuch - 00030nM2.02200024 000h + 00000nM2.02200024 000h 1030019 20151216160531 - + a|||d||||||37 - + a - + m - + Heinrich-Böll-Stiftung - + Geschlechterdemokratie wagen - + [Gunda Werner (1951-2000) in Erinnerung und zu Ehren] - + hrsg. von der Heinrich-Böll-Stiftung - + Königstein - + Helmer - + 2003 - + 289 S. : Ill. - + ISBN 3-89741-113-x - + http://d-nb.info/999644262/04 Inhaltsverzeichnis - + Geschlechterforschung - + Geschlechterbeziehung - + Gender-Ansatz - + Demokratie - + Politik - + Organisation - + Mann - + Geschlechterrolle - + Management - + Arbeitsmarkt - + Eltern - + Geschlecht - + Demokratie - + Gewerkschaft - + Vereinte Dienstleistungsgewerkschaft - 00031nM2.02200024 000h + 00000nM2.02200024 000h 1030020 20151216160531 - + a|||d||||||1| - + a - + m - + Spitzer, Manfred - + Lernen - + Gehirnforschung und die Schule des Lebens. - + Manfred Spitzer - + Heidelberg [u.a.] - + Spektrum, Akd. Verl - + 2003 - + XVI, 511 S. - + Bibl. - + ISBN 3-8274-1396-6 - + Lernen - + Gehirn - + Forschung - 00032nM2.02200024 000h + 00000nM2.02200024 000h 0000968 20151216160531 - + a|||d||||||37 - + a - + Deutsche Vereinigung für Politische Bildung / Landesverband Nordrhein-Westfalen - + Politisches Lernen - + Hrsg.: Deutsche Vereinigung für Politische Bildung - NW e.V. - + Göttingen - + Ulrichs - + 1994 - 2003 - + 0937-2946 - 00033nM2.02200024 000h + 00000nM2.02200024 000h 1030021 20151216160531 - + a|||d||||||1| - + a - + a - + Hedtke, Reinhold - + Historisch-politische Bildung - ein Exempel für das überholte Selbstverständnis der Fachdidaktiken. - + Reinhold Hedtke - + 2003 - + 21(2003)1-2, S. 112-122. - + Bibl. - + 0000968 - + Fachdidaktik - + Politische Bildung - + Geschichtsbewusstsein - 00034nM2.02200024 000h + 00000nM2.02200024 000h 1030022 20151216160531 - + a|||d||||||37 - + a - + m - + Bullinger, Hans-Jörg [Hrsg.] - + Neue Organisationsformen im Unternehmen - + ein Handbuch für das moderne Management. 2., neu - + bearb. und erw. Aufl. - + Hrsg. Hans-Jörg Bullinger - + Berlin [u.a.] - + Springer - + 2003 - + XXX, E 15, 1352 S. - + Reg. - + ISBN 3-540-67610-4 - + Unternehmen - + Entwicklung - + Organisation - + Handbuch - + Konzeption - + Arbeitsorganisation - 00035nM2.02200024 000h + 00000nM2.02200024 000h 1030023 20151216160531 - + a|||d||||||1| - + a - + s - + König, Eckard - + Volmer, Gerda - + Systemisches Coaching - + Handbuch für Führungskräfte, Berater und Trainer. - + Eckard König ; Gerda Volmer - + 2. Aufl. - + Weinheim [u.a.] - + Beltz, 2003. - 192 S. - + 2003 - + Bibl. - + System und Organisation - + 8 - + ISBN 3-407-25266-8 - + Coaching - + Beratung - + Management - + Handbuch - 00036nM2.02200024 000h + 00000nM2.02200024 000h 1030024 20151216160531 - + a|||d||||||37 - + a - + m - + Projektmanagement Fachmann - + Band 1. - + 7. überarb. und aktualisierte Aufl. - + Eschborn - + RKW-Verl - + 2003 - + XLII, 490, X S. - + Reg. - + ISBN 3-926984-57-0 - + Projektmanagement - + Handbuch - + Betriebswirtschaft - 00037nM2.02200024 000h + 00000nM2.02200024 000h 1030025 20151216160531 - + a|||d||||||37 - + a - + m - + Projektmanagement Fachmann - + Band 2. - + 7., überarb. und aktualisierte Aufl. - + Eschborn - + RKW-Verl - + 2003 - + XVII S., S. 492-1249, X S. - + Reg. - + ISBN 3-926984-57-0 - + Projektmanagement - + Handbuch - + Betriebswirtschaft - 00038nM2.02200024 000h + 00000nM2.02200024 000h 1031381 20151216160531 - + a|||d||||||37 - + a - + Wirtschaft & Weiterbildung - + 5-16 - + Würzburg - + Schimmel Verl. - + 1992-2003 - + Weiterbildung - + 0942-4946 - 00039nM2.02200024 000h + 00000nM2.02200024 000h 1030026 20151216160531 - + a|||d||||||1| - + a - + a - + Pichler, Martin - + Spielerisch gewaltfreie Kommunikation erlernen. - + Martin Pichler - + 2003 - + (2003)3, S. 32-35. - + 1031381 - + Kommunikation - + Training - + Erwachsenenbildung - + Aggression - + Gewaltlosigkeit - + Training - 00041nM2.02200024 000h + 00000nM2.02200024 000h 1030027 20151216160532 - + a|||d||||||1| - + a - + a - + Mühleisen, Stefan - + Training als Abenteuerurlaub. - + Stefan Mühleisen - + 2003 - + (2003)3, S. 38-44. - + 1031381 - + Freizeitpädagogik - + Training - + Berufliche Weiterbildung - + Erlebnisbericht - + Erwachsenenbildung - + Lernen - + Team - + Training - 00043nM2.02200024 000h + 00000nM2.02200024 000h 1030028 20151216160532 - + a|||d||||||1| - + a - + a - + Müller, Holger - + Kein Geld für Bildung? - + Holger Müller - + 2003 - + (2003)3, S. 46-48. - + 1031381 - + Berufliche Weiterbildung - + Bundesanstalt für Arbeit - + Reform - + Bildungsangebot - + Bildungseinrichtung - 00045nM2.02200024 000h + 00000nM2.02200024 000h 1030029 20151216160532 - + a|||d||||||1| - + a - + a - + Fehling, Georg - + Neue Spiele für den Nachwuchs. - + Georg Fehling - + 2003 - + (2003)2, S. 38-41. - + 1031381 - + Berufliche Weiterbildung - + Managerfortbildung - + Planspiel - + Erwachsenenbildung - + Methode - 00046nM2.02200024 000h + 00000nM2.02200024 000h 0001040 20151216160532 - + a|||d||||||37 - + a - + Bundesausschuß Politische Bildung - + Praxis Politische Bildung - + Materialien, Analysen, Diskussionen - + hrsg. vom Bundesausschuß Politische Bildung - + Weinheim - + Juventa-Verl. - + 1997-2003 - + 1433-4755 - 00047nM2.02200024 000h + 00000nM2.02200024 000h 1030030 20151216160532 - + a|||d||||||1| - + a - + a - + Krüger, Thomas - + Länge, Theo W. - + 'Es müsste zwischen Politik und politischer Bildung mal wieder richtig krachen...' - + Thomas Krüger ; Theo W. Länge - + 2003 - + 7(2003)1, S. 5-15. - + 0001040 - + Politische Bildung - - Bundeszentrale für Politische Bildung <Bonn> + + Bundeszentrale für Politische Bildung <Bonn> - + Interview - + Arbeit und Leben - + Erwachsenenbildung - + Zukunft - 00049nM2.02200024 000h + 00000nM2.02200024 000h 1030031 20151216160532 - + a|||d||||||1| - + a - + a - + Schillo, Johannes - + Inszenierte Demokratie - + Anmerkungen zur Mediengesellschaft. - + Johannes Schillo - + 2003 - + 7(2003)1, S. 30-35. - + 0001040 - + Politische Bildung - + Medien - - Wahl <Politik> + + Wahl <Politik> - + Politik - + Analyse - + Bildungsarbeit - + Medienkompetenz - 00051nM2.02200024 000h + 00000nM2.02200024 000h 1030032 20151216160532 - + a|||d||||||1| - + a - + a - + Bazzica, Oriella - + Weiser, Gerda - + Görls - die neue Mädchenzeitung aus Hessen - + ausserschulische politische Bildung in einem - + Zeitungsprojekt. - + Oriella Bazzica ; Gerda Weiser - + 2003 - + 7(2003)1, S. 22-30. - + 0001040 - + Ausserschulische Erziehung - + Frau - + Zeitung - + Politische Bildung - + Hessen - 00053nM2.02200024 000h + 00000nM2.02200024 000h 1030033 20151216160532 - + a|||d||||||1| - + a - + a - + Butterwegge, Christoph - + Stillstand, Rolle rückwärts oder Aufbruch zu neuen Ufern? - + Perspektiven der Sozialpolitik nach der - + Bundestagswahl 2002. - + Christoph Butterwegge - + 2003 - + 7(2003)1, S. 35-43. - + 0001040 - + Sozialpolitik - - Wahl <Politik> + + Wahl <Politik> - + Analyse - + Zukunft - + Politische Bildung - 00054nM2.02200024 000h + 00000nM2.02200024 000h 1030034 20151216160532 - + a|||d||||||37 - + a - + m - + Gieseke, Wiltrud [Hrsg.] - + Institutionelle Innensichten der Weiterbildung - + Hrsg. Wiltrud Gieseke - + Bielefeld - + Bertelsmann - + 2003 - + 276 S. - + ISBN 3-7639-1859-0 - + http://www.die-bonn.de/doks/gieseke0201.pdf - + Volkshochschule - + Organisation - + Bildungsforschung - + Bildungsmanagement - + Arbeitsplan - + Weiterbildungsangebot - + Bildungsplanung - + Deutschland - + In diesem Tagungsband werden Beiträge dokumentiert, die sich mit der inneren Entwicklung der Weiterbildungsinstitutionen theoretisch und auf der Basis empirischer Befunde beschäftigen. Ziel ist es, Ansätze zu entwickeln, mit denen die Wirkungsweisen von Weiterbildungsinstitutionen und den dort handelnden Personen aus einer wissenschaftlichen Perspektive geklärt werden können. Programmforschung im Spannungsverhältnis von Institutionen- und Bildungsmanagementforschung ist das übergreifende Thema. - + Weiterbildung - + Institution - + Weiterbildung - + Deutschland - + Erwachsenenbildung - + Frau - + Arbeitsplan - + Analyse - 00055nM2.02200024 000h + 00000nM2.02200024 000h 1030034 20151216160532 - + a|||d||||||37 - + a - + m - + Gieseke, Wiltrud [Hrsg.] - + Institutionelle Innensichten der Weiterbildung - + Hrsg. Wiltrud Gieseke - + Bielefeld - + Bertelsmann - + 2003 - + 276 S. - + ISBN 3-7639-1859-0 - + http://www.die-bonn.de/doks/gieseke0201.pdf - + Volkshochschule - + Organisation - + Bildungsforschung - + Bildungsmanagement - + Arbeitsplan - + Weiterbildungsangebot - + Bildungsplanung - + Deutschland - + In diesem Tagungsband werden Beiträge dokumentiert, die sich mit der inneren Entwicklung der Weiterbildungsinstitutionen theoretisch und auf der Basis empirischer Befunde beschäftigen. Ziel ist es, Ansätze zu entwickeln, mit denen die Wirkungsweisen von Weiterbildungsinstitutionen und den dort handelnden Personen aus einer wissenschaftlichen Perspektive geklärt werden können. Programmforschung im Spannungsverhältnis von Institutionen- und Bildungsmanagementforschung ist das übergreifende Thema. - + Weiterbildung - + Institution - + Weiterbildung - + Deutschland - + Erwachsenenbildung - + Frau - + Arbeitsplan - + Analyse - 00056nM2.02200024 000h + 00000nM2.02200024 000h 1030035 20151216160532 - + a|||d||||||1| - + a - + a - + Gieseke, Wiltrud - + Einleitung: Weiterbildungsinstitutionen - ein Forschungsfeld. - + Wiltrud Gieseke - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 7-23. - + Bibl. - + 1030034 - + Lehr-Lern-Forschung - + Lernkultur - + Lebenslanges Lernen - + Weiterbildungsangebot - + Bildungsplanung - + Angebotsplanung - + Deutschland - + Weiterbildung - + Institution - + Weiterbildung - + Organisationsentwicklung - + Weiterbildung - + Deutschland - 00058nM2.02200024 000h + 00000nM2.02200024 000h 1030036 20151216160533 - + a|||d||||||1| - + a - + a - + Opelt, Karin - + Volkshochschule unter gesellschaftlichen Umbrüchen. - + Karin Opelt - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 27-45. - + Bibl. - + 1030034 - + Weiterbildungsangebot - + Erwachsenenbildung - + Deutschland - + Volkshochschule - + Geschichte - + Volkshochschule - + Deutschland-DDR - + Volkshochschule - + Deutschland - + Weiterbildung - + Institution - 00060nM2.02200024 000h + 00000nM2.02200024 000h 1030037 20151216160533 - + a|||d||||||1| - + a - + a - + Schiersmann, Christiane - + Institutionenanalyse am Beispiel der Famielienbildung. - + Christiane Schiersmann - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 46-58. - + Bibl. - + 1030034 - + Empirische Untersuchung - + Weiterbildungsangebot - + Weiterbildungsfinanzierung - + Kooperation - + Bildungsmanagement - + Organisationsentwicklung - + Deutschland - + Weiterbildung - + Institution - + Familienbildung - + Deutschland - + Erwachsenenbildung - + Organisation - 00062nM2.02200024 000h + 00000nM2.02200024 000h 1030038 20151216160533 - + a|||d||||||1| - + a - + a - + Schäffter, Ortfried - + Erwachsenenpädagogische Organisationstheorie. - + Ortfried Schäffter - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 59-81. - + Bibl. - + 1030034 - + Institution - + Organisation - + Wissen - + Kontext - + Erwachsenenbildung - + Organisationsentwicklung - + Erwachsenenpädagogik - + Organisationsentwicklung - + Erwachsenenbildung - + Organisation - 00064nM2.02200024 000h + 00000nM2.02200024 000h 1030039 20151216160533 - + a|||d||||||1| - + a - + a - + Arnold, Rolf - + Theoretische Überlegungen und autobiographische Reflexionen zum Bildungsmanagement. - + Rolf Arnold - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 85-97. - + Bibl. - + 1030034 - + Bildungsmanagement - + Erwachsenenbildung - + Erwachsenenpädagogik - + Pädagogik - + Management - + Wissenschaftliche Weiterbildung - 00066nM2.02200024 000h + 00000nM2.02200024 000h 1030040 20151216160533 - + a|||d||||||1| - + a - + a - + Meisel, Klaus - + Weiterbildungsmanagement und Programmplanung. - + Klaus Meisel - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 98-110. - + Bibl. - + 1030034 - + Bildungsmanagement - + Weiterbildungsmanagement - + Angebotsplanung - + Bildungsbedarf - + Finanzierung - + Wirtschaftlichkeit - + Erwachsenenbildung - + Organisation - 00068nM2.02200024 000h + 00000nM2.02200024 000h 1030041 20151216160533 - + a|||d||||||1| - + a - + a - + Faulstich, Peter - + 'Bildungsmanagement' im vernetzten Support. - + Peter Faulstich - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 111-128. - + Bibl. - + 1030034 - + Bildungsmanagement - + Erwachsenenbildung - + Non-Profit-Organisation - + Weiterbildung - + Information - + Qualitätssicherung - + Infrastruktur - + Support - + Beratung - + Region - + Netzwerk - + Erwachsenenbildung - + Organisation - 00070nM2.02200024 000h + 00000nM2.02200024 000h 1030042 20151216160533 - + a|||d||||||1| - + a - + a - + Robak, Steffi - + Empirische Befunde zum Bildungmanagement in Weiterbildungsinstitutionen. - + Steffi Robak - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 129-138. - + 1030034 - + Bildungsmanagement - + Begriff - + Programmplanung - + Erwachsenenbildungsstätte - + Bildungseinrichtung - + Analyse - + Leiter einer Bildungseinrichtung - + Beobachtung - + Öffentliche Träger - + Finanzierung - + Management - 00072nM2.02200024 000h + 00000nM2.02200024 000h 1030043 20151216160534 - + a|||d||||||1| - + a - + a - + Sauer-Schiffer, Ursula - + Frauen in Leitungspositionen der Weiterbildung. - + Ursula Sauer-Schiffer - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 139-158. - + 1030034 - + Leiter einer Bildungseinrichtung - + Frau - + Weiterbildung - + Geschlechterrolle - + Management - + Bildungsmanagement - + Empirische Untersuchung - + Biographie - + Management - + Führungsstil - 00074nM2.02200024 000h + 00000nM2.02200024 000h 1030044 20151216160534 - + a|||d||||||1| - + a - + a - + Heuer, Ulrike - + Programmplanungshandel zwischen Bildungsmanagement und neuen Lernkulturen. - + Ulrike Heuer - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 161-188. - + Bibl. - + 1030034 - + Programmplanung - + Bildungsmanagement - + Lernkultur - + Weiterbildung - + Erwachsenenbildung - + Bildungseinrichtung - + Öffentliche Träger - + Neue Medien - + Wissensgesellschaft - + Lernfähigkeit - + Modellversuch - + Lebenslanges Lernen - 00076nM2.02200024 000h + 00000nM2.02200024 000h 1030045 20151216160534 - + a|||d||||||1| - + a - + a - + Gieseke, Wiltrud - + Programmplanungshandeln als Angleichungshandeln - + die realisierte Vernetzung in der - + Abstimmung von Angebot und Nachfrage. - + Wiltrud Gieseke - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 189-211. - + Bibl. - + 1030034 - + Programmplanung - + Theorie - + Analyse - + Methode - + Weiterbildung - + Bildungsmanagement - 00078nM2.02200024 000h + 00000nM2.02200024 000h 1030046 20151216160534 - + a|||d||||||1| - + a - + a - + Nolda, Sigrid - + Paradoxa von Programmanalysen. - + Sigrid Nolda - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 212-227. - + Bibl. - + 1030034 - + Erwachsenenbildung - + Wirklichkeit - + Öffentliche Träger - + Programmplanung - + Bildungsangebot - + Visualisierung - + Arbeitsplan - + Analyse - + Erwachsenenbildung - + Ziel - 00080nM2.02200024 000h + 00000nM2.02200024 000h 1030047 20151216160534 - + a|||d||||||1| - + a - + a - + Schrader, Josef - + Wissensform in der Weiterbildung. - + Josef Schrader - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 228-253. - + Bibl. - + 1030034 - + Wissen - + Weiterbildung - + Wissensgesellschaft - + Erwachsenenbildung - + Empirische Untersuchung - + Wissenssoziologie - + Programmplanung - + Arbeitsplan - + Analyse - + Wissen - + Begriff - 00082nM2.02200024 000h + 00000nM2.02200024 000h 1030048 20151216160534 - + a|||d||||||1| - + a - + a - + Käpplinger, Bernd - + Pädagogische Konzepte in Projekten gegen Jugendarbeitslosigkeit am Beispiel Berlins: Ein Beitrag zur Lehr-/Lernkulturforschung. - + Bernd Käpplinger - + Bielefeld - + Bertelsmann, - + 2003 - + - S. 254-274. - + Bibl. - + 1030034 - + Lehr-Lern-Forschung - + Lernkultur - + Projekt Jugendbildung - + Projekt Konzeption - + Finanzierung - + Berlin - + Jugendarbeitslosigkeit - + Projekt - + Berlin - 00083nM2.02200024 000h + 00000nM2.02200024 000h 1030049 20151216160534 - + a|||d||||||1| - + a - + s - + Stang, Richard - + Peez, Georg - + Groppe, Hans-Hermann - + Kulturelle Bildung - + ein Leitfaden für Kursleiter und Dozenten - + Richard Stang ; Georg Peez ; Hans-Hermann Groppe - + 2., komplett überarb. und akt. Aufl. - + Bielefeld - + Bertelsmann - + 2003 - + 114 S. - + Perspektive Praxis - + ISBN 3-7639-1861-2 - + http://www.die-bonn.de/doks/2003-kulturelle-bildung-01.pdf Volltext - + Kulturelle Bildung - + Einführung - + Kursleitereinführung - + Kunst - + Kultur - + Kreativität - + Bildnerisches Gestalten - + Malen - + Modellieren - + Musik - + Tanz - + Theater - + Schreiben - + Medien - + Interkulturelle Bildung - + Teilnehmerschwund - + Kursleiter - + Teilnehmer - + Mann - + Frau - + Diese praxisnahe 'Einführung' zeigt anschaulich die unterschiedlichen Bereiche und das facettenreiche Selbstverständnis der kulturellen Bildung. Unverzichtbar für Kursleiter, Dozenten und solche, die es werden wollen, ist dieser Band aber vor allem darum, weil er eine Fülle von konkreten Praxisbeispielen präsentiert, Orientierungen für die Wahl von Methoden und die Gestaltung von Kursen gibt und einen 'Wegweiser' darstellt durch den Dschungel der unterschiedlichen Bedürfnisse und Ansprüche der Beteiligten. Nicht zuletzt regt das Durchblättern schon zu neuen Ideen an. - + Literatur - + Seminar - + Kurs - + Entwicklung - + Kurs - + Konzeption - + Kurs - + Evaluation - 00084nM2.02200024 000h + 00000nM2.02200024 000h 1030050 20151216160534 - + a|||d||||||1| - + a - + s - + Loibl, Stefan - + Zur Konstruktion von Qualität in Weiterbildungseinrichtungen - + am Beispiel der Kreisvolkshochschule Hochtaunus/Oberursel. - + Stefan Loibl - + Bielefeld - + Bertelsmann - + 2003 - + 125 S. - + Bibl. - + Theorie und Praxis der Erwachsenenbildung - + ISBN 3-7639-1863-9 - + Weiterbildung - + Qualität - + Erwachsenenbildungsstätte - + Bildungseinrichtung - + Volkshochschule - + Öffentliche Träger - + Fallstudie - + Empirische Untersuchung - + Qualitätsmanagement - + Hessen - + Viele Qualitätskonzepte für Bildungseinrichtungen definieren derzeit Qualität aus dem - + Blickwinkel der (hauptamtlichen) Mitarbeitenden. Die Vorstellung anderer Akteure, die gerade im Umfeld von öffentlichen Weiterbildungseinrichtungen eine wichtige Rolle spielen, werden oft ausser Acht gelassen. - + Kreisvolkshochschule - + Hessen - + Hochtaunus-Oberursel - + Qualität - + Kriterium - + Qualität - + Entwicklung - 00085nM2.02200024 000h + 00000nM2.02200024 000h 1030051 20151216160534 - + a|||d||||||37 - + a - + m - + Apel, Heino [Hrsg.] - + Kraft, Susanne [Hrsg.] - + Online lehren - + Planung und Gestaltung netzbasierter Weiterbildung. - + Hrsg. Heino Apel ... - + Bielefeld - + Bertelsmann - + 2003 - + 276 S. - + ISBN 3-7639-1865-5 - + http://www.die-bonn.de/doks/2003-e-learning-01.pdf Volltext - + Weiterbildung - + E-Learning - + Lehren - + Internet - + Medienpädagogik - + Methodik - + Didaktik - + Medien - + Mediendidaktik - + Die bisherigen Erfahrungen zum E-Learning zeigen: Erfolgreiche internetbasierende Weiterbildung benötigt didaktische und methodische Konzepte, tutorielle Unterstützung und - im Sinne von 'Blended Learning' - eine ausgewogene Kombination von Online- und Präsenzlernen. Zu folgenden Fragestellungen werden Antworten gesucht: Was muss aus Sicht einer anbietenden Einrichtung bei der Planung und Gestaltung von Online-Seminaren beachtet werden? Welche Bausteine hat ein erfolgreiches Online-Seminar? Wie muss das Lehrmaterial aufbereitet werden? Welche Lernplattformen können verwendet werden? Welche Potentiale bieten Präsenzphasen? - 00086nM2.02200024 000h + 00000nM2.02200024 000h 1030052 20151216160534 - + a|||d||||||1| - + a - + m - + Cil, Hasan - + Anfänge einer Epoche - + ehemalige türkische Gastarbeiter erzählen. - + Hasan Cil - + 1. Aufl. - + Berlin - + Schiler - + 2003 - + 135 S. - + ISBN 3-89930-015-7 - + Erfahrung - + Deutschland - + Migration - + Deutschland - + Türke - + Deutschland-BRD - 00087nM2.02200024 000h + 00000nM2.02200024 000h 1030053 20151216160534 - + a|||d||||||1| - + a - + s - + Stebut, Nina von - + ¬Eine¬ Frage der Zeit? Zur Integration von Frauen in die Wissenschaft - + eine empirische Untersuchung der Max-Planck-Gesellschaft. - + Nina von Stebut - + Opladen - + Leske und Budrich - + 2003 - + 216 S. - + Bibl. - + Studien zur Wissenschafts- und Organisationssoziologie - + 3 - + ISBN 3-8100-3251-4 - + Frau - + Wissenschaft - + Integration - + Wissenschaftler - + Geschlecht - + Geschlechterrolle - + Empirische Untersuchung - + Gender-Ansatz - + Biographie - 00088nM2.02200024 000h + 00000nM2.02200024 000h 1030054 20151216160535 - + a|||d||||||1| - + a - + m - + Krämer, Walter - + So lügt man mit Statistik - + Walter Krämer - + 4. Aufl. - + München [u.a.] - + Piper - + 2003 - + 206 S. - + Reg. - + ISBN 3-492-23038-5 - + Statistik - + Methodologie - + Kritik - 00089nM2.02200024 000h + 00000nM2.02200024 000h 1030055 20151216160535 - + a|||d||||||1| - + a - + m - + Krämer, Walter - + Statistik verstehen - + eine Gebrauchsanweisung. - + Walter Krämer - + 3. Aufl. - + München [u.a.] - + Piper - + 2003 - + 229 S. - + Reg. - + ISBN 3-492-23039-3 - + Statistik - + Methodologie - + Einführung - 00090nM2.02200024 000h + 00000nM2.02200024 000h 1030056 20151216160535 - + a|||d||||||37 - + a - + m - + Straka, Gerald A. [Hrsg.] - + Zertifizierung non-formell und informell erworbener beruflicher Kompetenzen - + Ergebnisse der - + Fachtagung 'Erfassen, Beurteilen und Zertifizieren non-formell und informell erworbener - + beruflicher Kompetenzen'. - + Hrsg. Gerald A. Straka - + Münster [u.a.] - + Waxmann - + 2003 - + 260 S. - + ISBN 3-8309-1249-8 - + Berufliche Weiterbildung - + Lernen am Arbeitsplatz - + Informelles Lernen - + Kompetenz - + Zertifikat - + Berufliche Bildung - + Frankreich - + Großbritannien - + Schweiz - + Niederlande - + Berufliche Weiterbildung - + Frankreich - + Berufliche Weiterbildung - + Großbritannien - + Berufliche Bildung - + Schweiz - + Berufliche Bildung - + Niederlande - 00091nM2.02200024 000h + 00000nM2.02200024 000h 0001104 20151216160535 - + a|||d||||||37 - + a - + ZSE - + Zeitschrift für Soziologie der Erziehung und Sozialisation ; journal for sociology of education and socialization - + Weinheim - + Juventa - + 1999-2003 - + Nebent. 18.1998: Zeitschrift für Sozialisationsforschung und Erziehungssoziologie - + Früher u. d. T.: Zeitschrift für Sozialisationsforschung und Erziehungssoziologie - + 1436-1957 - 00092nM2.02200024 000h + 00000nM2.02200024 000h 1030057 20151216160535 - + a|||d||||||1| - + a - + a - + Friedeburg, Ludwig von - + Krais, Beate - + PISA und ein Blick zurück auf Bildungsreformen in Deutschland. - + Ludwig von Friedeburg ; Beate Krais - + 2003 - + 23(2003)1, S. 40-50. - + 0001104 - + Friedeburg, Ludwig von - + Bildungspolitik - + Bildungsreform - + Interview - + PISA-Studie - + Schule - 00094nM2.02200024 000h + 00000nM2.02200024 000h 1030058 20151216160535 - + a|||d||||||1| - + a - + a - + Kecskes, Robert - + Ethnische Homogenität in sozialen Netzwerken türkischer Jugendlicher. - + Robert Kecskes - + 2003 - + 23(2003)1, S. 68-84. - + Bibl. - + 0001104 - + Biographieforschung - + Diskussion - + Theorie - + Biographie - + Konstruktivismus - + Milieu - 00096nM2.02200024 000h + 00000nM2.02200024 000h 1030059 20151216160535 - + a|||d||||||1| - + a - + a - + Brake, Anna - + Worüber sprechen wir, wenn von PISA die Rede ist? - + Anna Brake - + 2003 - + 23(2003)1, S. 24-39. - + Bibl. - + 0001104 - + Empirische Forschung - + Bildungsbegriff - + Bildungsforschung - + PISA-Studie - + Bildungssoziologie - 00097nM2.02200024 000h + 00000nM2.02200024 000h 0001342 20151216160535 - + a|||d||||||37 - + a - + Management & Training - + Köln - + Kluwer - + 2000 - 2003 - + 1439-4693 - 00098nM2.02200024 000h + 00000nM2.02200024 000h 1030060 20151216160535 - + a|||d||||||1| - + a - + a - + China, Ralf - + E-Learning ernst nehmen. - + Ralf China - + 2003 - + 30(2003)2, S. 26-31. - + 0001342 - + E-Learning - + Empirische Untersuchung - + Unternehmen - + Weiterbildung - + Befragung - + Kritik - 00100nM2.02200024 000h + 00000nM2.02200024 000h 1030061 20151216160535 - + a|||d||||||1| - + a - + a - + Klauser, Fritz - + Pollmer, Mirko - + Harte Fakten über Software. - + Fritz Klauser ; Mirko Pollmer - + 2003 - + 30(2003)2, S. 43-46. - + 0001342 - + Fremdsprache - + Didaktik - + Software - + Erwachsenenbildung - + Analyse - 00101nM2.02200024 000h + 00000nM2.02200024 000h 0000784 20151216160535 - + a|||d||||||37 - + a - + Grundlagen der Weiterbildung e.V. - + GdWZ - + Grundlagen der Weiterbildung ; Praxis, Forschung, Trends - + Hrsg.: Grundlagen der Weiterbildung e.V., Hagen - + Neuwied - + Luchterhand - + 1990 - 2003 - + Grundlagen der Weiterbildung : GdWZ - + 0937-2172 - 00102nM2.02200024 000h + 00000nM2.02200024 000h 1030062 20151216160535 - + a|||d||||||1| - + a - + a - + Severing, Eckart - + Lernen im Arbeitsprozess. - + Eckart Severing - + 2003 - + 14(2003)1, S. 1-4. - + Bibl. - + 0000784 - + Betriebliche Weiterbildung - + Lernen am Arbeitsplatz - + Didaktik - 00104nM2.02200024 000h + 00000nM2.02200024 000h 1030063 20151216160535 - + a|||d||||||1| - + a - + a - + Dehnbostel, Peter - + Den Arbeitsplatz als Lernort erschliessen und gestalten. - + Peter Dehnbostel - + 2003 - + 14(2003)1, S. 5-9. - + Bibl. - + 0000784 - + Lernen am Arbeitsplatz - + Betriebliche Weiterbildung - + Erfahrung - + Lernprozess - + Didaktik - 00106nM2.02200024 000h + 00000nM2.02200024 000h 1030064 20151216160535 - + a|||d||||||1| - + a - + a - + Welte, Heike - + ¬Das¬ Mitarbeitergespräch. - + Heike Welte - + 2003 - + 14(2003)1, S. 9-11. - + 0000784 - + Personalentwicklung - + Führung - + Mitarbeiter - + Gespräch - 00108nM2.02200024 000h + 00000nM2.02200024 000h 1030065 20151216160536 - + a|||d||||||1| - + a - + a - + Griep, Monika - + Heinold-Krug, Eva - + Qualifizierung für Führungskräfte im Veränderungsprozess. - + Monika Griep ; Eva Heinold-Krug - + 2003 - + 14(2003)1, S. 11-14. - + 0000784 - + Qualifikation - + Führung - + Organisationsentwicklung - + Qualitätsmanagement - + Leistung - + Weiterbildung - 00110nM2.02200024 000h + 00000nM2.02200024 000h 1030066 20151216160536 - + a|||d||||||1| - + a - + a - + Baitsch, Christof - + Alles in Butter - + Fast! - + Christof Baitsch - + 2003 - + 14(2003)1, S. 14-16. - + 0000784 - + Lernen am Arbeitsplatz - + Lernprozess - + Betriebliche Weiterbildung - + Führungsstil - + Motivation - 00112nM2.02200024 000h + 00000nM2.02200024 000h 1030067 20151216160536 - + a|||d||||||1| - + a - + a - + Gütl, Brigitte - + Orthey, Frank Michael - + Bildungsmanagerinnen lernen grenzüberschreitend. - + Brigitte Gütl ; Frank Michael Orthey - + 2003 - + 14(2003)1, S. 17-21. - + 0000784 - + Bildungsmanagement - + Universitäre Erwachsenenbildung - + Lehrgang - + Methode - 00114nM2.02200024 000h + 00000nM2.02200024 000h 1030068 20151216160536 - + a|||d||||||1| - + a - + a - + Niedermair, Gerhard - + Tatort: Organisationskultur. - + Gerhard Niedermair - + 2003 - + 14(2003)1, S. 22-26. - + Bibl. - + 0000784 - + Organisationsentwicklung - + Unternehmenskultur - + Weiterbildung der Wirtschaft - 00116nM2.02200024 000h + 00000nM2.02200024 000h 1030069 20151216160536 - + a|||d||||||1| - + a - + a - + Ladner, Andreas - + Milizpolitiker im Kommunalbereich. - + Andreas Ladner - + 2003 - + 14(2003)1, S. 26-29. - + 0000784 - + Politische Erwachsenenbildung - + Schweiz - + Weiterbildung - + Schweiz - + Politik - + Schweiz - 00118nM2.02200024 000h + 00000nM2.02200024 000h 1030070 20151216160536 - + a|||d||||||1| - + a - + a - + Wittkuhn, Klaus D. - + Schwarz, Thomas - + Bartscher, Thomas - + Improving Performance stellt die betriebliche Weiterbildung auf neue Füsse. - + Klaus D. Wittkuhn ; Thomas Schwarz ; Thomas Bartscher - + 2003 - + 14(2003)1, S. 30-35. - + 0000784 - + Betriebliche Weiterbildung - + Leistung - + Unternehmenskultur - 00120nM2.02200024 000h + 00000nM2.02200024 000h 1030071 20151216160536 - + a|||d||||||1| - + a - + a - + Weiß, Reinhold - + Aktuelle Ergebnisse der Weiterbildungserhebung der Wirtschaft. - + Reinhold Weiss - + 2003 - + 14(2003)1, S. 35-38. - + 0000784 - + Lernen am Arbeitsplatz - + Betriebliche Weiterbildung - + Empirische Untersuchung - + Weiterbildung der Wirtschaft - 00121nM2.02200024 000h + 00000nM2.02200024 000h 1030072 20151216160536 - + a|||d||||||37 - + a - + s - + Baumert, Jürgen [Hrsg.] - + PISA 2000 - Ein differenzierter Blick auf die Länder der Bundesrepublik Deutschland. - + Hrsg. Jürgen Baumert - + Opladen - + Leske + Budrich - + 2003 - + 448 S. - + Bibl., Reg. - + Deutsches PISA-Konsortium - + ISBN 3-8100-3855-5 - + Bildungsforschung - + PISA-Studie - + Vergleichsuntersuchung - + Internationaler Vergleich - + Selbstgesteuertes Lernen - + Soziale Kompetenz - + Sozialkompetenz - + Lernziel - + Benachteiligter - + Lernen - + Deutschland - + Schüler - + Kompetenz - + Schule - + Deutschland - + Mädchen - + Bildung - + Junge - + Bildung - + Schule - + Umwelt - + Schule - + Qualität - + Familie - + Struktur - 00122nM2.02200024 000h + 00000nM2.02200024 000h 1030073 20151216160536 - + a|||d||||||1| - + a - + s - + Behringer, Stefan - + Cash-flow und Unternehmensbeurteilung - + Berechnungen und Anwendungsfelder für die - + Finanzanalyse. - + Stefan Behringer - + 8., neu bearb. und erw. Aufl. - + Belin - + Schmidt, 2003. - 192 S. - + 2003 - + Bibl., Reg. - + Grundlagen und Praxis der Betriebswirtschaft - + 24. - + ISBN 3-503-07090-7 - + Betriebswirtschaft - + Finanzwirtschaft - + Unternehmen - + Beurteilung - 00123nM2.02200024 000h + 00000nM2.02200024 000h 1030074 20151216160536 - + a|||d||||||37 - + a - + s - + Peters, Sibylle [Hrsg.] - + Lernen und Weiterbildung als permanente Personalentwicklung - + Hrsg. Sibylle Peters - + 1. Aufl. - + München [u.a.] - + Hampp - + 2003 - + 216 S. - + Weiterbildung, Personalentwicklung, Organisationales Lernen - + 1 - + ISBN 3-87988-716-0 - + Personalentwicklung - + Lernen - + Lernprozess - + Weiterbildung - + Strukturwandel - + Innovation - + Organisationsentwicklung - + E-Learning - + Lernen am Arbeitsplatz - 00124nM2.02200024 000h + 00000nM2.02200024 000h 1030075 20151216160536 - + a|||d||||||37 - + a - + m - + Koch, Rainer [Hrsg.] - + New Public Service - + öffentlicher Dienst als Motor der Staats- und Verwaltungsmodernisierung. 1. - + Aufl. - + Hrsg. Rainer Koch - + Wiesbaden - + Gabler - + 2003 - + 291 S. - + Bibl. - + ISBN 3-409-11850-0 - + Öffentlicher Dienst - + Beschäftigungspolitik - + Australien - + Verwaltung - + Modernisierung - + Staat - + Modernisierung - + Personal - + Management - + Personal - + Kosten - 00125nM2.02200024 000h + 00000nM2.02200024 000h 1030076 20151216160536 - + a|||d||||||37 - + a - + m - + Borghoff, Uwe M. [Hrsg.] - + Information Technology for Knowledge Management. - + Hrsg. Uwe M. Borghoff - + Berlin [u.a.] - + Springer - + 1998 - + XI, 232 S. - + Bibl. - + ISBN 3-540-63764-8 - + Informationstechnik - + Wissen - + Management - + Unternehmen - + Wissensmanagement - + Datenverarbeitung - 00126nM2.02200024 000h + 00000nM2.02200024 000h 1030077 20151216160536 - + a|||d||||||1| - + a - + s - + Molitor, Heike - + Nachhaltige Orientierungen bei Akteuren sozialer Bewegungen - + lokale Initiativen als - + Möglichkeitsraum lebenslangen Lernens im Kontext einer nachhaltigen Entwicklung. - + Heike Molitor - + Frankfurt am Main [u.a.] - + Lang - + 2003 - + 234 S. - + Bibl. - + Studien zur Erwachsenenbildung - + 20 - + Zugl.: Lüneburg, Univ., Diss., 2002 - + ISBN 3-631-50591-4 - + Nachhaltigkeit - + Umwelt - + Umweltschutz - + Umwelterziehung - + Lebenslanges Lernen - + Ehrenamtlicher Mitarbeiter - + Bildung - + Soziologie - + Seit der UN-Konferenz für Umwelt und Entwicklung 1992 in Rio steht das Thema Nachhaltige Entwicklung auf der Tagesordnung. Die vorliegende Arbeit stellt die Frage in den Mittelpunkt, in welchen biografischen und sozialen Kontexten pädagogische Vorhaben zur Förderung des Bewusstseins um eine nachhaltige Entwicklung erfolgreich sind und welche Konsequenzen sich daraus für die Bildungspraxis ergeben. - 00127nM2.02200024 000h + 00000nM2.02200024 000h 1030078 20151216160536 - + a|||d||||||37 - + a - + m - + Caruso, Marcelo [Hrsg.] - + Internationalisierung - + Semantik und Bildungssystem in vergleichender Perspektive = Internationalisation. - + Hrsg. Marcelo Caruso - + Frankfurt am Main [u.a.] - + Lang - + 2002 - + 354 S. - + ISBN 3-631-38661-3 - + Bildungssystem - + Semantik - + Internationalität - + Erziehungswissenschaft - + Internationaler Austausch - + Internationaler Vergleich - + Wissen - + Organisation - + Internationalisierung und Globalisierung gehören inzwischen zu den Gemeinplätzen der öffentlichen Diskussion, auch im Bildungsbereich. Die Aufsätze dieses Bandes wollen zu einer theoretisch geleiteten und empirisch informierten Diskussion dieser Themen beitragen. Aus theoretischer, historischer und gegenwartsbezogener Perspektive werden die vergangenen und gegenwärtigen Pfade und Logiken von Internationalisierung und Internationalität im Bildungsbereich bei fortdauernder Bedeutung des Nationalen thematisiert. - + Geschichte - + Erziehungswissenschaft - 00128nM2.02200024 000h + 00000nM2.02200024 000h 1030079 20151216160537 - + a|||d||||||37 - + a - + s - + Hazemi, Reza [Hrsg.] - + ¬The¬ digital university - building a learning community - + Hrsg. Reza Hazemi - + London [u.a.] - + Springer - + 2002 - + XIX, 252 S. - + Reg. - + Computer supported cooperative work - + ISBN 1-85233-478-9 - + Hochschule - + Computerunterstütztes Lernen - + Neue Medien - + E-Learning - + Universitäre Erwachsenenbildung - + Diese Aufsatzsammlung bietet eine praxisorientierte Einführung auf dem neusten Wissensstand für den Einsatz neuer Medien und von E-Learning im Hochschulbereich. Neue Lehrtechniken, Curricula und neue Formen der Kooperation werden vorgestellt und kritisch hinterfragt. Der Band gibt Anregungen zur Evaluation der Virtuellen Universität. - 00129nM2.02200024 000h + 00000nM2.02200024 000h 1030080 20151216160537 - + a|||d||||||1| - + a - + m - + Höhne, Thomas - + Pädagogik der Wissensgesellschaft. - + Thomas Höhne - + Bielefeld - + Transcript Verl. - + 2003 - + 326 S. - + Bibl. - + ISBN 3-89942-119-1 - + Wissensgesellschaft - + Postmoderne - + Erziehungswissenschaft - + Wissen - + Bildung - + Lernen - + Selbstgesteuertes Lernen - + Lerntheorie - + Der Autor des Buches gibt eine kritisch pädagogische Bearbeitung des Begriffs - + Wissensgesellschaft. Die zentralen Begriffe 'Wissen', 'Lernen' und 'Bildung' werden reflektiert und dem gängigen Wissensbegriff das Konzept des soziokulturellen Wissens als mögliche Alternative gegenübergestellt. Den Schluss des Bandes bilden grundlegende Überlegungen zum Verhältnis von Wissen und Macht. - 00130nM2.02200024 000h + 00000nM2.02200024 000h 1030081 20151216160537 - + a|||d||||||1| - + a - + m - + Wolf, Alison - + does education matter? Myths about education and economic growth. - + Alison Wolf - + Strand, London [u.a.] - + Penguin books - + 2002 - + XIV, 332 S. - + Bibl. - + ISBN 0-14-028660-8 - + Wirtschaftliche Entwicklung - + Erziehung - + Bildung - + Ökonomie - + Reichtum - + Bildungspolitik - + Führen bessere Erziehung und mehr Bildung wirklich zu wirtschaftlichem Wachstum und Wohlstand, wie es Politiker immer wieder betonen? Erziehung und Bildung ist laut Wolf eine millionenschwere Industrie, bei der Wünsche, Versprechen und Realität oft weit auseinander klaffen. Nur eine kritische Auseinandersetzung mit den Versprechungen der Politiker und den schwierige Realitäten kann nach Wolf den Weg zu einer guten und zukunftsorientierten Erziehung weisen. - 00131nM2.02200024 000h + 00000nM2.02200024 000h 1030082 20151216160537 - + a|||d||||||1| - + a - + s - + Henninger, Michael - + Mandl, Heinz - + Zuhören, Verstehen, Miteinander reden - + ein mulitmediales Kommunikations- und - + Ausbildungskonzept. - + Michael Henninger ; Heinz Mandl - + 1. Aufl. - + Bern [u.a.] - + Huber - + 2003 - + 122 S. - + Bibl. - + Lernen mit neuen Medien - + ISBN 3-456-83909-X - + Kommunikation - + Training - + Multimedia - + Neue Technologien - + Computerunterstütztes Lernen - + Datenverarbeitung - + Informatik - + Lernen - + Neue Medien - 00132nM2.02200024 000h + 00000nM2.02200024 000h 1030083 20151216160537 - + a|||d||||||37 - + a - + s - + Hoffmann, Dietrich [Hrsg.] - + Ökonomisierung der Wissenschaft - + Forschen, Lehren und Lernen nach den Regeln des 'Marktes'. - + Hrsg. Dietrich Hoffmann - + Weinheim [u.a.] - + Beltz - + 2003 - + 248 S. - + Beltz Wissenschaft - + ISBN 3-407-32043-4 - + Wissenschaft - + Ökonomie - + Evaluation - + Hochschule - + Lernen - + Bildungsreform - + In dem Sammelband werden aus unterschiedlichen Perspektiven der Hochschule und - + außeruniversitärer Forschung die zunehmende Ökonomisierung der Wissenschaft kritisiert. Die Autorinnen und Autoren stellen Vor- und Nachteile der Entwicklung hin zu Quasi-Unternehmen vor. Sie plädieren dafür, dass eine Übetragung von Führungs- und Managementkonzepten zu einer anderen Konfiguration von Rahmenregelungen als bei marktorientierten Wirtschaftsbetrieben führen muss. - 00133nM2.02200024 000h + 00000nM2.02200024 000h 1030083 20151216160537 - + a|||d||||||37 - + a - + s - + Hoffmann, Dietrich [Hrsg.] - + Ökonomisierung der Wissenschaft - + Forschen, Lehren und Lernen nach den Regeln des 'Marktes'. - + Hrsg. Dietrich Hoffmann - + Weinheim [u.a.] - + Beltz - + 2003 - + 248 S. - + Beltz Wissenschaft - + ISBN 3-407-32043-4 - + Wissenschaft - + Ökonomie - + Evaluation - + Hochschule - + Lernen - + Bildungsreform - + In dem Sammelband werden aus unterschiedlichen Perspektiven der Hochschule und - + außeruniversitärer Forschung die zunehmende Ökonomisierung der Wissenschaft kritisiert. Die Autorinnen und Autoren stellen Vor- und Nachteile der Entwicklung hin zu Quasi-Unternehmen vor. Sie plädieren dafür, dass eine Übetragung von Führungs- und Managementkonzepten zu einer anderen Konfiguration von Rahmenregelungen als bei marktorientierten Wirtschaftsbetrieben führen muss. - 00134nM2.02200024 000h + 00000nM2.02200024 000h 1030084 20151216160537 - + a|||d||||||1| - + a - + a - + Hoffmann, Dietrich - + Zur Kritik einer 'neuen' Hochschulpolitik - + lässt sich wissenschaftlicher Erfolg institutionell - + organisieren? - + Dietrich Hoffmann - + Weinheim [u.a.] - + Beltz, - + 2003 - + S. 15-42 - + 1030083 - + Hochschulpolitik - + Bildungsoekonomie - + Wettbewerb - + Hochschule - + Wissenschaft - + Forschung - 00136nM2.02200024 000h + 00000nM2.02200024 000h 1030085 20151216160537 - + a|||d||||||1| - + a - + a - + Händle, Christa - + Ökonomisierung in der Selbstdarstellung von Forschung - Beobachtungen zu Evaluationen. - + Christa Händle - + Weinheim [u.a.] - + Beltz, - + 2003 - + S. 85-108 - + 1030083 - + Forschungsinstitut - + Evaluation - + Studie - + Forschung - + Geschichte - + Kritik - 00138nM2.02200024 000h + 00000nM2.02200024 000h 1030086 20151216160537 - + a|||d||||||1| - + a - + a - + Hartung, Dirk - + Ökonomisierung der Wissenschaft? - + das Beispiel der Grundlagenforschung. - + Dirk Hartung - + Weinheim [u.a.] - + Beltz, - + 2003 - + S. 73-84. - + 1030083 - + Forschung - + Evaluation - + Bildungsökonomie - + Wissenschaft - + Wissenschaftspolitik - + Bildungsreform - 00140nM2.02200024 000h + 00000nM2.02200024 000h 1030087 20151216160537 - + a|||d||||||1| - + a - + a - + Neuner, Gerhart - + Einheit der Bildungsreform und Vielfalt der Reformvorschläge. - + Gerhart Neuner - + Weinheim [u.a.] - + Beltz, - + 2003 - + S. 109-130 - + 1030083 - + Hochschulsystem - + Bildungsreform - + Wettbewerb - + Forschung - + Wissenschaft - + Kritik - 00142nM2.02200024 000h + 00000nM2.02200024 000h 1030088 20151216160537 - + a|||d||||||1| - + a - + a - + Kirchhöfer, Dieter - + Informelles Lernen - Legitimation für eine De-Institutionalisierung? - + Dieter Kirchhöfer - + Weinheim [u.a.] - + Beltz, - + 2003 - + S. 213-232 - + 1030083 - + Informelles Lernen - + Evaluation - + Weiterbildung - + Forschung - + Institutionalisierung - + Organisation - + Hochschule - 00144nM2.02200024 000h + 00000nM2.02200024 000h 1030089 20151216160537 - + a|||d||||||1| - + a - + a - + Neumann, Karl - + Wissensproduktion, Employability und Bildung - + Innovationsorientierung als Herausforderung - + des Wissenschaftssystems. - + Karl Neumann - + Weinheim [u.a.] - + Beltz, - + 2003 - + S. 233-244 - + 1030083 - + Ausbildung - + Hochschule - + Innovation - + Wettbewerb - + Wissenschaft - + Forschung - + Kritik - 00145nM2.02200024 000h + 00000nM2.02200024 000h 0000868 20151216160537 - + a|||d||||||37 - + a - + ¬Das¬ Hochschulwesen - + HSW ; Forum für Hochschulforschung, -praxis und -politik - + Bielefeld - + Webler - + 1994 - 2003 - + 0018-2974 - + http://www.hochschulwesen.info - 00146nM2.02200024 000h + 00000nM2.02200024 000h 1030090 20151216160537 - + a|||d||||||1| - + a - + a - + Tetens, Holm - + Zwischen Wissensgesellschaft und Bildungskanon: Was muss Schule leisten? - + Holm Tetens - + 2003 - + 51(2003)2, S. 52-59. - + 0000868 - + Wissensgesellschaft - + Bildungspolitik - + Neue Technologien - + Wettbewerb - + Ökonomie - + Computer - + Kritik - + Bildung - + Schule - 00148nM2.02200024 000h + 00000nM2.02200024 000h 1030091 20151216160538 - + a|||d||||||1| - + a - + a - + Scherrer, Christoph - + Neues von der GATS-Verhandlungsrunde: Forderungen zur Aufgabe staatlicher Verantwortung für die Hochschulen. - + Christoph Scherrer - + 2003 - + 51(2003)2, S. 60-66. - + Bibl. - + 0000868 - + Dienstleistung - + Europäische Union - + Bildungssystem - + Hochschulwesen - + Wettbewerb - + Allgemeines Übereinkommen über den Dienstleistungsverkehr - + Globalisierung - + Private Träger - + Erwachsenenbildung - 00150nM2.02200024 000h + 00000nM2.02200024 000h 1030092 20151216160538 - + a|||d||||||1| - + a - + a - + Schulte, Olaf A. - + ¬Die¬ Videokonferenz in der universitären Lehre - Projekte und Forschung. - + Olaf A. Schulte - + 2003 - + 51(2003)2, S. 81-86. - + Bibl. - + 0000868 - + Hochschule - + Lehren - + Telelernen - + Kommunikation - + Medienpädagogik - + Virtuelle Hochschule - + Video - + Konferenz - 00151nM2.02200024 000h + 00000nM2.02200024 000h 0000308 20151216160538 - + a|||d||||||37 - + a - + Sozial extra - + Zeitschrift für soziale Arbeit & Sozialpolitik - + Wiesbaden - + VS Verl. für Sozialwiss. - + 1982-2003 - + Früher u. d. T.: Extra Sozialarbeit - + 0931-279x - 00152nM2.02200024 000h + 00000nM2.02200024 000h 1030093 20151216160538 - + a|||d||||||1| - + a - + a - + Grunert, Cathleen - + ¬Der¬ Arbeitsmarkt für Soziale Fachkräfte - + Berufschancen, Arbeitslosigkeit - Ergebnisse aus Untersuchungen. (Themenheft) - + Cathleen Grunert - + 2003 - + (2003)5, S. 6-9. - + 0000308 - + Sozialarbeit - + Diplompädagoge - + Arbeitsmarkt - + Verbleib - 00153nM2.02200024 000h + 00000nM2.02200024 000h 0001342 20151216160538 - + a|||d||||||37 - + a - + Management & Training - + Köln - + Kluwer - + 2000 - 2003 - + 1439-4693 - 00154nM2.02200024 000h + 00000nM2.02200024 000h 1030094 20151216160538 - + a|||d||||||1| - + a - + a - + Schneider, Ulrich H. - + Am Anfang steht das Vertrauen. - + Ulrich H. Schneider - + 2003 - + 30(2003)3, S. 26-27. - + 0001342 - + Wissensmanagement - + Betrieb - + Vertrauen - + Lernkultur - + Datenbank - 00156nM2.02200024 000h + 00000nM2.02200024 000h 1030095 20151216160538 - + a|||d||||||1| - + a - + a - + Niggemann, Gesa - + ¬Der¬ Grundstein des Erfolgs. - + Gesa Niggemann - + 2003 - + 30(2003)3, S. 46-47. - + 0001342 - + Coaching - + Berufliche Weiterbildung - + Beziehung - + Vertrag - 00157nM2.02200024 000h + 00000nM2.02200024 000h 1030096 20151216160538 - + a|||d||||||1| - + a - + m - + Zech, Rainer - + Lernerorientierte Qualitätstestierung in der Weiterbildung - + LQW 2 ; das Handbuch. - + Rainer Zech - + Hannover - + Expressum-Verl - + 2003 - + 42 S. - + ISBN 3-929700-23-9 - + Weiterbildung - + Qualität - + Zertifikat - + Teilnehmerorientierung - + Qualität - + Entwicklung - 00158nM2.02200024 000h + 00000nM2.02200024 000h 1030097 20151216160538 - + a|||d||||||1| - + a - + s - + Wolf, Alison - + Competence-Based Assessment. - + Alison Wolf - + Buckingham [u.a.] - + Open Univ. Press - + 2000 - + XVI, 156 S. - + Bibl. - + Assessing Assessment - + ISBN 0-335-19023-5 - + Kompetenz - + Beobachtung - + Bewertung - + Weiterbildung - + Großbritannien - + Berufliche Bildung - + Großbritannien - + Entwicklung - + Assessment-Center - + Assessment - + Internationaler Vergleich - 00159nM2.02200024 000h + 00000nM2.02200024 000h 1030098 20151216160538 - + a|||d||||||37 - + a - + m - + Küttner, Wolfdieter [Hrsg.] - + Personalbuch 2003 - + Arbeitsrecht, Lohnsteuerrecht, Sozialversicherungsrecht. 10., vollständig - + neubearb. Aufl. - + Hrsg. Wolfdieter Küttner - + München - + Beck - + 2003 - + XXXIX, 2663 S. - + Reg. - + ISBN 3-406-49583-4 - + Arbeitsrecht - + Steuerrecht - + Sozialversicherung - 00160nM2.02200024 000h + 00000nM2.02200024 000h 0000953 20151216160538 - + a|||d||||||37 - + a - + ZEP - + Zeitschrift für internationale Bildungsforschung und Entwicklungspädagogik - + Hrsg.: Gesellschaft für Interkulturelle Bildungsforschung und Entwicklungspädagogik e.V. - + Frankfurt am Main - + Verl. für Interkulturelle Kommunikation (IKO) - + 1994 - 2003 - + Zeitschrift für Entwicklungspädagogik - + 1434-4688 - 00161nM2.02200024 000h + 00000nM2.02200024 000h 1030100 20151216160538 - + a|||d||||||1| - + a - + a - + Schleicher, Klaus - + Bildungsinnovation in Europa durch 'Corporate Governance' und 'E-learning' - + Klaus Schleicher - + 2003 - + 26(2003)1, S. 32-38 - + Bibl. - + urn:nbn:de:0111-opus-61592 - + 0000953 - + urn:nbn:de:0111-opus-61592 - + http://www.pedocs.de/volltexte/2013/6159/pdf/ZEP_1_2003_Schleicher_Bildungsinnovation_in_Europa.pdf Volltext - + Bildungspolitik - + Bildungsangebot - + Lernprozess - + Informationstechnik - + Wertorientierung - + Europäische Erziehung - + Europäische Integration - + Nationalbewusstsein - + Öffentlichkeit - + Regierung - + Investition - + Wettbewerb - + Bildung - + Wissensgesellschaft - + Autonomie - + Kommunikation - + Medien - + E-Learning - + Dezentralisierung - + Europa - + Innovation - + Kooperation - + Koordination - + Tradition - + Vernetzung - + Europäische Union - + Neue Medien - + Bildungsstandard - + In Europa haben sich die Grundlagen der individuellen Selbstbestimmung und des sozialen Zusammenlebens, der medialen Information und politischen Organisation durch den gemeinsamen Markt, die einheitliche Währung sowie transnationale Rechtsnormen und Entscheidungsprozesse grundlegend gewandelt. Die politischen und Bildungsstrukturen sind jedoch mit der europäischen Multikulturalität, Kommunikation und Konsumption nicht mitgewachsen. Notwendig sind daher neue Ordnungs- und Entscheidungsstrukturen, mehrebige Identitäts- und Wertmuster sowie effizientere Informations- und Lernkonzepte, um die äußerst heterogenen, multinationalen wie sprachlichen Kooperationsfelder demokratisch zu organisieren. Analysiert wird [in diesem Beitrag] inwieweit entsprechende Bildungsinnovationen durch ein mehrebiges 'corporate governance and e-learning' erleichtert werden könnten, ferner welche Innovationspotentiale von verschiedenen Bildungskontexten, -ebenen und -prozessen ausgehen können, bzw. warum es schwierig ist, sie praxisnah zu vernetzen. Sichtbar wird, wie der Verbands- und politische Europakorporatismus angesichts der GATS- Verhandlungsrunde im Bildungsbereich durch mehr Bürgermitsprache ergänzt werden sollte und kann. Zweifellos brauchen die europäischen Gremien mehr demokratische Legitimität, und hängt das Innovationspotential der EU wie der Mitgliedsländer von der Bildung und Mobilität ihrer Bürger ab. Erforderlich ist insofern eine mehrebige Synchronisierung der Bildungsplanung und -praxis mit mehr Subsidiarität von der institutionellen bis zur europäischen Ebene. (DIPF/Orig.) - 00162nM2.02200024 000h + 00000nM2.02200024 000h 0000761 20151216160538 - + a|||d||||||37 - + a - + Berufsverband Deutscher Soziologinnen und Soziologen - + Sozialwissenschaften und Berufspraxis - + hrsg. vom Berufsverband Deutscher Soziologinnen und Soziologen e.V. - + Wiesbaden - + VS Verl. für Sozialwiss. - + 1990 - 2003 - + Berufsverband Deutscher Soziologen: BDS-Info - + 0724-3464 - 00163nM2.02200024 000h + 00000nM2.02200024 000h 1030101 20151216160538 - + a|||d||||||1| - + a - + a - + Boatca, Manuela - + Lamnek, Siegfried - + Gewalt als Phänomen unserer Zeit. - + Manuela Boatca ; Siegfried Lamnek - + 2003 - + 26(2003)2, S. 123-134. - + Bibl. - + 0000761 - + Gewalt - + Soziologie - + Gesellschaft - + Moderne - + Gewalt - + Alltag - 00164nM2.02200024 000h + 00000nM2.02200024 000h 0001396 20151216160538 - + a|||d||||||37 - + a - + Zeitschrift für Medienpsychologie - + Göttingen [u.a.] - + Hogrefe - + 2001-2003 - + Früher u. d. T.: Medienpsychologie - + 1617-6383 - 00165nM2.02200024 000h + 00000nM2.02200024 000h 1030102 20151216160538 - + a|||d||||||1| - + a - + a - + Horz, Holger - + Fries, Stefan - + Hofer, Manfred - + Stärken und Schwächen der Gestaltung eines kollaborativen Teleseminars zum Thema 'Distance Learning'. - + Holger Horz ; Stefan Fries ; Manfred Hofer - + 2003 - + 15(2003)2, S. 48-59. - + Bibl. - + 0001396 - + Fernstudium - + Telelernen - + Empirische Untersuchung - + Evaluation - + Internet - + Didaktik - + Computerunterstütztes Lernen - 00166nM2.02200024 000h + 00000nM2.02200024 000h 0001371 20151216160539 - + a|||d||||||37 - + a - + Zeitschrift für Frauenforschung & Geschlechterstudien - + Bielefeld - + Kleine - + 2000-2003 - + Zeitschrift für Frauenforschung - + 0946-5596 - 00167nM2.02200024 000h + 00000nM2.02200024 000h 1030103 20151216160539 - + a|||d||||||37 - + a - + a - + Multidisziplinäre Frauen- und Genderforschung in Empirie und Theorie - + (Themenheft) - + 2002 - + 20(2002)4, S. 3-111. - + 0001371 - + Frauenforschung - + Geschlechterforschung - + Wissenschaft - + Gender-Ansatz - 00168nM2.02200024 000h + 00000nM2.02200024 000h 0000162 20151216160539 - + a|||d||||||37 - + a - + Vorgänge - + Zeitschrift für Bürgerrechte und Gesellschaftspolitik - + Wiesbaden - + VS Verl. für Sozialwiss. - + 1980 - 2003 - + 0507-4150 - 00169nM2.02200024 000h + 00000nM2.02200024 000h 1030104 20151216160539 - + a|||d||||||37 - + a - + a - + ¬Der¬ ostdeutsche Weg [Themenheft] - + 2003 - + 42 (2003)1, 94 S. - + 0000162 - + Neue Bundesländer - + Politische Wissenschaft - + Analyse - + Soziologie - 00170nM2.02200024 000h + 00000nM2.02200024 000h 0001471 20151216160539 - + a|||d||||||37 - + a - + Ästhetik & Kommunikation - + Hrsg.: Ästhetik & Kommunikation - + Berlin - + Ästhetik & Kommunikation - + 1987-2003 - + 0341-7212 - 00171nM2.02200024 000h + 00000nM2.02200024 000h 1030105 20151216160539 - + a|||d||||||37 - + a - + a - + Holzweg Bildung - + (Themenheft) - + 2003 - + 34 (2003)120, S. 4-126. - + 0001471 - + Bildung - + Erfahrung - + Kritik - + Zeitgeschichte - 00172nM2.02200024 000h + 00000nM2.02200024 000h 0001104 20151216160539 - + a|||d||||||37 - + a - + ZSE - + Zeitschrift für Soziologie der Erziehung und Sozialisation ; journal for sociology of education and socialization - + Weinheim - + Juventa - + 1999-2003 - + Nebent. 18.1998: Zeitschrift für Sozialisationsforschung und Erziehungssoziologie - + Früher u. d. T.: Zeitschrift für Sozialisationsforschung und Erziehungssoziologie - + 1436-1957 - 00173nM2.02200024 000h + 00000nM2.02200024 000h 1030106 20151216160539 - + a|||d||||||1| - + a - + a - + Hurrelmann, Klaus - + ¬Der¬ entstrukturierte Lebenslauf - + die Auswirkungen der Expansion der Jugendphase. - + Klaus Hurrelmann - + 2003 - + 23(2003)2, S. 115-126. - + Bibl. - + 0001104 - + Lebenslauf - + Biographie - + Gesellschaft - + Sozialpolitik - + Soziologie - + Sozialisation - 00174nM2.02200024 000h + 00000nM2.02200024 000h 1032950 20151216160539 - + a|||d||||||37 - + a - + Bundesverband der Diplom-Pädagoginnen und Diplom-Pädagogen - + ¬Der¬ pädagogische Blick - + Zeitschrift für Wissenschaft und Praxis in pädagogischen Berufen - + Weinheim - + Juventa-Verl. - + 1993 - 2003 - + 0943-5484 - + Pädagogik - + Zeitschrift - 00175nM2.02200024 000h + 00000nM2.02200024 000h 1030107 20151216160539 - + a|||d||||||37 - + a - + a - + Interkulturalität - + (Thema) - + 2003 - + 11(2003)1, S. 3-42. - + 1032950 - + Interkulturelles Lernen - + Multikulturelle Gesellschaft - + Migration - + Hochschule - 00177nM2.02200024 000h + 00000nM2.02200024 000h 1030108 20151216160539 - + a|||d||||||1| - + a - + a - + Kil, Monika - + Manz, Annette - + Warum brauchen Diplom- und Magisterpädagogen/innen einen Berufsverband? - + Monika Kil ; Annette Manz - + 2003 - + 11(2003)1, S. 43-50. - + Bibl. - + 1032950 - + Diplomstudium - + Pädagogik - + Berufsverband - + Verbleib - + Arbeitsmarkt - + Interessenvertretung - 00178nM2.02200024 000h + 00000nM2.02200024 000h 0000088 20151216160539 - + a|||d||||||37 - + a - + Neue Praxis - + np ; Zeitschrift für Sozialarbeit, Sozialpädagogik und Sozialpolitik - + Neuwied - + Luchterhand - + 1971 - 2003 - + 0342-9857 - 00179nM2.02200024 000h + 00000nM2.02200024 000h 1030109 20151216160539 - + a|||d||||||1| - + a - + a - + Scherr, Albert - + Kritik als Selbstbestätigung - + Einwände gegen den Versuch einer ideologiekritischen - + Entlarvung der Luhmann'schen Systemtheorie. - + Albert Scherr - + 2003 - + 33(2003)1, S. 126-129 - + Bibl. - + 0000088 - + Sozialarbeit - + Systemtheorie - + Luhmann, Niklas - 00180nM2.02200024 000h + 00000nM2.02200024 000h 1030110 20151216160539 - + a|||d||||||1| - + a - + m - + Edelmann, Walter - + Lernpsychologie - + Walter Edelmann - + 6., vollständig überarb. Aufl. - + Weinheim - + Beltz - + 2000 - + XIV, 311 S. - + Bibl. - + ISBN 3-621-27465-0 - + Lernen - + Lernpsychologie - + Pädagogische Psychologie - 00181nM2.02200024 000h + 00000nM2.02200024 000h 1030111 20151216160539 - + a|||d||||||37 - + a - + m - + Götz, Klaus [Hrsg.] - + Umbrüche - Aufbrüche - + Menschen und Organisationen im Wandel. - + Hrsg. Klaus Götz - + 3. unveränderte Aufl. - + Würzburg - + Ergon-Verl - + 1999 - + 173 S. - + Bibl. - + ISBN 3-928034-37-5 - + Organisation - + Organisationsentwicklung - + Sozialer Wandel - + Organisationslernen - 00182nM2.02200024 000h + 00000nM2.02200024 000h 1030112 20151216160539 - + a|||d||||||1| - + a - + s - + Stehr, Nico - + Wissenspolitik - + die Überwachung des Wissens. - + Nico Stehr - + Frankfurt am Main - + Suhrkamp - + 2003 - + 327 S. - + Bibl. - + suhrkamp taschenbuch wissenschaft - + 1615 - + ISBN 3-518-29215-3 - + Wissen - + Kontrolle - + Wissenschaft - + Politik - + Ethik - + Ökonomie - + Globalisierung - + Wissensmanagement - + Gesellschaft - + Entwicklung - 00183nM2.02200024 000h + 00000nM2.02200024 000h 1030113 20151216160539 - + a|||d||||||1| - + a - + m - + Pickstone, John V. - + Ways of Knowing - + a new History of Science, Technology and Medicine. - + John V. Pickstone - + Chicago [u.a.] - + Univ. Press - + 2001 - + XII, 271 S. - + Bibl. - + ISBN 0-226-66795-2 - + Naturwissenschaft - + Geschichte - + Wissenschaft - + Geschichte - + Medizin - + Geschichte - + Technologie - + Geschichte - 00184nM2.02200024 000h + 00000nM2.02200024 000h 0000897 20151216160540 - + a|||d||||||37 - + a - + Katholische Bundesarbeitsgemeinschaft für Erwachsenenbildung - + Info-Dienst - + theologische Erwachsenenbildung ; Informationsdienst der Katholischen Bundesarbeitsgemeinschaft für Erwachsenenbildung (KBE), Kommission Theologie, Glaube, Bild - + Bonn - + KBE - + 1993 - 2003 - + 0948-1990 - + http://www.kath.de/kbe/publikationen/sonstige/infodienste.html - 00185nM2.02200024 000h + 00000nM2.02200024 000h 1030114 20151216160540 - + a|||d||||||1| - + a - + a - + Sellmann, Matthias - + Problematische Verortung - + die aktuellen Leitbilder katholischer Erwachsenenbildung. - + Matthias Sellmann - + 2003 - + 11(2003)31, S. 10-14. - + 0000897 - + Katholische Erwachsenenbildung - + Leitbild - + Christentum - 00187nM2.02200024 000h + 00000nM2.02200024 000h 1030115 20151216160540 - + a|||d||||||1| - + a - + a - + Bergold, Ralph - + Was Leitbilder leisten - + Anmerkungen zu einer Kritik kirchlicher Erwachsenenbildung. - + Ralph Bergold - + 2003 - + 11(2003)31, S. 14-15. - + 0000897 - + Katholische Erwachsenenbildung - + Leitbild - + Kritik - 00188nM2.02200024 000h + 00000nM2.02200024 000h 0001344 20151216160540 - + a|||d||||||37 - + a - + Slovenian Institute for Adult Education (Ljubljana) - + Novicke - + Ljubljana - + Slovenian Institute for Adult Education - + 1996 - 2003 - + 1408-6492 - 00189nM2.02200024 000h + 00000nM2.02200024 000h 1030116 20151216160540 - + a|||d||||||37 - + a - + a - + Siae Events (Thema) - + 2003 - + (2003)Spring, S. 3-18. - + 0001344 - + Slowenien - + Erwachsenenbildung - + Bericht - + Evaluation - + Zertifikat - + Projekt - + Weiterbildungsangebot - 00190nM2.02200024 000h + 00000nM2.02200024 000h 0000121 20151216160540 - + a|||d||||||37 - + a - + Bund Deutscher Kunsterzieher - + BDK-Mitteilungen - + Fachzeitschrift des Bundes Deutscher Kunsterzieher e.V - + Hannover - + Bund - + 1982-2001 - + Vorg. Bund Deutscher Kunsterzieher: Mitteilungen des Bundes Deutscher Kunsterzieher - + 0005-2981 - 00191nM2.02200024 000h + 00000nM2.02200024 000h 1030117 20151216160540 - + a|||d||||||1| - + a - + a - + Stehr, Werner - + ¬Der¬ Tanz ums Ei - + Schulentwicklung und Lehrerbildung im Schatten des schiefen Turmes. - + Werner Stehr - + 2003 - + 39(2003)2, S. 2-7. - + 0000121 - + PISA-Studie - + Lehrerausbildung - + Kunstpädagogik - + Professionalität - + Qualität - + Schule - 00192nM2.02200024 000h + 00000nM2.02200024 000h 0000868 20151216160540 - + a|||d||||||37 - + a - + ¬Das¬ Hochschulwesen - + HSW ; Forum für Hochschulforschung, -praxis und -politik - + Bielefeld - + Webler - + 1994 - 2003 - + 0018-2974 - + http://www.hochschulwesen.info - 00193nM2.02200024 000h + 00000nM2.02200024 000h 1030118 20151216160540 - + a|||d||||||1| - + a - + a - + Henninger, Michael - + Balk, Michael - + Transparenz von Lehrevaluation an der Hochschule - + wie aktiv sollen Lehrende am - + Evaluationsprozess beteiligt sein? - + Michael Henninger ; Michael Balk - + 2003 - + 51(2003)1, S. 2-7. - + Bibl. - + 0000868 - + Hochschule - + Lehren - + Evaluation - + Kritik - + Modell - 00195nM2.02200024 000h + 00000nM2.02200024 000h 1030119 20151216160540 - + a|||d||||||1| - + a - + a - + Macke, Gerd - + Kaiser, Karin - + Brendel, Sabine - + Erwerb von Lehrkompetenz - + das Programm des Hochschuldidaktikzentrums der Universitäten - + des Landes Baden-Württemberg. - + Gerd Macke ; Karin Kaiser ; Sabine Brendel - + 2003 - + 51(2003)1, S. 25-31. - + Bibl. - + 0000868 - + Hochschuldidaktik - + Didaktik - + Hochschule - + Lehren - + Kompetenz - + Baden-Württemberg - + Qualifizierung - 00196nM2.02200024 000h + 00000nM2.02200024 000h 0000025 20151216160540 - + a|||d||||||37 - + a - - Bundeszentrale für Politische Bildung <Bonn> + + Bundeszentrale für Politische Bildung <Bonn> - - Bundeszentrale für Heimatdienst <Bonn> + + Bundeszentrale für Heimatdienst <Bonn> - + Aus Politik und Zeitgeschichte - + hrsg. von der Bundeszentrale für Politische Bildung - + Bonn - + Bundeszentrale - + 1980-2003 - + 0479-611x - 00197nM2.02200024 000h + 00000nM2.02200024 000h 1030120 20151216160540 - + a|||d||||||37 - + a - + a - + (Themenheft zum Thema Alter) - + 2003 - + (2003)B 20, S. 3-54. - + 0000025 - + Demographie - + Alter - + Statistik - + Unternehmen - + Bildung - 00198nM2.02200024 000h + 00000nM2.02200024 000h 1030121 20151216160540 - + a|||d||||||37 - + a - + m - + Franz, Hans-Werner [Hrsg.] - + Forschen -Lernen - Beraten - + der Wandel von Wissensproduktion und -transfer in den - + Sozialwissenschaften. - + Hrsg. Hans-Werner Franz - + Berlin - + ed. sigma - + 2003 - + 395 S. - + Bibl. - + ISBN 3-89404-499-3 - + Sozialwissenschaft - + Forschung - + Beratung - + Wissensgesellschaft - + Lernen - + Wissen - + Transfer - 00199nM2.02200024 000h + 00000nM2.02200024 000h 1030122 20151216160540 - + a|||d||||||1| - + a - + m - + Spogis, Veronika - + Strategien für die Chancengleichheit - + Möglichkeiten von Weiterbildung am Beispiel weiblicher - + Führungskräfte. - + Veronika Spogis - + Münster - + Telos-Verl - + 2003 - + 164 S. - + Bibl. - + ISBN 3-933060-10-9 - + Chancengleichheit - + Arbeitsplatz - + Berufliche Weiterbildung - + Frau - + Führung - 00200nM2.02200024 000h + 00000nM2.02200024 000h 1030123 20151216160541 - + a|||d||||||37 - + a - + m - + Schuchow, Karlheinz [Hrsg.] - + Jahrbuch Personalentwicklung und Weiterbildung 2003. - + Hrsg. Karlheinz Schuchow - + Neuwied - + Luchterhand - + 2002 - + XIV, 361 S. + 1 CD-ROM - + Reg - + ISBN 3-472-05009-8 - + Personalentwicklung - + Jahrbuch - + Weiterbildung - + Management - + Wissensmanagement - + E-Learning - + Bildungscontrolling - + Personal - + Management - 00201nM2.02200024 000h + 00000nM2.02200024 000h 1030124 20151216160541 - + a|||d||||||1| - + a - + m - + Korte, Petra - + Pädagogisches Schreiben um 1800 - + der Status von Schriftlichkeit, Rhetorik und Poetik bei Johann - + Heinrich Pestalozzi. - + Petra Korte - + Bern [u.a.] - + Haupt - + 2003 - + 451 S. - + Bibl. - + ISBN 3-258-06559-4 - + Pestalozzi, Johann Heinrich - + Geschichte - + Studie - + Pädagogik - + Forschung - + Schreiben - + Autor - + Quellensammlung - + Lesen - + Erziehungswissenschaft - + Geschichte - 00202nM2.02200024 000h + 00000nM2.02200024 000h 1030125 20151216160541 - + a|||d||||||1| - + a - + m - + Meier, Artur - + Liebesglück und Wissenschaftslust - + ein (un)ordentliches Leben in dreieinhalb Deutschlands. - + Artur Meier - + 1. Aufl. - + Berlin - + Trafo-Verl - + 2002 - + 396 S. - + Reg. - + ISBN 3-89626-339-0 - + Autobiographie - + Erwachsenenbildner - + Geschichte der Erwachsenenbildung - + Volkshochschule - + Deutschland-DDR - + Hochschullehrer - + Wiedervereinigung - + Deutschland - 00203nM2.02200024 000h + 00000nM2.02200024 000h 1030126 20151216160541 - + a|||d||||||1| - + a - + m - + Hörning, Karl H. - + Experten des Alltags - + die Wiederentdeckung des praktischen Wissens. - + Karl H. Hörning - + 1. Aufl. - + Weilerswist - + Velbrück Wissenschaft - + 2001 - + 267 S. - + Bibl. - + ISBN 3-934730-33-7 - + Wissen - + Alltag - + Handlung - + Soziologie - + Theorie - + Praxis - 00204nM2.02200024 000h + 00000nM2.02200024 000h 1030127 20151216160541 - + a|||d||||||37 - + a - + m - + Lorenz, Thomas [Hrsg.] - + Vom Training zur Performance - + Improving Performance - Nutzen für Mitarbeiter und - + Unternehmen. - + Hrsg. Thomas Lorenz - + Offenbach - + Gabal - + 2001 - + 303 S. - + Reg. - + ISBN 3-89749-134-6 - + Training - + Trainer - + Lernen - + Weiterbildung - + Unternehmen - + Personalentwicklung - + Lernen am Arbeitsplatz - + Organisationsentwicklung - 00205nM2.02200024 000h + 00000nM2.02200024 000h 1030128 20151216160541 - + a|||d||||||1| - + a - + m - + Hock, Dee - + ¬Die¬ Chaordische Organisation - + vom Gründer der VISA-Card. - + Dee Hock - + Stuttgart - + Klett-Cotta - + 2001 - + 326 S. - + Reg. - + ISBN 3-608-91037-9 - + Organisation - + Organisationsentwicklung - + Bericht - + Unternehmen - + Zukunft - + Erlebnisbericht - 00206nM2.02200024 000h + 00000nM2.02200024 000h 1030129 20151216160541 - + a|||d||||||1| - + a - + m - + Seufert, Sabine - + Mayr, Peter - + Fachlexikon e-learning - + Wegweiser durch das e-Vokabular. - + Sabine Seufert ; Peter Mayr - + Bonn - + May - + 2002 - + 143 S. - + Reg. - + ISBN 3-931488-64-0 - + Lexikon - + E-Learning - + Definition - + Begriff - + Lexikon - 00207nM2.02200024 000h + 00000nM2.02200024 000h 0000871 19991119 20070110192846 20151216160541 20070915 - + 529766-7zDNB - + 012833770 - + 529766-7 - + ZDB529766-7 - + b|1dcz|z|||37 - + XA-DE - + a|a||||||||||| - + p||||||zm|||||| - + 3,2 - + Ztschr. - + Personalführung - + Für alle die Personalverantwortung tragen - + Hrsg. Deutsche Gesellschaft für Personalführung - + Special leadership - + 1.1968 - 13.1980; 1981 - 1992,10; 25.1992,11 - - + Düsseldorf - + Deutsche Gesellschaft für Personalführung - + 1992-2003 - + Ungezählte Beil. ab 2001: Special leadership - + 0723-3868 - + Personalwesen - + Zeitschrift - 00208nM2.02200024 000h + 00000nM2.02200024 000h 1030130 20151216160541 - + a|||d||||||1| - + a - + a - + Bretschneider, Markus - + ¬Die¬ individuelle Lernbilanz. - + Markus Bretschneider - + 2003 - + 36(2003)6, S. 6-7. - + 0000871 - - Deutsches Institut für Erwachsenenbildung <Bonn> + + Deutsches Institut für Erwachsenenbildung <Bonn> - + Projekt - + Informelles Lernen - + Bildungspass - + Interview - 00209nM2.02200024 000h + 00000nM2.02200024 000h 0001455 20151216160541 - + a|||d||||||37 - + a - + Kunstforum international - + die aktuelle Zeitschrift für alle Bereiche der bildenden Kunst - + Ruppichteroth - + Kunstforum - + 2003 - + 0177-3674 - 00210nM2.02200024 000h + 00000nM2.02200024 000h 1030131 20151216160541 - + a|||d||||||37 - + a - + a - + Kunst und Krieg [Themenheft] - + 2003 - + (2003)165, S. 38-155. - + 0001455 - + Medien - + Krieg - + Irak - + Ästhetik - + Kritik - 00211nM2.02200024 000h + 00000nM2.02200024 000h 0001067 20151216160541 - + a|||d||||||37 - + a - + ManagerSeminare - + das Weiterbildungsmagazin - + Bonn - + managerSeminare Verl. - + 1991-2003 - + 0938-6211 - 00212nM2.02200024 000h + 00000nM2.02200024 000h 1030132 20151216160541 - + a|||d||||||1| - + a - + a - + Baritsch, Ina - + Wenn Oldies lernen. - + Ina Baritsch - + 2003 - + (2003)67, S. 64-72. - + 0001067 - + Berufliche Weiterbildung - + Älterer Arbeitnehmer - + Lernen - + Methodik - + Bericht - 00214nM2.02200024 000h + 00000nM2.02200024 000h 1030133 20151216160541 - + a|||d||||||1| - + a - + a - + Walther, Petra - + So wird ein Team draus. - + Petra Walther - + 2003 - + (2003)67, S. 74-79. - + 0001067 - + Coaching - + Team - + Unternehmen - + Beratung - + Lernen - 00216nM2.02200024 000h + 00000nM2.02200024 000h 1030134 20151216160541 - + a|||d||||||1| - + a - + a - + Wittenhagen, Julia - + Alle Kompetenzen bilanzieren. - + Julia Wittenhagen - + 2003 - + (2003)67, S. 80-84. - + 0001067 - + Informelles Lernen - + Kompetenz - + Zertifikat - + Arbeitsmarkt - 00217nM2.02200024 000h + 00000nM2.02200024 000h 0000060 20151216160542 - + a|||d||||||37 - + a - + Medien praktisch - + Zeitschrift für Medienpädagogik - + hrsg. vom Gemeinschaftswerk der Evangelischen Publizistik - + Frankfurt a.M. - + GEP - + 1981-2003 - + 0171-3957 - 00218nM2.02200024 000h + 00000nM2.02200024 000h 1030135 20151216160542 - + a|||d||||||37 - + a - + a - + Thema: Gewalt und Medien 3 [Themenheft] - + 2003 - + 27(2003)1, 42 S. - + 0000060 - + Gewalt - + Medien - + Film - + Film - + Analyse - 00219nM2.02200024 000h + 00000nM2.02200024 000h 0000846 20151216160542 - + a|||d||||||37 - + a - + Berliner Journal für Soziologie - + hrsg. vom Institut für Sozialwissenschaften der Humboldt-Universität zu Berlin - + Wiesbaden - + VS Verl. für Sozialwiss. - + 1992 - 2003 - + 0863-1808 - 00220nM2.02200024 000h + 00000nM2.02200024 000h 1030136 20151216160542 - + a|||d||||||1| - + a - + a - + Böschen, Stefan - + Viehöver, Willy - + Zinn, Jens - + Rinderwahnsinn - + Können Gesellschaften aus Krisen lernen? - + Stefan Böschen ; Willy Viehöver ; Jens Zinn - + 2003 - + 13(2003)1, S. 35-58. - + Bibl. - + 0000846 - + Lernfähigkeit - + Gesellschaft - + Krisenverarbeitung - + Lernen - + Kommunikation - 00221nM2.02200024 000h + 00000nM2.02200024 000h 0000030 20151216160542 - + a|||d||||||37 - + a - - Forschungsinstitut für Sozial- und Verwaltungswissenschaften <Köln> + + Forschungsinstitut für Sozial- und Verwaltungswissenschaften <Köln> - - Forschungsinstitut für Soziologie <Köln> + + Forschungsinstitut für Soziologie <Köln> - + Kölner Zeitschrift für Soziologie und Sozialpsychologie - + KZfSS - + Wiesbaden - + VS Verl. für Sozialwiss. [u.a.] - + 1984-2002 - + Kölner Vierteljahrshefte für Soziologie - + 0023-2653 - 00222nM2.02200024 000h + 00000nM2.02200024 000h 1030137 20151216160542 - + a|||d||||||37 - + a - + a - + Allmendinger, Jutta [Hrsg.] - + Organisationssoziologie [Themenheft] - + Hrsg. Jutta Allmendinger - + 2002 - + (2002)SoH 42, 478 S. - + Bibl. - + 0000030 - + Soziologie - + Organisationssoziologie - + Organisation - + Forschung - + Theorie - 00223nM2.02200024 000h + 00000nM2.02200024 000h 0000067 20151216160542 - + a|||d||||||37 - + a - + Münch, Richard [Hrsg.] - + Soziologische Revue - + Besprechungen neuer Literatur - + Hrsg. Richard Münch - + München - + Oldenbourg - + 1980-2003 - + 0343-4109 - 00224nM2.02200024 000h + 00000nM2.02200024 000h 1030138 20151216160542 - + a|||d||||||1| - + a - + a - + Bechtle, Günter - + ¬Die¬ Weltgesellschaft im Irgendwo und die Wissensgesellschaft als Umgang mit Nichtwissen: Atopia und Dystopia als neue Paradigmen von Gesellschaftstheorie. - + Günter Bechtle - + 2003 - + 26(2003)2, S. 205-212. - + 0000067 - + Wissensgesellschaft - + Globalisierung - 00225nM2.02200024 000h + 00000nM2.02200024 000h 0000015 20151216160542 - + a|||d||||||37 - + a - - Unterrichtswissenschaft <Weinheim> + + Unterrichtswissenschaft <Weinheim> - + Zeitschschrift für Lernforschung - + Weinheim - + Juventa - + 1973 - 2003 - + In d. Vorlage teils falsche ISSN: 0340-1099 - + 0340-4099 - + Lernforschung - + Zeitschrift - + Unterrichtsforschung - 00226nM2.02200024 000h + 00000nM2.02200024 000h 1030139 20151216160542 - + a|||d||||||37 - + a - + a - + Thema: Selbstgesteuertes Lernen. - + 2003 - + 31(2003)1, S. 2-56. - + 0000015 - + Selbstgesteuertes Lernen - + Lernen - + Eltern - + Training - + Schule - + Berufstätiger - + Weiterbildung - 00228nM2.02200024 000h + 00000nM2.02200024 000h 1030140 20151216160542 - + a|||d||||||1| - + a - + a - + Blömeke, Sigrid - + Lehren und Lernen mit neuen Medien - Forschungsstand und Forschungsperspektiven. - + Sigrid Blömeke - + 2003 - + 31(2003)1, S. 57-82. - + Bibl. - + 0000015 - + Neue Medien - + Forschung - + E-Learning - + Bericht - + Text - + Verstehen - 00229nM2.02200024 000h + 00000nM2.02200024 000h 0001099 20151216160542 - + a|||d||||||37 - + a - + Wissenschaftsmanagement - + Zeitschrift für Innovation - + Bonn - + Lemmens Verl.- & Medienges. - + 1999 - 2003 - + 0947-9546 - 00230nM2.02200024 000h + 00000nM2.02200024 000h 1030141 20151216160542 - + a|||d||||||1| - + a - + a - + Joerk, Christiane - + Konzepte für praxisnahe Wissenschaft - + Praxistransfer in den problemorientierten - + Gesellschaftswissenschaften. - + Christiane Joerk - + 2003 - + 9(2003)1, S. 13-16; 21-23 - + 0001099 - + Forschungsinstitut - + Praxis - + Coaching - + Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz - + Politik - + Beratung - 00231nM2.02200024 000h + 00000nM2.02200024 000h 0001074 20151216160542 - + a|||d||||||37 - + a - + Baumert, Jürgen - + Zeitschrift für Erziehungswissenschaft - + ZfE - + hrsg. von Jürgen Baumert ... - + 1.-6 - + Wiesbaden - + VS Verl. für Sozialwiss. - + 1998 - 2003 - + 1434-663X - + http://userpage.fu-berlin.de/~zfe - 00232nM2.02200024 000h + 00000nM2.02200024 000h 1030142 20151216160542 - + a|||d||||||37 - + a - + a - + Schwerpunkt: Soziale Ungleichheit. - + 2003 - + 6(2003)1, S. 3-90. - + 0001074 - + Soziale Lage - + Bildung - + Bildungschance - + Chancengleichheit - + Milieu - + Berufseinführung - + Kompetenz - 00233nM2.02200024 000h + 00000nM2.02200024 000h 0001012 20151216160542 - + a|||d||||||37 - + a - + Österreich / Bundesministerium für Bildung, Wissenschaft und Kultur - + Österreich / Bundesministerium für Unterricht und Kulturelle Angelegenheiten - + Österreich / Bundesministerium für Unterricht und Kunst - + Medien-Impulse - + mi ; Beiträge zur Medienpädagogik - + Bundesministerium für Bildung, Wissenschaft und Kultur, Abt. Z/11 - + Wien - + Herold - + 1996-2003 - + 1029-3825 - 00234nM2.02200024 000h + 00000nM2.02200024 000h 1030143 20151216160542 - + a|||d||||||1| - + a - + a - + Mayer, Horst O. - + Treichel, Dietmar - + Information Objects, Learning Objects und Knowledge Objects: Versuch einer Begriffseingrenzung. - + Horst O. Mayer ; Dietmar Treichel - + 2003 - + (2003)43, S. 60-66. - + Bibl. - + 0001012 - + E-Learning - + Didaktik - + Theorie - + Begriff - + Definition - 00235nM2.02200024 000h + 00000nM2.02200024 000h 0001479 20151216160543 - + a|||d||||||37 - + a - + Berufsbildung - + Zeitschrift für Praxis und Theorie in Betrieb und Schule - + Seelze - + Kallmeyer'sche Verlagsbuchh. - + 1971-2003 - + 0005-9536 - 00236nM2.02200024 000h + 00000nM2.02200024 000h 1030144 20151216160543 - + a|||d||||||37 - + a - + a - + bb - thema - theorie ; praxis: E-Learning - + 2003 - + 57(2003)80, S. 2-30. - + 0001479 - + E-Learning - + Berufliche Weiterbildung - + Ausbildung - + Didaktik - + Erwachsenenbildung - + Hochschule - 00238nM2.02200024 000h + 00000nM2.02200024 000h 1030145 20151216160543 - + a|||d||||||1| - + a - + a - + Vignoli, Yvonne - + Lernen und Beruf gehören zusammen - + E-learning und Präsenzunterricht ergänzen sich in der - + Erwachsenenbildung. - + Yvonne Vignoli - + 2003 - + 57(2003)80, S. 16-17. - + 0001479 - + E-Learning - + Methodik - + Kurs - + Erwachsenenbildung - + Reflexion - + Erlebnisbericht - + Internet - 00239nM2.02200024 000h + 00000nM2.02200024 000h 0000071 20151216160543 - + a|||d||||||37 - + a - + Neue Sammlung - + Vierteljahres-Zeitschrift für Erziehung und Gesellschaft - + Seelze - + Friedrich - + 1980 - 2003 - + 0028-3355 - 00240nM2.02200024 000h + 00000nM2.02200024 000h 1030146 20151216160543 - + a|||d||||||1| - + a - + a - + Hüther, Gerald - + Über die Beschaffenheit des neurobiologischen Substrats, auf dem Bildung gedeihen kann. - + Gerald Hüther - + 2003 - + 43(2003)1, S. 31-43. - + Bibl. - + 0000071 - + Gehirn - + Erfahrung - + Lernfähigkeit - + Neurobiologie - 00241nM2.02200024 000h + 00000nM2.02200024 000h 1034632 20151216160543 - + a|||d||||||37 - + a - + Pädagogik - + Weinheim - + Beltz - + 1988 -2004 - + 0933-422x - + Pädagogik - + Zeitschrift - 00242nM2.02200024 000h + 00000nM2.02200024 000h 1030147 20151216160543 - + a|||d||||||37 - + a - + a - + Thema: Selbstgesteuertes Lernen. - + 2003 - + 55(2003)5, S. 6-37. - + 1034632 - + Selbstgesteuertes Lernen - + Konstruktivismus - + Methodik - + Schule - + Kompetenz - + Lernen - 00243nM2.02200024 000h + 00000nM2.02200024 000h 0001011 20151216160543 - + a|||d||||||37 - + a - + PÄD-Forum - + unterrichten erziehen - + Baltmannsweiler - + Schneider Verl. Hohengehren - + 1996-2003 - + PÄD extra - + 1611-406X - 00244nM2.02200024 000h + 00000nM2.02200024 000h 1030148 20151216160543 - + a|||d||||||1| - + a - + a - + Kaiser, Astrid - + Maturana, Humberto - + 'Ich bin kein Konstruktivist ...' - + Interview von Astrid Kaiser (AK) mit Humberto Maturana (HM) - + in Santiago de Chile Juli 2002. - + Astrid Kaiser ; Humberto Maturana - + 2003 - + 31/22(2003)2, S. 109-111. - + 0001011 - + Maturana, Humberto - + Konstruktivismus - + Gender-Ansatz - + Interview - 00245nM2.02200024 000h + 00000nM2.02200024 000h 0000069 20151216160543 - + a|||d||||||37 - + a - + Psychologie heute - + Weinheim - + Beltz - + 1981-2003 - + 0340-1677 - 00246nM2.02200024 000h + 00000nM2.02200024 000h 1030149 20151216160543 - + a|||d||||||1| - + a - + a - + Elger, Christian E. - + Dem Gehirn beim Denken zusehen. - + Christian E. Elger - + 2003 - + 30(2003)5, S. 38-41. - + 0000069 - + Denken - + Lernen - + Neurobiologie - + Interview - + Gehirn - + Forschung - 00247nM2.02200024 000h + 00000nM2.02200024 000h 1030150 20151216160543 - + a|||d||||||1| - + a - + m - + Roth, Gerhard - + Fühlen, Denken, Handeln - + wie das Gehirn unser Verhalten steuert. - + Gerhard Roth - + 1. Aufl. - + Frankfurt am Main - + Suhrkamp - + 2001 - + 488 S. - + Bibl. - + ISBN 3-518-58313-1 - + Gehirn - + Gefühl - + Denken - + Handlung - + Persönlichkeit - + Menschenbild - + Neurobiologie - + Verhalten - + Steuerung - 00248nM2.02200024 000h + 00000nM2.02200024 000h 0000075 20151216160543 - + a|||d||||||37 - + a - - Bundesakademie für Öffentliche Verwaltung <Bonn> + + Bundesakademie für Öffentliche Verwaltung <Bonn> - + Verwaltung und Fortbildung - + VuF ; Schriften der Bundesakademie für Öffentliche Verwaltung - + Köln [u.a.] - + Heymanns - + 1980-2003 - + Später u. d. T.: Akademiebrief / Bundesakademie für Öffentliche Verwaltung - + 0342-6718 - 00249nM2.02200024 000h + 00000nM2.02200024 000h 1030151 20151216160543 - + a|||d||||||1| - + a - + a - + Martinson, Harold I. - + Gender Mainstreaming (Teil 1: Herkunft/Ursprung). - + Harold I. Martinson - + 2002 - + 30(2002)4, S. 177-183. - + 0000075 - + Gender-Ansatz - + Diskriminierung - + Europäische Gemeinschaft - + Gleichberechtigung - 00251nM2.02200024 000h + 00000nM2.02200024 000h 1030152 20151216160543 - + a|||d||||||1| - + a - + a - + Martinson, Harold I. - + Gender Mainstreaming (Teil 2: Implementierung) - + Harold I. Martinson - + 2002 - + 30(2002)4, S. 184-189. - + 0000075 - + Gender-Ansatz - + Recht - + Projekt - 00253nM2.02200024 000h + 00000nM2.02200024 000h 1030153 20151216160544 - + a|||d||||||1| - + a - + a - + Dulisch, Frank - + Lernprogramm Psychologie der Personenbeurteilung. - + Frank Dulisch - + 2002 - + 30(2002)4, S. 190-194. - + 0000075 - + Seminar - + Psychologie - + Lernen - + Internet - + Öffentlicher Dienst - + Personal - + Beurteilung - 00255nM2.02200024 000h + 00000nM2.02200024 000h 1030154 20151216160544 - + a|||d||||||1| - + a - + a - + Meier, Rolf - + Was Auszubildende von ihrer Ausbildung halten. - + Rolf Meier - + 2002 - + 30(2002)4, S. 195-199. - + 0000075 - + Ausbilder - + Seminar - + Berufliche Bildung - + Ausbildung - + Fragebogen - 00257nM2.02200024 000h + 00000nM2.02200024 000h 1030155 20151216160544 - + a|||d||||||1| - + a - + a - + Kramme, Andreas - + Praxisaspekte der Einarbeitung neuer Mitarbeiter. - + Andreas Kramme - + 2002 - + 30(2002)4, S. 200-206. - + 0000075 - + Personalentwicklung - + Einarbeitung - + Beruf - + Einführung - 00258nM2.02200024 000h + 00000nM2.02200024 000h 0000686 20151216160544 - + a|||d||||||37 - + a - + Einblicke - + Zeitung für Erwachsenenbildung - + hrsg. von d. Arbeitsstelle für Erwachsenenbildung der Evangelischen Kirche in Hessen und Nassau - + Darmstadt - + Arb.stelle - + 1989-2003 - 00259nM2.02200024 000h + 00000nM2.02200024 000h 1030156 20151216160544 - + a|||d||||||1| - + a - + a - + Lück, Wolfgang - + Erkennbarkeit und Profil: Handlungsfelder und Arbeitszentren. - + Wolfgang Lück - + 2003 - + (2003)1, S. 3-9. - + 0000686 - + Evangelische Erwachsenenbildung - + Hessen - + Modell - + Organisationsentwicklung - 00261nM2.02200024 000h + 00000nM2.02200024 000h 1030157 20151216160544 - + a|||d||||||1| - + a - + a - + Küchler, Ernst-August - + 'Betroffen vom Hier und Heute - Kooperative Bildungsarbeit im Odenwald'. - + Ernst-August Küchler - + 2003 - + (2003)1, S. 10-13. - + 0000686 - + Evangelische Erwachsenenbildung - + Ländliche Erwachsenenbildung - + Hessen - + Bericht - 00263nM2.02200024 000h + 00000nM2.02200024 000h 1030158 20151216160544 - + a|||d||||||1| - + a - + a - + Hintze, Thomas - + Meine Gedanken zu den 'Expertengesprächen Evangelische Theologie 2002'. - + Thomas Hintze - + 2003 - + (2003)1, S. 13-16. - + 0000686 - + Evangelische Erwachsenenbildung - + Theologie - + Hessen - 00265nM2.02200024 000h + 00000nM2.02200024 000h 1030159 20151216160544 - + a|||d||||||1| - + a - + a - + Krichbaum, Erich - + Gender Mainstreaming. - + Erich Krichbaum - + 2003 - + (2003)1, S. 17-19. - + 0000686 - + Gender-Ansatz - + Frauenpolitik - + Evangelische Erwachsenenbildung - + Männerbildung - + Methode - 00267nM2.02200024 000h + 00000nM2.02200024 000h 1030160 20151216160545 - + a|||d||||||1| - + a - + a - + Dorn, Fred - + Feld, Katrin - + Evangelische Erwachsenenbildung vor Ort - + Grund- und Zusatzqualifikation. - + Fred Dorn ; Katrin Feld - + 2003 - + (2003)1, S. 20-21 - + 0000686 - + Evangelische Erwachsenenbildung - + Zusatzqualifikation - + Grundkurs - + Hessen - + Fernstudium - 00268nM2.02200024 000h + 00000nM2.02200024 000h 0931090 20151216160545 - + a|||d||||||1| - + a - + s - + Heckmair, Bernd - + Michl, Werner - + Erleben und Lernen - + Einstieg in die Erlebnispaedagogik. - + Bernd Heckmair ; Werner Michl - + Neuwied u.a. - + Luchterhand - + 1993 - + X,227 S. - + Bibl. - + Schriftenreihe erleben und lernen - + 2 - + ISBN 3-472-01526-8 - + Erlebnispaedagogik - + Freizeitpaedagogik - + Handlungsbezogenes Lernen - + Erfahrung - + Sozialpaedagogik - + Jugendarbeit - + Jugendbildung - + Personalentwicklung - + Geschlechterrolle - + Oekologie - 00269nM2.02200024 000h + 00000nM2.02200024 000h 1030161 20151216160545 - + a|||d||||||1| - + a - + a - + Riehl, Jochen - + k-EP - + Leben gewinnen - Erlebnispädagogik unter dem Vorzeichen (körperlicher) Behinderung : ein - + pädagogischer Akzenttag im Wichternhaus Altdorf. - + Jochen Riehl - + 2003 - + 11(2003)2, S. 4-6. - + 0931090 - + Erlebnispädagogik - + Behinderung - + Alltag - + Schule - 00271nM2.02200024 000h + 00000nM2.02200024 000h 1030162 20151216160545 - + a|||d||||||1| - + a - + a - + Schad, Gerhard - + ¬Die¬ Veränderung der Wahrnehmung - + oder: weshalb sich Hans K. nur unwesentlich von uns - + unterscheidet. - + Gerhard Schad - + 2003 - + 11(2003)2, S. 7-10. - + 0931090 - + Erlebnispädagogik - + Behinderung - + Wahrnehmung - + Alltag - 00273nM2.02200024 000h + 00000nM2.02200024 000h 1030163 20151216160545 - + a|||d||||||1| - + a - + a - + Koch, Andrea - + ¬Die¬ Überwindung der Schwerkraft - + Klettern als Therapie für körperbehinderte Kinder und - + Jugendliche. - + Andrea Koch - + 2003 - + 11(2003)2, S. 11. - + 0931090 - + Erlebnispädagogik - + Behinderung - + Therapie - + Sport - 00275nM2.02200024 000h + 00000nM2.02200024 000h 1030164 20151216160545 - + a|||d||||||1| - + a - + a - + Schoch, Hanns-Jürgen - + Korinth-Lochner, Marina - + 'Das Glück der Erde liegt auf dem Rücken der Pferde' - auch für Rollstuhlfahrer - + therapeutisches - + Reiten, ein Angebot für den ganzen Menschen. - + Hanns-Jürgen Schoch ; Marina Korinth-Lochner - + 2003 - + 11(2003)2, S. 14-15. - + 0931090 - + Therapie - + Sonderpädagogik - + Behinderung - + Bericht - 00277nM2.02200024 000h + 00000nM2.02200024 000h 1030165 20151216160545 - + a|||d||||||1| - + a - + a - + Biegel, Sabine - + Fischer, Annemarie - + Greil, Martina - + Bewegtes Lernen - + ein interdisziplinäres Konzept in SVE und Eingangsstufe der Schule für - + Körperbehinderte, Altdorf. - + Sabine Biegel ; Annemarie Fischer ; Martina Greil - + 2003 - + 11(2003)2, S. 16-18. - + 0931090 - + Schule - + Behinderung - - Bewegung <Motorische> + + Bewegung <Motorische> - + Modell - 00278nM2.02200024 000h + 00000nM2.02200024 000h 0000036 20151216160545 - + a|||d||||||37 - + a - + Hessischer Volkshochschulverband - + Hessische Blätter für Volksbildung - + Hessischer Volkshochschulverband - + Bielefeld - + Bertelsmann - + 1982 - 2003 - + Die Jahrgänge 1-7 erschienen u. d. T. "Volksbildung in Hessen". - Ismaning : Hueber-Holzmann [1979-1983] ; Ismaning : Hueber [1985-1988] ; Schongau : Schongauer Druckservice [1989-1990] ; Frankfurt, M. : Dipa-Verl. [1991-2000,2] ; Bad Homburg : Morlant-Verl. [-2001] - + Volksbildung in Hessen - + 0018-103x - + Zeitschrift - + Erwachsenenbildung - 00279nM2.02200024 000h + 00000nM2.02200024 000h 1030166 20151216160545 - + a|||d||||||1| - + a - + a - + Otto, Volker - + Bindung und Freiheit - Strukturprobleme der Erwachsenenbildung unter dem Gebot der Öffentlichkeit. - + Volker Otto - + 2003 - + 53(2003)2, S. 103-117. - + Bibl. - + 0000036 - + Erwachsenenbildung - + Strukturwandel - + Geschichte der Erwachsenenbildung - + Öffentlichkeit - + Weiterbildungspolitik - 00281nM2.02200024 000h + 00000nM2.02200024 000h 1030167 20151216160545 - + a|||d||||||1| - + a - + a - + Meisel, Klaus - + Schuldt, Hans-Joachim - + Management und Finanzierung der Erwachsenenbildung unter dem Anspruch öffentlicher Verantwortung. - + Klaus Meisel ; Hans-Joachim Schuldt - + 2003 - + 53(2003)2, S. 118-126. - + 0000036 - + Erwachsenenbildung - + Finanzierung - + Weiterbildungsmarkt - + Bildungspolitik - + Volkshochschule - + Strukturwandel - 00283nM2.02200024 000h + 00000nM2.02200024 000h 1030168 20151216160545 - + a|||d||||||1| - + a - + a - + Kuhlenkamp, Detlef - + Von der Strukturierung zur Marginalisierung - + zur Entwicklung der Weiterbildungsgesetze der - + Länder. - + Detlef Kuhlenkamp - + 2003 - + 53(2003)2, S. 127-138. - + 0000036 - + Weiterbildungsgesetz - + Weiterbildungspolitik - + Finanzierung - + Strukturwandel - 00285nM2.02200024 000h + 00000nM2.02200024 000h 1030169 20151216160545 - + a|||d||||||1| - + a - + a - + Lenz, Werner - + Öffentliche Verantwortung - individuelle Interessen - + Anspruch und Realität in der - + Wissensgesellschaft. - + Werner Lenz - + 2003 - + 53(2003)2, S. 139-147. - + 0000036 - + Ökonomie - + Bildungswesen - + Österreich - + Bildungspolitik - 00287nM2.02200024 000h + 00000nM2.02200024 000h 1030170 20151216160546 - + a|||d||||||1| - + a - + a - + Filla, Wilhelm - + In Österreich ein Fremdwort: Öffentliche Verantwortung für Erwachsenenbildung. - + Wilhelm Filla - + 2003 - + 53(2003)2, S. 148-154. - + 0000036 - + Österreich - + Volkshochschule - + Erwachsenenbildung - + Bildungspolitik - + Gesetzgebung - + Kritik - 00289nM2.02200024 000h + 00000nM2.02200024 000h 1030171 20151216160546 - + a|||d||||||1| - + a - + a - + Przybylska, Ewa - + Staatlich organisierte und zivile Weiterbildung in Polen. - + Ewa Przybylska - + 2003 - + 53(2003)2, S. 155-162. - + 0000036 - + Weiterbildungspolitik - + Polen - + Gesetzgebung - + Weiterbildungsmarkt - + Kritik - 00291nM2.02200024 000h + 00000nM2.02200024 000h 1030172 20151216160546 - + a|||d||||||1| - + a - + a - + Herdt, Ursula - + Lebenslanges Lernen - Anspruch und Realität - + Konsequenzen für die Weiterbildungspolitik. - + Ursula Herdt - + 2003 - + 53(2003)2, S. 163-168. - + 0000036 - + Weiterbildungspolitik - + Lebenslanges Lernen - + Bildungsgutschein - + Gesetzgebung - 00293nM2.02200024 000h + 00000nM2.02200024 000h 1030173 20151216160546 - + a|||d||||||1| - + a - + a - + Meissner, Kurt - + Fünfzig Jahre Deutscher Volkshochschul-Verband - + 50 Jahre Deutscher Volkshochschul-Verband - + fünf Jahrzehnte öffentliche Erwachsenenbildung im - + Spiegel von Bildung und Politik. - + Kurt Meissner - + 2003 - + 53(2003)2, S. 169-178. - + 0000036 - + Geschichte der Erwachsenenbildung - + Meissner, Kurt - + Deutscher Volkshochschulverband - 00295nM2.02200024 000h + 00000nM2.02200024 000h 1030174 20151216160546 - + a|||d||||||1| - + a - + a - + Otto, Volker - + kleine Historiographie des Deutschen Volkshochschul-Verbandes. - + Volker Otto - + 2003 - + 53(2003)2, S. 179-185. - + 0000036 - + Deutscher Volkshochschulverband - + Geschichte der Erwachsenenbildung - 00297nM2.02200024 000h + 00000nM2.02200024 000h 1030175 20151216160546 - + a|||d||||||1| - + a - + a - + Otto, Volker - + Öffentlich verantwortete Erwachsenenbildung heute - + Rudi Rohlmann zum 75. Geburtstag. - + Volker Otto - + 2003 - + 53(2003)2, S. 97-102. - + 0000036 - + Rohlmann, Rudi - + Einführung - + Weiterbildungsgesetz - + Weiterbildungspolitik - + Ökonomie - + Lebenslauf - 00298nM2.02200024 000h + 00000nM2.02200024 000h 1030176 20151216160546 - + a|||d||||||37 - + a - + s - + Oehmichen, Ekkehardt [Hrsg.] - + ¬Die¬ Mediennutzertypologie - + ein neuer Ansatz der Publikumsanalyse. - + Hrsg. Ekkehardt Oehmichen - + Baden-Baden - + Nomos Verl.-Ges - + 2003 - + 320 S. - + Schriftenreihe Media Perspektiven - + 17 - + ISBN 3-8329-0029-2 - + Massenmedien - + Typologie - + Medienforschung - + Programmplanung - + Hörfunk - + Fernsehen - + Internet - + Multimedia - + Medien - + Nutzung - + Medien - + Nutzung - + Analyse - + Konsument - + Verbraucher - + Typologie - 00299nM2.02200024 000h + 00000nM2.02200024 000h 1030177 20151216160546 - + a|||d||||||1| - + a - + s - + Kehl, Anne - + ¬Die¬ Bildung der Vorstellung - + Grundlagen für Theater und Pädagogik. - + Anne Kehl - + Bad Heilbrunn - + Klinkhardt - + 2002 - + 337 S. - + Bibl. - + Schriftenreihe zur Humanistischen Pädagogik und Psychologie - + ISBN 3-7815-1250-9 - + Phantasie - + Wahrnehmung - + Vorstellung - + Pädagogik - + Vorstellung - + Psychologie - + Vorstellung - + Philosophie - + Theater - + Geschichte - + Vorstellung - + Geschichte - 00300nM2.02200024 000h + 00000nM2.02200024 000h 1038856 20151216160546 - + a|||d||||||37 - + a - + n - + Basiswissen Pädagogik - + Baltmannsweiler - + Schneider-Verl. Hohengehren - + Literaturangaben - 00301nM2.02200024 000y + 00000nM2.02200024 000y 1038858 20151216160546 - + 1038856 - + a|||d||||||37 - + a - + t - + Lost, Christine [Hrsg.] - + Historische Pädagogik - + hrsg. von Christine Lost ... - + ISBN 3-89676-541-8 - 00302nM2.02200024 000u + 00000nM2.02200024 000u 1030178 20151216160546 - + 1038858 - + a|||d||||||37 - + a - + Bd. 5. - + Heiland, Helmut [Hrsg.] - + Friedrich Wilhelm August Fröbel - + (1782 - 1852) - + hrsg. von Helmut Heiland - + Baltmannsweiler - + Schneidert Verl. Hohengehren - + 2002 - + IX, 268 S. : Ill. - + ISBN 3-89676-539-6 - + Fröbel, Friedrich - + Pädagoge - + Geschichte - + Pädagogik - + Biographie - + Theorie - + Schulpädagogik - + Spiel - + Erziehungsphilosophie - + Quellensammlung - 00303nM2.02200024 000h + 00000nM2.02200024 000h 1037517 20151216160546 - + a|||d||||||37 - + a - + n - + Ständige Konferenz der Kultusminister der Länder in der Bundesrepublik Deutschland - + Schüler, Klassen, Lehrer und Absolventen der Schulen ... - + Hrsg.: Sekretariat der Ständigen Konferenz der Kultusminister der Länder in der Bundesrepublik Deutschland - + Bonn - + Sekretariat der Ständigen Konferenz der Kultusminister der Länder in der Bundesrepublik Deutschland - + Statistische Veröffentlichungen der Kultusministerkonferenz - + ... - + Entstanden aus: Absolventen der Schulen und: Schüler, Klassen, Lehrer - + 0722-5555 - + Schulstatistik - 00304nM2.02200024 000u + 00000nM2.02200024 000u 1030179 20151216160546 - + 1037517 - + a|||d||||||37 - + a - + 1992 bis 2001 - + 2002 - + XVIII, 377 S. - + Statistische Veröffentlichungen der Kultusministerkonferenz - + 164 - + 0722-5555 - + Schulstatistik - 00305nM2.02200024 000h + 00000nM2.02200024 000h 0001099 20151216160547 - + a|||d||||||37 - + a - + Wissenschaftsmanagement - + Zeitschrift für Innovation - + Bonn - + Lemmens Verl.- & Medienges. - + 1999 - 2003 - + 0947-9546 - 00306nM2.02200024 000h + 00000nM2.02200024 000h 1030180 20151216160547 - + a|||d||||||1| - + a - + a - + Majer, Helge - + Nachhaltige Entwicklung - + eine Vision für Zukunftsfähigkeit. - + Helge Majer - + 2003 - + 9(2003)2, S. 33-35. - + 0001099 - + Nachhaltigkeit - + Ganzheitlichkeit - + Umweltschutz - + Begriff - + Definition - 00307nM2.02200024 000h + 00000nM2.02200024 000h 0000258 20151216160547 - + a|||d||||||37 - + a - + Deutscher Städtetag - + Mitteilungen Deutscher Städtetag - + Köln [u.a.] - + Dt. Städtetag - + 1990-2003 - + 0179-8464 - + http://www.staedtetag.de - 00308nM2.02200024 000h + 00000nM2.02200024 000h 1030181 20151216160547 - + a|||d||||||37 - + a - + a - + Positionspapier des Deutschen Städtetages: "Bildungsreform aus kommunaler Sicht". - + 2003 - + (2003)6, S. 113-117. - + 0000258 - + Deutscher Städtetag - + Empfehlungen - + Bildungsreform - + Bildungssystem - 00309nM2.02200024 000h + 00000nM2.02200024 000h 0000570 20151216160547 - + a|||d||||||2| - + a - - Institut der Deutschen Wirtschaft <Köln> + + Institut der Deutschen Wirtschaft <Köln> - + IWD - + Informationsdienst des Instituts der Deutschen Wirtschaft - + Indtitut der Deutschen Wirtschaft - + Köln - + Inst. - + 1976 - 2003 - + Unternehmerbrief des Instituts der Deutschen Wirtschaft ; Schnelldienst des Instituts der Deutschen Wirtschaft - + 0344-919x - 00310nM2.02200024 000h + 00000nM2.02200024 000h 1030182 20151216160547 - + a|||d||||||37 - + a - + a - + Stark in der Breite, schwach in der Spitze - + 2003 - + 29(2003)23, S. 4-5. - + 0000570 - + Bildungssystem - + Internationaler Vergleich - + Statistik - + Hochschulabschluss - 00311nM2.02200024 000h + 00000nM2.02200024 000h 0000732 20151216160547 - + a|||d||||||37 - + a - + Gesellschaft Erwachsenenbildung und Behinderung - + Erwachsenenbildung und Behinderung - + Berlin - + Gesellschaft Erwachsenenbildung und Behinderung - + 1990-2003 - + 0937-7468 - 00312nM2.02200024 000h + 00000nM2.02200024 000h 1030183 20151216160547 - + a|||d||||||1| - + a - + a - + Schüller, Simone - + ¬Der¬ Übergang aus Werkstätten für behinderte Menschen in den allgemeinen Arbeitsmarkt - + Prozesse, Projekte, Perspektiven. - + Simone Schüller - + 2003 - + 15(2003)1, S. 8-25 - + Bibl. - + 0000732 - + Behinderter - + Arbeitsmarkt - + Integration - + Berufsförderung - + Statistik - 00314nM2.02200024 000h + 00000nM2.02200024 000h 1030184 20151216160547 - + a|||d||||||1| - + a - + a - + Herffurth, Barbara - + ¬Der¬ Erwerb von Schlüsselqualifikationen in der beruflichen Bildung. - + Barbara Herffurth - + 2003 - + 15(2003)1, S. 25-29. - + 0000732 - + Schlüsselqualifikation - + Berufliche Bildung - + Behinderter - + Arbeitsmarkt - + Werkstatt für Behinderte - 00316nM2.02200024 000h + 00000nM2.02200024 000h 1030185 20151216160547 - + a|||d||||||1| - + a - + a - + Swillus, Monika - + Berufliche Fort- und Weiterbildung für Menschen mit Behinderung im Arbeitsbereich der Werkstatt - + Impulsprojekt des Landesverbandes der Lebenshilfe Thüringen. - + Monika Swillus - + 2003 - + 15(2003)1, S. 29-32. - + 0000732 - + Berufliche Weiterbildung - + Werkstatt für Behinderte - + Projekt - + Bericht - + Thüringen - 00318nM2.02200024 000h + 00000nM2.02200024 000h 1030186 20151216160547 - + a|||d||||||1| - + a - + a - + Röhm, Rolf - + 'Berufliche Bildung - eine lohnende Investition (nicht nur für die Zukunft)!' - + berufliche Qualifizierung in Werkstätten für Menschen mit Behinderung: Konzepte und Erfahrungen in der GWW Sindelfingen. - + Rolf Röhm - + 2003 - + 15(2003)1, S. 32-43. - + 0000732 - + Berufliche Bildung - + Werkstatt für Behinderte - + Qualifizierung - + Projekt - 00319nM2.02200024 000h + 00000nM2.02200024 000h 1030187 20151216160547 - + a|||d||||||1| - + a - + s - + Faulstich, Peter - + Weiterbildung - + Begründungen lebensentfaltender Bildung - + Peter Faulstich - + München [u.a.] - + Oldenburg - + 2003 - + 321 S. : graph. Darst. - + Hand- und Lehrbücher der Pädagogik - + Literaturverz. S. 302 - 320 - + ISBN 3-486-27326-4 - + Weiterbildung - + Lebenslanges Lernen - + Bildung - + Reflexion - + Theorie - + Heydorn, Heinz-Joachim - + Strukturwandel - + Wissenschaft - + Rekonstruiert wird eine Theoriegeschichte der Erwachsenenbildungswissenschaft. Diese Theoriegeschichte umfasst unterschiedliche Ansätze ("Wenden"). Diskutiert und eingeschätzt werden sie in den Begriffsfeldern: hermeneutisch-phänomenologisch, empirisch-analytisch, kritisch-theoretisch, konstruktivistisch, und pragmatisch. Von den Befunden dieser Analysen ausgehend wird für ein kritisch-pragmatischen Theorienansatz plädiert, der nach Auffassung des Autors seinen angemessenen Ausdruck im Begriff der "lebensentfaltenden Bildung" findet. - 00320nM2.02200024 000h + 00000nM2.02200024 000h 0000613 20151216160547 - + a|||d||||||37 - + a - - National Institute of Adult Continuing Education (England and Wales) <Leicester> + + National Institute of Adult Continuing Education (England and Wales) <Leicester> - + Adults Learning - - Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> + + Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> - + 1-14 - + Leicester - + NIACE - + 1988- 2003 - + Adult education - + 0955-2308 - + http://www.niace.org.uk/Publications/Periodicals/AdultsLearning/BackIss/default.htm - 00321nM2.02200024 000h + 00000nM2.02200024 000h 1030188 20151216160547 - + a|||d||||||1| - + a - + a - + Flint, Colin - + It´s curriculum, stupid. - + Colin Flint - + 2003 - + 14(2003)9, S. 7-8. - + 0000613 - + Weiterbildung - + Finanzierung - + Chancengleichheit - + Bildungspolitik - + Vereinigtes Königreich - 00323nM2.02200024 000h + 00000nM2.02200024 000h 1030189 20151216160547 - + a|||d||||||1| - + a - + a - + Tett, Lyn - + Reading and writing the world. - + Lyn Tett - + 2003 - + 14(2003)9, S. 9-10. - + 0000613 - + Alphabetisierung - + Lernen - + Vereinigtes Königreich - + Friere, Paolo - 00324nM2.02200024 000h + 00000nM2.02200024 000h 0001342 20151216160548 - + a|||d||||||37 - + a - + Management & Training - + Köln - + Kluwer - + 2000 - 2003 - + 1439-4693 - 00325nM2.02200024 000h + 00000nM2.02200024 000h 1030190 20151216160548 - + a|||d||||||1| - + a - + a - + Merkel, Karin - + Gast, Christine - + Kinder sind die besseren Kunden. - + Karin Merkel ; Christine Gast - + 2003 - + 30(2003)1, S. 16-17. - + 0001342 - + Planspiel - + Managerfortbildung - + Betriebliche Weiterbildung - + Spiel - + Methodik - + Projektmanagement - + Teamarbeit - 00327nM2.02200024 000h + 00000nM2.02200024 000h 1030191 20151216160548 - + a|||d||||||1| - + a - + a - + Haas, Christoph - + Unternehmen Kindercamp. - + Christoph Haas - + 2003 - + 30(2003)1, S. 22-25. - + 0001342 - + Managerfortbildung - + Projektmanagement - + Spiel - + Teamarbeit - + Betriebliche Weiterbildung - + Methodik - 00329nM2.02200024 000h + 00000nM2.02200024 000h 1030192 20151216160548 - + a|||d||||||1| - + a - + a - + Hartung, Martin - + Teure Fehleinschätzung. - + Martin Hartung - + 2003 - + 30(2003)1, S. 28-31. - + 0001342 - + Training - + Gespräch - + Berufliche Weiterbildung - + Methodik - + Kommunikation - + Arbeitsplatz - 00331nM2.02200024 000h + 00000nM2.02200024 000h 1030193 20151216160548 - + a|||d||||||1| - + a - + a - + Dargent, Nicole - + Politur für die Stimme. - + Nicole Dargent - + 2003 - + 30(2003)1, S. 42-43. - + 0001342 - + Sprechen - + Sprecherziehung - + Managerfortbildung - + Training - 00333nM2.02200024 000h + 00000nM2.02200024 000h 1030194 20151216160548 - + a|||d||||||1| - + a - + a - + Orthey, Astrid - + Rotering-Steinberg, Sigrid - + Wenn Berater sich beraten. - + Astrid Orthey ; Sigrid Rotering-Steinberg - + 2003 - + 30(2003)1, S. 50-53. - + 0001342 - + Beratung - + Tandem-Methode - + Training - + Berufliche Weiterbildung - + Professionalität - 00335nM2.02200024 000h + 00000nM2.02200024 000h 1030195 20151216160548 - + a|||d||||||1| - + a - + a - + Pfanzelt, Ingrid - + Schuhmacher, Holger - + Heller, Ralf - + Talentsuche mit System. - + Ingrid Pfanzelt ; Holger Schuhmacher ; Ralf Heller - + 2003 - + 30(2003)4, S. 12-15. - + 0001342 - + Personalentwicklung - + Management - + Betriebliche Weiterbildung - + Methode - + Unternehmen - 00337nM2.02200024 000h + 00000nM2.02200024 000h 1030196 20151216160548 - + a|||d||||||1| - + a - + a - + Friebel, Anke - + Merkle, Bettina - + Den roten Faden spinnen. - + Anke Friebel ; Bettina Merkle - + 2003 - + 30(2003)4, S. 16-19. - + 0001342 - + Bildungscontrolling - + Unternehmen - + Transfer - + Betriebliche Weiterbildung - + Methodik - + Nachhaltigkeit - 00339nM2.02200024 000h + 00000nM2.02200024 000h 1030197 20151216160548 - + a|||d||||||1| - + a - + a - + Hussendörfer, Elisabeth - + ¬Der¬ stumme Schrei nach Aufklärung. - + Elisabeth Hussendörfer - + 2003 - + 30(2003)4, S. 24-27. - + 0001342 - + Arbeitsplatz - + Arbeitsmarkt - + Belastung - + Stress - + Sucht - 00341nM2.02200024 000h + 00000nM2.02200024 000h 1030198 20151216160549 - + a|||d||||||1| - + a - + a - + Händschke, Eva - + Wissen, wo der Schuh drückt. - + Eva Händschke - + 2003 - + 30(2003)4, S. 40-41. - + 0001342 - + E-Learning - + Bildungscontrolling - + Software - + Unternehmen - + Kosten - + Betriebliche Weiterbildung - 00343nM2.02200024 000h + 00000nM2.02200024 000h 1030199 20151216160549 - + a|||d||||||1| - + a - + a - + Niggemann, Gesa - + Mit der richtigen Methode zum Ziel. - + Gesa Niggemann - + 2003 - + 30(2003)4, S. 46-47. - + 0001342 - + Coaching - + Methodik - + Fallmethode - + Evaluation - + Bericht - 00345nM2.02200024 000h + 00000nM2.02200024 000h 1030200 20151216160549 - + a|||d||||||1| - + a - + a - + Höcker, Angelika - + Heß, Sabine - + Glaubwürdig und ungeschminkt. - + Angelika Höcker ; Sabine Heß - + 2003 - + 30(2003)5, S. 10-13. - + 0001342 - + Berufliche Weiterbildung - + Dozent - + Professionalisierung - + Methodik - + Auswahl - + Lehren - 00347nM2.02200024 000h + 00000nM2.02200024 000h 1030201 20151216160549 - + a|||d||||||1| - + a - + a - + Voss, Reiner - + Gelungener Einstieg. - + Reiner Voss - + 2003 - + 30(2003)5, S. 14-17. - + 0001342 - + Selbständiger - + Dozent - + Lehren - + Erfahrung - + Tipp - + Selbständigkeit - + Existenzgründung - + Weiterbildung - 00349nM2.02200024 000h + 00000nM2.02200024 000h 1030202 20151216160549 - + a|||d||||||1| - + a - + a - + Frantzen, Dieter - + Antizyklisch durch die Krise. - + Dieter Frantzen - + 2003 - + 30(2003)5, S. 20-23. - + 0001342 - + Weiterbildung - + Weiterbildungsmarkt - + Finanzierung - + Organisationsentwicklung - + Konzeption - 00351nM2.02200024 000h + 00000nM2.02200024 000h 1030203 20151216160549 - + a|||d||||||1| - + a - + a - + Bähner, Christian - + Schwertfeger, Elke - + Wenn zwei sich streiten. - + Christian Bähner ; Elke Schwertfeger - + 2003 - + 30(2003)5, S. 37-41. - + 0001342 - + Mediation - + Ausbildung - + Qualitätssicherung - + Qualität - + Kriterium - 00352nM2.02200024 000h + 00000nM2.02200024 000h 0000613 20151216160549 - + a|||d||||||37 - + a - - National Institute of Adult Continuing Education (England and Wales) <Leicester> + + National Institute of Adult Continuing Education (England and Wales) <Leicester> - + Adults Learning - - Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> + + Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> - + 1-14 - + Leicester - + NIACE - + 1988- 2003 - + Adult education - + 0955-2308 - + http://www.niace.org.uk/Publications/Periodicals/AdultsLearning/BackIss/default.htm - 00353nM2.02200024 000h + 00000nM2.02200024 000h 1030204 20151216160549 - + a|||d||||||1| - + a - + a - + Lewis, Ivan - + No moves to take adult and community learning away from LEAs - but reform is needed, says Adult Learning Minister. - + Ivan Lewis - + 2003 - + 14(2003)5, S. 7-8. - + 0000613 - + Bildungspolitik - + Erwachsenenbildung - + Finanzierung - + Innovation - + Vereinigtes Königreich - + Chancengleichheit - 00355nM2.02200024 000h + 00000nM2.02200024 000h 1030205 20151216160550 - + a|||d||||||1| - + a - + a - + Neil, Alex - + Co-operation the key to ensuring learning is for life. - + Alex Neil - + 2003 - + 14(2003)5, S. 9-10. - + 0000613 - + Lebenslanges Lernen - + Zukunft - + Bildungspolitik - + Vereinigtes Königreich - + Schottland - + Weiterbildung - + Bericht - 00357nM2.02200024 000h + 00000nM2.02200024 000h 1030206 20151216160550 - + a|||d||||||1| - + a - + a - + Slowey, Maria - + A lifeline for adult learners? - + Maria Slowey - + 2003 - + 14(2003)5, S. 10-11. - + 0000613 - + Lebenslanges Lernen - + Vereinigtes Königreich - + Schottland - + Weiterbildung - + Bericht - 00359nM2.02200024 000h + 00000nM2.02200024 000h 1030207 20151216160550 - + a|||d||||||1| - + a - + a - + Field, John - + Lifelong learning debate raises temperature north of the border. - + John Field - + 2003 - + 14(2003)5, S. 12-13. - + 0000613 - + Lebenslanges Lernen - + Bildungspolitik - + Vereinigtes Königreich - + Schottland - + Weiterbildung - + Bericht - 00361nM2.02200024 000h + 00000nM2.02200024 000h 1030208 20151216160550 - + a|||d||||||1| - + a - + a - + Williams, Jane - + New post-16 standards tsar Jane Williams answers your questions. - + Jane Williams - + 2003 - + 14(2003)5, S. 14-15. - + 0000613 - + Bildungspolitik - + Bildungsreform - + Interview - + Weiterbildung - + Vereinigtes Königreich - 00363nM2.02200024 000h + 00000nM2.02200024 000h 1030209 20151216160550 - + a|||d||||||1| - + a - + a - + Skelt, Joanna - + A new agenda for adult education in Sierra Leone. - + Joanna Skelt - + 2003 - + 14(2003)5, S. 16-17. - + 0000613 - + Afrika - + Erwachsenenbildung - + Sierra Leone - + Bildungspolitik - 00365nM2.02200024 000h + 00000nM2.02200024 000h 1030210 20151216160550 - + a|||d||||||1| - + a - + a - + Stanistreet, Paul - + 'People ask why do we go around telling our story? It´s because people have not learned from our experiences - + We want people to learn that everybody is equal, that nobody should have to - + be afraid.' - + Paul Stanistreet - + 2003 - + 14(2003)5, S. 21-23. - + 0000613 - + Erwachsenenbildung - + Zeitzeuge - + Biographie - + Interview - + Emigration - + Judenvernichtung - + Vereinigtes Königreich - 00367nM2.02200024 000h + 00000nM2.02200024 000h 1030211 20151216160550 - + a|||d||||||1| - + a - + a - + Stanistreet, Paul - + Time for natural allies to unite, says retiring principal. - + Paul Stanistreet - + 2003 - + 14(2003)5, S. 18-19. - + 0000613 - + Weiterbildung - + Bildungspolitik - + Zukunft - + Interview - + Vereinigtes Königreich - 00369nM2.02200024 000h + 00000nM2.02200024 000h 1030212 20151216160550 - + a|||d||||||1| - + a - + a - + James, Kathryn - + How low self-esteem affects adult learners. - + Kathryn James - + 2003 - + 14(2003)5, S. 24-26. - + 0000613 - + Erwachsenenbildung - + Selbstbewusstsein - + Psychologie - + Lernen - + Fallstudie - 00371nM2.02200024 000h + 00000nM2.02200024 000h 1030213 20151216160550 - + a|||d||||||1| - + a - + a - + Schuller, Tom - + Deschooling revisited - lessons for lifelong learning? - + Tom Schuller - + 2003 - + 14(2003)5, S. 27. - + 0000613 - + Illich, Ivan - + Biographie - + Erwachsenenbildung - + Lernen - 00373nM2.02200024 000h + 00000nM2.02200024 000h 1030214 20151216160551 - + a|||d||||||1| - + a - + a - + Eldred, Jan - + 'Another world is possible'. - + Jan Eldred - + 2003 - + 14(2003)8, S. 11-12. - + 0000613 - + Lernen - + Globalisierung - + Konferenzbericht - + International - 00375nM2.02200024 000h + 00000nM2.02200024 000h 1030215 20151216160551 - + a|||d||||||1| - + a - + a - + Cara, Sue - + Successful participation for all? - + Sue Cara - + 2003 - + 14(2003)8, S. 14-15. - + 0000613 - + Chancengleichheit - + Weiterbildung - + Qualität - + Vereinigtes Königreich - 00377nM2.02200024 000h + 00000nM2.02200024 000h 1030216 20151216160551 - + a|||d||||||1| - + a - + a - + Stanistreet, Paul - + WEA at the crossroads. - + Paul Stanistreet - + 2003 - + 14(2003)8, S. 16-17. - + 0000613 - + Arbeiterbildung - + Weiterbildung - + Vereinigtes Königreich - + Zukunft - + Finanzierung - + Organisation - 00379nM2.02200024 000h + 00000nM2.02200024 000h 1030217 20151216160551 - + a|||d||||||1| - + a - + a - + Frank, Fiona - + Learning to accentuate the positive. - + Fiona Frank - + 2003 - + 14(2003)8, S. 18-19. - + 0000613 - + Arbeitsmarkt - + Qualifizierung - + Berufliche Weiterbildung - + Vereinigtes Königreich - + Kompetenz - + Entwicklung - 00381nM2.02200024 000h + 00000nM2.02200024 000h 1030218 20151216160551 - + a|||d||||||1| - + a - + a - + Groves, Bob - + 'Education is life'. - + Bob Groves - + 2003 - + 14(2003)8, S. 20-21. - + 0000613 - + Weiterbildung - + Bildungsbegriff - + Zukunft - + Soziales Lernen - + Vereinigtes Königreich - 00383nM2.02200024 000h + 00000nM2.02200024 000h 1030219 20151216160551 - + a|||d||||||1| - + a - + a - + Watters, Kate - + 'Never mind the width, feel the quality'. - + Kate Watters - + 2003 - + 14(2003)8, S. 22-23. - + 0000613 - + Weiterbildung - + Bewertung - + Statistik - + Analyse - + Vereinigtes Königreich - 00385nM2.02200024 000h + 00000nM2.02200024 000h 1030220 20151216160551 - + a|||d||||||1| - + a - + a - + Doyle, Mel - + 'All that was asked was a willingness to hear and consider, with real respect, the arguments put forth'. - + Mel Doyle - + 2003 - + 14(2003)7, S. 7-8. - + 0000613 - + Geschichte der Erwachsenenbildung - + Vereinigtes Königreich - + Methodik - + Arbeiterbildung - + Vereinigtes Königreich - 00387nM2.02200024 000h + 00000nM2.02200024 000h 1030221 20151216160551 - + a|||d||||||1| - + a - + a - + Field, John - + 'Only by the spread of knowledge will the danger of war recede'. - + John Field - + 2003 - + 14(2003)7, S. 9-11. - + 0000613 - + Geschichte der Erwachsenenbildung - + Vereinigtes Königreich - + Institution - + Arbeiterbildung - + Vereinigtes Königreich - 00389nM2.02200024 000h + 00000nM2.02200024 000h 1030222 20151216160551 - + a|||d||||||1| - + a - + a - + Fieldhouse, Roger - + Difficult years: the WEA, 1945-1970. - + Roger Fieldhouse - + 2003 - + 14(2003)7, S. 12-15. - + 0000613 - + Geschichte der Erwachsenenbildung - + Vereinigtes Königreich - + Gewerkschaft - + Arbeiterbildung - + Vereinigtes Königreich - 00391nM2.02200024 000h + 00000nM2.02200024 000h 1030223 20151216160551 - + a|||d||||||1| - + a - + a - + West, Linden - + Treading the WEA ways of education. - + Linden West - + 2003 - + 14(2003)7, S. 16-17. - + 0000613 - + Erwachsenenbildung - + Vereinigtes Königreich - + Adressat - + Biographie - 00393nM2.02200024 000h + 00000nM2.02200024 000h 1030224 20151216160552 - + a|||d||||||1| - + a - + a - + Greany, Toby - + What makes an effective lifelong lerner? - + Toby Greany - + 2003 - + 14(2003)7, S. 19. - + 0000613 - + Lebenslanges Lernen - + Vereinigtes Königreich - + Bericht - + Motivation - 00395nM2.02200024 000h + 00000nM2.02200024 000h 1030225 20151216160552 - + a|||d||||||1| - + a - + a - + Stanistreet, Paul - + A skills revolution in Wales? - + Paul Stanistreet - + 2003 - + 14(2003)7, S. 20-21. - + 0000613 - + Bildungspolitik - + Vereinigtes Königreich - + Erwachsenenbildung - + Zukunft - 00397nM2.02200024 000h + 00000nM2.02200024 000h 1030226 20151216160552 - + a|||d||||||1| - + a - + a - + Stanistreet, Paul - + Meeting the needs of the 'new Scots'. - + Paul Stanistreet - + 2003 - + 14(2003)7, S. 23-24. - + 0000613 - + Vereinigtes Königreich - + Migration - + Erwachsenenbildung - + Flüchtling - + Integration - 00399nM2.02200024 000h + 00000nM2.02200024 000h 1030227 20151216160552 - + a|||d||||||1| - + a - + a - + Callender, Claire - + Winners and losers. - + Claire Callender - + 2003 - + 14(2003)7, S. 26-27. - + 0000613 - + Hochschule - + Vereinigtes Königreich - + Chancengleichheit - + Studium - + Finanzierung - + Hochschulpolitik - 00401nM2.02200024 000h + 00000nM2.02200024 000h 1030228 20151216160552 - + a|||d||||||1| - + a - + a - + Alexander, Titus - + The global learning challenge. - + Titus Alexander - + 2003 - + 14(2003)7, S. 28-29. - + 0000613 - + Globalisierung - + Erwachsenenbildung - + Lehren - + Vereinigtes Königreich - + Methodik - 00403nM2.02200024 000h + 00000nM2.02200024 000h 1030229 20151216160552 - + a|||d||||||1| - + a - + a - + Roberts, Stephen K. - + The WEA's man for all seasons. - + Stephen K. Roberts - + 2003 - + 14(2003)7, S. 30-31. - + 0000613 - + Geschichte der Erwachsenenbildung - + Vereinigtes Königreich - + Rezension - + Arbeiterbildung - + Vereinigtes Königreich - 00405nM2.02200024 000h + 00000nM2.02200024 000h 1030230 20151216160552 - + a|||d||||||1| - + a - + a - + Duke, Chris - + White Paper offers chance to enhance adult learners' share of the wealth of higher education. - + Chris Duke - + 2003 - + 14(2003)6, S. 6. - + 0000613 - + Hochschulbildung - + Bildungspolitik - + Reform - + Kritik - + Vereinigtes Königreich - 00407nM2.02200024 000h + 00000nM2.02200024 000h 1030231 20151216160552 - + a|||d||||||1| - + a - + a - + Coleman, Alan - + Nothing in White Paper to arrest decline in mature students' fortunes. - + Alan Coleman - + 2003 - + 14(2003)6, S. 7. - + 0000613 - + Hochschulbildung - + Bildungspolitik - + Reform - + Kritik - + Verbleib - + Vereinigtes Königreich - 00409nM2.02200024 000h + 00000nM2.02200024 000h 1030232 20151216160552 - + a|||d||||||1| - + a - + a - + Steele, Tom - + Reclaiming 'popular education'. - + Tom Steele - + 2003 - + 14(2003)9, S. 13-15. - + 0000613 - + Chancengleichheit - + Bildungssystem - + Geschichte der Erwachsenenbildung - + Vereinigtes Königreich - + Arbeiterbildung - 00411nM2.02200024 000h + 00000nM2.02200024 000h 1030233 20151216160553 - + a|||d||||||1| - + a - + a - + Layer, Geoff - + Needs of part-time and 'second chance' learners lost amidst the hype. - + Geoff Layer - + 2003 - + 14(2003)6, S. 11. - + 0000613 - + Hochschulbildung - + Bildungspolitik - + Finanzierung - + Chancengleichheit - + Vereinigtes Königreich - + Weiterbildung - 00413nM2.02200024 000h + 00000nM2.02200024 000h 1030234 20151216160553 - + a|||d||||||1| - + a - + a - + Duke, Chris - + Big picture, small print. - + Chris Duke - + 2003 - + 14(2003)6, S. 12-14. - + 0000613 - + Lebenslanges Lernen - + Weiterbildung - + Bildungspolitik - + Finanzierung - + Kritik - + Chancengleichheit - + Vereinigtes Königreich - 00415nM2.02200024 000h + 00000nM2.02200024 000h 1030235 20151216160553 - + a|||d||||||1| - + a - + a - + Taubman, Dan - + NATFHE FE Official Dan Taubman answers your questions. - + Dan Taubman - + 2003 - + 14(2003)6, S. 16-17. - + 0000613 - + Lebenslanges Lernen - + Interview - + Hochschulbildung - + Weiterbildung - + Vereinigtes Königreich - 00417nM2.02200024 000h + 00000nM2.02200024 000h 1030236 20151216160553 - + a|||d||||||1| - + a - + a - + Stanistreet, Paul - + Scots could be left to count the cost of top-up fees south of the border, warns Alex Neil. - + Paul Stanistreet - + 2003 - + 14(2003)6, S. 18-19. - + 0000613 - + Bildungspolitik - + Interview - + Chancengleichheit - + Weiterbildung - + Vereinigtes Königreich - + Schottland - + Vereinigtes Königreich - + Schottland - 00419nM2.02200024 000h + 00000nM2.02200024 000h 1030237 20151216160553 - + a|||d||||||1| - + a - + a - + White, Lenford - + Without all adults learning, neighbourhood renewal won't work this time around either. - + Lenford White - + 2003 - + 14(2003)6, S. 21. - + 0000613 - + Gemeinwesenarbeit - + Lebenslanges Lernen - + Nachbarschaft - + Vereinigtes Königreich - 00421nM2.02200024 000h + 00000nM2.02200024 000h 1030238 20151216160553 - + a|||d||||||1| - + a - + a - + Jacobsen, Yola - + Making the jump into employment. - + Yola Jacobsen - + 2003 - + 14(2003)6, S. 25-27. - + 0000613 - + Berufliche Bildung - + Projekt - + Integration - + Vereinigtes Königreich - 00423nM2.02200024 000h + 00000nM2.02200024 000h 1030239 20151216160553 - + a|||d||||||1| - + a - + a - + Stanistreet, Paul - + Project puts black and Asian women in the picture. - + Paul Stanistreet - + 2003 - + 14(2003)6, S. 22-24. - + 0000613 - + Museumspädagogik - + Projekt - + Migration - + Integration - + Vereinigtes Königreich - 00424nM2.02200024 000h + 00000nM2.02200024 000h 0001396 20151216160554 - + a|||d||||||37 - + a - + Zeitschrift für Medienpsychologie - + Göttingen [u.a.] - + Hogrefe - + 2001-2003 - + Früher u. d. T.: Medienpsychologie - + 1617-6383 - 00425nM2.02200024 000h + 00000nM2.02200024 000h 1030240 20151216160554 - + a|||d||||||1| - + a - + a - + Herrmann, Thomas - + Kienle, Andrea - + Reiband, Natalja - + Metawissen als Voraussetzung für den Wissensaustausch und die Kooperation beim Wissensmanagement. - + Thomas Herrmann ; Andrea Kienle ; Natalja Reiband - + 2003 - + 15(2003)1, S. 3-12. - + 0001396 - + Wissensmanagement - + Datenbank - + Empirische Untersuchung - + Forschung - 00427nM2.02200024 000h + 00000nM2.02200024 000h 1030241 20151216160554 - + a|||d||||||1| - + a - + a - + Müller, Katrin - + Troitzsch, Heide - + Renkl, Alexander - + ¬Der¬ Einfluss nonverbaler Signale auf den Kommunikationsprozess in einer kollaborativen virtuellen Umgebung. - + Katrin Müller ; Heide Troitzsch ; Alexander Renkl - + 2003 - + 15(2003)1, S. 24-33. - + 0001396 - + Nonverbale Kommunikation - + E-Learning - + Kommunikation - + Forschung - + Experiment - 00429nM2.02200024 000h + 00000nM2.02200024 000h 1030242 20151216160554 - + a|||d||||||1| - + a - + a - + Baeßler, Berit - + E-Learning-Systeme: Theoriegeleitete Konzeption, Qualitätsmanagement, Implementierung. - + Berit Baeßler - + 2003 - + 15(2003)1, S. 13-23. - + 0001396 - + E-Learning - + Hochschule - + Qualität - + Lernpsychologie - + Evaluation - 00430nM2.02200024 000h + 00000nM2.02200024 000h 1031737 20151216160554 - + a|||d||||||37 - + a - + Lernende Organisation - + LO ; Zeitschrift für systemisches Management - + Wien - + Inst. für Systemisches Coaching und Training - + 2001 - 2003 - + 1609-1248 - 00431nM2.02200024 000h + 00000nM2.02200024 000h 1030243 20151216160554 - + a|||d||||||1| - + a - + a - + Kersting, Heinz J. - + Organisationsentwicklung als konstruktivistische Beratung. - + Heinz J. Kersting - + 2003 - + (2003)13, S. 6-17. - + 1031737 - + Organisationsentwicklung - + Beratung - + Konstruktivismus - + Methodik - 00433nM2.02200024 000h + 00000nM2.02200024 000h 1030244 20151216160554 - + a|||d||||||1| - + a - + a - + Schmid, Bernd - + Messmer, Arnold - + Perspektiven der Teamentwicklung. - + Bernd Schmid ; Arnold Messmer - + 2003 - + (2003)13, S. 30-36. - + 1031737 - + Personalentwicklung - + Unternehmen - + Team - + Entwicklung - 00434nM2.02200024 000h + 00000nM2.02200024 000h 0000215 20151216160554 - + a|||d||||||37 - + a - + Deutsches Institut für Wissenschaftliche Pädagogik - + Görres-Gesellschaft zur Pflege der Wissenschaft - + Vierteljahrsschrift für wissenschaftliche Pädagogik - + im Auftr. der Görres-Gesellschaft - + Paderborn - + Schöningh - + 1959 -2003 - + 0507-7230 - 00435nM2.02200024 000h + 00000nM2.02200024 000h 1030245 20151216160554 - + a|||d||||||1| - + a - + a - + Pleines, Jürgen-Eckhardt - + Wissenschaft und Bildung - + Anspruch und Wirklichkeit wissenschaftlicher Bildung. - + Jürgen-Eckhardt Pleines - + 2003 - + 79(2003)1, S. 8-18. - + 0000215 - + Bildungstheorie - + Bildung - + Wissenschaft - + Reflexion - + Wissen - 00437nM2.02200024 000h + 00000nM2.02200024 000h 1030246 20151216160554 - + a|||d||||||1| - + a - + a - + Rekus, Jürgen - + ¬Die¬ Aufgabe der Didaktik heute - + Karl Gerhard Pöppel zum 75. Geburtstag. - + Jürgen Rekus - + 2003 - + 79(2003)1, S. 62-73. - + 0000215 - + Didaktik - + Fachdidaktik - + Reflexion - + Lehrerausbildung - + Fachwissenschaft - 00439nM2.02200024 000h + 00000nM2.02200024 000h 1030247 20151216160554 - + a|||d||||||1| - + a - + a - + Terhart, Ewald - + Erziehungswissenschaft zwischen Forschung und Politikberatung - + Ewald Terhart - + 2003 - + 79(2003)1, S. 74-90. - + 0000215 - + Erziehungswissenschaft - + Beratung - + Politik - + Bildungsverwaltung - + Bildungsforschung - + Bildungspolitik - 00440nM2.02200024 000h + 00000nM2.02200024 000h 0000091 20151216160554 - + a|||d||||||37 - + a - - Pädagogische Rundschau <Frankfurt, Main> + + Pädagogische Rundschau <Frankfurt, Main> - + Frankfurt am Main [u.a.] - + Lang - + 1964 - 2003 - + 0030-9273 - 00441nM2.02200024 000h + 00000nM2.02200024 000h 1030248 20151216160554 - + a|||d||||||1| - + a - + a - + Friedrich, Gerhard - + Preiß, Gerhard - + Neurodidaktik - + Bausteine für eine Brückenbildung zwischen Hirnforschung und Didaktik. - + Gerhard Friedrich ; Gerhard Preiß - + 2003 - + 57(2003)2, S. 181-199. - + 0000091 - + Didaktik - + Kompetenzentwicklung - + Kind - + Gehirn - + Forschung - 00443nM2.02200024 000h + 00000nM2.02200024 000h 1030249 20151216160555 - + a|||d||||||1| - + a - + a - + Danner, Helmut - + Was ist pädagogische Hermeneutik? - + Helmut Danner - + 2003 - + 57(2003)2, S. 201-211. - + 0000091 - + Pädagogik - + Hermeneutik - + Einführung - + Studium - 00445nM2.02200024 000h + 00000nM2.02200024 000h 1030250 20151216160555 - + a|||d||||||1| - + a - + a - + Hengelbrock, Jürgen - + ¬Das¬ 'sokratische' und das philosophische Gespräch - + Nelson/Heckmann und die Platonischen - + Dialoge. - + Jürgen Hengelbrock - + 2003 - + 57(2003)2, S. 213-223. - + 0000091 - + Gesprächsführung - + Nelson, Leonard - + Kritik - + Platon - + Philosophie - 00446nM2.02200024 000h + 00000nM2.02200024 000h 0000613 20151216160555 - + a|||d||||||37 - + a - - National Institute of Adult Continuing Education (England and Wales) <Leicester> + + National Institute of Adult Continuing Education (England and Wales) <Leicester> - + Adults Learning - - Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> + + Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> - + 1-14 - + Leicester - + NIACE - + 1988- 2003 - + Adult education - + 0955-2308 - + http://www.niace.org.uk/Publications/Periodicals/AdultsLearning/BackIss/default.htm - 00447nM2.02200024 000h + 00000nM2.02200024 000h 1030251 20151216160555 - + a|||d||||||1| - + a - + a - + Brennan, John - + Do the Government's sums add up? - + John Brennan - + 2003 - + 14(2003)9, S. 18-19. - + 0000613 - + Bildungspolitik - + Finanzierung - + Vereinigtes Königreich - + Weiterbildung - + Junger Erwachsener - 00448nM2.02200024 000h + 00000nM2.02200024 000h 0001040 20151216160555 - + a|||d||||||37 - + a - + Bundesausschuß Politische Bildung - + Praxis Politische Bildung - + Materialien, Analysen, Diskussionen - + hrsg. vom Bundesausschuß Politische Bildung - + Weinheim - + Juventa-Verl. - + 1997-2003 - + 1433-4755 - 00449nM2.02200024 000h + 00000nM2.02200024 000h 1030252 20151216160555 - + a|||d||||||1| - + a - + a - + Schillo, Johannes - + ¬Die¬ Bildungsaufgabe wird übergreifend gestellt - + Anmerkungen zur (außer-)schulischen - + Debatte. - + Johannes Schillo - + 2003 - + 7(2003)2, S. 85-91. - + 0001040 - + Politische Bildung - + Bildungspolitik - + Außerschulische Bildung - + Entwicklung - 00451nM2.02200024 000h + 00000nM2.02200024 000h 1030253 20151216160555 - + a|||d||||||1| - + a - + a - + Hiddemann, Frank - + Unterbrechen und neu beschreiben - + zum Verhältnis von Kultur und politischer Bildung. - + Frank Hiddemann - + 2003 - + 7(2003)2, S. 91-97. - + 0001040 - + Politische Bildung - + Kultur - + Politische Kultur - + Medien - + Kunst - + Kunst - + Ausstellung - 00453nM2.02200024 000h + 00000nM2.02200024 000h 1030254 20151216160555 - + a|||d||||||1| - + a - + a - + Reiniger, Frank - + Reiniger, Rike - + 'Wir tanzen Lipsi' - + Oral History/Theater Projekt zu den 60er Jahren in der DDR. - + Frank Reiniger ; Rike Reiniger - + 2003 - + 7(2003)2, S. 98-104. - + 0001040 - + Kulturelle Bildung - + Neue Bundesländer - + Deutschland-DDR - + Zeitgeschichte - + Oral History - + Projekt - + Theater - + Projekt - 00455nM2.02200024 000h + 00000nM2.02200024 000h 1030255 20151216160555 - + a|||d||||||1| - + a - + a - + Brülls, Klaus - + Kruse, Jürgen - + Herausforderung Integrierte Weiterbildung - + Lernkonzept zum Erwerb von gesellschaftlichen Schlüsselqualifikationen. - + Klaus Brülls ; Jürgen Kruse - + 2003 - + 7(2003)2, S. 105-112. - + 0001040 - + Weiterbildung - + Lernstatt - + Lernen - + Integration beruflicher politischer bildung - + Arbeitsloser - 00456nM2.02200024 000h + 00000nM2.02200024 000h 0000613 20151216160555 - + a|||d||||||37 - + a - - National Institute of Adult Continuing Education (England and Wales) <Leicester> + + National Institute of Adult Continuing Education (England and Wales) <Leicester> - + Adults Learning - - Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> + + Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> - + 1-14 - + Leicester - + NIACE - + 1988- 2003 - + Adult education - + 0955-2308 - + http://www.niace.org.uk/Publications/Periodicals/AdultsLearning/BackIss/default.htm - 00457nM2.02200024 000h + 00000nM2.02200024 000h 1030256 20151216160555 - + a|||d||||||1| - + a - + a - + Pateman, John - + Libraries must change to survive. - + John Pateman - + 2003 - + 14(2003)9, S. 20-21. - + 0000613 - + Bibliothek - + Gemeinwesenarbeit - + Nutzung - + Adressatenorientierung - + Vereinigtes Königreich - 00458nM2.02200024 000h + 00000nM2.02200024 000h 0001040 20151216160555 - + a|||d||||||37 - + a - + Bundesausschuß Politische Bildung - + Praxis Politische Bildung - + Materialien, Analysen, Diskussionen - + hrsg. vom Bundesausschuß Politische Bildung - + Weinheim - + Juventa-Verl. - + 1997-2003 - + 1433-4755 - 00459nM2.02200024 000h + 00000nM2.02200024 000h 1030257 20151216160555 - + a|||d||||||1| - + a - + a - + Meyer, Thomas - + ¬Die¬ Zukunft der außerschulischen politischen Bildung - + Erfahrungen und offene Fragen. - + Thomas Meyer - + 2003 - + 7(2003)2, S. 120-126. - + 0001040 - + Außerschulische Bildung - + Politische Bildung - + Erlebnisbericht - + Entwicklung - + Zukunft - 00460nM2.02200024 000h + 00000nM2.02200024 000h 0001041 20151216160555 - + a|||d||||||37 - + a - + Kursiv - + Journal für politische Bildung - + Schwalbach/Ts. - + Wochenschau Verl. - + 1997-2003 - + 1433-2000 - 00461nM2.02200024 000h + 00000nM2.02200024 000h 1030258 20151216160555 - + a|||d||||||1| - + a - + a - + Duncker, Ludwig - + Didaktik und Journalismus - Wechselwirkungen im Dienste des Lehrens und Lernens. - + Ludwig Duncker - + 2003 - + (2003)1, S. 12-17. - + 0001041 - + Didaktik - + Journalist - + Aufklärung - + Bildungstheorie - + Wissen - + Schule - 00463nM2.02200024 000h + 00000nM2.02200024 000h 1030259 20151216160556 - + a|||d||||||1| - + a - + a - + Schatz, Roland - + Banalisieren Medien die Demokratie zu Tode? - + Roland Schatz - + 2003 - + (2003)1, S. 24-29. - + 0001041 - + Medien - + Demokratie - + Reflexion - + Politik - + Zukunft - + Prognose - 00465nM2.02200024 000h + 00000nM2.02200024 000h 1030260 20151216160556 - + a|||d||||||1| - + a - + a - + Röll, Franz-Josef - + Politisches Lernen unter der Dominanz des Bildes - + antifaschistische Bildungsarbeit mit - + ästhetischen Mitteln. - + Franz-Josef Röll - + 2003 - + (2003)1, S. 30-35. - + 0001041 - + Politische Bildung - + Medien - + Erlebnisbericht - + Neue Medien - + Ästhetik - + Pädagogik - 00467nM2.02200024 000h + 00000nM2.02200024 000h 1030261 20151216160556 - + a|||d||||||1| - + a - + a - + Schelle, Carla - + Zur Tradition der Unterrichtsforschung zum Politikunterricht mit qualitativen Methoden - + Ursprünge, Ergebnisse, Perspektiven. - + Carla Schelle - + 2003 - + (2003)1, S. 36-41. - + 0001041 - + Unterrichtsforschung - + Politische Bildung - + Didaktik - + Lehrerausbildung - 00469nM2.02200024 000h + 00000nM2.02200024 000h 1030262 20151216160556 - + a|||d||||||1| - + a - + a - + Fischer, Sigmar - + Rehfeld, Wilfried - + Politische Bildung als Beratung und Prozessbegleitung - + Thesen zu neuen Aufgaben - + politischer Bildung in Zeiten der Modernisierung. - + Sigmar Fischer ; Wilfried Rehfeld - + 2003 - + (2003)1, S. 42-43. - + 0001041 - + Politische Bildung - + Zukunft - + Strukturwandel - + Angebotsplanung - 00470nM2.02200024 000h + 00000nM2.02200024 000h 0000613 20151216160556 - + a|||d||||||37 - + a - - National Institute of Adult Continuing Education (England and Wales) <Leicester> + + National Institute of Adult Continuing Education (England and Wales) <Leicester> - + Adults Learning - - Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> + + Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> - + 1-14 - + Leicester - + NIACE - + 1988- 2003 - + Adult education - + 0955-2308 - + http://www.niace.org.uk/Publications/Periodicals/AdultsLearning/BackIss/default.htm - 00471nM2.02200024 000h + 00000nM2.02200024 000h 1030263 20151216160556 - + a|||d||||||1| - + a - + a - + Zaheer, Abdul Wahab - + 'The street militia surrounded the medical faculty - + The students were in the compound. They - + start firing...'. - + Abdul Wahab Zaheer - + 2003 - + 14(2003)9, S. 22-23. - + 0000613 - + Flüchtling - + Aghanistan - + Vereinigtes Königreich - + Weiterbildung - + Integration - + Afghanistan - 00473nM2.02200024 000h + 00000nM2.02200024 000h 1030264 20151216160556 - + a|||d||||||1| - + a - + a - + Tuckett, Alan - + Aldridge, Fiona - + Sharp fall in adult participation in learning. - + Alan Tuckett ; Fiona Aldridge - + 2003 - + 14(2003)9, S. 25-26. - + 0000613 - + Weiterbildungsstatistik - + Statistik - + Vereinigtes Königreich - + Teilnehmer - + Analyse - 00475nM2.02200024 000h + 00000nM2.02200024 000h 1030265 20151216160556 - + a|||d||||||1| - + a - + a - + Bjerkaker, Sturla - + Learning for citizenship and critical consumerism. - + Sturla Bjerkaker - + 2003 - + 14(2003)9, S. 27. - + 0000613 - + Zivilgesellschaft - + Politische Bildung - + Vereinigtes Königreich - + Bürger - + Teilnehmer - 00476nM2.02200024 000h + 00000nM2.02200024 000h 0001405 20151216160556 - + a|||d||||||37 - + a - + Dialogische Erziehung - + Informationen zur Paulo Freire Pädagogik - + Oldenburg - + Verl. Dialogische Erziehung - + 1997-2003 - + Zusatz anfangs: Informationen zur Paulo-Freire-Kooperation - + 1433-4895 - 00477nM2.02200024 000h + 00000nM2.02200024 000h 1030266 20151216160556 - + a|||d||||||1| - + a - + a - + Hammer, Veronika - + Dialogische Erwachsenenbildung. - + Veronika Hammer - + 2003 - + 7(2003)1, S. 4-6. - + 0001405 - + Dialogisches Lernen - + Erwachsenenbildung - + Bildungsarbeit - + Freire, Paulo - 00479nM2.02200024 000h + 00000nM2.02200024 000h 1030267 20151216160557 - + a|||d||||||1| - + a - + a - + Müller-Rückert, Gabriele - + Am Leben lernen - Bildungsarbeit (nicht nur) mit Müttern - + das Beispiel einer kirchlichdiakonischen - + Frauenorganisation. - + Gabriele Müller-Rückert - + 2003 - + 7(2003)1, S. 7-23. - + Bibl. - + 0001405 - + Frauenbildung - + Emanzipation - + Kirchliche Erwachsenenbildung - + Finanzierung - + Bayern - 00481nM2.02200024 000h + 00000nM2.02200024 000h 1030268 20151216160557 - + a|||d||||||1| - + a - + a - + Bullinger, Hermann - + Bildungsarbeit mit Vätern zwischen Utopie und Realität. - + Hermann Bullinger - + 2003 - + 7(2003)1, S. 24-32. - + Bibl. - + 0001405 - + Männerbildung - + Vater-Kind-Beziehung - + Vaterrolle - + Bildungsarbeit - 00483nM2.02200024 000h + 00000nM2.02200024 000h 1030269 20151216160557 - + a|||d||||||1| - + a - + a - + Baki, Brigitte - + Götze, Christiane - + '.. - + und raus bist du' - Bildungsarbeit mit Erwerbslosen. - + Brigitte Baki ; Christiane Götze - + 2003 - + 7(2003)1, S. 33-39. - + 0001405 - + Organisation - + Lernen - + Projekt - + Arbeitsloser Jugendlicher - + Qualifizierung - 00485nM2.02200024 000h + 00000nM2.02200024 000h 1030270 20151216160557 - + a|||d||||||1| - + a - + a - + Pforr, Yvonne - + Vom Bildungskonsument zum Bildungsproduzent - Zur emanzipatorischen Erwachsenenbildung. - + Yvonne Pforr - + 2003 - + 7(2003)1, S. 40-43. - + 0001405 - + Bildung - + Emanzipation - + Erwachsenenbildung - + Lernprozess - 00487nM2.02200024 000h + 00000nM2.02200024 000h 1030271 20151216160557 - + a|||d||||||1| - + a - + a - + Hummelsheim, Stefan - + Lebenslanges Lernen und der Weg zu seiner Finanzierung - + Darstellung des Zwischenberichts der - + Expertenkommission. - + Stefan Hummelsheim - + 2003 - + 7(2003)1, S. 44-56. - + 0001405 - + Lebenslanges Lernen - + Finanzierung - + Weiterbildungsfinanzierung - 00488nM2.02200024 000h + 00000nM2.02200024 000h 0001040 20151216160557 - + a|||d||||||37 - + a - + Bundesausschuß Politische Bildung - + Praxis Politische Bildung - + Materialien, Analysen, Diskussionen - + hrsg. vom Bundesausschuß Politische Bildung - + Weinheim - + Juventa-Verl. - + 1997-2003 - + 1433-4755 - 00489nM2.02200024 000h + 00000nM2.02200024 000h 1030272 20151216160557 - + a|||d||||||1| - + a - + a - + Miller, Tilly - + ¬Der¬ politische Anspruch Sozialer Arbeit und ihre Schnittstelle zur politischen Bildung. - + Tilly Miller - + 2003 - + 7(2003)2, S. 113-119. - + 0001040 - + Politische Bildung - + Sozialarbeit - + Theorie - 00490nM2.02200024 000h + 00000nM2.02200024 000h 0000613 20151216160557 - + a|||d||||||37 - + a - - National Institute of Adult Continuing Education (England and Wales) <Leicester> + + National Institute of Adult Continuing Education (England and Wales) <Leicester> - + Adults Learning - - Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> + + Hrsg.: National Institute of Adult Continuing Education (England and Wales) <Leicester> - + 1-14 - + Leicester - + NIACE - + 1988- 2003 - + Adult education - + 0955-2308 - + http://www.niace.org.uk/Publications/Periodicals/AdultsLearning/BackIss/default.htm - 00491nM2.02200024 000h + 00000nM2.02200024 000h 1030273 20151216160557 - + a|||d||||||1| - + a - + a - + Wilson, Tom - + Reforms will worsen access and create a two-tier system of higher education, says lecturers' union. - + Tom Wilson - + 2003 - + 14(2003)6, S. 9-10. - + 0000613 - + Hochschulbildung - + Bildungspolitik - + Reform - + Finanzierung - + Kritik - + Vereinigtes Königreich - 00492nM2.02200024 000h + 00000nM2.02200024 000h 0864474 20151216160557 - + a|||d||||||37 - + a - + Katholische Bundesarbeitsgemeinschaft für Erwachsenenbildung - + Erwachsenenbildung - + Vierteljahresschrift für Theorie und Praxis - + Bielefeld - + Bertelsmann - + 1964 - 2003 - + 0341-7905 - + Erwachsenendidaktik - + Teilnehmerorientierung - + Lernziel - 00493nM2.02200024 000h + 00000nM2.02200024 000h 1030274 20151216160557 - + a|||d||||||1| - + a - + a - + Ehmann, Christoph - + Finanzierung, Vielfalt und Verantwortung - + Finanzierungsmodelle für die Weiterbildung und ihre - + Wirkungen. - + Christoph Ehmann - + 2003 - + 49(2003)1, S. 2-7. - + 0864474 - + Weiterbildung - + Finanzierung - + Bildungspolitik - + Bildungsgutschein - + Bildungsfinanzierung - + Gesetzgebung - 00495nM2.02200024 000h + 00000nM2.02200024 000h 1030275 20151216160558 - + a|||d||||||1| - + a - + a - + Neu, Peter Christoph - + Öffentliche Verantwortung ade? - + die staatliche Förderung der Erwachsenenbildung in den - + Ländern. - + Peter Christoph Neu - + 2003 - + 49(2003)1, S. 8-10. - + 0864474 - + Bildungsfinanzierung - + Weiterbildung - + Nordrhein-Westfalen - + Bildungspolitik - 00497nM2.02200024 000h + 00000nM2.02200024 000h 1030276 20151216160558 - + a|||d||||||1| - + a - + a - + Priddat, Birger P. - + Weiterbildung als Markt - + Ökonomische Thesen zur Bildungsfinanzierung. - + Birger P. Priddat - + 2003 - + 49(2003)1, S. 11-14. - + 0864474 - + Bildungsfinanzierung - + Bildungspolitik - + Ökonomie - + Weiterbildungsmarkt - + Zukunft - 00499nM2.02200024 000h + 00000nM2.02200024 000h 1030277 20151216160558 - + a|||d||||||1| - + a - + a - + Schillo, Johannes - + Nur für Stammkunden? - + Diskussion um 'Bericht politische Bildung 2002' - + Johannes Schillo - + 2003 - + 49(2003)1, S. 15-16. - + 0864474 - + Politische Bildung - + Finanzierung - + Evaluation - + Statistik - + Förderungspolitik - 00501nM2.02200024 000h + 00000nM2.02200024 000h 1030278 20151216160558 - + a|||d||||||1| - + a - + a - + Sommer, Michael - + Kompetenzen vermitteln - + Erwachsenenbildung studieren: Fachhochschulen und Pädagogische - + Hochschulen in Süddeutschland. - + Michael Sommer - + 2003 - + 49(2003)1, S. 20-21. - + 0864474 - + Erwachsenenbildung - + Studium - + Fachhochschule - + Bayern - + Baden-Württemberg - 00503nM2.02200024 000h + 00000nM2.02200024 000h 1030279 20151216160558 - + a|||d||||||1| - + a - + a - + Siebert, Horst - + Systemisches Denken und vernetztes Lernen - + wie sich Bildung in komplexen Zusammenhängen - + vollzieht. - + Horst Siebert - + 2003 - + 49(2003)1, S. 22-26. - + 0864474 - + Lernen - + Konstruktivismus - + Systemtheorie - + Netzwerk - + Vernetzung - + Gefühl - 00505nM2.02200024 000h + 00000nM2.02200024 000h 1030280 20151216160558 - + a|||d||||||1| - + a - + a - + Strunk, Gerhard - + Von Umdeutung und Vereinnahmung - + Anmerkungen zum Beitrag von Rolf Arnold 'Mehr als - + Ökonomisierung. Eine Replik auf Klaus Ahlheim'. - + Gerhard Strunk - + 2003 - + 49(2003)1, S. 27-32. - + 0864474 - + Allgemeinbildung - + Berufliche Bildung - + Bildungsbegriff - + Erwachsenenbildung - + Bildungspolitik - + Informelles Lernen - + Reflexion - 00507nM2.02200024 000h + 00000nM2.02200024 000h 1030281 20151216160558 - + a|||d||||||1| - + a - + a - + Arnold, Rolf - + Nuissl, Ekkehard - + ¬Ein¬ Briefwechsel zur Replik auf die Ahlheim-Arnold-Kontroverse von Klaus-Peter Hufer und Ulrich Klemm. - + Rolf Arnold ; Ekkehard Nuissl - + 2003 - + 49(2003)1, S. 29-31. - + 0864474 - + Bildungsbegriff - + Systemtheorie - + Diskussion - + Politische Bildung - + Erwachsenenbildung - 00509nM2.02200024 000h + 00000nM2.02200024 000h 1030282 20151216160558 - + a|||d||||||1| - + a - + a - + Miller, Tilly - + Systemische Strategieentwicklung - + Methoden der Erwachsenenbildung in der Praxis. - + Tilly Miller - + 2003 - + 9(2003)1, S. 33-34. - + 0864474 - + Methodik - + Erwachsenenbildung - + Systemtheorie - 00511nM2.02200024 000h + 00000nM2.02200024 000h 1030283 20151216160558 - + a|||d||||||1| - + a - + a - + Heilmeier-Schmittner, Monika - + Krecan-Kirchbichler, Brigitte - + Projekte kompetent leiten und beraten - + ein Modellkurs der KEB München befähigt zum Umgang - + mit Projekten. - + Monika Heilmeier-Schmittner ; Brigitte Krecan-Kirchbichler - + 2003 - + 49(2003)1, S. 35-36. - + 0864474 - + Projektmanagement - + Kurs - + Katholische Erwachsenenbildung - + Bericht - + Kompetenzentwicklung - 00513nM2.02200024 000h + 00000nM2.02200024 000h 1030284 20151216160558 - + a|||d||||||1| - + a - + a - + Wittrahm, Andreas - + ¬Der¬ Weg zum Glauben - + Glaubensentwicklung und religiöse Erwachsenenbildung. - + Andreas Wittrahm - + 2003 - + 49(2003)1, S. 37-39. - + 0864474 - + Religiöse Erwachsenenbildung - + Kirchliche Erwachsenenbildung - + Glaube - + Biographischer Ansatz - + Empirische Forschung - 00514nM2.02200024 000h + 00000nM2.02200024 000h 0001100 20151216160559 - + a|||d||||||37 - + a - + Forum Katholischer Erwachsenenbildung in Österreich - + Tools - + Österreichische Fachzeitschrift für Erwachsenenbildung - + Forum Katholischer Erwachsenenbildung in Österreich - + Wien - + 1998 - 2003 - + Bundesarbeitsgemeinschaft für Katholische Erwachsenenbildung in Österreich: Bakeb-Informationen - + http://www.weiterwissen.at/siteswift.php?p=eb_tools.tpl&d=N%3B&t=85968 - 00515nM2.02200024 000h + 00000nM2.02200024 000h 1030285 20151216160559 - + a|||d||||||1| - + a - + a - + Ribolits, Erich - + Wer nicht lernt, soll auch nicht essen! - + Erich Ribolits - + 2003 - + (2003)1, S. 3-6. - + 0001100 - + Lebenslanges Lernen - + Berufsorientierung - + Allgemeinbildung - + Bildung - + Bildungspolitik - + Kritik - 00517nM2.02200024 000h + 00000nM2.02200024 000h 1030286 20151216160559 - + a|||d||||||1| - + a - + a - + Ohnemus, Elisabeth - + Landertshammer, Michael - + Prischl, Alexander - + Es braucht einen Weiterbildungsrat. - + Elisabeth Ohnemus ; Michael Landertshammer ; Alexander Prischl - + 2003 - + (2003)1, S. 7-10. - + 0001100 - + Berufliche Weiterbildung - + Interview - + Berufsbildungspolitik - + Österreich - 00519nM2.02200024 000h + 00000nM2.02200024 000h 1030287 20151216160559 - + a|||d||||||1| - + a - + a - + Siebert, Horst - + Projekt Bildungsgesellschaft. - + Horst Siebert - + 2003 - + (2003)1, S. 11-12. - + 0001100 - + Bildung - + Wissensgesellschaft - + Kritik - + Konstruktivismus - 00521nM2.02200024 000h + 00000nM2.02200024 000h 1030288 20151216160559 - + a|||d||||||1| - + a - + a - + Sturm, Hans - + Gefragt: Soziale Interaktionskompetenz. - + Hans Sturm - + 2003 - + (2003)1, S. 13-14. - + 0001100 - + Interaktion - + Personalentwicklung - + Lehrgang - + Betriebliche Weiterbildung - + Interaktion - + Training - 00523nM2.02200024 000h + 00000nM2.02200024 000h 1030289 20151216160559 - + a|||d||||||1| - + a - + a - + Jochum-Müller, Gernot - + Fink, Anna - + Lebensplanung in der Pause. - + Gernot Jochum-Müller ; Anna Fink - + 2003 - + (2003)1, S. 15-16. - + 0001100 - + Lebenslanges Lernen - + Projekt - + Berufslaufbahn - + Erwerbsbiographie - + Innovation - + Lehrgang - + Österreich - + Ganzheitlichkeit - + Zeit - + Management - 00525nM2.02200024 000h + 00000nM2.02200024 000h 1030290 20151216160559 - + a|||d||||||1| - + a - + a - + Moser, Michaela - + Vollmann, Manuela - + Chancen für Frauen - Chancen der Wirtschaft. - + Michaela Moser ; Manuela Vollmann - + 2003 - + (2003)1, S. 21-24. - + 0001100 - + Chancengleichheit - + Frau - + Unternehmen - + Österreich - + Arbeitsmarkt - + Weiterbildungsangebot - 00527nM2.02200024 000h + 00000nM2.02200024 000h 1030291 20151216160559 - + a|||d||||||1| - + a - + a - + Kolland, Franz - + Lernen wozu? - + Franz Kolland - + 2003 - + (2003)1, S. 25-26 - + 0001100 - + Altenbildung - + Lebenslanges Lernen - + Kompetenz - + Gerontologie - + Theorie - + Bildung - 00528nM2.02200024 000h + 00000nM2.02200024 000h 0000784 20151216160559 - + a|||d||||||37 - + a - + Grundlagen der Weiterbildung e.V. - + GdWZ - + Grundlagen der Weiterbildung ; Praxis, Forschung, Trends - + Hrsg.: Grundlagen der Weiterbildung e.V., Hagen - + Neuwied - + Luchterhand - + 1990 - 2003 - + Grundlagen der Weiterbildung : GdWZ - + 0937-2172 - 00529nM2.02200024 000h + 00000nM2.02200024 000h 1030292 20151216160559 - + a|||d||||||1| - + a - + a - + Bulmahn, Edelgard - + Stiftung Bildungstest. - + Edelgard Bulmahn - + 2003 - + 14(2003)2, S. 53-54. - + 0000784 - + Interview - + Bundesministerium für Bildung und Forschung - + Stiftung Bildungstest - + Weiterbildungsmarkt - 00531nM2.02200024 000h + 00000nM2.02200024 000h 1030293 20151216160559 - + a|||d||||||1| - + a - + a - + Krug, Peter - + Diskussion um Qualitätstestierung in der Weiterbildung. - + Peter Krug - + 2003 - + 14(2003)2, S. 54-56. - + 0000784 - + Berufliche Weiterbildung - + Weiterbildungsmarkt - + Qualität - + Qualitätssicherung - + Stiftung Bildungstest - + Bildungspolitik - 00533nM2.02200024 000h + 00000nM2.02200024 000h 1030294 20151216160559 - + a|||d||||||1| - + a - + a - + Kaiser, Arnim - + Hof, Christiane - + Individuelle Lernvoraussetzungen als Grundlage für den Erwerb von Fähigkeiten zu selbst reguliertem Lernen. - + Arnmin Kaiser ; Christiane Hof - + 2003 - + 14(2003)2, S. 57-61. - + 0000784 - + Selbstorganisiertes Lernen - + Projekt - + Lernen - + Lernerfolg - + Empirische Untersuchung - 00535nM2.02200024 000h + 00000nM2.02200024 000h 1030295 20151216160600 - + a|||d||||||1| - + a - + a - + Müller, Markus - + Kals, Elisabeth - + Müller, Florian H. - + Lernverhalten und Eigennutz. - + Markus Müller ; Elisabeth Kals ; Florian H. Müller - + 2003 - + 14(2003)2, S. 61-68. - + Bibl. - + 0000784 - + Lernen - + Motivation - + Psychologie - + Forschung - + Lernfähigkeit - 00537nM2.02200024 000h + 00000nM2.02200024 000h 1030296 20151216160600 - + a|||d||||||1| - + a - + a - + Cuvry, Andrea de - + Lernfähigkeitsbewertung. - + Andrea de Cuvry - + 2003 - + 14(2003)2, S. 69-71. - + 0000784 - + Lebenslanges Lernen - + Arbeitsmarkt - + Personalpolitik - + Methode - + Lernfähigkeit - 00539nM2.02200024 000h + 00000nM2.02200024 000h 1030297 20151216160600 - + a|||d||||||1| - + a - + a - + Brauer, Werner - + Vom Umgang mit Lernungewohnten Teilnehmerinnen. - + Werner Brauer - + 2003 - + 14(2003)2, S. 71-73. - + 0000784 - + Lernen - + Weiterbildungsangebot - + Methodik - + Motivation - + Lernfähigkeit - + Reflexion - + Teilnehmerforschung - 00541nM2.02200024 000h + 00000nM2.02200024 000h 1030298 20151216160600 - + a|||d||||||1| - + a - + a - + Müller, Kurt R. - + ¬Der¬ Lerner - ein Variablenbündel oder ein Individuum? - + Kurt R. Müller - + 2003 - + 14(2003)2, S. 74-77. - + 0000784 - + Lernen - + Lernpsychologie - + Fallmethode - + Subjektorientierung - 00543nM2.02200024 000h + 00000nM2.02200024 000h 1030299 20151216160600 - + a|||d||||||1| - + a - + a - + Wenidoppler, Heinrich - + Von der Kompetenz zur Qualifikation. - + Heinrich Wenidoppler - + 2003 - + 14(2003)2, S. 78-81. - + 0000784 - + Europäische Union - + Erwachsenenbildung - + Österreich - + Modell - + Kompetenz - + Projekt - + Bericht - 00545nM2.02200024 000h + 00000nM2.02200024 000h 1030300 20151216160600 - + a|||d||||||1| - + a - + a - + Fröhlich, Walburga - + Candussi, Klaus - + Was passiert, wenn 'geistig Behinderte' mit ihrem Kopf arbeiten? - + Walburga Fröhlich ; Klaus Candussi - + 2003 - + 14(2003)2, S. 81-85. - + 0000784 - + Lernbarriere - + Behinderter - + Bildung - + Projekt - + Interessenvertretung - + Ausbildung - + Österreich - 00547nM2.02200024 000h + 00000nM2.02200024 000h 1030301 20151216160600 - + a|||d||||||1| - + a - + a - + Dörner, Olaf - + Zur Generierung betriebsrelevanten Wissens in kleinen und mittleren Unternehmen. - + Olaf Dörner - + 2003 - + 14(2003)2, S. 86-89. - + 0000784 - + Internationaler Vergleich - + Bildungsangebot - + Fallstudie - + Forschung - + Projekt - + Wissen - + Unternehmen - 00549nM2.02200024 000h + 00000nM2.02200024 000h 1030302 20151216160600 - + a|||d||||||1| - + a - + a - + Engler, Steffani - + Barrieren für berufliche Karrieren von Frauen in der Wissenschaft. - + Steffani Engler - + 2003 - + 14(2003)2, S. 89-91. - + 0000784 - + Karriere - + Frau - + Wettbewerb - + Hochschule - + Wissenschaftler - + Frau - 00551nM2.02200024 000h + 00000nM2.02200024 000h 1030303 20151216160600 - + a|||d||||||1| - + a - + a - + Maes, Jürgen - + ¬Das¬ Gerechtigkeitsempfinden und seine Bedeutung für das schulische und lebenslange Lernen. - + Jürgen Maes - + 2003 - + 14(2003)2, S. 92-95. - + 0000784 - + Gerechtigkeit - + Lebenslanges Lernen - + Motivation - + Psychologie - + Lernen - + Pädagogische Psychologie - 00553nM2.02200024 000h + 00000nM2.02200024 000h 1030304 20151216160600 - + a|||d||||||1| - + a - + a - + Hof, Christiane - + Was leisten Lernratgeber? - + Christiane Hof - + 2003 - + 14(2003)2, S. 96-98. - + 0000784 - + Lernen - + Literatur - + Ratgeber - + Analyse - + Wissen - + Lerntechnik - + Text - + Analyse - 00554nM2.02200024 000h + 00000nM2.02200024 000h 0001461 20151216160601 - + a|||d||||||37 - + a - + Deutscher Volkshochschul-Verband - + Dis.kurs - + das Magazin des Deutschen Volkshochschul-Verbandes - + 10 - + Bonn - + DVV - + 2003 - + Deutscher Volkshochschulverband: DVV-Magazin Volkshochschule - + 1611-6712 - + http://vhs-dvv.server.de/ - 00555nM2.02200024 000h + 00000nM2.02200024 000h 1030305 20151216160601 - + a|||d||||||1| - + a - + a - + Küchler, Ernst - + Chancen für die Weiterbildung - + neue Strukturen für lebensbegleitendes Lernen. - + Ernst Küchler - + 2003 - + Heft 1, S. 4-6. - + 0001461 - + Lebenslanges Lernen - + Volkshochschule - + Weiterbildung - + Weiterbildungspolitik - + Deutscher Volkshochschulverband - 00557nM2.02200024 000h + 00000nM2.02200024 000h 1030306 20151216160601 - + a|||d||||||1| - + a - + a - + Passens, Bernd - + Berufliche Weiterbildung am Scheideweg - + zum aktuellen Stand der Arbeitsmarktreform. - + Bernd Passens - + 2003 - + Heft 1, S. 8-9. - + 0001461 - + Berufliche Weiterbildung - + Volkshochschule - + Qualitätssicherung - + Arbeitsmarkt - + Reform - 00559nM2.02200024 000h + 00000nM2.02200024 000h 1030307 20151216160601 - + a|||d||||||37 - + a - + a - + Interview mit Grimme-Preisträger Ranga Yogeshwar. - + 2003 - + Heft 1, S. 12-14. - + 0001461 - + Adolf-Grimme-Preis - + Interview - + Fernsehen - + Lernen - + Bildung - 00561nM2.02200024 000h + 00000nM2.02200024 000h 1030308 20151216160601 - + a|||d||||||1| - + a - + a - + Kräuter, Willi - + ¬Ein¬ Bildungspass für alle. - + Willi Kräuter - + 2003 - + Heft 1, S. 16-17. - + 0001461 - + Bildungspass - + Weiterbildungspolitik - + Lebenslanges Lernen - 00563nM2.02200024 000h + 00000nM2.02200024 000h 1030309 20151216160601 - + a|||d||||||1| - + a - + a - + Mehnert, Steffi - + Verbindung von Theorie und Bildungspraxis - + Innovationspotenzial für die Politische Bildung. - + Steffi Mehnert - + 2003 - + Heft 1, S. 18-19. - + 0001461 - + Politische Bildung - + Projekt - + Volkshochschule - + Erwachsenenbildung - + Thüringen - 00565nM2.02200024 000h + 00000nM2.02200024 000h 1030310 20151216160601 - + a|||d||||||1| - + a - + a - + Kurt, Hanife - + Samlowski, Michael - + Erwachsenenbildung in Afghanistan - + ein Beitrag zu Stabilität, Sicherheit und für den - + Wiederaufbau des Landes. - + Hanife Kurt ; Michael Samlowski - + 2003 - + Heft 1, S. 20-21. - + 0001461 - - Institut für Internationale Zusammenarbeit <Bonn> + + Institut für Internationale Zusammenarbeit <Bonn> - + Deutscher Volkshochschulverband - + Afghanistan - + Erwachsenenbildung - + Afghanistan - 00567nM2.02200024 000h + 00000nM2.02200024 000h 1030311 20151216160601 - + a|||d||||||1| - + a - + a - + Oppermann, Detlef - + Projekt Saar-Istria: Eine Zusammenarbeit mit den Volksuniversitäten Kroatiens. - + Detlef Oppermann - + 2003 - + Heft 1, S. 22. - + 0001461 - + Erwachsenenbildung - + Volkshochschule - + Kroatien - + Saarland - + Internationale Beziehungen - 00569nM2.02200024 000h + 00000nM2.02200024 000h 1030312 20151216160601 - + a|||d||||||1| - + a - + a - + Heidecke, Kerstin - + Nach der Flut pünktlich am Start. - + Kerstin Heidecke - + 2003 - + Heft 1, S. 24-25. - + 0001461 - + Bericht - + Hilfe - + Sachsen - + Volkshochschule - + Sachsen - 00570nM2.02200024 000h + 00000nM2.02200024 000h 1030313 20151216160601 - + a|||d||||||37 - + a - + s - + Grap, Rolf [Hrsg.] - + Lernkultur Kompetenzentwicklung - + neue Ansätze zum Lernen im Beruf. - + Hrsg. Rolf Grap - + Aachen - + Shaker Verl - + 2002 - + 121 S. - + Bibl. - + Berichte aus der Betriebswirtschaft - + ISBN 3-8322-1042-3 - + Betriebliche Weiterbildung - + Personalentwicklung - + Handlungskompetenz - + Selbstgesteuertes Lernen - + Moral - + Lernort - + Netzwerk - + Kompetenz - + Entwicklung - 00571nM2.02200024 000h + 00000nM2.02200024 000h 1030314 20151216160601 - + a|||d||||||1| - + a - + m - + Baumgartner, Peter - + Häfele, Hartmut - + Maier-Häfele, Kornelia - + Auswahl von Lernplattformen - + E-Learning Praxishandbuch ; Marktübersicht, Funktionen, - + Fachbegriffe. - + Peter Baumgartner ; Hartmut Häfele ; Kornelia Maier-Häfele - + Innsbruck [u.a.] - + Studienverl - + 2002 - + 384 S. - + Bibl. - + ISBN 3-7065-1771-X - + E-Learning - + Handbuch - + Mediendidaktik - + Internet - + Lernarrangement - 00572nM2.02200024 000h + 00000nM2.02200024 000h 1030315 20151216160601 - + a|||d||||||1| - + a - + s - + Horváth, Peter - + Controlling - + Peter Horváth - + 8., vollst. überarb. Aufl. - + München - + Vahlen - + 2002 - + XVIII, 931 S. - + Reg. - + Vahlens Handbücher der Wirtschafts- und Sozialwissenschaften - + ISBN 3-8006-2731-0 - + Betriebswirtschaftslehre - + Unternehmen - + Kontrolle - 00573nM2.02200024 000h + 00000nM2.02200024 000h 1031381 20151216160602 - + a|||d||||||37 - + a - + Wirtschaft & Weiterbildung - + 5-16 - + Würzburg - + Schimmel Verl. - + 1992-2003 - + Weiterbildung - + 0942-4946 - 00574nM2.02200024 000h + 00000nM2.02200024 000h 1030316 20151216160602 - + a|||d||||||1| - + a - + a - + Richter, Kerstin - + 'Mitbestimmung verhindert Motivation der Mitarbeiter'. - + Kerstin Richter - + 2003 - + (2003)4, S. 20-22. - + 1031381 - + Interview - + Mitbestimmung - + Kritik - + Bildungssystem - + Henkel, Hans-Olaf - 00575nM2.02200024 000h + 00000nM2.02200024 000h 0000022 20151216160602 - + a|||d||||||37 - + a - + International Review of Education - + Unesco Institute for Lifelong Learning, Hamburg - + 7-49 - + Dordrecht [u.a.] - + Kluwer - + 1961-2003 - 00576nM2.02200024 000h + 00000nM2.02200024 000h 1030317 20151216160602 - + a|||d||||||1| - + a - + a - + Morgan, Douglas L. - + Appropriation, Appreciation, Accommodation: Indigenous wisdoms and knowledges in higher education. - + Douglas L. Morgan - + 2003 - + 49(2003)1-2, S. 35-49. - + Bibl. - + 0000022 - + Wissen - + Weisheit - + Internationaler Vergleich - + Wissenschaft - + Vorurteil - + Asien - + Australien - + Afrika - 00578nM2.02200024 000h + 00000nM2.02200024 000h 1030318 20151216160602 - + a|||d||||||1| - + a - + a - + Zajda, Joseph - + Lifelong learning and adult education: Russia meets the west. - + Joseph Zajda - + 2003 - + 49(2003)1-2, S. 111-132. - + Bibl. - + 0000022 - + Geschichte der Erwachsenenbildung - + Bildungspolitik - + Erwachsenenbildung - + Erwachsenenbildungseinrichtung - + Russland - 00580nM2.02200024 000h + 00000nM2.02200024 000h 1030319 20151216160602 - + a|||d||||||1| - + a - + a - + Schulte, Barbara - + Social hierarchy and group solidarity: The meanings of work and vocation/profession in the chinese context and their implications for vocational education. - + Barbara Schulte - + 2003 - + 49(2003)1-2, S. 213-239. - + Bibl. - + 0000022 - + Weiterbildungssystem - + Arbeitsorganisation - + Geschichte - + China - + Sprache - + Analyse - 00581nM2.02200024 000h + 00000nM2.02200024 000h 0001075 20151216160602 - + a|||d||||||37 - + a - + Golden riches - + nordic adult learning - + Copenhagen - + Nordic Council of Ministers - + 1998-2003 - + 1398-8514 - 00582nM2.02200024 000h + 00000nM2.02200024 000h 1030320 20151216160602 - + a|||d||||||1| - + a - + a - + Hauch, Annelise - + What has happened in Denmark till now? - + Enhanced Recognition of Prior Learning in Denmark. - + Annelise Hauch - + 2003 - + (2003)1, S. 3-7. - + 0001075 - + Bildungspolitik - + Berufliche Bildung - + Weiterbildungssystem - + Informelles Lernen - + Kompetenzentwicklung - + Dänemark - 00584nM2.02200024 000h + 00000nM2.02200024 000h 1030321 20151216160602 - + a|||d||||||1| - + a - + a - + Ahola, Jorma - + Validation of Prior Learning in Finland. - + Jorma Ahola - + 2003 - + (2003)1, S. 8-10. - + 0001075 - + Lebenslanges Lernen - + Schlüsselqualifikation - + Informelles Lernen - + Bildungspolitik - + Zertifikat - + Finnland - 00586nM2.02200024 000h + 00000nM2.02200024 000h 1030322 20151216160602 - + a|||d||||||1| - + a - + a - + Kristjánsson, Ólafur Grétar - + Validation of Non-formal Learning in Iceland. - + Ólafur Grétar Kristjánsson - + 2003 - + (2003)1, S. 11-15. - + 0001075 - + Informelles Lernen - + Lebenslanges Lernen - + Bildungspolitik - + Zertifikat - + Island - 00588nM2.02200024 000h + 00000nM2.02200024 000h 1030323 20151216160602 - + a|||d||||||1| - + a - + a - + Pettersen, Bard - + Validation of Non-formal, informal and Formal Competence in Norway. - + Bard Pettersen - + 2003 - + (2003)1, S. 16-20. - + 0001075 - + Informelles Lernen - + Bildungspolitik - + Zertifikat - + Kompetenz - + Weiterbildungssystem - + Norwegen - 00590nM2.02200024 000h + 00000nM2.02200024 000h 1030324 20151216160603 - + a|||d||||||1| - + a - + a - + Nordlund, Eva - + Validation of Adult Knowledge and Competence in Sweden. - + Eva Nordlund - + 2003 - + (2003)1, S. 21-23. - + 0001075 - + Informelles Lernen - + Zertifikat - + Arbeitsmarkt - + Weiterbildungssystem - + Bildungspolitik - + Schweden - 00592nM2.02200024 000h + 00000nM2.02200024 000h 1030325 20151216160603 - + a|||d||||||1| - + a - + a - + Mikkelsen, Arild - + Conclusion. - + Arild Mikkelsen - + 2003 - + (2003)1, S. 24-28. - + 0001075 - + Kompetenzentwicklung - + Informelles Lernen - + Zertifikat - + Europäische Union - + Skandinavien - 00593nM2.02200024 000h + 00000nM2.02200024 000h 0000034 20151216160603 - + a|||d||||||37 - + a - + Schweizerischer Verband für Weiterbildung - + Education permanente - + Zeitschrift d. SVEB, Schweiz ; schweizerische Zeitschrift für Erwachsenenbildung - + Zürich - + SVEB - + 1976 - 2003 - + Zeitschrift - + Schweiz - 00594nM2.02200024 000h + 00000nM2.02200024 000h 1030326 20151216160603 - + a|||d||||||37 - + a - + a - + Lehr- und Lernberatung [Themenheft] - + 2003 - + 37(2003)1, S. 3-43. - + 0000034 - + Lernberatung - + Lehren - + Weiterbildung - + Qualität - + Methodik - + Reflexion - 00596nM2.02200024 000h + 00000nM2.02200024 000h 1030327 20151216160603 - + a|||d||||||1| - + a - + a - + Thomann, Geri - + Beratung in pädagogischen Arbeitsfeldern: Ambivalenzen und Paradoxien. - + Geri Thomann - + 2003 - + 37(2003)1, S. 4-8. - + 0000034 - + Beratung - + Lernberatung - + Bildung - + Lehren - + Berufsfeld - 00598nM2.02200024 000h + 00000nM2.02200024 000h 1030328 20151216160603 - + a|||d||||||1| - + a - + a - + Schwarz Govaers, Renate - + Problemorientiertes Lernen in der Beratung. - + Renate Schwarz Govaers - + 2003 - + 37(2003)1, S. 10-12. - + 0000034 - + Lernen - + Didaktik - + Problemlösen - + Fallstudie - + Tutor - + Beratung - 00600nM2.02200024 000h + 00000nM2.02200024 000h 1030329 20151216160603 - + a|||d||||||1| - + a - + a - + Kündig, Hermann - + Einzelberatung für Lehrende: Zwischen Coaching und Therapie. - + Hermann Kündig - + 2003 - + 37(2003)1, S. 14-16. - + 0000034 - + Beratung - + Therapie - + Lehren - + Supervision - 00602nM2.02200024 000h + 00000nM2.02200024 000h 1030330 20151216160603 - + a|||d||||||1| - + a - + a - + Petignat, Pierre - + Akkari, AbdelJalil - + La supervision des mémoires professionnels et des stages - + une expertise nécessaire pour les - + Hautes Ecoles Pédagogiques. - + Pierre Petignat ; AbdelJalil Akkari - + 2003 - + 37(2003)1, S. 18-22. - + 0000034 - + Beratung - + Lehrerbildung - + Supervision - + Hochschule - + Schweiz - + Pädagogik - 00604nM2.02200024 000h + 00000nM2.02200024 000h 1030331 20151216160603 - + a|||d||||||1| - + a - + a - + Kuhn, Rolf - + Teamsupervision in Organisationen. - + Rolf Kuhn - + 2003 - + 37(2003)1, S. 24-27. - + 0000034 - + Teamberatung - + Supervision - + Organisationsberatung - 00606nM2.02200024 000h + 00000nM2.02200024 000h 1030332 20151216160604 - + a|||d||||||1| - + a - + a - + Fröhlich Luini, Elisabeth - + Gedanken zur Qualität von Beratung. - + Elisabeth Fröhlich Luini - + 2003 - + 37(2003)1, S. 28-30. - + 0000034 - + Beratung - + Evaluation - + Theorie - + Qualität - + Kriterium - 00608nM2.02200024 000h + 00000nM2.02200024 000h 1030333 20151216160604 - + a|||d||||||1| - + a - + a - + Thébaud, Marc - + Action-formation - + coaching, supervision et analyse de pratiques professionelles. - + Marc Thébaud - + 2003 - + 37(2003)1, S. 32-34. - + 0000034 - + Coaching - + Supervision - + Beratung - + Lernen - + Handlungskompetenz - 00610nM2.02200024 000h + 00000nM2.02200024 000h 1030334 20151216160604 - + a|||d||||||1| - + a - + a - + Hufschmid, Esther - + Lernberatung - Das Lernen beraten. - + Esther Hufschmid - + 2003 - + 37(2003)1, S. 36-38. - + 0000034 - + Lernberatung - + Selbstgesteuertes Lernen - + Lernen - 00612nM2.02200024 000h + 00000nM2.02200024 000h 1030335 20151216160604 - + a|||d||||||1| - + a - + a - + Thomann, Geri - + Formen der Beratung - + Versuch einer Bergriffserklärung. - + Geri Thomann - + 2003 - + 37(2003)1, S. 40-43. - + 0000034 - + Supervision - + Coaching - + Kollegiale Beratung - + Lernberatung - + Teamberatung - + Begriff - + Definition - 00614nM2.02200024 000h + 00000nM2.02200024 000h 1030336 20151216160604 - + a|||d||||||1| - + a - + a - + Karrer, Hans-Peter - + Roth-Hunkeler, Theres - + Hans-Peter Karrer, dem langjährigen Leiter der Akademie für Erwachsenenbildung AEB. - + Hans-Peter Karrer ; Theres Roth-Hunkeler - + 2003 - + 37(2003)1, S. 48-50. - + 0000034 - + Interview - + Erwachsenenbildung - + Schweiz - + Lernberatung - 00616nM2.02200024 000h + 00000nM2.02200024 000h 1030337 20151216160604 - + a|||d||||||1| - + a - + a - + Dräger, Horst - + Alexander Kapp: Pädagogik und Andragogik in ihrem Zusammenhang (Teil 1). - + Horst Dräger - + 2003 - + 37(2003)1, S. 51-52. - + 0000034 - + Geschichte der Erwachsenenbildung - + Biographie - + Schweiz - + Erwachsenenbildung - 00618nM2.02200024 000h + 00000nM2.02200024 000h 1030338 20151216160604 - + a|||d||||||1| - + a - + a - + Schläfli, André - + Wohin treibt das schweizerische Modulsystem? - + André Schläfli - + 2002 - + 36(2002)3, S. 48-51. - + 0000034 - + Schweiz - + Modularisierung - + Berufsbildung - + Gesetzgebung - + Erwachsenenbildung - 00620nM2.02200024 000h + 00000nM2.02200024 000h 1030339 20151216160604 - + a|||d||||||1| - + a - + a - + Höyung, Stephan - + Jungnitz, Ludger - + Männerforschung als Teil der Gender-Forschung. - + Stephan Höyng ; Ludger Jungnitz - + 2002 - + 36(2002)3, S. 32-35. - + Bibl. - + 0000034 - + Gender-Ansatz - + Männerforschung - + Erwachsenenbildung - + Reflexion - 00622nM2.02200024 000h + 00000nM2.02200024 000h 1030340 20151216160604 - + a|||d||||||1| - + a - + a - + Marti, Madeleine - + Genderkompetente Didaktik in der Praxis. - + Madeleine Marti - + 2002 - + 36(2002)3, S. 24-26. - + 0000034 - + Gender-Ansatz - + Interview - + Erwachsenenbildung - + Didaktik - + Geschlechterrolle - + Kompetenz - 00624nM2.02200024 000h + 00000nM2.02200024 000h 1030341 20151216160604 - + a|||d||||||1| - + a - + a - + Herzog, Walter - + Gender in der Erwachsenenbildung - + Pädagogisierung eines politischen Problems? - + Walter Herzog - + 2002 - + 36(2002)3, S. 40-42. - + 0000034 - + Gender-Ansatz - + Erwachsenenbildung - + Didaktik - + Gesellschaft - + Pädagogik - 00625nM2.02200024 000h + 00000nM2.02200024 000h 0000028 20151216160605 - + a|||d||||||37 - + a - + International journal of lifelong education - + IJLE - + ed.: P. Jarvis .. - + Lewes, East Susses - + Falmer - + 1982 - 2003 - + 0260-1370 - + Zeitschrift - + Pädagogik - 00626nM2.02200024 000h + 00000nM2.02200024 000h 1030342 20151216160605 - + a|||d||||||1| - + a - + a - + Gallacher, Jim - + Crossan, Beth - + Field, John - + Merrill, Barbara - + Learning careers and the social space: exploring the fragile identities of adult returners in the new further education. - + Jim Gallacher ; Beth Crossan ; John Field - + 2002 - + 21(2002)6, S. 493-509. - + Bibl. - + 0000028 - + Lernen - + Erwachsenenbildung - + Bourdieu, Pierre - + Milieu - + Lernverhalten - + Empirische Untersuchung - + Lernen - + Erfahrung - + Lernen - + Erwachsener - 00628nM2.02200024 000h + 00000nM2.02200024 000h 1030343 20151216160605 - + a|||d||||||1| - + a - + a - + Boström, Ann-Kristin - + Informal learning in a formal context: problematizing the concept of social capital in a contemporary Swedish context. - + Ann-Kristin Boström - + 2002 - + 21(2002)6, S. 510-524. - + Bibl. - + 0000028 - + Empirische Untersuchung - + Lebenslanges Lernen - + Japan - + Intergenerationelles Lernen - + Sozialverhalten - + Modellversuch - 00630nM2.02200024 000h + 00000nM2.02200024 000h 1030344 20151216160605 - + a|||d||||||1| - + a - + a - + Edwards, Richard - + Ranson, Stewart - + Strain, Michael - + Reflexivity: towards a theory of lifelong learning. - + Richard Edwards ; Stewart Ranson ; Michael Strain - + 2002 - + 21(2002)6, S. 525-536. - + Bibl. - + 0000028 - + Reflexives Lernen - + Lebenslanges Lernen - + Vereinigtes Königreich - + Theorie - + Lernkultur - 00632nM2.02200024 000h + 00000nM2.02200024 000h 1030345 20151216160605 - + a|||d||||||1| - + a - + a - + Hammond, Cathie - + What is about education that makes us healthy? Exploring the education-health connection. - + Cathie Hammond - + 2002 - + 21(2002)6, S. 551-571. - + Bibl. - + 0000028 - + Gesundheit - + Gesundheitsbildung - + Bildung - + Erwachsenenbildung - + Vereinigtes Königreich - + Empirische Untersuchung - 00634nM2.02200024 000h + 00000nM2.02200024 000h 1030346 20151216160605 - + a|||d||||||1| - + a - + a - + Reybold, L. Earle - + Pragmatic epistemology: ways of knowingas ways of being. - + L. Earle Reybold - + 2002 - + 21(2002)6, S. 537-550. - + Bibl. - + 0000028 - + Wissen - + Lebenslanges Lernen - + Frau - + Empirische Untersuchung - + Wissen - + Transfer - + Erwachsenenbildung - + Malaysia - 00636nM2.02200024 000h + 00000nM2.02200024 000h 1030347 20151216160605 - + a|||d||||||1| - + a - + a - + Clegg, Sue - + McNulty, Katie - + The creation of learner identities as part of social inclution: gender, ethnicity and social space. - + Sue Clegg ; Katie McNulty - + 2002 - + 21(2002)6, S. 572-585. - + Bibl. - + 0000028 - + Projekt - + Erwachsenenbildung - + Vereinigtes Königreich - + Lernen - + Fallstudie - + Eltern - + Weiterbildung - + Gemeinwesenarbeit - + Vereinigtes Königreich - 00637nM2.02200024 000h + 00000nM2.02200024 000h 0001009 20151216160605 - + a|||d||||||37 - + a - + Lifelong learning in Europe - + LLinE - + Helsinki - + 1996-2003 - + 1239-6826 - 00638nM2.02200024 000h + 00000nM2.02200024 000h 1030348 20151216160605 - + a|||d||||||1| - + a - + a - + Jeris, Laurel - + Double-loop - + Learning in Teams. - + Laurel Jeris - + 2003 - + (2003)1, S. 8-17. - + Bibl. - + 0001009 - + Lernen - + Team - + Organisationsentwicklung - + Lebenslanges Lernen - + Gruppe - + Methodik - 00640nM2.02200024 000h + 00000nM2.02200024 000h 1030349 20151216160605 - + a|||d||||||1| - + a - + a - + Heikkinen, Hanna - + When Your Team Enjoys Playing Together - + the story of Team Academy, a learning school. - + Hanna Heikkinen - + 2003 - + (2003)1, S. 18-22. - + 0001009 - + Lernen - + Team - + Lebenslanges Lernen - + Methode - + Training - + Finnland - 00641nM2.02200024 000h + 00000nM2.02200024 000h 0000091 20151216160606 - + a|||d||||||37 - + a - - Pädagogische Rundschau <Frankfurt, Main> + + Pädagogische Rundschau <Frankfurt, Main> - + Frankfurt am Main [u.a.] - + Lang - + 1964 - 2003 - + 0030-9273 - 00642nM2.02200024 000h + 00000nM2.02200024 000h 1030350 20151216160606 - + a|||d||||||1| - + a - + a - + Hinrichs, Wolfgang - + Problemstau zwischen Berufs- und Allgemeinbildung - und die 'junge' Diskussion einer ' ganzheitlichen' Bildung. - + Wolfgang Hinrichs - + 2003 - + 57(2003)2, S. 225-242. - + 0000091 - + Allgemeinbildung - + Berufsbildung - + Reflexion - + Ganzheitlichkeit - 00643nM2.02200024 000h + 00000nM2.02200024 000h 0001036 20151216160606 - + a|||d||||||37 - + a - + Deutsche Evangelische Arbeitsgemeinschaft für Erwachsenenbildung - + Forum EB - + Beiträge und Berichte aus der evangelischen Erwachsenenbildung - + Deutsche Evangelische Arbeitsgemeinschaft für Erwachsenenbildung e.V. - + Frankfurt a.M. - + DEAE - + 1997 - 2003 - - Vorg. ---> Deutsche Evangelische Arbeitsgemeinschaft für Erwachsenenbildung: Nachrichtendienst / Deutsche Evangelische Arbeitsgemeinschaft für Erwachsenenbildung e.V., DEAE + + Vorg. ---> Deutsche Evangelische Arbeitsgemeinschaft für Erwachsenenbildung: Nachrichtendienst / Deutsche Evangelische Arbeitsgemeinschaft für Erwachsenenbildung e.V., DEAE - + 1433-769X - + 1997 - 2003 - 00644nM2.02200024 000h + 00000nM2.02200024 000h 1030351 20151216160606 - + a|||d||||||1| - + a - + a - + Strack, Helmut - + Erfahrungen und Tendenzen moderner Erwachsenenbildung. - + Helmut Strack - + 2002 - + (2002)4, S. 4-8. - + 0001036 - + Evangelische Erwachsenenbildung - + Weiterbildung - + Pluralisierung - + Reflexion - + Bildung - + Begriff - 00646nM2.02200024 000h + 00000nM2.02200024 000h 1030352 20151216160606 - + a|||d||||||1| - + a - + a - + Nüchtern, Michael - + Perspektive: Urteilsfähigkeit - + zum Bildungsauftrag der Kirche. - + Michael Nüchtern - + 2002 - + (2002)4, S. 8-12. - + 0001036 - + Reflexion - + Kirchliche Erwachsenenbildung - + Pluralisierung - + Bildung - + Begriff - 00648nM2.02200024 000h + 00000nM2.02200024 000h 1030353 20151216160606 - + a|||d||||||1| - + a - + a - + Rohrer, Carl - + Im terminologischen Dschungel des Lernens - + zum Begriff 'lernen'. - + Carl Rohrer - + 2002 - + (2002)4, S. 13-18. - + Bibl. - + 0001036 - + Lernen - + Selbstorganisiertes Lernen - + Selbstgesteuertes Lernen - + Begriff - + Definition - 00650nM2.02200024 000h + 00000nM2.02200024 000h 1030354 20151216160606 - + a|||d||||||1| - + a - + a - + Herre, Petra - + Vor neuen Herausforderungen: Gender Mainstreaming - Geschlechterdemokratie - + Genderaufgaben - + in der DEAE. - + Petra Herre - + 2002 - + (2002)4, S. 19-24. - + 0001036 - + Gender-Ansatz - + Evangelische Erwachsenenbildung - + DEAE - 00652nM2.02200024 000h + 00000nM2.02200024 000h 1030355 20151216160606 - + a|||d||||||1| - + a - + a - + Bauer, Annemarie - + Frauensichten - Männersichten - + Gespräch mit Professorin Dr. Annemarie Bauer. - + Annemarie Bauer - + 2002 - + (2002)4, S. 25-27. - + 0001036 - + Gender-Ansatz - + Interview - + Reflexion - 00654nM2.02200024 000h + 00000nM2.02200024 000h 1030356 20151216160606 - + a|||d||||||1| - + a - + a - + Steinacker, Peter - + Männersichten - Frauensichten - + Gespräch mit Kirchenpräsident Prof. Dr. Peter Steinacker. - + Peter Steinacker - + 2002 - + (2002)4, S. 28-30. - + 0001036 - + Gender-Ansatz - + Interview - + Kirchliche Erwachsenenbildung - + Protestantismus - 00656nM2.02200024 000h + 00000nM2.02200024 000h 1030357 20151216160606 - + a|||d||||||1| - + a - + a - + Seiverth, Andreas - + Aus dem Werkstattbericht einer Modernisierungsagentur - eine Polemik aus anlass der 'Hartz- Gesetze'. - + Andreas Seiverth - + 2002 - + (2002)4, S. 31-33. - + 0001036 - + Arbeitsmarkt - + Kritik - + Arbeitslosigkeit - + Weiterbildungspolitik - 00658nM2.02200024 000h + 00000nM2.02200024 000h 1030358 20151216160607 - + a|||d||||||1| - + a - + a - + Herre, Petra - + 'Eine Frau ist eine Frau ist eine Frau' - Frauenbildung zwischen Generationenwechsel und Gender Mainstreaming - + 5. Frauenkonferenz der DEAE. - + Petra Herre - + 2002 - + (2002)4, S. 34-38. - + 0001036 - + Frauenbildung - + Gender-Ansatz - + Evangelische Erwachsenenbildung - + Tagung - + Bericht - 00660nM2.02200024 000h + 00000nM2.02200024 000h 1030359 20151216160607 - + a|||d||||||1| - + a - + a - + Rösener, Antje - + 'Zart und genau mit dem fremden Gast!' - + Bibliodrama in der dritten Generation. - + Antje Rösener - + 2002 - + (2002)4, S. 39-41. - + 0001036 - + Bibliodrama - + Hermeneutik - + Methodik - + Reflexion - 00662nM2.02200024 000h + 00000nM2.02200024 000h 1030360 20151216160607 - + a|||d||||||1| - + a - + a - + Langstein, Franz - + Erinnern- Erzählen- Darstellen - + Multiplikatoren-Ausbildung. - + Franz Langstein - + 2002 - + (2002)4, S. 41-45. - + 0001036 - + Alter Mensch - + Kulturelle Bildung - + Methodik - + Erfahrungsorientiertes Lernen - + Multiplikator - + Seminar - 00664nM2.02200024 000h + 00000nM2.02200024 000h 1030361 20151216160607 - + a|||d||||||1| - + a - + a - + Wanzeck, Gerd-Ulrich - + 40 Jahre EAEW. - + Gerd-Ulrich Wanzeck - + 2002 - + (2002)4, S. 46-47. - + 0001036 - + Evangelische Erwachsenenbildung - + Geschichte der Erwachsenenbildung - + Bericht - + Baden-Württemberg - 00666nM2.02200024 000h + 00000nM2.02200024 000h 1030362 20151216160607 - + a|||d||||||1| - + a - + a - + Klumpp, Martin - + Evangelische Familien- und Erwachsenenbildung in Württemberg (EFEB) - + Jubiläum zum - + 40jährigen Bestehen. - + Martin Klumpp - + 2002 - + (2002)4, S. 49-51. - + 0001036 - + Evangelische Erwachsenenbildung - + Bildung - + Reflexion - + Baden-Württemberg - 00667nM2.02200024 000h + 00000nM2.02200024 000h 1030363 20151216160607 - + a|||d||||||1| - + a - + s - + Rieder, Karl - + Wissenschaftliches Arbeiten - + eine Einführung. - + Karl Rieder - + 1. Aufl. - + Wien - + öbv & hpt Verl.-Ges - + 2002 - + 71 S. - + Pädagogisches Wissen Aktuell - + ISBN 3-209-03683-7 - + Wissenschaftlichkeit - + Lerntechnik - + Schreiben - + Lesen - + Wissenschaft - + Statistik - + Empirische Forschung - + Präsentation - + Dissertation - + Einführung - + Pädagogik - + Handlungsforschung - 00668nM2.02200024 000h + 00000nM2.02200024 000h 1030364 20151216160607 - + a|||d||||||1| - + a - + m - + Zöllner, Uwe - + Praxisbuch Projektmanagement - + das neue, umfassende Handbuch für Führungskräfte und - + Projektmitarbeiter. - + Uwe Zöllner - + 1. Aufl. - + Bonn - + Galileo Buisness - + 2003 - + 610 S. - + Reg. - + ISBN 3-89842-343-3 - + Projektmanagement - + Projekt - + Praxis - + Handbuch - 00669nM2.02200024 000h + 00000nM2.02200024 000h 1030365 20151216160607 - + a|||d||||||37 - + a - + m - + Rost, Detlef H. [Hrsg.] - + Handwörterbuch pädagogische Psychologie - + Hrsg. Detlef H. Rost - + 2., überarb. und erw. Aufl. - + Weinheim - + Beltz - + 2001 - + XVI, 879 S. - + Bibl. - + ISBN 3-621-27491-X - + Pädagogische Psychologie - + Psychologie - + Handbuch - 00670nM2.02200024 000h + 00000nM2.02200024 000h 1030366 20151216160607 - + a|||d||||||1| - + a - + m - + Gage, Nathaniel L. - + Berliner, David C. - + Pädagogische Psychologie - + Nathaniel L. Gage ; David C. Berliner - + 5., vollständig überarb. Aufl. - + Weinheim - + Psychologie-Verl. Union - + 1996 - + XIII, 757 S. - + Bibl. - + ISBN 3-621-27311-5 - + Pädagogische Psychologie - + Persönlichkeitsbildung - + Intelligenz - + Sprache - + Begabung - + Lerntheorie - + Test - + Motivation - + Unterrichtsmethode - + Handbuch - 00671nM2.02200024 000h + 00000nM2.02200024 000h 1030367 20151216160607 - + a|||d||||||37 - + a - + m - + Krüger, Heinz-Hermann [Hrsg.] - + Handbuch Kindheits- und Jugendforschung. - + Hrsg. Heinz-Hermann Krüger - + Opladen - + Leske + Budrich - + 2002 - + 920 S. - + Bibl. - + ISBN 3-8100-3292-1 - + Jugendforschung - + Kinder- und Jugendforschung - + Handbuch - 00672nM2.02200024 000h + 00000nM2.02200024 000h 1030368 20151216160607 - + a|||d||||||37 - + a - + m - + Häcker, Hartmut [Hrsg.] - + Dorsch Psychologisches Wörterbuch - + Hrsg. Hartmut Häcker - + 13., überarb. und erw. Aufl. - + Bern [u.a.] - + Huber - + 1998 - + IX, 1166 S. - + Bibl. - + ISBN 3-456-83007-6 - + Psychologie - + Wörterbuch - 00673nM2.02200024 000h + 00000nM2.02200024 000h 1030369 20151216160607 - + a|||d||||||37 - + a - + m - + Heitmeyer, Wilhelm [Hrsg.] - + Internationales Handbuch der Gewaltforschung - + 1. Aufl. - + Hrsg. Wilhelm Heitmeyer - + Wiesbaden - + Westdt. Verl - + 2002 - + 1583 S. - + Reg. - + ISBN 3-531-13500-7 - + Gewalt - + Handbuch - + Forschung - + Interdisziplinär - 00674nM2.02200024 000h + 00000nM2.02200024 000h 0001009 20151216160607 - + a|||d||||||37 - + a - + Lifelong learning in Europe - + LLinE - + Helsinki - + 1996-2003 - + 1239-6826 - 00675nM2.02200024 000h + 00000nM2.02200024 000h 1030370 20151216160607 - + a|||d||||||1| - + a - + a - + Rubenson, Kjell - + Adult Eucation and Cohesion. - + Kjell Rubenson - + 2003 - + (2003)1, S. 23-31. - + Bibl. - + 0001009 - + Wissensgesellschaft - + Erwachsenenbildung - + Skandinavien - + Empirische Untersuchung - + Internationaler Vergleich - + Bildungspolitik - 00677nM2.02200024 000h + 00000nM2.02200024 000h 1030371 20151216160607 - + a|||d||||||1| - + a - + a - + Ouane, Adama - + Sirelius, Eeva-Inkeri - + Learning for Inclusion. - + Adama Ouane ; Eeva-Inkeri Sirelius - + 2003 - + (2003)1, S. 32-35. - + 0001009 - + Lernen - + Multikulturelle Gesellschaft - + UNESCO Institute for Education - + Interview - + Lebenslanges Lernen - 00679nM2.02200024 000h + 00000nM2.02200024 000h 1030372 20151216160608 - + a|||d||||||1| - + a - + a - + Niemelä, Seppo - + Education for Social Capital. - + Seppo Niemelä - + 2003 - + (2003)1, S. 37-42. - + 0001009 - + Skandinavien - + Erwachsenenbildung - + Bildungsgeschichte - + Ganzheitlichkeit - + Aufklärung - 00681nM2.02200024 000h + 00000nM2.02200024 000h 1030373 20151216160608 - + a|||d||||||1| - + a - + a - + Oels, Monika - + Lifelong Learning for Active Citizenship. - + Monika Oels - + 2003 - + (2003)1, S. 45-49. - + 0001009 - + Europäische Union - + Erwachsenenbildung - + Wissensgesellschaft - + Bildungspolitik - + Zivilgesellschaft - 00683nM2.02200024 000h + 00000nM2.02200024 000h 1030374 20151216160608 - + a|||d||||||1| - + a - + a - + Illeris, Knud - + Learning Changes through Life. - + Knud Illeris - + 2003 - + (2003)1, S. 51-60. - + Bibl. - + 0001009 - + Lebenslanges Lernen - + Lernen - + Alter - + Theorie - + Lerntheorie - 00684nM2.02200024 000h + 00000nM2.02200024 000h 0001461 20151216160608 - + a|||d||||||37 - + a - + Deutscher Volkshochschul-Verband - + Dis.kurs - + das Magazin des Deutschen Volkshochschul-Verbandes - + 10 - + Bonn - + DVV - + 2003 - + Deutscher Volkshochschulverband: DVV-Magazin Volkshochschule - + 1611-6712 - + http://vhs-dvv.server.de/ - 00685nM2.02200024 000h + 00000nM2.02200024 000h 1030375 20151216160608 - + a|||d||||||1| - + a - + a - + Reich-Claassen, Jutta - + Tippelt, Rudolf - + Studie der Uni München: Wer will was? - + Jutta Reich ; Rudolf Tippelt - + 2003 - + Heft 2, S. 4-8. - + 0001461 - + Weiterbildungsforschung - + Empirische Untersuchung - + Weiterbildungsverhalten - + Milieu - 00687nM2.02200024 000h + 00000nM2.02200024 000h 1030376 20151216160608 - + a|||d||||||1| - + a - + a - + Winnefeld, Kristin - + Fit für Europa? - + Rekordteilnehmerzahlen bei der DVV-Fachkonferenz : Sprachen in Nürnberg. - + Kristin Winnefeld - + 2003 - + Heft 2, S. 10-11. - + 0001461 - + Fremdsprache - + Fremdsprachenerwerb - + Deutscher Volkshochschulverband - + Konferenz - + Erwachsenenbildung - 00689nM2.02200024 000h + 00000nM2.02200024 000h 1030377 20151216160608 - + a|||d||||||1| - + a - + a - + Ragg, Martin - + Fiebig, Christian - + APOLL vernetzt die Alphabetisierungsarbeit. - + Martin Ragg ; Christian Fiebig - + 2003 - + Heft 2, S. 12-13. - + 0001461 - + Alphabetisierung - + Projekt - + E-Learning - + Volkshochschule - + Erwachsenenbildung - 00691nM2.02200024 000h + 00000nM2.02200024 000h 1030378 20151216160608 - + a|||d||||||1| - + a - + a - + Wöstmann, Wolfgang - + Kooperation und Konkurrenz - + bundesweite Tagung der Lernenden Regionen. - + Wolfgang Wöstmann - + 2003 - + Heft 2, S. 14-15. - + 0001461 - + Region - + Lernen - + Tagung - + Bericht - + Erwachsenenbildung - + Lernen - + Region - 00693nM2.02200024 000h + 00000nM2.02200024 000h 1030379 20151216160608 - + a|||d||||||1| - + a - + a - + Interview - + Lebensbegleitendes Lernen für alle. - + Interview - + 2003 - + Heft 2, S. 16-19. - + 0001461 - + Interview - + Bundesministerium für Bildung und Forschung - + Bildungspolitik - + Erwachsenenbildung - 00695nM2.02200024 000h + 00000nM2.02200024 000h 1030380 20151216160608 - + a|||d||||||1| - + a - + a - + Herrmann, Karsten - + Kurssturz der klassischen Bildung an der VHS? - + Karsten Herrmann - + 2003 - + Heft 2, S. 20-21. - + 0001461 - + Volkshochschule - + Tagung - + Bericht - + Erwachsenenbildung - 00697nM2.02200024 000h + 00000nM2.02200024 000h 1030381 20151216160608 - + a|||d||||||1| - + a - + a - + Massing, Marianne - + Zündend, nachhaltig, erprobt und übertragbar. - + Marianne Massing - + 2003 - + Heft 2, S. 22-23. - + 0001461 - - Deutsches Institut für Erwachsenenbildung <Bonn> + + Deutsches Institut für Erwachsenenbildung <Bonn> - + Preisverleihung - + Erwachsenenbildung - + Innovation - 00699nM2.02200024 000h + 00000nM2.02200024 000h 1030382 20151216160609 - + a|||d||||||1| - + a - + a - + Lösel, Jörg - + Deutsch für Ausländer - ein polymedialer Sprachkurs. - + Jörg Lösel - + 2003 - + Heft 2, S. 24-25. - + 0001461 - + Deutsch als Fremdsprache - + Sprachkurs - + Fernsehen - + Projekt - + Volkshochschule - + Erwachsenenbildung - 00701nM2.02200024 000h + 00000nM2.02200024 000h 1030383 20151216160609 - + a|||d||||||1| - + a - + a - + Leyhe, Jochen - + EU-Beitrittsländer: Mehr als eine 'Problemzone'! - + Projekte des IIZ/DVV zur Erweiterung der - + Europäischen Union. - + Jochen Leyhe - + 2003 - + Heft 2, S. 26-27. - + 0001461 - + Europäische Union - + Deutscher Volkshochschulverband - - Institut für Internationale Zusammenarbeit <Bonn> + + Institut für Internationale Zusammenarbeit <Bonn> - + Projekt - 00702nM2.02200024 000h + 00000nM2.02200024 000h 1030384 20151216160609 - + a|||d||||||1| - + a - + m - + Tulodziecki, Gerhard - + Breuer, Klaus - + Hauf, Annemarie - + Konzepte für das berufliche Lehren und Lernen - + zur Vermittlung naturwissenschaftlicher - + Grundlagen, technischer Verfahren und neuer Technologien im beruflichen Unterricht. 2., - + durchgesehene Aufl. - + Gerhard Tulodziecki ; Klaus Breuer ; Annemarie Hauf - + Bad Heilbrunn [u.a.] - + Klinkhardt [u.a.] - + 1986 - + 160 S. - + Bibl. - + ISBN 3-7815-0587-1 ( - + Unterrichtsplanung - + Berufsschule - + Naturwissenschaftlicher Unterricht - + Technologischer Wandel - + Mikroelektronik - + Berufliche Bildung - + Didaktik - 00703nM2.02200024 000h + 00000nM2.02200024 000h 1030406 20151216160609 - + a|||d||||||37 - + a - + s - + Arbeitsbericht 2002 - + der Zentralen Einrichtung für Weiterbildung an der Universität Hannover. - + Hannover - + Zentrale Einrichtung für Weiterbildung, [ - + 2003 - + 97 S. - + Dokumentationen zur wissenschaftlichen Weiterbildung - + 42 - + ISBN 3-923492-37-5 - + Wissenschaftliche Weiterbildung - + Universitäre Weiterbildung - + Lehrerfortbildung - + Gasthörer - + Frauenstudium - + Berufliche Weiterbildung - + Niedersachsen - + Hannover - + Veranstaltungsforum - + Seminarkurs - + Weiterbildung - + Hochschulpersonal - + Hochschule - + Niedersachsen - + Hannover - 00704nM2.02200024 000h + 00000nM2.02200024 000h 1030407 20151216160609 - + a|||d||||||37 - + a - + s - + Korte, Hermann [Hrsg.] - + Einführung in Praxisfelder der Soziologie - + Hrsg. Hermann Korte - + 2., erw. und verbesserte Aufl. - + Opladen - + Leske + Budrich - + 1997 - + 290 S. - + Bibl. - + Einführungskurs Soziologie - + 4 - + ISBN 3-8252-8071-3 - + Soziologie - + Einführung - + Soziologie - + Praxis - 00705nM2.02200024 000h + 00000nM2.02200024 000h 1030408 20151216160609 - + a|||d||||||1| - + a - + s - + Korte, Hermann - + Einführung in die Geschichte der Soziologie - + Hermann Korte - + 6. Aufl. - + Opladen - + Leske + Budrich - + 2000 - + 215 S. - + Bibl. - + Einführungskurs Soziologie - + 2 - + ISBN 3-8252-8064-0 - + Einführung - + Soziologie - + Geschichte - 00706nM2.02200024 000h + 00000nM2.02200024 000h 1030409 20151216160609 - + a|||d||||||1| - + a - + s - + Treibel, Annette - + Einführung in soziologische Theorien der Gegenwart - + Anntette Treibel - + 5., aktualisierte und verbesserte Aufl. - + Opladen - + Leske + Budrich - + 2000 - + 275 S. - + Bibl. - + Einführung Soziologie - + 3 - + ISBN 3-8252-8070-5 - + Soziologie - + Gesellschafstheorie - + Einführung - 00707nM2.02200024 000h + 00000nM2.02200024 000h 1030410 20151216160609 - + a|||d||||||1| - + a - + m - + Stang, Richard - + Neue Medien in Organisationen der Weiterbildung - am Beispiel Volkshochschulen - + Auswertung - + einer Befragung. - + Richard Stang - + Bonn - + DIE - + 2001 - + 33 S. - + Volkshochschule - + Neue Medien - + Befragung - 00708nM2.02200024 000h + 00000nM2.02200024 000h 1030411 20151216160609 - + a|||d||||||1| - + a - + m - + Tietgens, Hans - - Pädagogische Arbeitsstelle <Frankfurt, Main, Deutscher Volkshochschul-Verband> + + Pädagogische Arbeitsstelle <Frankfurt, Main, Deutscher Volkshochschul-Verband> - + Zertifikate für Erwachsene - + Hans Tietgens - + [Frankfurt am Main] - + PAS-DVV - + [1969] - + 46 S. - + Volkshochschule - + Zertifikat - + Erwachsenenbildung - 00709nM2.02200024 000h + 00000nM2.02200024 000h 1030412 20151216160609 - + a|||d||||||37 - + a - + m - + Klems, Wilfgang [Hrsg.] - + Regionale Weiterbildungspolitik - + Konzepte und Praxisbeispiele aus der Region Rhein-Main. - + Hrsg. Wilfgang Klems - + 1. Aufl. - + München [u.a.] - + Hampp - + 2002 - + 137 S. - + Bibl. - + ISBN 3-87988-707-1 - + Weiterbildungsverhalten - + Schlüsselqualifikation - + Klein- und Mittelbetriebe - + Hessen - + Betriebliche Weiterbildung - + Hessen - + Weiterbildungspolitik - + Hessen - + Region - + Weiterbildung - 00710nM2.02200024 000h + 00000nM2.02200024 000h 1030413 20151216160609 - + a|||d||||||1| - + a - + s - + Rösgen, Anne - + Kratz, Maria-Theresia - + Chancengleichheit und Gender Mainstreaming in der EU - + Anne Rösgen ; Maria-Theresia Kratz - + 1. Aufl. - + Berlin [u.a.] - + Fachhochschul-Fernstudienverband der Länder - + 2003 - + 64 S. - + Bibl. - + Europäisches Recht ; Studienbrief - + 2-010-0312 - + Gender-Ansatz - + Geschlecht - + Politik - + Gleichberechtigung - + Lehrbrief - + Europäische Union - + Recht - 00711nM2.02200024 000h + 00000nM2.02200024 000h 1030414 20151216160609 - + a|||d||||||1| - + a - + s - + Sandau, Elke - + Gnahs, Dieter - + Peine als Lernende Region - Qualitätsangebote und -bedarfe. - + Elke Sandau ; Dieter Gnahs - + Hannover - + Inst. für Entwicklungsplanung und Strukturforschung - + 2002 - + Getr. Zähl. - + Bibl. - + IES-Projektbericht - + 103.02 - + Region - + Netzwerk - + Unternehmen - + Kooperation - + Berufliche Weiterbildung - + Projekt - + Niedersachsen - + Peine - + Erwachsenenbildung - + Niedersachsen - + Peine - + Lernen - + Region - + Weiterbildungsangebot - + Niedersachsen - + Peine - + Weiterbildungsbedarf - + Niedersachsen - + Peine - + Erwachsenenbildungsstätte - + Niedersachsen - + Peine - 00712nM2.02200024 000h + 00000nM2.02200024 000h 1030415 20151216160609 - + a|||d||||||1| - + a - + m - + Baumgartner, Peter - + Payr, Sabine - + Studieren und Forschen mit dem Internet. - + Peter Baumgartner ; Sabine Payr - + Innsbruck [u.a.] - + Studien Verl - + 2001 - + 257 S. - + Reg. - + ISBN 3-7065-1319-6 - + Wissenschaftlichkeit - + Studium - + Forschung - + Lerntechnik - + Internet - + Lesen - + Schreiben - + Recherche - + Präsentation - + Veröffentlichung - 00713nM2.02200024 000h + 00000nM2.02200024 000h 1030416 20151216160609 - + a|||d||||||37 - + a - + s - + Wobbe, Theresa [Hrsg.] - + Frauen in Akademie und Wissenschaft - + Arbeitsorte und Forschungspraktiken 1700-2000. - + Hrsg. Theresa Wobbe - + Berlin - + Akademie Verl - + 2002 - + VIII, 237 S. - + Bibl. - + Interdisziplinäre Arbeitsgruppen Forschungsberichte - + 10 - + ISBN 3-05-003639-7 - + Preussische Akademie der Wissenschaften - + Frau - + Sozialgeschichte - + Wissenschaft - + Studentin - + Forschung - + Gender-Ansatz - + Wissenschaftler - + Frau - + Wissenschaft - + Arbeitsorganisation - 00714nM2.02200024 000h + 00000nM2.02200024 000h 1030417 20151216160609 - + a|||d||||||1| - + a - + m - + Postman, Neil - + Keine Götter mehr - + das Ende der Erziehung. - + Neil Postman - + 3. Aufl. - + Berlin - + Berlin Verl - + 1996 - + 247 S. - + ISBN 3-8270-0170-6 - + Schulpädagogik - + Erziehung - + Innovation - + Schule - + Krise - + Schulreform - 00715nM2.02200024 000h + 00000nM2.02200024 000h 1030418 20151216160609 - + a|||d||||||1| - + a - + s - + Bodendorf, Freimut - + Scherler, Manfred - + Uelpenich, Sascha - + E-Teaching in der Hochschule - + technische Infrastrukturen und didaktische Gestaltung. - + Freimut Bodendorf ; Manfred Scherler ; Sascha Uelpenich - + Lohmar [u.a.] - + Eul, 2002. - X, 119 S. - + 2002 - + Bibl. - + Reihe: E-Learning - + 3 - + ISBN 3-89012-971-4 - + Telelernen - + Multimedia - + E-Learning - + Mediendidaktik - + Technische Ausrüstung - + Hochschule - + Studium - + Projekt - + Erlangen - + Universität - + Erlangen - 00716nM2.02200024 000h + 00000nM2.02200024 000h 1030419 20151216160610 - + a|||d||||||1| - + a - + m - + Haag, Herbert - + Bildung und Erziehung in Deutschland - + Niedergang und Aufstiegschancen. - + Herbert Haag - + Berlin - + Logos Verl - + 2002 - + 201 S. - + ISBN 3-89722-860-2 - + Eltern - + Berufsausbildung - + Berufliche Weiterbildung - + Bildungsreform - + Deutschland - + Bildung - + Deutschland - + Erziehung - + Deutschland - + Bildungswesen - + Deutschland - + Schule - + Zukunft - 00717nM2.02200024 000h + 00000nM2.02200024 000h 1030420 20151216160610 - + a|||d||||||37 - + a - + m - + Koziol, Klaus [Hrsg.] - + Wissen, spielen, unterhalten - + Einblicke in multimediale Welten. - + Hrsg. Klaus Koziol - + München - + KoPäd Verl - + 2000 - + 105 S. - + Bibl. - + ISBN 3-934079-08-3 - + Medienforschung - + Multimedia - + Internet - + Spiel - + Wissen - + Medien - + Nutzung - + Computer - + Spiel - + Wissensvermittlung - + Neue Medien - + Software - + Bewertung - + Software - + Preisverleihung - + Internet - + Pädagogik - 00718nM2.02200024 000h + 00000nM2.02200024 000h 1030421 20151216160610 - + a|||d||||||37 - + a - + s - + Bausch, Karl-Richard [Hrsg.] - + ¬Der¬ Gemeinsame europäische Referenzrahmen für Sprachen in der Diskussion - + Arbeitspapiere der 22. Frühjahrskonferenz zur Erforschung des Fremdsprachenunterrichts. - + Hrsg. Karl-Richard Bausch - + Tübingen - + Narr - + 2003 - + 209 S. - + Bibl. - + Giessener Beiträge zur Fremdsprachendidaktik - + ISBN 3-8233-5325-X - + Sprachlehrforschung - + Didaktik - + Lehr-Lern-Forschung - + Weiterbildung - + Europa - + Fremdsprachenunterricht - + Europa - + Fremdsprachenlehrer - + Weiterbildung - 00719nM2.02200024 000h + 00000nM2.02200024 000h 1030422 20151216160610 - + a|||d||||||37 - + a - + s - + Sander, Günther [Hrsg.] - + Nicht ob, sondern wie: Migration und Integration - + ihre Gestaltung und Konsequenzen. - + Hrsg. Günther Sander - + Mainz - + Logophon Verl - + 2001 - + 98 S. - + Bibl. - + Internationale Schriftenreihe des Pädagogischen Instituts der Johannes Gutenberg-Universität - + 15 - + ISBN 3-922514-61-8 - + Migration - + Integration - + Politik - + Interkulturelles Lernen - + Medien - + Schule - + Bildungssystem - + Schweden - + Integration - + Schweden - 00720nM2.02200024 000h + 00000nM2.02200024 000h 1030423 20151216160610 - + a|||d||||||1| - + a - + m - + Grossklaus-Seidel, Marion - + Kirche und Arbeitslosigkeit im 19. Jahrhundert - + der sozialgestaltende Beitrag evangelischer - + Erwachsenenbildung. - + Marion Grossklaus-Seidel - + Waltrop - + Spenner - + 2002 - + 366 S. - + Bibl. - + ISBN 3-933688-10-8 - + Sozialgeschichte - + Neunzehntes Jahrhundert - + Arbeitslosigkeit - + Evangelische Kirche - + Evangelische Erwachsenenbildung - + Erwachsenenbildung - + Katholische Erwachsenenbildung - + Kirchen - 00721nM2.02200024 000h + 00000nM2.02200024 000h 1030425 20151216160610 - + a|||d||||||37 - + a - + s - + Dohmen, Dieter [Hrsg.] - + Cleuvers, Birgitt A. [Hrsg.] - + Forschungsinstitut für Bildungs- und Sozialökonomie (Köln) - + Finanzierung von Weiterbildung und lebenslangem Lernen - + Dokumentation der Konferenz des Forschungsinstituts für Bildungs- und Sozialökonomie am 8. und 9. April 2002 in Köln - + Dieter Dohmen ; Birgitt A. Cleuvers (Hrsg.) - + Bielefeld - + Bertelsmann - + 2003 - + 247 S. - + Schriften zur Bildungs- und Sozialökonomie - + 2 - + Beitr. teilw. dt., teilw. engl. - Literaturangaben - + ISBN 3-7639-3079-5 - + Lebenslanges Lernen - + Deutschland - + Vereinigte Staaten - + Tschechische Republik - + Dänemark - + Japan - + Großbritannien - + Niederlande - + Frankreich - + Schweden - + Köln - + Weiterbildungsfinanzierung - + Internationaler Vergleich - + Weiterbildungsfinanzierung - - Konferenz <2002 Köln> + + Konferenz <2002 Köln> - 00722nM2.02200024 000h + 00000nM2.02200024 000h 1030426 20151216160610 - + a|||d||||||1| - + a - + m - + Kwapis, Jörg - + ¬Der¬ beschleunigte Körper - + die Thesen Paul Virilios im pädagogischen Kontext und ein Beitrag zur - + Diskussion der Zeit in der Pädagogik. - + Jörg Kwapis - + Berlin - + Weissensee Verl - + 2002 - + 307 S. - + Bibl. - + Zugl.: Berlin, Techn. Univ., Diss., 2002 - + ISBN 3-934479-64-2 - + Virilio, Paul - + Sozialphilosophie - + Pädagogik - + Zeit - + Raum - + Körper - + Mensch - + Technik - + Bildung - 00723nM2.02200024 000h + 00000nM2.02200024 000h 1030427 20151216160610 - + a|||d||||||1| - + a - + m - + Autorengruppe E-Writing.de - + E-Learning und E-Kooperation in der Praxis. - + Autorengruppe E-Writing.de - + Neuwied [u.a.] - + Luchterhand - + 2002 - + XXXIII, 349 S. - + ISBN 3-472-04528-0 - + E-Learning - + Telelernen - + Kooperation - + Netzwerk - + Unternehmen - + Internet - + Projekt - 00724nM2.02200024 000h + 00000nM2.02200024 000h 1030428 20151216160610 - + a|||d||||||1| - + a - + s - + Bohlinger, Sandra - + Ausbildungsabbruch - + Einblick in eine vermeintliche Randerscheinung des deutschen Bildungssystems - + Sandra Bohlinger - + Aachen - + Shaker Verl - + 2002 - + 165 S. - + Bibl. - + Berichte aus der Sozialwissenschaft - + ISBN 3-8322-0806-2 - + Berufliche Bildung - + Projekt - + Beratung - + Jugendlicher - + Befragung - + Berufsausbildung - + Abbruch - 00725nM2.02200024 000h + 00000nM2.02200024 000h 1030429 20151216160610 - + a|||d||||||1| - + a - + m - + Goetze, Walter - + ¬Der¬ dritte Lernort - + Bildung für die Praxis, Praxis für die Bildung. - + Walter Goetze - + 1. Aufl. - + Wil - + hep-Verl - + 2002 - + 143 S. - + Bibl. - + ISBN 3-905905-82-5 - + Fähigkeit - + Transfer - + Bibliothek - + Wettstein, Emil - + Schweiz - + Schweiz - + Berufsausbildung - + Theorie - + Praxis - + Berufsbildungsgesetz - + Schweiz - + Selbstlernzentrum - + Virtualität - + Bibliothek - + Virtualität - 00726nM2.02200024 000h + 00000nM2.02200024 000h 1030429 20151216160610 - + a|||d||||||1| - + a - + m - + Goetze, Walter - + ¬Der¬ dritte Lernort - + Bildung für die Praxis, Praxis für die Bildung. - + Walter Goetze - + 1. Aufl. - + Wil - + hep-Verl - + 2002 - + 143 S. - + Bibl. - + ISBN 3-905905-82-5 - + Fähigkeit - + Transfer - + Bibliothek - + Wettstein, Emil - + Schweiz - + Schweiz - + Berufsausbildung - + Theorie - + Praxis - + Berufsbildungsgesetz - + Schweiz - + Selbstlernzentrum - + Virtualität - + Bibliothek - + Virtualität - 00727nM2.02200024 000h + 00000nM2.02200024 000h 1030430 20151216160610 - + a|||d||||||1| - + a - + a - + Gresele, Anita - + ¬Die¬ Digithek - Selbstlernzentrum der Zukunft - + die Bibliothek - Ort - Raum des Lernens? Und - + welche Rolle spielt darin die viertuelle Bibliothek? - + Anita Gresele - + Wil [u.a.] - + hep-Verl., - + 2002 - + - S. 97-126. - + Bibl. - + 1030429 - + Bibliothek - + Lernen - + Lebenslanges Lernen - + Lernarrangement - + Bibliothek - + Virtualität - + Bibliothek - + Entwicklung - + Bibliothek - + Zukunft - 00728nM2.02200024 000h + 00000nM2.02200024 000h 1030431 20151216160610 - + a|||d||||||37 - + a - + m - + ¬Der¬ Landesverband der Volkshochschulen Niedersachsens - + Bericht 2003. - + Hannover - + Landesverband der Volkshochschulen Niedersachsens - + 2003 - + 30 S. - + Tätigkeitsbericht - + Erwachsenenbildung - + Kulturelle Bildung - + Politische Bildung - + Weiterbildung - + E-Learning - + Niedersachsen - + Volkshochschulverband - + Niedersachsen - 00729nM2.02200024 000h + 00000nM2.02200024 000h 1030432 20151216160610 - + a|||d||||||37 - + a - + m - + Gütesiegelverbund Weiterbildung im Regierungsbezierk Arnsberg - + Gütesiegelverbund Weiterbildung im Regierungsbezierk Arnsberg - + 1. Aufl. - + Bielefeld - + Druck und Medien - + 2003 - + 28 S. - + Qualitätsmanagement - + Zertifikat - + Nordrhein-Westfalen - + Weiterbildung - + Nordrhein-Westfalen - 00730nM2.02200024 000h + 00000nM2.02200024 000h 1030433 20151216160610 - + a|||d||||||37 - + a - + s - - Brandenburg <Staat> / Ministerium für Bildung, Jugend und Sport + + Brandenburg <Staat> / Ministerium für Bildung, Jugend und Sport - + Lernen - ein leben lang! - + Weiterbildungsbericht 1997 bis 2001 Land Brandenburg - + Potsdam - + Ministerium für Bildung, Jugend und Sport des Landes Brandenburg - + 2003 - + 128 S. - + Berichte und Bilanzen - + Lebenslanges Lernen - + Förderungspolitik - + Bildungsfinanzierung - + Bildungsurlaub - + Wissenschaftliche Weiterbildung - + Politische Erwachsenenbildung - + Berufliche Weiterbildung - + Ökologische Weiterbildung - + Weiterbildung im Strafvollzug - + Strafgefangener - + Strafvollzug - + Brandenburg - + Weiterbildung - + Brandenburg - 00731nM2.02200024 000h + 00000nM2.02200024 000h 1030434 20151216160610 - + a|||d||||||2| - + a - + s - + Arbeitslosenprojekt TuWas - + Arbeitslosenrecht - + die Gesetzessammlung für Arbeitslose, ihre Berater und Beraterinnen. 8. - + überarb. Aufl. - + Arbeitslosenprojekt TuWas - + Frankfurt a.M. - + Fachhochschulverl - + 2003 - + getr. Zähl. - + Arbeitslosengruppe TuWas - + 40 - + ISBN 3-931297-99-3 - + Rechtsgrundlagen - + Handbuch - + Deutschland - + Arbeitslosigkeit - + Deutschland - + Gesetz - + Handbuch - 00732nM2.02200024 000h + 00000nM2.02200024 000h 1030435 20151216160611 - + a|||d||||||2| - + a - + s - + Arbeitslosengruppe TuWas - + Leitfaden für Arbeitslose - + der Rechtsratgeber zum SGB III. - + Arbeitslosengruppe TuWas - + 20. Aufl. - + Frankfurt a.M. - + Fachhochschulverlag - + 2003 - + 592 S. - + Arbeitslosengruppe TuWas - + 3 - + ISBN 3-931297-98-5 - + Rechtsgrundlagen - + Handbuch - + Deutschland - + Arbeitslosigkeit - + Deutschland - 00733nM2.02200024 000h + 00000nM2.02200024 000h 1030436 20151216160611 - + a|||d||||||1| - + a - + m - + Haug, Frigga - + Lernverhältnisse - + Selbstbewegungen und Selbstblockierungen. - + Frigga Haugg - + Hamburg - + Argument Verl - + 2003 - + 301 S. - + Bibl. - + ISBN 3-88619-324-1 - + Lernen - + Lerntheorie - + Lernpsychologie - + Lernbarriere - + Lernarrangement - + Lernerfahrung - + Lernen - + Tagebuch - + Lehren - + Lernen - 00734nM2.02200024 000h + 00000nM2.02200024 000h 1030437 20151216160611 - + a|||d||||||37 - + a - + s - + Schwerdtner, Peter [Hrsg.] - + Rechtshandbuch der Personalpraxis - + Erläuterungen, Checklisten und Musterformulierungen zum - + Arbeits-, Sozial- und Lohnsteuerrecht. - + Hrsg. Peter Schwerdtner - + 12. Aufl. - + München - + Luchterhand - + 2003 - + XIV, 1606 S. - + Reg. - + Human Resources - + ISBN 3-472-053-90-9 - + Steuerrecht - + Handbuch - + Recht - + Handbuch - + Sozialrecht - + Handbuch - + Arbeitsrecht - + Handbuch - + Lohn - + Steuerrecht - 00735nM2.02200024 000h + 00000nM2.02200024 000h 1030438 20151216160611 - + a|||d||||||1| - + a - + s - + Heimann, Klaus - + Benutzer-Handbuch - + Bestandsaufnahme, Profilanalyse und Aktionsplan. - + Klaus Heimann - + Frankfurt a.M. - + Union-Druckerei und Verl.-Anst - + 2001 - + Ordner - + Job-Navigator : die berufliche Zukunftsberatung kompetent, hilfreich, gut - + Berufliche Weiterbildung - + Bildungsberatung - + Weiterbildungsberatung - + Selbsteinschätzung - + Handbuch - + Kompetenz - + Handbuch - 00736nM2.02200024 000h + 00000nM2.02200024 000h 1030439 20151216160611 - + a|||d||||||1| - + a - + s - + Albert, Ruth - + Koster, Cor J. - + Empirie in Linguistik und Sprachlehrforschung - + ein methodologisches Arbeitsbuch. - + Ruth Albert ; Cor J. Koster - + Tübingen - + Narr - + 2002 - + VII, 179 S. - + Narr Studienbücher - + ISBN 3-8233-4985-6 - + Linguistik - + Sprachlehrforschung - + Methode - + Experiment - + Statistik - + Lehrbuch - + Empirische Forschung - 00737nM2.02200024 000h + 00000nM2.02200024 000h 1030440 20151216160611 - + a|||d||||||1| - + a - + s - + Holm, Ute - + Medienerfahrungen in Weiterbildungsveranstaltungen - + zur Rolle massenmedialen Hintergrundwissens in der allgemeinen und beruflichen Weiterbildung. - + Ute Holm - + Bielefeld - + Bertelsmann - + 2003 - + 200 S. - + Theorie und Praxis der Erwachsenenbildung - + ISBN 3-7639-1880-9 - + http://www.die-bonn.de/doks/holm0301.pdf Volltext - + Weiterbildung - + Erwachsenenbildung - + Berufliche Weiterbildung - + Unterrichtsgespräch - + Beobachtung - + Fragebogen - + Kurs - + Volkshochschule - + Medien - + Erfahrung - + Das Medienwissen und die daraus gewonnenen Erfahrungen der Teilnehmer von Weiterbildungsveranstaltungen beeinflussen unmittelbar erwachsenenpädagogische Lehr-Lernkonzepte. Mediennutzung z. B. von Fernseher und Computer dienen nicht nur zur Unterhaltung und der Verwaltung von Daten, sie sind auch zentrale Quellen der Wissensaneignung. Neben stoffbezogenen Kenntnissen beeinflussen vielfältig Erfahrungen aus dem alltäglichen Umgang mit Massenmedien das Kommunikationsklima im Weiterbildungsgeschehen. Aus den empirisch gewonnenen Ergebnissen lassen sich Überlegungen und Empfehlungen für ein erwachsenenpädagogisches Lehr-Lernmodell ableiten: Medieninformationen als Vorwissen in Bildungsveranstaltungen - so die grundlegende These- spielen eine wesentliche Rolle im Aneignungsprozess einzelner Lernsubjekte. Institutionalisierte Weiterbildungsprozesse sollten im Sinne eines Anschlusslernens an diesen Kenntnissen anzuknüpfen. (Verl.) - 00738nM2.02200024 000h + 00000nM2.02200024 000h 1030459 20151216160611 - + a|||d||||||37 - + a - + m - + Deutschland / Bundesministerium für Bildung und Forschung - + Grund- und Strukturdaten 2001/2002. - + Daten zur Bildung in Deutschland - + Hrsg.: Bundesministerium für Bildung und Forschung - + Bonn - + BMBF - + 2002 - + 493 S. - + Bildung - + Statistik - + Berufliche Bildung - + Weiterbildung - + Hochschulbildung - + Schule - + Kindergarten - + Ausbildungsförderung - + Deutschland - + Bildungsstatistik - + Deutschland diff --git a/src/test/resources/org/xbib/marc/dialects/mab/diskette/mgl.txt.xml b/src/test/resources/org/xbib/marc/dialects/mab/diskette/mgl.txt.xml index 7212f0b..4e4b035 100644 --- a/src/test/resources/org/xbib/marc/dialects/mab/diskette/mgl.txt.xml +++ b/src/test/resources/org/xbib/marc/dialects/mab/diskette/mgl.txt.xml @@ -1 +1 @@ -00001nM2.02200024 000h0000006581999051120110119Moers, Walter¬Die¬ 13 1/2 Leben des Käpt'n Blaubärdie halben Lebenserinnerungen eines Seebären ; mit zahlreichen Ill. u. unter Benutzung des "Lexikons der erklärungsbedürftigen Wunder, Daseinsformen und Phänomene Zamoniens und Umgebung" von Prof. Dr. Abdul NachtigallerWalter Moers¬Die¬ dreizehneinhalb Leben des Käpt'n BlaubärFrankfurtEichborn1999712 S.Ill.Nicht ausscheiden!3-8218-2969-9fest geb. : 49,80 DM2000421730001146100038291000591500002nM2.02200024 000h0000006721999051120110524Welsh, RenateMair, Martina ¬[Ill.]¬¬Das¬ kleine MoorgespenstRenate Welsh. Bilder von Martina MairHamburgOetinger199961 S.Ill.Sonne, Mond und Sterne3-7891-0557-0geb.20001547300005071000108810003002Gespenst00003nM2.02200024 000h0000006851999051120110520Sommer, JörgBaumann, Stephan ¬[Ill.]¬Wir spielen Indianerdas büffelstarke Spiel- und SpaßbuchJörg Sommer. Mit Ill. von Stephan Baumann1. Aufl.WürzburgArena1997175 S.zahlr. Ill.Arena-Taschenbuch ; 329In neuer Rechtschreibung3-401-00329-1kt. : 12,902000165210001168Krähenindianer Falkenauge führt durch die Sammlung von Spielen, Bastelanleitungen, Rezepten, Rätseln, Witzen etc. und regt dazu an, einen eigenen00004nM2.02200024 000h0000006881999051120110520Dorris, MichaelGuests <dt.>FremdeMichael Dorris. Mit Ill. von Wolfgang SlwaskiDt. Erstausg.RavensburgRavensburger Buchverl.1996126 S.Ill.21 cmAus dem Engl. übers.3-473-34268-8geb. : 10,12 EUR2000155410001095IndianerDer Indianerjunge Moos (13) ist nicht damit einverstanden, daß sein Vater notleidende weiße Siedle \ No newline at end of file +00000nM2.02200024 000h0000006581999051120110119Moers, Walter¬Die¬ 13 1/2 Leben des Käpt'n Blaubärdie halben Lebenserinnerungen eines Seebären ; mit zahlreichen Ill. u. unter Benutzung des "Lexikons der erklärungsbedürftigen Wunder, Daseinsformen und Phänomene Zamoniens und Umgebung" von Prof. Dr. Abdul NachtigallerWalter Moers¬Die¬ dreizehneinhalb Leben des Käpt'n BlaubärFrankfurtEichborn1999712 S.Ill.Nicht ausscheiden!3-8218-2969-9fest geb. : 49,80 DM2000421730001146100038291000591500000nM2.02200024 000h0000006721999051120110524Welsh, RenateMair, Martina ¬[Ill.]¬¬Das¬ kleine MoorgespenstRenate Welsh. Bilder von Martina MairHamburgOetinger199961 S.Ill.Sonne, Mond und Sterne3-7891-0557-0geb.20001547300005071000108810003002Gespenst00000nM2.02200024 000h0000006851999051120110520Sommer, JörgBaumann, Stephan ¬[Ill.]¬Wir spielen Indianerdas büffelstarke Spiel- und SpaßbuchJörg Sommer. Mit Ill. von Stephan Baumann1. Aufl.WürzburgArena1997175 S.zahlr. Ill.Arena-Taschenbuch ; 329In neuer Rechtschreibung3-401-00329-1kt. : 12,902000165210001168Krähenindianer Falkenauge führt durch die Sammlung von Spielen, Bastelanleitungen, Rezepten, Rätseln, Witzen etc. und regt dazu an, einen eigenen00000nM2.02200024 000h0000006881999051120110520Dorris, MichaelGuests <dt.>FremdeMichael Dorris. Mit Ill. von Wolfgang SlwaskiDt. Erstausg.RavensburgRavensburger Buchverl.1996126 S.Ill.21 cmAus dem Engl. übers.3-473-34268-8geb. : 10,12 EUR2000155410001095IndianerDer Indianerjunge Moos (13) ist nicht damit einverstanden, daß sein Vater notleidende weiße Siedle \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/dialects/unimarc/periouni.mrc.xml b/src/test/resources/org/xbib/marc/dialects/unimarc/periouni.mrc.xml index d6cc654..8de6eb5 100644 --- a/src/test/resources/org/xbib/marc/dialects/unimarc/periouni.mrc.xml +++ b/src/test/resources/org/xbib/marc/dialects/unimarc/periouni.mrc.xml @@ -1,7 +1,7 @@ - 00856nls 2200253 i 450 + 00000nls 2200253 i 450 0001246764 20130722161531.0 @@ -66,7 +66,7 @@ - 00976nas 2200313 i 450 + 00000nas 2200313 i 450 040085864 0000019210 20130319051019.0 @@ -146,7 +146,7 @@ - 00951nas 2200301 i 450 + 00000nas 2200301 i 450 040214699 0000144288 20130319051020.0 @@ -221,7 +221,7 @@ - 01058nas 2200313 i 450 + 00000nas 2200313 i 450 0000082280 0000082280 20130514135418.0 @@ -302,7 +302,7 @@ - 00963cas0 2200337 450 + 00000cas0 2200337 450 039249972 0001180967 20130319051021.0 @@ -388,7 +388,7 @@ - 01140nas 2200301 i 450 + 00000nas 2200301 i 450 078992079 0000602562 20130910161651.0 @@ -463,7 +463,7 @@ - 01305nas 2200397 i 450 + 00000nas 2200397 i 450 153073918 0000374096 20140108103300.0 @@ -571,7 +571,7 @@ - 01237nas 2200313 i 450 + 00000nas 2200313 i 450 039511855 0000087171 20130319051025.0 @@ -648,7 +648,7 @@ - 01342nas 2200337 i 450 + 00000nas 2200337 i 450 0000050707 0000050707 20130319051027.0 @@ -729,7 +729,7 @@ - 01165nas 2200313 i 450 + 00000nas 2200313 i 450 038657619 0000006328 20131008133937.0 @@ -814,7 +814,7 @@ - 01416nas 2200373 i 450 + 00000nas 2200373 i 450 038657856 0000006300 20130319051027.0 @@ -910,7 +910,7 @@ - 01202nas 2200337 i 450 + 00000nas 2200337 i 450 039136795 0000505134 20130319051027.0 @@ -998,7 +998,7 @@ - 01189nls 2200349 i 450 + 00000nls 2200349 i 450 0000776607 0000776607 20130319051027.0 @@ -1085,7 +1085,7 @@ - 00950nas 2200289 i 450 + 00000nas 2200289 i 450 0000151929 0000151929 20130319051027.0 @@ -1154,7 +1154,7 @@ - 01359nas 2200373 i 450 + 00000nas 2200373 i 450 039525821 0000003417 20131219154359.0 @@ -1253,7 +1253,7 @@ - 01441nas 2200325 i 450 + 00000nas 2200325 i 450 039239306 0000006931 20130319051027.0 @@ -1342,7 +1342,7 @@ - 01039nas 2200289 i 450 + 00000nas 2200289 i 450 039802566 0000132092 20130522145055.0 @@ -1415,7 +1415,7 @@ - 01181nas 2200313 i 450 + 00000nas 2200313 i 450 039288579 0000147260 20130319051028.0 @@ -1496,7 +1496,7 @@ - 01255nas 2200325 i 450 + 00000nas 2200325 i 450 038658178 0000086031 20140110120345.0 @@ -1586,7 +1586,7 @@ - 01073nas 2200301 i 450 + 00000nas 2200301 i 450 040179419 0000057734 20130319051029.0 @@ -1663,7 +1663,7 @@ - 00845nas 2200265 i 450 + 00000nas 2200265 i 450 039408558 0000060618 20130319051029.0 @@ -1729,7 +1729,7 @@ - 01140cas0 2200325 450 + 00000cas0 2200325 450 037980491 0001095691 20130319051029.0 @@ -1813,7 +1813,7 @@ - 01047nas 2200313 i 450 + 00000nas 2200313 i 450 03958416X 0000006359 20130419103501.0 @@ -1894,7 +1894,7 @@ - 00858nas 2200289 i 450 + 00000nas 2200289 i 450 045075115 0000272146 20130319051029.0 @@ -1965,7 +1965,7 @@ - 01242nas 2200361 i 450 + 00000nas 2200361 i 450 038658267 0000010940 20130319051030.0 @@ -2057,7 +2057,7 @@ - 00986nls 2200277 i 450 + 00000nls 2200277 i 450 0000307140 0000307140 20130319051030.0 @@ -2125,7 +2125,7 @@ - 01396nas 2200397 i 450 + 00000nas 2200397 i 450 039219208 0000003770 20130903151604.0 @@ -2239,7 +2239,7 @@ - 01014nas 2200313 i 450 + 00000nas 2200313 i 450 040489434 0000190852 20130319051030.0 @@ -2321,7 +2321,7 @@ - 01134nas 2200337 i 450 + 00000nas 2200337 i 450 001294997 0000006406 20130918173727.0 @@ -2411,7 +2411,7 @@ - 01434nas 2200361 i 450 + 00000nas 2200361 i 450 039348547 0000002361 20130319051031.0 @@ -2511,7 +2511,7 @@ - 01149nas 2200325 i 450 + 00000nas 2200325 i 450 038899736 0000006364 20130319051031.0 @@ -2595,7 +2595,7 @@ - 01672nas 2200385 i 450 + 00000nas 2200385 i 450 038658445 0000006408 20130319051032.0 @@ -2691,7 +2691,7 @@ - 01150cas0 2200373 450 + 00000cas0 2200373 450 089908287 0000984912 20130319051032.0 @@ -2794,7 +2794,7 @@ - 00941nas 2200289 i 450 + 00000nas 2200289 i 450 002928612 0000058597 20130725094619.0 @@ -2868,7 +2868,7 @@ - 01116cas0 2200313 450 + 00000cas0 2200313 450 037461842 0001084126 20130319051033.0 @@ -2955,7 +2955,7 @@ - 00806nas 2200277 i 450 + 00000nas 2200277 i 450 0000006457 0000006457 20130319051033.0 @@ -3023,7 +3023,7 @@ - 00841nas 2200313 i 450 + 00000nas 2200313 i 450 038658844 0000006461 20131126174407.0 @@ -3102,7 +3102,7 @@ - 01114nas 2200349 i 450 + 00000nas 2200349 i 450 038658828 0000006459 20140108154945.0 @@ -3193,7 +3193,7 @@ - 01120nas 2200361 i 450 + 00000nas 2200361 i 450 039806693 0000006527 20130319051034.0 @@ -3286,7 +3286,7 @@ - 00974nas 2200301 i 450 + 00000nas 2200301 i 450 04018126X 0000191785 20130716100359.0 @@ -3361,7 +3361,7 @@ - 00828nls 2200265 i 450 + 00000nls 2200265 i 450 0001246661 20130716100128.0 @@ -3427,7 +3427,7 @@ - 01391nas 2200337 i 450 + 00000nas 2200337 i 450 038658917 0000007241 20131126174232.0 @@ -3515,7 +3515,7 @@ - 01536nas 2200385 i 450 + 00000nas 2200385 i 450 038658933 0000007373 20130319051035.0 @@ -3615,7 +3615,7 @@ - 01094nas 2200337 i 450 + 00000nas 2200337 i 450 03615766X 0000007500 20130319051035.0 @@ -3701,7 +3701,7 @@ - 01109cas0 2200325 450 + 00000cas0 2200325 450 081417284 0000940580 20130319051035.0 @@ -3786,7 +3786,7 @@ - 01050nas 2200325 i 450 + 00000nas 2200325 i 450 05547358X 0000480373 20130319051035.0 @@ -3874,7 +3874,7 @@ - 01176cas0 2200361 450 + 00000cas0 2200361 450 131689290 0001179227 20130319051035.0 @@ -3971,7 +3971,7 @@ - 01362nas 2200325 i 450 + 00000nas 2200325 i 450 038659239 0000007379 20130319051035.0 @@ -4054,7 +4054,7 @@ - 01290nas 2200349 i 450 + 00000nas 2200349 i 450 038659247 0000006410 20130319051035.0 @@ -4141,7 +4141,7 @@ - 01062nas 2200337 i 450 + 00000nas 2200337 i 450 03865928X 0000007224 20130725165248.0 @@ -4230,7 +4230,7 @@ - 01090cas0 2200337 450 + 00000cas0 2200337 450 074597043 0000941037 20130522165446.0 @@ -4322,7 +4322,7 @@ - 00826cas0 2200313 450 + 00000cas0 2200313 450 09500940X 0000926100 20130319051036.0 @@ -4403,7 +4403,7 @@ - 01394nas 2200349 i 450 + 00000nas 2200349 i 450 039219224 0000003495 20130319051036.0 @@ -4502,7 +4502,7 @@ - 01387nas 2200397 i 450 + 00000nas 2200397 i 450 069923124 0000653748 20130319051036.0 @@ -4612,7 +4612,7 @@ - 01103nas 2200325 i 450 + 00000nas 2200325 i 450 039085546 0000007281 20130319051038.0 @@ -4693,7 +4693,7 @@ - 01445cas0 2200457 450 + 00000cas0 2200457 450 114719926 0001117196 20130319051038.0 @@ -4826,7 +4826,7 @@ - 01038nas 2200325 i 450 + 00000nas 2200325 i 450 048760420 0000466487 20130902155551.0 @@ -4911,7 +4911,7 @@ - 01039cas0 2200361 450 + 00000cas0 2200361 450 039933393 0000730860 20130319051039.0 @@ -5007,7 +5007,7 @@ - 01238nas 2200349 i 450 + 00000nas 2200349 i 450 040463567 0000218109 20130319051039.0 @@ -5100,7 +5100,7 @@ - 01293nas 2200337 i 450 + 00000nas 2200337 i 450 0000121759 0000121759 20130319051039.0 @@ -5190,7 +5190,7 @@ - 01152nas 2200337 i 450 + 00000nas 2200337 i 450 038883538 0000135119 20130319051040.0 @@ -5281,7 +5281,7 @@ - 01044nas 2200313 i 450 + 00000nas 2200313 i 450 074054570 0000258872 20131114103233.0 @@ -5364,7 +5364,7 @@ - 00847nls 2200289 i 450 + 00000nls 2200289 i 450 0001007442 0001007442 20130319051041.0 @@ -5434,7 +5434,7 @@ - 00843nls 2200289 i 450 + 00000nls 2200289 i 450 0001007443 0001007443 20130319051041.0 @@ -5503,7 +5503,7 @@ - 01226cas0 2200385 450 + 00000cas0 2200385 450 146925637 0001201546 20130319051043.0 @@ -5606,7 +5606,7 @@ - 01661nas 2200433 i 450 + 00000nas 2200433 i 450 039219321 0000003491 20130319051043.0 @@ -5726,7 +5726,7 @@ - 00979nas 2200313 i 450 + 00000nas 2200313 i 450 0000095134 0000095134 20130319051044.0 @@ -5807,7 +5807,7 @@ - 00888cas0 2200265 450 + 00000cas0 2200265 450 037462415 0001079048 20130319051044.0 @@ -5875,7 +5875,7 @@ - 00807nas 2200253 i 450 + 00000nas 2200253 i 450 038718219 0001194704 20130506130352.0 @@ -5938,7 +5938,7 @@ - 01169nas 2200289 i 450 + 00000nas 2200289 i 450 038704226 0001194703 20130319051044.0 @@ -6013,7 +6013,7 @@ - 01017cas0 2200337 450 + 00000cas0 2200337 450 039934276 0001064206 20131105185105.0 @@ -6103,7 +6103,7 @@ - 01455nas 2200373 i 450 + 00000nas 2200373 i 450 067270379 0000007502 20140114170543.0 @@ -6203,7 +6203,7 @@ - 01638nas 2200361 i 450 + 00000nas 2200361 i 450 039397629 0000007512 20130319051045.0 @@ -6303,7 +6303,7 @@ - 01006nas 2200313 i 450 + 00000nas 2200313 i 450 040226360 0000009525 20130319051045.0 @@ -6386,7 +6386,7 @@ - 01563nls 2200325 450 + 00000nls 2200325 450 0000580240 0000580240 20130319051045.0 @@ -6470,7 +6470,7 @@ - 01397nas 2200385 i 450 + 00000nas 2200385 i 450 061112216 0000448266 20130319051045.0 @@ -6573,7 +6573,7 @@ - 00965nas 2200313 i 450 + 00000nas 2200313 i 450 03934861X 0000007511 20130319051045.0 @@ -6653,7 +6653,7 @@ - 01051nas 2200325 i 450 + 00000nas 2200325 i 450 040209261 0000135655 20130319051045.0 @@ -6739,7 +6739,7 @@ - 00939nas 2200289 i 450 + 00000nas 2200289 i 450 036306126 0000071997 20131220131016.0 @@ -6813,7 +6813,7 @@ - 01510nas 2200373 i 450 + 00000nas 2200373 i 450 038661454 0000008049 20130319051048.0 @@ -6915,7 +6915,7 @@ - 01523nas 2200373 i 450 + 00000nas 2200373 i 450 013301578 0000003497 20130708100708.0 @@ -7017,7 +7017,7 @@ - 01142nas 2200325 i 450 + 00000nas 2200325 i 450 039654966 0000008166 20130319051049.0 @@ -7100,7 +7100,7 @@ - 01236nls 2200337 i 450 + 00000nls 2200337 i 450 0000801859 0000801859 20130319051049.0 @@ -7182,7 +7182,7 @@ - 00988nls 2200289 i 450 + 00000nls 2200289 i 450 0000528344 0000528344 20130319051049.0 @@ -7250,7 +7250,7 @@ - 01636cas0 2200421 450 + 00000cas0 2200421 450 090868269 0001075772 20130319051049.0 @@ -7365,7 +7365,7 @@ - 01290nas 2200361 i 450 + 00000nas 2200361 i 450 038662248 0000051984 20130319051049.0 @@ -7460,7 +7460,7 @@ - 01079nas0 22003493 450 + 00000nas0 22003493 450 103612920 0000987814 20140115124148.0 @@ -7552,7 +7552,7 @@ - 01583nas 2200385 i 450 + 00000nas 2200385 i 450 013301705 0000008181 20130319051049.0 @@ -7652,7 +7652,7 @@ - 01543nls 2200385 i 450 + 00000nls 2200385 i 450 0000802734 0000802734 20130319051049.0 @@ -7747,7 +7747,7 @@ - 01524nas 2200385 i 450 + 00000nas 2200385 i 450 038662477 0000008187 20130319051049.0 @@ -7848,7 +7848,7 @@ - 01396nls 2200373 i 450 + 00000nls 2200373 i 450 0000802804 0000802804 20130319051049.0 @@ -7938,7 +7938,7 @@ - 01252nas 2200337 i 450 + 00000nas 2200337 i 450 038662574 0000008412 20130417183536.0 @@ -8023,7 +8023,7 @@ - 01440nls 2200361 i 450 + 00000nls 2200361 i 450 0000796022 0000796022 20130319051049.0 @@ -8114,7 +8114,7 @@ - 01581nas 2200409 i 450 + 00000nas 2200409 i 450 038895846 0000008426 20130319051049.0 @@ -8228,7 +8228,7 @@ - 01305nas 2200349 i 450 + 00000nas 2200349 i 450 038662914 0000008441 20131025111831.0 @@ -8316,7 +8316,7 @@ - 01873nas 2200433 i 450 + 00000nas 2200433 i 450 01330173X 0000003217 20131219154757.0 @@ -8442,7 +8442,7 @@ - 01100nas 2200325 i 450 + 00000nas 2200325 i 450 058363688 0000622043 20130319051050.0 @@ -8525,7 +8525,7 @@ - 00803nas 2200277 i 450 + 00000nas 2200277 i 450 040270955 0000183847 20140115164633.0 @@ -8596,7 +8596,7 @@ - 01322nas 2200349 i 450 + 00000nas 2200349 i 450 039333043 0000008482 20130319051051.0 @@ -8689,7 +8689,7 @@ - 01381nas 2200349 i 450 + 00000nas 2200349 i 450 039336875 0000008491 20130319051051.0 @@ -8779,7 +8779,7 @@ - 00862nas 2200277 i 450 + 00000nas 2200277 i 450 038663643 0000008540 20130319051051.0 @@ -8847,7 +8847,7 @@ - 01463nas 2200349 i 450 + 00000nas 2200349 i 450 038663783 0000008545 20130319051051.0 @@ -8933,7 +8933,7 @@ - 01471nas 2200349 i 450 + 00000nas 2200349 i 450 038663791 0000008548 20130319051051.0 @@ -9030,7 +9030,7 @@ - 01012nls 2200301 i 450 + 00000nls 2200301 i 450 0000532965 0000532965 20130319051051.0 @@ -9101,7 +9101,7 @@ - 01242cas0 2200385 450 + 00000cas0 2200385 450 038752727 0000955139 20130319051051.0 @@ -9210,7 +9210,7 @@ - 00977nas 2200289 i 450 + 00000nas 2200289 i 450 03882227X 0000051981 20130705130530.0 @@ -9285,7 +9285,7 @@ - 01284cas0 2200385 450 + 00000cas0 2200385 450 104797444 0001247633 20131128135044.0 @@ -9390,7 +9390,7 @@ - 01278nas 2200325 i 450 + 00000nas 2200325 i 450 038664348 0000051976 20140107173557.0 @@ -9472,7 +9472,7 @@ - 00952nls 2200301 i 450 + 00000nls 2200301 i 450 0001166220 0001166220 20130319051053.0 @@ -9545,7 +9545,7 @@ - 01271nas 2200337 i 450 + 00000nas 2200337 i 450 0000009577 0000009577 20130319051053.0 @@ -9636,7 +9636,7 @@ - 01414nas 2200325 i 450 + 00000nas 2200325 i 450 048884553 0000653741 20131220162405.0 @@ -9722,7 +9722,7 @@ - 01466cas0 2200325 450 + 00000cas0 2200325 450 036869694 0001125484 20130319051053.0 @@ -9806,7 +9806,7 @@ - 01017nas 2200289 i 450 + 00000nas 2200289 i 450 039659372 0000008524 20130930151157.0 @@ -9879,7 +9879,7 @@ - 01404cas0 2200397 450 + 00000cas0 2200397 450 076862186 0000691408 20130828104257.0 @@ -9985,7 +9985,7 @@ - 01056nas0 2200337 450 + 00000nas0 2200337 450 121408159 0001130579 20130319051056.0 @@ -10073,7 +10073,7 @@ - 01658nas 2200445 i 450 + 00000nas 2200445 i 450 039569667 0000003684 20130523093946.0 @@ -10198,7 +10198,7 @@ - 01652cas0 2200409 450 + 00000cas0 2200409 450 069186375 0001095111 20131015172755.0 @@ -10309,7 +10309,7 @@ - 01236nas 2200373 i 450 + 00000nas 2200373 i 450 039791289 0000003800 20130319051056.0 @@ -10410,7 +10410,7 @@ - 01455nas 2200385 i 450 + 00000nas 2200385 i 450 039237818 0000069933 20130828173224.0 @@ -10521,7 +10521,7 @@ - 01048cas0 2200361 450 + 00000cas0 2200361 450 11272955X 0001185781 20130319051056.0 @@ -10614,7 +10614,7 @@ - 01134nas 2200313 i 450 + 00000nas 2200313 i 450 039219461 0000003772 20130319051056.0 @@ -10699,7 +10699,7 @@ - 01189nas 2200325 i 450 + 00000nas 2200325 i 450 0000140649 0000140649 20130319051056.0 @@ -10781,7 +10781,7 @@ - 01152nas 2200313 i 450 + 00000nas 2200313 i 450 0000008538 0000008538 20130319051056.0 @@ -10860,7 +10860,7 @@ - 01022cas0 2200301 450 + 00000cas0 2200301 450 037931709 0001094576 20130319051056.0 @@ -10942,7 +10942,7 @@ - 00988cas0 2200313 450 + 00000cas0 2200313 450 013301888 0001095284 20130319051056.0 @@ -11023,7 +11023,7 @@ - 01006nas 2200325 i 450 + 00000nas 2200325 i 450 039285367 0000008541 20140106180032.0 @@ -11110,7 +11110,7 @@ - 00978nas 2200313 i 450 + 00000nas 2200313 i 450 039474658 0000008639 20130319051056.0 @@ -11190,7 +11190,7 @@ - 01819cas0 2200313 450 + 00000cas0 2200313 450 03751430X 0001094573 20130319051056.0 @@ -11273,7 +11273,7 @@ - 01213nas 2200325 i 450 + 00000nas 2200325 i 450 0000140652 0000140652 20130319051056.0 @@ -11355,7 +11355,7 @@ - 00967nas 2200289 i 450 + 00000nas 2200289 i 450 040337618 0000191991 20130319051056.0 @@ -11425,7 +11425,7 @@ - 00787cas0 2200241 450 + 00000cas0 2200241 450 039115453 0001081139 20131014142410.0 @@ -11485,7 +11485,7 @@ - 01498nas 2200349 i 450 + 00000nas 2200349 i 450 001012487 0000051954 20130319051056.0 @@ -11577,7 +11577,7 @@ - 00985nas 2200313 i 450 + 00000nas 2200313 i 450 039219623 0000051994 20130319051056.0 @@ -11654,7 +11654,7 @@ - 01251cas0 2200385 450 + 00000cas0 2200385 450 038556030 0001131699 20130319051056.0 @@ -11757,7 +11757,7 @@ - 01010nas 2200301 450 + 00000nas 2200301 450 002942488 0000133115 20130319051057.0 @@ -11833,7 +11833,7 @@ - 01374cas0 2200373 450 + 00000cas0 2200373 450 037553372 0001091536 20130319051057.0 @@ -11933,7 +11933,7 @@ - 01670nas 2200361 i 450 + 00000nas 2200361 i 450 013589121 0000003808 20130319051057.0 @@ -12025,7 +12025,7 @@ - 01242nas 2200313 i 450 + 00000nas 2200313 i 450 038670518 0000008654 20131217115022.0 @@ -12101,7 +12101,7 @@ - 00921cas0 2200277 450 + 00000cas0 2200277 450 038985640 0001071657 20130319051057.0 @@ -12177,7 +12177,7 @@ - 01242cas0 2200349 450 + 00000cas0 2200349 450 038743345 0001178159 20130319051057.0 @@ -12272,7 +12272,7 @@ - 01913cas0 2200397 450 + 00000cas0 2200397 450 039210790 0001119815 20130319051057.0 @@ -12383,7 +12383,7 @@ - 01061nas 2200301 i 450 + 00000nas 2200301 i 450 0000002914 0000002914 20130319051057.0 @@ -12463,7 +12463,7 @@ - 01056nas 2200313 i 450 + 00000nas 2200313 i 450 0000104795 0000104795 20130319051057.0 @@ -12543,7 +12543,7 @@ - 00962nas 2200301 i 450 + 00000nas 2200301 i 450 039219666 0000051412 20130319051057.0 @@ -12621,7 +12621,7 @@ - 01273nas 2200349 i 450 + 00000nas 2200349 i 450 039237915 0000005795 20130319051057.0 @@ -12710,7 +12710,7 @@ - 00874nas 2200253 i 450 + 00000nas 2200253 i 450 0000188852 0000188852 20130319051057.0 @@ -12771,7 +12771,7 @@ - 01041nas 2200349 i 450 + 00000nas 2200349 i 450 039239810 0000005918 20130319051057.0 @@ -12860,7 +12860,7 @@ - 01398cas0 2200397 450 + 00000cas0 2200397 450 039598772 0001076103 20130319051057.0 @@ -12965,7 +12965,7 @@ - 00913nas0 22002891 450 + 00000nas0 22002891 450 113688539 0001079082 20130319051057.0 @@ -13042,7 +13042,7 @@ - 01238cas0 2200349 450 + 00000cas0 2200349 450 036672831 0001120540 20130319051057.0 @@ -13139,7 +13139,7 @@ - 01343cas0 2200373 450 + 00000cas0 2200373 450 03872913X 0001213737 20130319051057.0 @@ -13240,7 +13240,7 @@ - 01273cas0 2200397 450 + 00000cas0 2200397 450 013304518 0001075040 20130319051057.0 @@ -13347,7 +13347,7 @@ - 01107cas0 2200337 450 + 00000cas0 2200337 450 038743388 0001075100 20130319051057.0 @@ -13436,7 +13436,7 @@ - 01003cas0 2200313 450 + 00000cas0 2200313 450 044692412 0001120054 20130319051057.0 @@ -13515,7 +13515,7 @@ - 01014cas0 2200313 450 + 00000cas0 2200313 450 038752573 0001076098 20130319051057.0 @@ -13601,7 +13601,7 @@ - 00995nas 2200289 i 450 + 00000nas 2200289 i 450 040265137 0000200429 20131023142718.0 @@ -13675,7 +13675,7 @@ - 01363nas 2200373 i 450 + 00000nas 2200373 i 450 0000117186 0000117186 20130715144745.0 @@ -13777,7 +13777,7 @@ - 00942nls 2200313 i 450 + 00000nls 2200313 i 450 0001191166 0001191166 20130319051057.0 @@ -13855,7 +13855,7 @@ - 01129cas0 2200301 450 + 00000cas0 2200301 450 039144763 0000896970 20130319051057.0 @@ -13937,7 +13937,7 @@ - 01188cas0 2200361 450 + 00000cas0 2200361 450 118773011 0001164806 20130319051057.0 @@ -14034,7 +14034,7 @@ - 01087nas 2200325 i 450 + 00000nas 2200325 i 450 059714883 0000319578 20131022145712.0 @@ -14119,7 +14119,7 @@ - 01463nas0 2200385 450 + 00000nas0 2200385 450 165245972 0001236670 20130319051057.0 @@ -14230,7 +14230,7 @@ - 01321cas0 2200361 450 + 00000cas0 2200361 450 09164979X 0000905976 20130524142832.0 @@ -14324,7 +14324,7 @@ - 01328nas 2200325 i 450 + 00000nas 2200325 i 450 037481681 0000003223 20130319051057.0 @@ -14410,7 +14410,7 @@ - 01357nas 2200349 i 450 + 00000nas 2200349 i 450 03984997X 0000091463 20131009144953.0 @@ -14505,7 +14505,7 @@ - 01474cas0 2200433 450 + 00000cas0 2200433 450 040217736 0000252465 20131108115725.0 @@ -14627,7 +14627,7 @@ - 01278nas 2200325 i 450 + 00000nas 2200325 i 450 036597376 0000070024 20130319051057.0 @@ -14711,7 +14711,7 @@ - 01033cas0 2200337 450 + 00000cas0 2200337 450 045103518 0000946508 20130319051057.0 @@ -14801,7 +14801,7 @@ - 02094nas 2200409 i 450 + 00000nas 2200409 i 450 037481703 0000003226 20130319051057.0 @@ -14914,7 +14914,7 @@ - 01461nas 2200349 i 450 + 00000nas 2200349 i 450 045233047 0000003220 20130319051057.0 @@ -15011,7 +15011,7 @@ - 01025nas 2200313 i 450 + 00000nas 2200313 i 450 0000072556 0000072556 20130412120927.0 @@ -15091,7 +15091,7 @@ - 01063nas 2200313 i 450 + 00000nas 2200313 i 450 0000080485 0000080485 20130319051057.0 @@ -15175,7 +15175,7 @@ - 00932nas 2200325 i 450 + 00000nas 2200325 i 450 073877069 0000482218 20130319051058.0 @@ -15258,7 +15258,7 @@ - 01297nas 2200337 i 450 + 00000nas 2200337 i 450 038855259 0000082578 20140103111228.0 @@ -15348,7 +15348,7 @@ - 00921nas 2200289 i 450 + 00000nas 2200289 i 450 0000157217 0000157217 20130319051058.0 @@ -15420,7 +15420,7 @@ - 01049nas 2200337 i 450 + 00000nas 2200337 i 450 0000124814 0000124814 20131114135905.0 @@ -15507,7 +15507,7 @@ - 00953nls 2200313 i 450 + 00000nls 2200313 i 450 0001125224 0001125224 20130319051058.0 @@ -15585,7 +15585,7 @@ - 01308nas 2200337 i 450 + 00000nas 2200337 i 450 03970369X 0000070033 20140108104947.0 @@ -15678,7 +15678,7 @@ - 01400cas0 2200397 450 + 00000cas0 2200397 450 118098594 0001245375 20131217154955.0 @@ -15791,7 +15791,7 @@ - 01119nas 2200337 i 450 + 00000nas 2200337 i 450 039657787 0000071783 20140108162705.0 @@ -15884,7 +15884,7 @@ - 01030nas 2200325 i 450 + 00000nas 2200325 i 450 036642150 0000217674 20130529140243.0 @@ -15971,7 +15971,7 @@ - 00843nls 2200301 i 450 + 00000nls 2200301 i 450 0001134966 0001134966 20130319051058.0 @@ -16045,7 +16045,7 @@ - 00946nas 2200289 i 450 + 00000nas 2200289 i 450 0000107584 20131213125128.0 @@ -16123,7 +16123,7 @@ - 01044nas 2200313 i 450 + 00000nas 2200313 i 450 0000250494 20140117162654.0 @@ -16207,7 +16207,7 @@ - 00943nls 2200325 i 450 + 00000nls 2200325 i 450 0001131333 0001131333 20130319051058.0 @@ -16289,7 +16289,7 @@ - 01335nas 2200385 i 450 + 00000nas 2200385 i 450 038842416 0000061793 20130319051058.0 @@ -16394,7 +16394,7 @@ - 00945nls 2200325 i 450 + 00000nls 2200325 i 450 0001113928 0001113928 20130319051058.0 @@ -16476,7 +16476,7 @@ - 00957nas 2200289 i 450 + 00000nas 2200289 i 450 0000050383 20131021131214.0 @@ -16557,7 +16557,7 @@ - 00948nls 2200325 i 450 + 00000nls 2200325 i 450 0001133459 0001133459 20140106115744.0 @@ -16639,7 +16639,7 @@ - 01083nas 2200313 i 450 + 00000nas 2200313 i 450 039142221 0000050376 20130527171449.0 @@ -16723,7 +16723,7 @@ - 01220nas 2200325 i 450 + 00000nas 2200325 i 450 0000680280 20140108101059.0 @@ -16815,7 +16815,7 @@ - 00882nas 2200289 i 450 + 00000nas 2200289 i 450 039384012 0000011328 20140108163928.0 @@ -16889,7 +16889,7 @@ - 00875nls 2200289 i 450 + 00000nls 2200289 i 450 0001111865 20131122133114.0 @@ -16962,7 +16962,7 @@ - 01032nas 2200313 i 450 + 00000nas 2200313 i 450 039678970 0000093207 20140106123710.0 @@ -17045,7 +17045,7 @@ - 00891nls 2200289 i 450 + 00000nls 2200289 i 450 0001135755 0001135755 20130405111414.0 @@ -17118,7 +17118,7 @@ - 01070nas 2200337 i 450 + 00000nas 2200337 i 450 0000046449 0000046449 20130319051058.0 @@ -17208,7 +17208,7 @@ - 00950nls 2200313 i 450 + 00000nls 2200313 i 450 0001135273 0001135273 20130319051058.0 @@ -17287,7 +17287,7 @@ - 00975nas 2200313 i 450 + 00000nas 2200313 i 450 0000068703 0000068703 20130319051058.0 @@ -17366,7 +17366,7 @@ - 00978nls 2200325 i 450 + 00000nls 2200325 i 450 0001135047 0001135047 20130319051058.0 @@ -17448,7 +17448,7 @@ - 01111nas 2200349 i 450 + 00000nas 2200349 i 450 039301915 0000160150 20130319051058.0 @@ -17539,7 +17539,7 @@ - 00968nls 2200325 i 450 + 00000nls 2200325 i 450 0001133702 0001133702 20130319051058.0 @@ -17620,7 +17620,7 @@ - 00975nls 2200325 i 450 + 00000nls 2200325 i 450 0001134320 0001134320 20130319051058.0 @@ -17702,7 +17702,7 @@ - 01031nas 2200325 i 450 + 00000nas 2200325 i 450 038846004 0000050381 20140110153614.0 @@ -17790,7 +17790,7 @@ - 00946nls 2200325 i 450 + 00000nls 2200325 i 450 0001134611 0001134611 20130319051058.0 @@ -17872,7 +17872,7 @@ - 00960nls 2200313 i 450 + 00000nls 2200313 i 450 0001137477 0001137477 20130319051058.0 @@ -17951,7 +17951,7 @@ - 00926nls 2200313 i 450 + 00000nls 2200313 i 450 0001133374 0001133374 20130319051058.0 @@ -18030,7 +18030,7 @@ - 00928nls 2200301 i 450 + 00000nls 2200301 i 450 0001173897 0001173897 20130319051058.0 @@ -18106,7 +18106,7 @@ - 01011nls 2200313 i 450 + 00000nls 2200313 i 450 0001137494 0001137494 20130319051058.0 @@ -18185,7 +18185,7 @@ - 01122nas 2200325 i 450 + 00000nas 2200325 i 450 040147649 0000055228 20140103144911.0 @@ -18274,7 +18274,7 @@ - 01012nls 2200313 i 450 + 00000nls 2200313 i 450 0001114519 0001114519 20130319051058.0 @@ -18353,7 +18353,7 @@ - 01097nas 2200289 i 450 + 00000nas 2200289 i 450 05798171X 0000101264 20131218141427.0 @@ -18428,7 +18428,7 @@ - 01169nas 2200325 i 450 + 00000nas 2200325 i 450 039118940 0000090680 20140103114556.0 @@ -18520,7 +18520,7 @@ - 00965nls 2200313 i 450 + 00000nls 2200313 i 450 0001173821 0001173821 20130319051058.0 @@ -18599,7 +18599,7 @@ - 01113nas 2200349 i 450 + 00000nas 2200349 i 450 0000128062 0000128062 20130319051058.0 @@ -18689,7 +18689,7 @@ - 01118nls 2200349 i 450 + 00000nls 2200349 i 450 0001130232 0001130232 20130319051058.0 @@ -18779,7 +18779,7 @@ - 00881nas 2200289 i 450 + 00000nas 2200289 i 450 160192463 0000071057 20130319051058.0 @@ -18850,7 +18850,7 @@ - 00889nas 2200265 i 450 + 00000nas 2200265 i 450 0000134417 20131017153541.0 @@ -18921,7 +18921,7 @@ - 00984nas 2200277 i 450 + 00000nas 2200277 i 450 0000047880 20131009152033.0 @@ -18995,7 +18995,7 @@ - 00962nls 2200313 i 450 + 00000nls 2200313 i 450 0001173896 0001173896 20130627111322.0 @@ -19074,7 +19074,7 @@ - 00914nas 2200265 i 450 + 00000nas 2200265 i 450 0000078292 20140110141147.0 @@ -19146,7 +19146,7 @@ - 01113nas 2200337 i 450 + 00000nas 2200337 i 450 04480623X 0000047882 20131009155201.0 @@ -19234,7 +19234,7 @@ - 00989nls 2200325 i 450 + 00000nls 2200325 i 450 0001132896 0001132896 20130319051058.0 @@ -19316,7 +19316,7 @@ - 00990cas0 2200301 450 + 00000cas0 2200301 450 044879563 0000204917 20131018155514.0 @@ -19400,7 +19400,7 @@ - 00918nls 2200313 i 450 + 00000nls 2200313 i 450 0001133711 0001133711 20130319051058.0 @@ -19479,7 +19479,7 @@ - 00772nas 2200301 i 450 + 00000nas 2200301 i 450 0000316493 0000316493 20130319051058.0 @@ -19554,7 +19554,7 @@ - 00935nls 2200313 i 450 + 00000nls 2200313 i 450 0001133494 0001133494 20130319051058.0 @@ -19632,7 +19632,7 @@ - 00952nas 2200313 i 450 + 00000nas 2200313 i 450 039289753 0000047494 20130319051058.0 @@ -19710,7 +19710,7 @@ - 00980nas 2200325 i 450 + 00000nas 2200325 i 450 039286878 0000061638 20130319051058.0 @@ -19792,7 +19792,7 @@ - 01151nas 2200337 i 450 + 00000nas 2200337 i 450 0000069908 0000069908 20130319051058.0 @@ -19876,7 +19876,7 @@ - 00938nls 2200301 i 450 + 00000nls 2200301 i 450 0001137569 0001137569 20130319051058.0 @@ -19950,7 +19950,7 @@ - 01127nas 2200337 i 450 + 00000nas 2200337 i 450 03965012X 0000047887 20130918095943.0 @@ -20041,7 +20041,7 @@ - 00993nls 2200313 i 450 + 00000nls 2200313 i 450 0001133377 0001133377 20130319051058.0 @@ -20118,7 +20118,7 @@ - 00954nls 2200313 i 450 + 00000nls 2200313 i 450 0001174110 0001174110 20130319051058.0 @@ -20196,7 +20196,7 @@ - 01153nas 2200349 i 450 + 00000nas 2200349 i 450 0000123888 0000123888 20130410091224.0 @@ -20289,7 +20289,7 @@ - 00884nls 2200301 i 450 + 00000nls 2200301 i 450 0001133364 0001133364 20130319051058.0 @@ -20362,7 +20362,7 @@ - 01030nas 2200301 i 450 + 00000nas 2200301 i 450 0000071067 0000071067 20130319051058.0 @@ -20440,7 +20440,7 @@ - 00900nls 2200325 i 450 + 00000nls 2200325 i 450 0001173832 0001173832 20131118142313.0 @@ -20523,7 +20523,7 @@ - 00968nls 2200313 i 450 + 00000nls 2200313 i 450 0001134321 0001134321 20130319051058.0 @@ -20602,7 +20602,7 @@ - 01029nas 2200313 i 450 + 00000nas 2200313 i 450 040090981 0000258604 20130328113041.0 @@ -20686,7 +20686,7 @@ - 01056nas 2200301 i 450 + 00000nas 2200301 i 450 037450204 0000062093 20130620161948.0 @@ -20768,7 +20768,7 @@ - 00958nls 2200301 i 450 + 00000nls 2200301 i 450 0001110313 0001110313 20130319051058.0 @@ -20844,7 +20844,7 @@ - 00911nls 2200313 i 450 + 00000nls 2200313 i 450 0001170794 0001170794 20130319051058.0 @@ -20923,7 +20923,7 @@ - 00986nls 2200313 i 450 + 00000nls 2200313 i 450 0001137562 0001137562 20130319051058.0 @@ -21002,7 +21002,7 @@ - 01092nas 2200301 i 450 + 00000nas 2200301 i 450 039325733 0000050373 20140108153337.0 @@ -21082,7 +21082,7 @@ - 01188nas 2200289 i 450 + 00000nas 2200289 i 450 0000071670 20140116115927.0 @@ -21161,7 +21161,7 @@ - 01175nas 2200313 i 450 + 00000nas 2200313 i 450 0000071065 0000071065 20130319051059.0 @@ -21243,7 +21243,7 @@ - 00932nas 2200301 i 450 + 00000nas 2200301 i 450 038883945 0000088891 20130319051059.0 @@ -21321,7 +21321,7 @@ - 01023nas 2200289 i 450 + 00000nas 2200289 i 450 036166871 0000071139 20131120115843.0 @@ -21401,7 +21401,7 @@ - 01012nas 2200301 i 450 + 00000nas 2200301 i 450 0000472277 20131125152456.0 @@ -21480,7 +21480,7 @@ - 00962nls 2200325 i 450 + 00000nls 2200325 i 450 0001114503 0001114503 20130319051059.0 @@ -21564,7 +21564,7 @@ - 01133nas 2200337 i 450 + 00000nas 2200337 i 450 037374354 0000061753 20131218120606.0 @@ -21652,7 +21652,7 @@ - 00994nls 2200313 i 450 + 00000nls 2200313 i 450 0001131193 0001131193 20130319051059.0 @@ -21731,7 +21731,7 @@ - 01304nas 2200337 i 450 + 00000nas 2200337 i 450 036635359 0000005959 20130319051059.0 @@ -21819,7 +21819,7 @@ - 01277nas0 2200385 450 + 00000nas0 2200385 450 113969449 0001103164 20130319051059.0 @@ -21925,7 +21925,7 @@ - 00929nas 2200313 i 450 + 00000nas 2200313 i 450 032914091 0000006039 20130611162344.0 @@ -22004,7 +22004,7 @@ - 01001nas0 2200313 450 + 00000nas0 2200313 450 095324062 0000962662 20131202173412.0 @@ -22085,7 +22085,7 @@ - 00940nas 2200277 i 450 + 00000nas 2200277 i 450 060335432 0000249204 20130319051059.0 @@ -22152,7 +22152,7 @@ - 01129nas 2200301 i 450 + 00000nas 2200301 i 450 039504158 0000006029 20131025113515.0 @@ -22226,7 +22226,7 @@ - 01168nas 2200301 i 450 + 00000nas 2200301 i 450 044717989 0000078569 20140117102223.0 @@ -22306,7 +22306,7 @@ - 01111nas 2200325 i 450 + 00000nas 2200325 i 450 03927991X 0000011326 20131213125015.0 @@ -22396,7 +22396,7 @@ - 01059nls 2200325 i 450 + 00000nls 2200325 i 450 0001131327 0001131327 20130319051059.0 @@ -22482,7 +22482,7 @@ - 00970nas 2200313 i 450 + 00000nas 2200313 i 450 038839725 0000008644 20130319051059.0 @@ -22564,7 +22564,7 @@ - 01206nas 2200349 i 450 + 00000nas 2200349 i 450 0000070385 0000070385 20131023105243.0 @@ -22660,7 +22660,7 @@ - 00916nas 2200289 i 450 + 00000nas 2200289 i 450 073879681 0000519704 20130319051059.0 @@ -22733,7 +22733,7 @@ - 01183nas 2200337 i 450 + 00000nas 2200337 i 450 0000008646 0000008646 20130319051059.0 @@ -22822,7 +22822,7 @@ - 01337nls 2200337 i 450 + 00000nls 2200337 i 450 0000800495 0000800495 20130319051100.0 @@ -22908,7 +22908,7 @@ - 01281nls 2200325 i 450 + 00000nls 2200325 i 450 0000462576 0000462576 20130319051100.0 @@ -22986,7 +22986,7 @@ - 00869cas0 2200301 450 + 00000cas0 2200301 450 076263835 0000730896 20130319051100.0 @@ -23064,7 +23064,7 @@ - 01026nas 2200277 i 450 + 00000nas 2200277 i 450 038665832 0000009310 20130319051101.0 @@ -23135,7 +23135,7 @@ - 01114cas0 2200349 450 + 00000cas0 2200349 450 037418300 0000904967 20130319051101.0 @@ -23232,7 +23232,7 @@ - 01092nas 2200325 i 450 + 00000nas 2200325 i 450 0000269661 0000269661 20130319051101.0 @@ -23316,7 +23316,7 @@ - 00926nas 2200301 i 450 + 00000nas 2200301 i 450 036306584 0000018328 20130319051101.0 @@ -23389,7 +23389,7 @@ - 01242nas 2200313 i 450 + 00000nas 2200313 i 450 040150208 0000090337 20131217120131.0 @@ -23470,7 +23470,7 @@ - 01167nas 2200325 i 450 + 00000nas 2200325 i 450 038840162 0000070392 20131220155244.0 @@ -23558,7 +23558,7 @@ - 01238cas0 2200373 450 + 00000cas0 2200373 450 03919325X 0001106857 20130319051101.0 @@ -23662,7 +23662,7 @@ - 01092cas0 2200325 450 + 00000cas0 2200325 450 036357448 0000830071 20130319051101.0 @@ -23748,7 +23748,7 @@ - 01018nas 2200313 i 450 + 00000nas 2200313 i 450 0000038447 0000038447 20130319051101.0 @@ -23827,7 +23827,7 @@ - 01540nas 2200325 i 450 + 00000nas 2200325 i 450 040153460 0000142762 20131112110656.0 @@ -23914,7 +23914,7 @@ - 01129cas0 2200337 450 + 00000cas0 2200337 450 038666170 0001104240 20130319051102.0 @@ -24002,7 +24002,7 @@ - 00848nas 2200301 i 450 + 00000nas 2200301 i 450 074148540 0000554433 20130705112708.0 @@ -24077,7 +24077,7 @@ - 00961nls 2200289 i 450 + 00000nls 2200289 i 450 0000487130 0000487130 20130319051102.0 @@ -24146,7 +24146,7 @@ - 01191cas0 2200337 450 + 00000cas0 2200337 450 099523752 0000616849 20130319051104.0 @@ -24237,7 +24237,7 @@ - 01153cas0 2200361 450 + 00000cas0 2200361 450 116291974 0001104314 20130319051104.0 @@ -24338,7 +24338,7 @@ - 00840nls 2200289 i 450 + 00000nls 2200289 i 450 0001026567 0001026567 20130319051105.0 @@ -24408,7 +24408,7 @@ - 00848nas 2200289 i 450 + 00000nas 2200289 i 450 039810739 0000011256 20130319051105.0 @@ -24478,7 +24478,7 @@ - 00916nas 2200313 i 450 + 00000nas 2200313 i 450 039609359 0000006334 20130319051105.0 @@ -24560,7 +24560,7 @@ - 01155nas 2200325 i 450 + 00000nas 2200325 i 450 039786056 0000008987 20130319051105.0 @@ -24644,7 +24644,7 @@ - 01013nas 2200325 i 450 + 00000nas 2200325 i 450 038667029 0000009301 20130319051106.0 @@ -24727,7 +24727,7 @@ - 00910nas 2200289 i 450 + 00000nas 2200289 i 450 038667017 0000009303 20130319051106.0 @@ -24800,7 +24800,7 @@ - 01210nas 2200349 i 450 + 00000nas 2200349 i 450 038840472 0000010006 20130725151917.0 @@ -24897,7 +24897,7 @@ - 01057nas 2200301 i 450 + 00000nas 2200301 i 450 039219720 0000009987 20140109161626.0 @@ -24975,7 +24975,7 @@ - 00973nas 2200325 i 450 + 00000nas 2200325 i 450 001012770 0000006031 20130319051106.0 @@ -25063,7 +25063,7 @@ - 01045nas 2200313 i 450 + 00000nas 2200313 i 450 013307320 0000006034 20140110122110.0 @@ -25144,7 +25144,7 @@ - 01627nas 2200397 i 450 + 00000nas 2200397 i 450 039526550 0000009445 20140109162703.0 @@ -25249,7 +25249,7 @@ - 00882cas0 2200241 450 + 00000cas0 2200241 450 03746650X 0001094572 20130319051106.0 @@ -25313,7 +25313,7 @@ - 01412nas 2200373 i 450 + 00000nas 2200373 i 450 039219763 0000009825 20131025114632.0 @@ -25412,7 +25412,7 @@ - 01345cas0 2200361 450 + 00000cas0 2200361 450 039219771 0001055734 20130319051106.0 @@ -25515,7 +25515,7 @@ - 01163cas0 2200289 450 + 00000cas0 2200289 450 039125629 0000819688 20130319051107.0 @@ -25589,7 +25589,7 @@ - 01029nas 2200325 i 450 + 00000nas 2200325 i 450 059715502 0000208019 20140108155917.0 @@ -25673,7 +25673,7 @@ - 01074nas 2200325 i 450 + 00000nas 2200325 i 450 0000009827 0000009827 20140110114519.0 @@ -25764,7 +25764,7 @@ - 01672nas 2200361 i 450 + 00000nas 2200361 i 450 038899639 0000009941 20140110154959.0 @@ -25859,7 +25859,7 @@ - 01428nas 2200361 i 450 + 00000nas 2200361 i 450 039207501 0000009744 20130826124730.0 @@ -25955,7 +25955,7 @@ - 01176nas 2200337 i 450 + 00000nas 2200337 i 450 039207528 0000070366 20130319051111.0 @@ -26043,7 +26043,7 @@ - 01129nas 2200337 i 450 + 00000nas 2200337 i 450 036732508 0000402010 20130926162616.0 @@ -26133,7 +26133,7 @@ - 01263nas 2200337 i 450 + 00000nas 2200337 i 450 036748897 0000200401 20130319051112.0 @@ -26218,7 +26218,7 @@ - 01193cas0 2200361 450 + 00000cas0 2200361 450 113634552 0001130752 20130319051112.0 @@ -26317,7 +26317,7 @@ - 01263nas 2200361 i 450 + 00000nas 2200361 i 450 038896001 0000009444 20140108121114.0 @@ -26415,7 +26415,7 @@ - 01129nas 2200337 i 450 + 00000nas 2200337 i 450 039397750 0000009954 20140108120458.0 @@ -26501,7 +26501,7 @@ - 01045nas 2200301 i 450 + 00000nas 2200301 i 450 0000061653 20130717095030.0 @@ -26584,7 +26584,7 @@ - 00904nas 2200265 i 450 + 00000nas 2200265 i 450 0000008559 20130530100555.0 @@ -26652,7 +26652,7 @@ - 00811nls 2200265 i 450 + 00000nls 2200265 i 450 0001244901 20130530102754.0 @@ -26719,7 +26719,7 @@ - 01402nas 2200337 i 450 + 00000nas 2200337 i 450 058481583 0000192015 20131127152532.0 @@ -26804,7 +26804,7 @@ - 01269nas 2200313 i 450 + 00000nas 2200313 i 450 048883476 0000387968 20130319051112.0 @@ -26883,7 +26883,7 @@ - 01103nas 2200301 i 450 + 00000nas 2200301 i 450 039208109 0000113375 20130319051112.0 @@ -26960,7 +26960,7 @@ - 01048nas 2200313 i 450 + 00000nas 2200313 i 450 039302180 0000175325 20140108121545.0 @@ -27040,7 +27040,7 @@ - 01335cas0 2200385 450 + 00000cas0 2200385 450 136978444 0001179301 20130319051112.0 @@ -27142,7 +27142,7 @@ - 00876nas 2200289 i 450 + 00000nas 2200289 i 450 03939087X 0000009998 20130319051112.0 @@ -27213,7 +27213,7 @@ - 00977nas 2200301 i 450 + 00000nas 2200301 i 450 040021459 0000023985 20130911120708.0 @@ -27289,7 +27289,7 @@ - 01281nas 2200337 i 450 + 00000nas 2200337 i 450 040248232 0000013279 20130319051112.0 @@ -27374,7 +27374,7 @@ - 01495nas 2200385 i 450 + 00000nas 2200385 i 450 038670151 0000003214 20130319051112.0 @@ -27475,7 +27475,7 @@ - 01306nas 2200325 i 450 + 00000nas 2200325 i 450 0000107936 0000107936 20130319051112.0 @@ -27557,7 +27557,7 @@ - 01372cas0 2200373 450 + 00000cas0 2200373 450 03855433X 0001095311 20130319051114.0 @@ -27667,7 +27667,7 @@ - 01050nas 2200313 i 450 + 00000nas 2200313 i 450 039840034 0000070400 20131217095844.0 @@ -27747,7 +27747,7 @@ - 01095cas0 2200349 450 + 00000cas0 2200349 450 105727326 0001081153 20130319051114.0 @@ -27837,7 +27837,7 @@ - 01053nas 2200289 i 450 + 00000nas 2200289 i 450 060380152 0000110119 20130319051115.0 @@ -27907,7 +27907,7 @@ - 00690nas 2200385 i 450 + 00000nas 2200385 i 450 0001245367 20130613162810.0 @@ -27997,7 +27997,7 @@ - 01347cas0 2200385 450 + 00000cas0 2200385 450 11572981X 0001106196 20130619101641.0 @@ -28104,7 +28104,7 @@ - 01098nls 2200301 i 450 + 00000nls 2200301 i 450 0001245611 20130619135626.0 @@ -28185,7 +28185,7 @@ - 00718nls 2200241 i 450 + 00000nls 2200241 i 450 0001241813 20130517122615.0 @@ -28246,7 +28246,7 @@ - 01230cas0 2200361 450 + 00000cas0 2200361 450 137224540 0001177608 20130319051116.0 @@ -28343,7 +28343,7 @@ - 01099cas0 2200349 450 + 00000cas0 2200349 450 170643948 0001251881 20131128145456.0 @@ -28434,7 +28434,7 @@ - 01248nas 2200349 i 450 + 00000nas 2200349 i 450 039621766 0000011104 20140107173831.0 @@ -28530,7 +28530,7 @@ - 01023nas 2200289 i 450 + 00000nas 2200289 i 450 038671603 0000011052 20130319051117.0 @@ -28600,7 +28600,7 @@ - 00984nas 2200289 i 450 + 00000nas 2200289 i 450 040245691 0000011089 20130319051117.0 @@ -28671,7 +28671,7 @@ - 01118nls 2200325 i 450 + 00000nls 2200325 i 450 0000463643 0000463643 20130319051117.0 @@ -28750,7 +28750,7 @@ - 01491nas 2200385 i 450 + 00000nas 2200385 i 450 040248224 0000015570 20130319051117.0 @@ -28852,7 +28852,7 @@ - 01408nas 2200373 i 450 + 00000nas 2200373 i 450 040248488 0000022402 20130319051117.0 @@ -28953,7 +28953,7 @@ - 00825nas 2200277 i 450 + 00000nas 2200277 i 450 04024864X 0000219673 20130319051118.0 @@ -29021,7 +29021,7 @@ - 01274nas 2200349 i 450 + 00000nas 2200349 i 450 040528170 0000265724 20130828155804.0 @@ -29121,7 +29121,7 @@ - 01072nas 2200301 i 450 + 00000nas 2200301 i 450 039615383 0000056032 20130319051119.0 @@ -29206,7 +29206,7 @@ - 00719nls 2200277 i 450 + 00000nls 2200277 i 450 0001182451 0001182451 20130319051120.0 @@ -29272,7 +29272,7 @@ - 01076nas0 2200361 450 + 00000nas0 2200361 450 139212507 0001179666 20130903164210.0 @@ -29366,7 +29366,7 @@ - 01437nas 2200325 i 450 + 00000nas 2200325 i 450 001019384 0000003489 20140107134711.0 @@ -29449,7 +29449,7 @@ - 01399nas0 22003251 450 + 00000nas0 22003251 450 113292236 0001075263 20130319051121.0 @@ -29541,7 +29541,7 @@ - 01021nas 2200325 i 450 + 00000nas 2200325 i 450 04053877X 0000225524 20130319051121.0 @@ -29624,7 +29624,7 @@ - 00904nls 2200313 i 450 + 00000nls 2200313 i 450 0001167114 0001167114 20130319051121.0 @@ -29700,7 +29700,7 @@ - 01130cas0 2200349 450 + 00000cas0 2200349 450 083125485 0000968036 20130319051122.0 @@ -29794,7 +29794,7 @@ - 01034nls 2200325 i 450 + 00000nls 2200325 i 450 0001132899 0001132899 20130319051122.0 @@ -29876,7 +29876,7 @@ - 00948nas 2200313 i 450 + 00000nas 2200313 i 450 0000329259 0000329259 20130417104714.0 @@ -29954,7 +29954,7 @@ - 01224nas 2200349 i 450 + 00000nas 2200349 i 450 038674033 0000011255 20130528110409.0 @@ -30042,7 +30042,7 @@ - 00873nas 2200301 i 450 + 00000nas 2200301 i 450 038674130 0000003401 20130319051122.0 @@ -30117,7 +30117,7 @@ - 01004nas 2200313 i 450 + 00000nas 2200313 i 450 039238628 0000011357 20130319051123.0 @@ -30199,7 +30199,7 @@ - 01181nas 2200361 i 450 + 00000nas 2200361 i 450 03997913X 0000074287 20131219155051.0 @@ -30302,7 +30302,7 @@ - 00947cas0 2200325 450 + 00000cas0 2200325 450 077553241 0000984476 20130319051125.0 @@ -30387,7 +30387,7 @@ - 00997nas 2200325 i 450 + 00000nas 2200325 i 450 039951669 0000111737 20130319051127.0 @@ -30471,7 +30471,7 @@ - 00890nas 2200289 i 450 + 00000nas 2200289 i 450 03995126X 0000070291 20131025120230.0 @@ -30542,7 +30542,7 @@ - 01277nas 2200241 i 450 + 00000nas 2200241 i 450 0000009489 0000009489 20130319051129.0 @@ -30600,7 +30600,7 @@ - 00849nls 2200277 i 450 + 00000nls 2200277 i 450 0000984343 0000984343 20130319051129.0 @@ -30665,7 +30665,7 @@ - 00921nas 2200289 i 450 + 00000nas 2200289 i 450 03867680X 0000011305 20140113115413.0 @@ -30738,7 +30738,7 @@ - 01827cas0 2200481 450 + 00000cas0 2200481 450 060119365 0000453920 20130319051129.0 @@ -30874,7 +30874,7 @@ - 01091nls 2200301 i 450 + 00000nls 2200301 i 450 0000462467 0000462467 20130319051130.0 @@ -30946,7 +30946,7 @@ - 00984nas 2200301 i 450 + 00000nas 2200301 i 450 040133923 0000171059 20130319051130.0 @@ -31020,7 +31020,7 @@ - 00943nas 2200301 i 450 + 00000nas 2200301 i 450 04040210X 0000103227 20130319051130.0 @@ -31095,7 +31095,7 @@ - 01201nas0 2200337 450 + 00000nas0 2200337 450 124636896 0001102668 20130319051131.0 @@ -31186,7 +31186,7 @@ - 01342cas0 2200373 450 + 00000cas0 2200373 450 060686499 0001155148 20140108152743.0 @@ -31290,7 +31290,7 @@ - 01102nas 2200325 i 450 + 00000nas 2200325 i 450 038678357 0000011315 20131024152326.0 @@ -31377,7 +31377,7 @@ - 01045cas0 2200337 450 + 00000cas0 2200337 450 038291134 0001104027 20130903173710.0 @@ -31472,7 +31472,7 @@ - 00931nas 2200289 i 450 + 00000nas 2200289 i 450 039266257 0000064723 20130417154420.0 @@ -31547,7 +31547,7 @@ - 01142nas 2200337 i 450 + 00000nas 2200337 i 450 038678780 0000011319 20130912115515.0 @@ -31636,7 +31636,7 @@ - 01096nas 2200313 i 450 + 00000nas 2200313 i 450 036256374 0000011394 20130319051134.0 @@ -31716,7 +31716,7 @@ - 01129nas0 2200373 450 + 00000nas0 2200373 450 131445316 0001162741 20130319051134.0 @@ -31820,7 +31820,7 @@ - 01036nas 2200337 i 450 + 00000nas 2200337 i 450 064143376 0000550484 20130319051135.0 @@ -31905,7 +31905,7 @@ - 01583cas0 2200445 450 + 00000cas0 2200445 450 119338025 0001120738 20130319051137.0 @@ -32030,7 +32030,7 @@ - 01311nas 2200373 i 450 + 00000nas 2200373 i 450 036827983 0000246858 20130319051138.0 @@ -32132,7 +32132,7 @@ - 01154nas 2200325 i 450 + 00000nas 2200325 i 450 037936182 0000081858 20130319051138.0 @@ -32221,7 +32221,7 @@ - 01305nls 2200361 i 450 + 00000nls 2200361 i 450 0000802814 0000802814 20130319051138.0 @@ -32306,7 +32306,7 @@ - 01539nas 2200385 i 450 + 00000nas 2200385 i 450 038680521 0000011484 20131127152911.0 @@ -32410,7 +32410,7 @@ - 01430nas 2200361 i 450 + 00000nas 2200361 i 450 036740438 0000269545 20130805121047.0 @@ -32501,7 +32501,7 @@ - 01548nas 2200385 i 450 + 00000nas 2200385 i 450 002930021 0000011480 20131219155224.0 @@ -32604,7 +32604,7 @@ - 01654nas 2200385 i 450 + 00000nas 2200385 i 450 044837887 0000394435 20140110091527.0 @@ -32707,7 +32707,7 @@ - 01470nas 2200373 i 450 + 00000nas 2200373 i 450 038680777 0000011483 20131025120004.0 @@ -32801,7 +32801,7 @@ - 01502nas 2200325 i 450 + 00000nas 2200325 i 450 0000598689 0000598689 20130319051138.0 @@ -32880,7 +32880,7 @@ - 01458nas0 2200409 450 + 00000nas0 2200409 450 109988353 0001043258 20130716151803.0 @@ -32990,7 +32990,7 @@ - 00843nls 2200277 i 450 + 00000nls 2200277 i 450 153476184 0001241483 20131120153015.0 @@ -33058,7 +33058,7 @@ - 01265nas 2200313 i 450 + 00000nas 2200313 i 450 038681048 0000003535 20140106112033.0 @@ -33137,7 +33137,7 @@ - 01135nas 2200313 i 450 + 00000nas 2200313 i 450 040283356 0000103280 20130319051138.0 @@ -33218,7 +33218,7 @@ - 01378cas0 2200361 450 + 00000cas0 2200361 450 094071047 0000931196 20130319051138.0 @@ -33313,7 +33313,7 @@ - 01046nas 2200301 i 450 + 00000nas 2200301 i 450 073381527 0000605618 20130319051139.0 @@ -33391,7 +33391,7 @@ - 01396nas 2200337 i 450 + 00000nas 2200337 i 450 039106810 0000008344 20131210171345.0 @@ -33481,7 +33481,7 @@ - 01024nas 2200289 i 450 + 00000nas 2200289 i 450 0000172337 0000172337 20130319051139.0 @@ -33555,7 +33555,7 @@ - 01079nas 2200301 i 450 + 00000nas 2200301 i 450 0000172333 0000172333 20130319051139.0 @@ -33632,7 +33632,7 @@ - 01348nas 2200361 i 450 + 00000nas 2200361 i 450 039284271 0000060753 20130930130424.0 @@ -33727,7 +33727,7 @@ - 01770cas0 2200469 450 + 00000cas0 2200469 450 050921711 0000317463 20130517153557.0 @@ -33850,7 +33850,7 @@ - 00976nas 2200301 i 450 + 00000nas 2200301 i 450 04031250X 0000245269 20130319051140.0 @@ -33923,7 +33923,7 @@ - 01822cas0 2200385 450 + 00000cas0 2200385 450 078579759 0001094622 20130319051140.0 @@ -34027,7 +34027,7 @@ - 01050nas 2200301 i 450 + 00000nas 2200301 i 450 039220885 0000056858 20130319051140.0 @@ -34106,7 +34106,7 @@ - 01289cas0 2200361 450 + 00000cas0 2200361 450 03798053X 0001113623 20130319051140.0 @@ -34200,7 +34200,7 @@ - 01888cas0 2200433 450 + 00000cas0 2200433 450 037453769 0001094565 20130319051140.0 @@ -34322,7 +34322,7 @@ - 01403nas 2200337 i 450 + 00000nas 2200337 i 450 038555875 0000472302 20130319051140.0 @@ -34414,7 +34414,7 @@ - 01323cas0 2200373 450 + 00000cas0 2200373 450 048750026 0001055756 20131104153741.0 @@ -34521,7 +34521,7 @@ - 01366cas0 2200361 450 + 00000cas0 2200361 450 038761238 0001075750 20130319051140.0 @@ -34623,7 +34623,7 @@ - 00814nls 2200241 i 450 + 00000nls 2200241 i 450 0000961185 20131129142821.0 @@ -34684,7 +34684,7 @@ - 01149nas 2200289 i 450 + 00000nas 2200289 i 450 076642887 0000255741 20130319051140.0 @@ -34760,7 +34760,7 @@ - 01510nas 2200373 i 450 + 00000nas 2200373 i 450 039219895 0000011435 20130319051140.0 @@ -34854,7 +34854,7 @@ - 01009nas 2200289 i 450 + 00000nas 2200289 i 450 039889920 0000057072 20131007171804.0 @@ -34927,7 +34927,7 @@ - 01016nas 2200277 i 450 + 00000nas 2200277 i 450 036359122 0000253187 20130319051140.0 @@ -34995,7 +34995,7 @@ - 01708cas0 2200385 450 + 00000cas0 2200385 450 038430738 0001095077 20131015165814.0 @@ -35100,7 +35100,7 @@ - 01027nas 2200265 i 450 + 00000nas 2200265 i 450 001027603 0000065651 20130906122036.0 @@ -35167,7 +35167,7 @@ - 01288nas 2200385 i 450 + 00000nas 2200385 i 450 039219860 0000011470 20130319051140.0 @@ -35274,7 +35274,7 @@ - 01098cas0 2200289 450 + 00000cas0 2200289 450 039210405 0001093446 20131015161225.0 @@ -35349,7 +35349,7 @@ - 01334nas 2200373 i 450 + 00000nas 2200373 i 450 001017616 0000011324 20130319051140.0 @@ -35448,7 +35448,7 @@ - 00995cas0 2200277 450 + 00000cas0 2200277 450 048882739 0001094616 20131015162534.0 @@ -35521,7 +35521,7 @@ - 01484cas0 2200409 450 + 00000cas0 2200409 450 040518280 0000705670 20130319051140.0 @@ -35629,7 +35629,7 @@ - 01358cas0 2200385 450 + 00000cas0 2200385 450 038499932 0001084150 20130319051140.0 @@ -35737,7 +35737,7 @@ - 01504nas 2200385 i 450 + 00000nas 2200385 i 450 040196623 0000116712 20130522121438.0 @@ -35843,7 +35843,7 @@ - 00891nls 2200289 i 450 + 00000nls 2200289 i 450 0001244767 20130522162554.0 @@ -35920,7 +35920,7 @@ - 01498nas 2200385 i 450 + 00000nas 2200385 i 450 040167046 0000429869 20130909162009.0 @@ -36019,7 +36019,7 @@ - 01480cas0 2200397 450 + 00000cas0 2200397 450 037453904 0001080783 20130319051140.0 @@ -36130,7 +36130,7 @@ - 01483nas 2200361 i 450 + 00000nas 2200361 i 450 038373319 0000011530 20130912144209.0 @@ -36228,7 +36228,7 @@ - 01566cas0 2200397 450 + 00000cas0 2200397 450 038771594 0001083736 20130319051140.0 @@ -36334,7 +36334,7 @@ - 01270cas0 2200325 450 + 00000cas0 2200325 450 036487473 0001113426 20130319051140.0 @@ -36419,7 +36419,7 @@ - 01645cas0 2200385 450 + 00000cas0 2200385 450 038588234 0001084158 20130319051140.0 @@ -36532,7 +36532,7 @@ - 00923nas 2200301 i 450 + 00000nas 2200301 i 450 039709914 0000057012 20130319051140.0 @@ -36607,7 +36607,7 @@ - 01311nas 2200349 i 450 + 00000nas 2200349 i 450 039221008 0000011575 20131125152642.0 @@ -36702,7 +36702,7 @@ - 02066cas0 2200301 450 + 00000cas0 2200301 450 039192385 0000936396 20130319051140.0 @@ -36787,7 +36787,7 @@ - 01594nas 2200481 i 450 + 00000nas 2200481 i 450 0000078359 0000078359 20131023113921.0 @@ -36906,7 +36906,7 @@ - 01214nas 2200325 i 450 + 00000nas 2200325 i 450 039220680 0000011578 20130531111605.0 @@ -36998,7 +36998,7 @@ - 01810cas0 2200493 450 + 00000cas0 2200493 450 040489000 0001124301 20130319051140.0 @@ -37127,7 +37127,7 @@ - 00752cas0 2200241 450 + 00000cas0 2200241 450 03905523X 0001111746 20130906122204.0 @@ -37188,7 +37188,7 @@ - 01016nls 2200313 i 450 + 00000nls 2200313 i 450 0001240337 0001240337 20130517155153.0 @@ -37269,7 +37269,7 @@ - 01076nas 2200301 i 450 + 00000nas 2200301 i 450 0000261000 0000261000 20130319051140.0 @@ -37347,7 +37347,7 @@ - 01180cas0 2200337 450 + 00000cas0 2200337 450 039806812 0001162735 20130319051140.0 @@ -37433,7 +37433,7 @@ - 01372cas0 2200325 450 + 00000cas0 2200325 450 03798411X 0001084138 20130319051140.0 @@ -37517,7 +37517,7 @@ - 01416cas0 2200373 450 + 00000cas0 2200373 450 038780712 0001112865 20131011101303.0 @@ -37620,7 +37620,7 @@ - 01173cas0 2200349 450 + 00000cas0 2200349 450 038636883 0001109382 20130319051140.0 @@ -37713,7 +37713,7 @@ - 01153cas0 2200349 450 + 00000cas0 2200349 450 038553716 0001094587 20130319051140.0 @@ -37808,7 +37808,7 @@ - 01587cas0 2200397 450 + 00000cas0 2200397 450 038418614 0001095075 20130319051140.0 @@ -37922,7 +37922,7 @@ - 01694cas0 2200385 450 + 00000cas0 2200385 450 038729393 0001076097 20130319051140.0 @@ -38029,7 +38029,7 @@ - 01053nas 2200325 i 450 + 00000nas 2200325 i 450 001645285 0000011785 20140110123051.0 @@ -38113,7 +38113,7 @@ - 01479nas 2200361 i 450 + 00000nas 2200361 i 450 039373193 0000003802 20131106175100.0 @@ -38208,7 +38208,7 @@ - 01679cas0 2200421 450 + 00000cas0 2200421 450 038418649 0001095076 20130319051140.0 @@ -38325,7 +38325,7 @@ - 01238nas 2200337 i 450 + 00000nas 2200337 i 450 03924346X 0000011740 20130319051140.0 @@ -38410,7 +38410,7 @@ - 01570cas0 2200409 450 + 00000cas0 2200409 450 038443228 0001095078 20130319051140.0 @@ -38530,7 +38530,7 @@ - 00767nls 2200253 i 450 + 00000nls 2200253 i 450 0000941516 0000941516 20130319051140.0 @@ -38590,7 +38590,7 @@ - 00827nas 2200265 i 450 + 00000nas 2200265 i 450 0000234161 0000234161 20130319051140.0 @@ -38652,7 +38652,7 @@ - 00812nls 2200253 i 450 + 00000nls 2200253 i 450 0000941447 0000941447 20130319051140.0 @@ -38714,7 +38714,7 @@ - 01436cas0 2200361 450 + 00000cas0 2200361 450 038079534 0001084140 20130319051140.0 @@ -38809,7 +38809,7 @@ - 00959nas 2200301 i 450 + 00000nas 2200301 i 450 045019606 0000267562 20130319051140.0 @@ -38884,7 +38884,7 @@ - 01255nas 2200361 i 450 + 00000nas 2200361 i 450 0000057281 0000057281 20130319051140.0 @@ -38976,7 +38976,7 @@ - 00918nas 2200301 i 450 + 00000nas 2200301 i 450 038681560 0000011900 20130319051140.0 @@ -39052,7 +39052,7 @@ - 01722nas 2200373 i 450 + 00000nas 2200373 i 450 038681706 0000011745 20130319051140.0 @@ -39151,7 +39151,7 @@ - 01302nas 2200337 i 450 + 00000nas 2200337 i 450 039311791 0000011683 20131127153137.0 @@ -39237,7 +39237,7 @@ - 01848cas0 2200397 450 + 00000cas0 2200397 450 036994979 0001095061 20130319051140.0 @@ -39347,7 +39347,7 @@ - 00847nas 2200289 i 450 + 00000nas 2200289 i 450 0000011895 0000011895 20130319051140.0 @@ -39417,7 +39417,7 @@ - 01368nls 2200337 i 450 + 00000nls 2200337 i 450 0000991174 0000991174 20130319051140.0 @@ -39509,7 +39509,7 @@ - 01938cas0 2200397 450 + 00000cas0 2200397 450 048881953 0001141285 20130319051140.0 @@ -39619,7 +39619,7 @@ - 00956nls 2200289 i 450 + 00000nls 2200289 i 450 0000967897 0000967897 20130319051140.0 @@ -39689,7 +39689,7 @@ - 00976nls 2200313 i 450 + 00000nls 2200313 i 450 0000583890 0000583890 20130319051140.0 @@ -39767,7 +39767,7 @@ - 01221nls 2200313 i 450 + 00000nls 2200313 i 450 0000967903 0000967903 20130319051140.0 @@ -39843,7 +39843,7 @@ - 01078nls 2200301 i 450 + 00000nls 2200301 i 450 0000969182 0000969182 20130319051140.0 @@ -39916,7 +39916,7 @@ - 01145nls 2200325 i 450 + 00000nls 2200325 i 450 0000967895 0000967895 20130319051141.0 @@ -39998,7 +39998,7 @@ - 01102nas 2200301 i 450 + 00000nas 2200301 i 450 039373177 0000003938 20131106121453.0 @@ -40076,7 +40076,7 @@ - 01190nas 2200337 i 450 + 00000nas 2200337 i 450 040199606 0000123635 20130319051141.0 @@ -40162,7 +40162,7 @@ - 01063nas 2200313 i 450 + 00000nas 2200313 i 450 038682354 0000488898 20130319051142.0 @@ -40240,7 +40240,7 @@ - 00914nas 2200301 i 450 + 00000nas 2200301 i 450 048781371 0000284203 20130919162545.0 @@ -40316,7 +40316,7 @@ - 01291nas 2200313 i 450 + 00000nas 2200313 i 450 038823462 0000011647 20131127153322.0 @@ -40394,7 +40394,7 @@ - 01087nas 2200301 i 450 + 00000nas 2200301 i 450 038682397 0000011653 20130319051142.0 @@ -40471,7 +40471,7 @@ - 01211nas 2200325 i 450 + 00000nas 2200325 i 450 038682435 0000058132 20130319051142.0 @@ -40556,7 +40556,7 @@ - 00971nas 2200277 i 450 + 00000nas 2200277 i 450 03932026X 0000038349 20131106161926.0 @@ -40624,7 +40624,7 @@ - 01123nas 2200325 i 450 + 00000nas 2200325 i 450 036212148 0000011676 20130604173523.0 @@ -40712,7 +40712,7 @@ - 01110nas 2200289 i 450 + 00000nas 2200289 i 450 0000003951 0000003951 20130319051142.0 @@ -40783,7 +40783,7 @@ - 01359cas0 2200397 450 + 00000cas0 2200397 450 111210887 0001079076 20130319051142.0 @@ -40889,7 +40889,7 @@ - 00921nas 2200313 i 450 + 00000nas 2200313 i 450 038975610 0000060485 20130319051142.0 @@ -40967,7 +40967,7 @@ - 01006nas 2200325 i 450 + 00000nas 2200325 i 450 039592413 0000011679 20130319051142.0 @@ -41051,7 +41051,7 @@ - 01069nas 2200337 i 450 + 00000nas 2200337 i 450 001029770 0000011870 20130319051143.0 @@ -41139,7 +41139,7 @@ - 01080nas 2200325 i 450 + 00000nas 2200325 i 450 040153673 0000162295 20130619162128.0 @@ -41223,7 +41223,7 @@ - 01204nls 2200325 i 450 + 00000nls 2200325 i 450 0000895804 0000895804 20130319051143.0 @@ -41305,7 +41305,7 @@ - 01242nas 2200349 i 450 + 00000nas 2200349 i 450 081376049 0000255446 20130319051143.0 @@ -41398,7 +41398,7 @@ - 01116nas 2200325 i 450 + 00000nas 2200325 i 450 040561062 0000169342 20131125110733.0 @@ -41481,7 +41481,7 @@ - 00987cas0 2200325 450 + 00000cas0 2200325 450 078574250 0001043410 20131104160540.0 @@ -41572,7 +41572,7 @@ - 01188nas 2200337 i 450 + 00000nas 2200337 i 450 0000441439 0000441439 20130319051143.0 @@ -41663,7 +41663,7 @@ - 00954nls 2200301 450 + 00000nls 2200301 450 0000769579 0000769579 20130319051143.0 @@ -41737,7 +41737,7 @@ - 01014nas 2200325 i 450 + 00000nas 2200325 i 450 039295184 0000011787 20130319051143.0 @@ -41819,7 +41819,7 @@ - 01054cas0 2200349 450 + 00000cas0 2200349 450 113697074 0001079271 20130319051143.0 @@ -41916,7 +41916,7 @@ - 01181nas 2200325 i 450 + 00000nas 2200325 i 450 001300571 0000047042 20130319051143.0 @@ -42003,7 +42003,7 @@ - 00786nas 2200229 i 450 + 00000nas 2200229 i 450 0000006333 20130904143314.0 @@ -42061,7 +42061,7 @@ - 01174nas 2200337 i 450 + 00000nas 2200337 i 450 039221563 0000011790 20140108155143.0 @@ -42147,7 +42147,7 @@ - 01078nas 2200337 i 450 + 00000nas 2200337 i 450 04048243X 0000190646 20130319051143.0 @@ -42235,7 +42235,7 @@ - 01147nas 2200301 i 450 + 00000nas 2200301 i 450 039565890 0000011873 20130319051143.0 @@ -42313,7 +42313,7 @@ - 01247nas 2200373 i 450 + 00000nas 2200373 i 450 040169030 0000049915 20130319051143.0 @@ -42411,7 +42411,7 @@ - 01080nls 2200325 i 450 + 00000nls 2200325 i 450 0001182737 0001182737 20130319051143.0 @@ -42490,7 +42490,7 @@ - 01492nas 2200385 i 450 + 00000nas 2200385 i 450 032929277 0000003956 20130319051143.0 @@ -42595,7 +42595,7 @@ - 01183nas 2200325 i 450 + 00000nas 2200325 i 450 040062813 0000082264 20130319051143.0 @@ -42678,7 +42678,7 @@ - 00840nas 2200277 i 450 + 00000nas 2200277 i 450 039810844 0000011978 20130319051143.0 @@ -42744,7 +42744,7 @@ - 01238nas 2200349 i 450 + 00000nas 2200349 i 450 09300284X 0000876427 20130430135454.0 @@ -42835,7 +42835,7 @@ - 01262nas 2200337 i 450 + 00000nas 2200337 i 450 040383962 0000204090 20130916105528.0 @@ -42924,7 +42924,7 @@ - 01032nas 2200313 i 450 + 00000nas 2200313 i 450 040473430 0000186862 20130319051143.0 @@ -43005,7 +43005,7 @@ - 00970nls 2200277 i 450 + 00000nls 2200277 i 450 0001227311 0001227311 20130319051143.0 @@ -43072,7 +43072,7 @@ - 01014nas 2200301 i 450 + 00000nas 2200301 i 450 039718573 0000012003 20130319051143.0 @@ -43149,7 +43149,7 @@ - 01185nas 2200325 i 450 + 00000nas 2200325 i 450 039890295 0000012081 20130320142516.0 @@ -43234,7 +43234,7 @@ - 01177nas 2200301 i 450 + 00000nas 2200301 i 450 037436228 0000012020 20130319051143.0 @@ -43310,7 +43310,7 @@ - 01199nas 2200349 i 450 + 00000nas 2200349 i 450 038561239 0000047269 20131015095554.0 @@ -43403,7 +43403,7 @@ - 01177nas 2200325 i 450 + 00000nas 2200325 i 450 002436493 0000164431 20130319051143.0 @@ -43485,7 +43485,7 @@ - 01507nas 2200373 i 450 + 00000nas 2200373 i 450 013666142 0000142457 20130319051143.0 @@ -43590,7 +43590,7 @@ - 00887nls 2200289 i 450 + 00000nls 2200289 i 450 0001228436 0001228436 20130319051143.0 @@ -43660,7 +43660,7 @@ - 01135cas0 2200361 450 + 00000cas0 2200361 450 038555883 0001106327 20130319051143.0 @@ -43758,7 +43758,7 @@ - 00924nas 2200289 i 450 + 00000nas 2200289 i 450 002513080 0000046740 20130319051143.0 @@ -43831,7 +43831,7 @@ - 01204nas 2200349 i 450 + 00000nas 2200349 i 450 039900878 0000013164 20131219160725.0 @@ -43922,7 +43922,7 @@ - 00861nas 2200289 i 450 + 00000nas 2200289 i 450 001012509 0000011988 20130319051143.0 @@ -43999,7 +43999,7 @@ - 01284nas 2200349 i 450 + 00000nas 2200349 i 450 004091833 0000208623 20130319051143.0 @@ -44092,7 +44092,7 @@ - 00890nls 2200289 i 450 + 00000nls 2200289 i 450 0000969199 0000969199 20130319051143.0 @@ -44163,7 +44163,7 @@ - 01020nas 2200325 i 450 + 00000nas 2200325 i 450 073604429 0000426616 20130319051143.0 @@ -44243,7 +44243,7 @@ - 01136nas 2200337 i 450 + 00000nas 2200337 i 450 048768596 0000278511 20130319051143.0 @@ -44332,7 +44332,7 @@ - 01119nas 2200313 i 450 + 00000nas 2200313 i 450 040540391 0000195475 20130919105844.0 @@ -44412,7 +44412,7 @@ - 01001nas 2200313 i 450 + 00000nas 2200313 i 450 040243737 0000246082 20130319051143.0 @@ -44493,7 +44493,7 @@ - 01535nas 2200385 i 450 + 00000nas 2200385 i 450 040229599 0000143410 20130319051143.0 @@ -44589,7 +44589,7 @@ - 01155nas 2200349 i 450 + 00000nas 2200349 i 450 10423461X 0000345117 20140109162020.0 @@ -44679,7 +44679,7 @@ - 01227nls 2200409 i 450 + 00000nls 2200409 i 450 0000401948 0000401948 20130319051143.0 @@ -44781,7 +44781,7 @@ - 01206nas 2200349 i 450 + 00000nas 2200349 i 450 045233020 0000004008 20131029101817.0 @@ -44876,7 +44876,7 @@ - 01179nas 2200325 i 450 + 00000nas 2200325 i 450 039221725 0000012227 20131008114625.0 @@ -44958,7 +44958,7 @@ - 01300cas0 2200373 450 + 00000cas0 2200373 450 13169815X 0001178354 20140107174000.0 @@ -45060,7 +45060,7 @@ - 00872nls 2200289 i 450 + 00000nls 2200289 i 450 0000969200 0000969200 20130319051143.0 @@ -45130,7 +45130,7 @@ - 01217nas 2200349 i 450 + 00000nas 2200349 i 450 039221792 0000014108 20131018152414.0 @@ -45222,7 +45222,7 @@ - 00780nas 2200277 i 450 + 00000nas 2200277 i 450 039590291 0000012225 20130319051143.0 @@ -45290,7 +45290,7 @@ - 01097nas0 2200349 450 + 00000nas0 2200349 450 113887043 0001083995 20130319051143.0 @@ -45382,7 +45382,7 @@ - 00868nls 2200301 i 450 + 00000nls 2200301 i 450 0001227428 0001227428 20130319051143.0 @@ -45456,7 +45456,7 @@ - 00992nas 2200277 i 450 + 00000nas 2200277 i 450 038683741 0000012943 20130523105956.0 @@ -45523,7 +45523,7 @@ - 01050nas 2200301 i 450 + 00000nas 2200301 i 450 039404285 0000013344 20130319051145.0 @@ -45597,7 +45597,7 @@ - 01558nas 2200349 i 450 + 00000nas 2200349 i 450 040086437 0000031660 20130319051145.0 @@ -45685,7 +45685,7 @@ - 00999nas 2200313 i 450 + 00000nas 2200313 i 450 039823717 0000060713 20130319051145.0 @@ -45766,7 +45766,7 @@ - 00936nas 2200313 i 450 + 00000nas 2200313 i 450 0000013346 0000013346 20130319051145.0 @@ -45845,7 +45845,7 @@ - 01111nas 2200325 i 450 + 00000nas 2200325 i 450 0000013421 0000013421 20130319051146.0 @@ -45925,7 +45925,7 @@ - 01232nas 2200337 i 450 + 00000nas 2200337 i 450 038684535 0000013503 20130319051146.0 @@ -46011,7 +46011,7 @@ - 01431nas 2200361 i 450 + 00000nas 2200361 i 450 038684691 0000013511 20131127153521.0 @@ -46104,7 +46104,7 @@ - 01422cas0 2200385 450 + 00000cas0 2200385 450 03728228X 0001083708 20130319051146.0 @@ -46208,7 +46208,7 @@ - 01786nas 2200409 i 450 + 00000nas 2200409 i 450 038684888 0000013751 20130319051146.0 @@ -46316,7 +46316,7 @@ - 01335nas 2200349 i 450 + 00000nas 2200349 i 450 039412563 0000013424 20130319051146.0 @@ -46404,7 +46404,7 @@ - 01056nas 2200313 i 450 + 00000nas 2200313 i 450 039411168 0000013496 20130319051146.0 @@ -46485,7 +46485,7 @@ - 01324nas 2200337 i 450 + 00000nas 2200337 i 450 038685108 0000013584 20130319051146.0 @@ -46574,7 +46574,7 @@ - 01550nas 2200373 i 450 + 00000nas 2200373 i 450 039405753 0000013864 20130319051147.0 @@ -46675,7 +46675,7 @@ - 00987nas 2200313 i 450 + 00000nas 2200313 i 450 039958280 0000042667 20130319051147.0 @@ -46756,7 +46756,7 @@ - 01218nas 2200313 i 450 + 00000nas 2200313 i 450 040264793 0000195470 20130319051147.0 @@ -46834,7 +46834,7 @@ - 00775nls 2200277 i 450 + 00000nls 2200277 i 450 0000980403 0000980403 20130319051148.0 @@ -46899,7 +46899,7 @@ - 01400nas 2200337 i 450 + 00000nas 2200337 i 450 038685833 0000013943 20130319051149.0 @@ -46986,7 +46986,7 @@ - 01182cas0 2200409 450 + 00000cas0 2200409 450 040459438 0001209987 20130319051149.0 @@ -47095,7 +47095,7 @@ - 01158nas 2200325 i 450 + 00000nas 2200325 i 450 039334988 0000017723 20130319051150.0 @@ -47177,7 +47177,7 @@ - 01119cas0 2200373 450 + 00000cas0 2200373 450 115427007 0001154904 20130611121225.0 @@ -47279,7 +47279,7 @@ - 00888nas 2200277 i 450 + 00000nas 2200277 i 450 040385906 0000182440 20130515165840.0 @@ -47349,7 +47349,7 @@ - 01240nas 2200325 i 450 + 00000nas 2200325 i 450 059693738 0000179985 20130319051151.0 @@ -47438,7 +47438,7 @@ - 01081nas 2200301 i 450 + 00000nas 2200301 i 450 00105919X 0000062393 20131025170320.0 @@ -47515,7 +47515,7 @@ - 01460nas 2200361 i 450 + 00000nas 2200361 i 450 001060694 0000013831 20130319051151.0 @@ -47611,7 +47611,7 @@ - 01087nas 2200313 i 450 + 00000nas 2200313 i 450 039315312 0000013868 20140108125050.0 @@ -47688,7 +47688,7 @@ - 01452nas 2200337 i 450 + 00000nas 2200337 i 450 0000417610 0000417610 20130918115945.0 @@ -47778,7 +47778,7 @@ - 01053nas 2200313 i 450 + 00000nas 2200313 i 450 0000818756 0000818756 20130319051152.0 @@ -47859,7 +47859,7 @@ - 00878nls 2200277 i 450 + 00000nls 2200277 i 450 0000464370 0000464370 20130319051153.0 @@ -47926,7 +47926,7 @@ - 00851nls 2200277 i 450 + 00000nls 2200277 i 450 0000464369 0000464369 20130319051153.0 @@ -47993,7 +47993,7 @@ - 00900nls 2200289 450 + 00000nls 2200289 450 0000412116 0000412116 20130319051153.0 @@ -48062,7 +48062,7 @@ - 01123nas 2200325 i 450 + 00000nas 2200325 i 450 039683850 0000054011 20130319051153.0 @@ -48146,7 +48146,7 @@ - 01165nls 2200313 i 450 + 00000nls 2200313 i 450 0001221928 0001221928 20130319051153.0 @@ -48224,7 +48224,7 @@ - 01397nls0 2200289 450 + 00000nls0 2200289 450 150015283 0001206105 20130319051153.0 @@ -48300,7 +48300,7 @@ - 01067nas0 2200289 450 + 00000nas0 2200289 450 07513019X 0000930522 20130319051153.0 @@ -48378,7 +48378,7 @@ - 01083nas 2200313 i 450 + 00000nas 2200313 i 450 0000603138 0000603138 20130319051153.0 @@ -48456,7 +48456,7 @@ - 01297nas0 2200361 450 + 00000nas0 2200361 450 139025952 0001179389 20130319051153.0 @@ -48555,7 +48555,7 @@ - 00890nas 2200313 i 450 + 00000nas 2200313 i 450 03957170X 0000014668 20130319051153.0 @@ -48633,7 +48633,7 @@ - 01626nas 2200337 i 450 + 00000nas 2200337 i 450 039657906 0000004100 20131003151027.0 @@ -48726,7 +48726,7 @@ - 01006cas0 2200337 450 + 00000cas0 2200337 450 090062345 0001021266 20130319051156.0 @@ -48816,7 +48816,7 @@ - 01324cas0 2200409 450 + 00000cas0 2200409 450 160812909 0001242977 20130416120001.0 @@ -48931,7 +48931,7 @@ - 00983nas 2200313 i 450 + 00000nas 2200313 i 450 040037002 0000071248 20130319051156.0 @@ -49011,7 +49011,7 @@ - 00854nas 2200289 i 450 + 00000nas 2200289 i 450 058346805 0000488653 20140110125210.0 @@ -49082,7 +49082,7 @@ - 01266cas0 2200397 450 + 00000cas0 2200397 450 039468216 0001149453 20130319051158.0 @@ -49190,7 +49190,7 @@ - 01177nas 2200313 i 450 + 00000nas 2200313 i 450 040030008 0000025903 20130319051159.0 @@ -49265,7 +49265,7 @@ - 01378nas 2200337 i 450 + 00000nas 2200337 i 450 036678341 0000170154 20140108125326.0 @@ -49352,7 +49352,7 @@ - 01366cas0 2200373 450 + 00000cas0 2200373 450 131275755 0001162740 20130319051159.0 @@ -49456,7 +49456,7 @@ - 01132nas 2200337 i 450 + 00000nas 2200337 i 450 039394654 0000004102 20130319051159.0 @@ -49544,7 +49544,7 @@ - 01316nas 2200361 i 450 + 00000nas 2200361 i 450 03868814X 0000064335 20130403162413.0 @@ -49641,7 +49641,7 @@ - 01146cas0 2200373 450 + 00000cas0 2200373 450 112769144 0001153659 20130319051201.0 @@ -49739,7 +49739,7 @@ - 01228nas 2200313 i 450 + 00000nas 2200313 i 450 036163988 0000273086 20130319051202.0 @@ -49817,7 +49817,7 @@ - 01264cas0 2200385 450 + 00000cas0 2200385 450 076801683 0001035012 20130319051202.0 @@ -49921,7 +49921,7 @@ - 01776cas0 2200445 450 + 00000cas0 2200445 450 038590522 0001084160 20130319051204.0 @@ -50051,7 +50051,7 @@ - 01436nas 2200361 i 450 + 00000nas 2200361 i 450 039718336 0000013950 20130319051204.0 @@ -50146,7 +50146,7 @@ - 01259cas0 2200373 450 + 00000cas0 2200373 450 12344697X 0001216263 20130319051204.0 @@ -50247,7 +50247,7 @@ - 00895nas 2200265 i 450 + 00000nas 2200265 i 450 040579212 0000238480 20140114094641.0 @@ -50311,7 +50311,7 @@ - 01052nas 2200301 i 450 + 00000nas 2200301 i 450 040207145 0000196904 20131003160817.0 @@ -50390,7 +50390,7 @@ - 01150nls 2200253 450 + 00000nls 2200253 450 0000769580 0000769580 20130319051204.0 @@ -50450,7 +50450,7 @@ - 01221nas 2200337 i 450 + 00000nas 2200337 i 450 039379493 0000013960 20130319051204.0 @@ -50537,7 +50537,7 @@ - 01222nas 2200337 i 450 + 00000nas 2200337 i 450 044817819 0000388517 20130604171534.0 @@ -50624,7 +50624,7 @@ - 00923nas 2200301 i 450 + 00000nas 2200301 i 450 039977625 0000069448 20130319051205.0 @@ -50701,7 +50701,7 @@ - 01089cas0 2200349 450 + 00000cas0 2200349 450 038591537 0001112858 20130319051205.0 @@ -50797,7 +50797,7 @@ - 01072cas0 2200337 450 + 00000cas0 2200337 450 038591545 0001112859 20130319051205.0 @@ -50890,7 +50890,7 @@ - 00970nas 2200301 i 450 + 00000nas 2200301 i 450 036515124 0000013965 20130319051205.0 @@ -50968,7 +50968,7 @@ - 01066nas 2200337 i 450 + 00000nas 2200337 i 450 048881759 0000307078 20130319051205.0 @@ -51056,7 +51056,7 @@ - 01263nas 2200361 i 450 + 00000nas 2200361 i 450 036751375 0000233254 20130319051206.0 @@ -51151,7 +51151,7 @@ - 008653as 2200289 i 450 + 000003as 2200289 i 450 0000113681 0000113681 20130319051207.0 @@ -51223,7 +51223,7 @@ - 01231nas 2200313 i 450 + 00000nas 2200313 i 450 036839094 0000265265 20131007112030.0 @@ -51300,7 +51300,7 @@ - 00772nas 2200277 i 450 + 00000nas 2200277 i 450 038689626 0000015010 20130319051208.0 @@ -51368,7 +51368,7 @@ - 01368nas 2200325 i 450 + 00000nas 2200325 i 450 036306347 0000163292 20140115163450.0 @@ -51452,7 +51452,7 @@ - 01371nas 2200337 i 450 + 00000nas 2200337 i 450 038114070 0000015157 20130319051209.0 @@ -51541,7 +51541,7 @@ - 01092nas 2200313 i 450 + 00000nas 2200313 i 450 003695468 0000172402 20131025132627.0 @@ -51621,7 +51621,7 @@ - 01298nls 2200337 i 450 + 00000nls 2200337 i 450 0000505658 0000505658 20130319051210.0 @@ -51705,7 +51705,7 @@ - 01198nas 2200325 i 450 + 00000nas 2200325 i 450 064130568 0000414951 20130319051211.0 @@ -51787,7 +51787,7 @@ - 01673nas 2200349 i 450 + 00000nas 2200349 i 450 0000105724 0000105724 20130422115852.0 @@ -51887,7 +51887,7 @@ - 01441cas0 2200325 450 + 00000cas0 2200325 450 048881945 0001141284 20130319051211.0 @@ -51973,7 +51973,7 @@ - 01101nas 2200337 i 450 + 00000nas 2200337 i 450 040402126 0000004272 20140110154450.0 @@ -52062,7 +52062,7 @@ - 00928nls 2200289 i 450 + 00000nls 2200289 i 450 0000977511 0000977511 20130319051212.0 @@ -52133,7 +52133,7 @@ - 01030nas 2200301 i 450 + 00000nas 2200301 i 450 0000014932 0000014932 20130319051212.0 @@ -52210,7 +52210,7 @@ - 01108nas 2200337 i 450 + 00000nas 2200337 i 450 058475540 0000539821 20130319051212.0 @@ -52299,7 +52299,7 @@ - 01004nas 2200313 i 450 + 00000nas 2200313 i 450 038690918 0000015404 20140110125516.0 @@ -52379,7 +52379,7 @@ - 01004nas 2200277 i 450 + 00000nas 2200277 i 450 036350052 0000014474 20130319051213.0 @@ -52449,7 +52449,7 @@ - 01058nas 2200325 i 450 + 00000nas 2200325 i 450 038690926 0000014476 20130319051213.0 @@ -52532,7 +52532,7 @@ - 01328nas 2200325 i 450 + 00000nas 2200325 i 450 038690942 0000014477 20130319051213.0 @@ -52615,7 +52615,7 @@ - 01072nas 2200301 i 450 + 00000nas 2200301 i 450 039134172 0000072083 20131217115508.0 @@ -52693,7 +52693,7 @@ - 01271cas0 2200325 450 + 00000cas0 2200325 450 157941213 0001224931 20130319051214.0 @@ -52780,7 +52780,7 @@ - 00891nas 2200325 i 450 + 00000nas 2200325 i 450 039284158 0000004155 20130319051215.0 @@ -52861,7 +52861,7 @@ - 01068nas 2200325 i 450 + 00000nas 2200325 i 450 038691167 0000014507 20130319051215.0 @@ -52945,7 +52945,7 @@ - 01314cas0 2200409 450 + 00000cas0 2200409 450 079005926 0000822960 20130412151406.0 @@ -53057,7 +53057,7 @@ - 01148nls 2200349 i 450 + 00000nls 2200349 i 450 0001239092 0001239092 20130517154912.0 @@ -53148,7 +53148,7 @@ - 01123cas0 2200313 450 + 00000cas0 2200313 450 038027658 0001075748 20130319051216.0 @@ -53228,7 +53228,7 @@ - 01437nas 2200373 i 450 + 00000nas 2200373 i 450 03910950X 0000004158 20130319051216.0 @@ -53327,7 +53327,7 @@ - 01295nas 2200349 i 450 + 00000nas 2200349 i 450 037426494 0000247497 20130319051216.0 @@ -53416,7 +53416,7 @@ - 01401nas 2200325 i 450 + 00000nas 2200325 i 450 036394084 0000057555 20130912114555.0 @@ -53505,7 +53505,7 @@ - 00926nls 2200289 i 450 + 00000nls 2200289 i 450 0000994382 0000994382 20130319051217.0 @@ -53575,7 +53575,7 @@ - 00970nas 2200337 i 450 + 00000nas 2200337 i 450 039531813 0000014681 20140109115037.0 @@ -53664,7 +53664,7 @@ - 01102cas0 2200337 450 + 00000cas0 2200337 450 093868529 0001129834 20131127153711.0 @@ -53752,7 +53752,7 @@ - 01174nas 2200349 i 450 + 00000nas 2200349 i 450 013306014 0000014770 20130319051217.0 @@ -53847,7 +53847,7 @@ - 01098nas 2200325 i 450 + 00000nas 2200325 i 450 039934241 0000033033 20140109120553.0 @@ -53932,7 +53932,7 @@ - 01583nas 2200397 i 450 + 00000nas 2200397 i 450 039466698 0000014677 20130319051217.0 @@ -54042,7 +54042,7 @@ - 01247nas 2200361 i 450 + 00000nas 2200361 i 450 040101967 0000095229 20130319051218.0 @@ -54135,7 +54135,7 @@ - 01131nas 2200313 i 450 + 00000nas 2200313 i 450 038691531 0000014680 20130319051218.0 @@ -54215,7 +54215,7 @@ - 00911nas 2200301 i 450 + 00000nas 2200301 i 450 078919819 0000575921 20130319051218.0 @@ -54291,7 +54291,7 @@ - 01050cas0 2200337 450 + 00000cas0 2200337 450 039695204 0001170397 20130319051218.0 @@ -54379,7 +54379,7 @@ - 01239nas 2200337 i 450 + 00000nas 2200337 i 450 039983382 0000014673 20130319051218.0 @@ -54468,7 +54468,7 @@ - 01368nls 2200337 i 450 + 00000nls 2200337 i 450 0000802818 0000802818 20130319051218.0 @@ -54551,7 +54551,7 @@ - 01231nas 2200337 i 450 + 00000nas 2200337 i 450 038691663 0000014674 20130319051218.0 @@ -54635,7 +54635,7 @@ - 01176nas 2200361 i 450 + 00000nas 2200361 i 450 002124416 0000679644 20131219160802.0 @@ -54730,7 +54730,7 @@ - 01559nas 2200373 i 450 + 00000nas 2200373 i 450 038691736 0000004239 20131219161026.0 @@ -54829,7 +54829,7 @@ - 01238nas 2200349 i 450 + 00000nas 2200349 i 450 038691744 0000004242 20131219161059.0 @@ -54921,7 +54921,7 @@ - 00910nas 2200289 i 450 + 00000nas 2200289 i 450 039150135 0000006311 20130909155357.0 @@ -54993,7 +54993,7 @@ - 00989nas 2200289 i 450 + 00000nas 2200289 i 450 061047473 0000526127 20131025120452.0 @@ -55066,7 +55066,7 @@ - 01358nas 2200349 i 450 + 00000nas 2200349 i 450 039097153 0000014675 20140110155352.0 @@ -55153,7 +55153,7 @@ - 01372nas 2200349 i 450 + 00000nas 2200349 i 450 038691760 0000014775 20130319051219.0 @@ -55241,7 +55241,7 @@ - 01060nls 2200325 i 450 + 00000nls 2200325 i 450 0000505418 0000505418 20130319051220.0 @@ -55322,7 +55322,7 @@ - 01101nas 2200325 i 450 + 00000nas 2200325 i 450 057935645 0000405069 20130319051221.0 @@ -55407,7 +55407,7 @@ - 01090nas0 22002891i 450 + 00000nas0 22002891i 450 103008691 0001081151 20130319051221.0 @@ -55491,7 +55491,7 @@ - 01044nas0 22002651 450 + 00000nas0 22002651 450 114227101 0001086242 20130319051221.0 @@ -55563,7 +55563,7 @@ - 01123nas0 22002291 450 + 00000nas0 22002291 450 114225788 0001086241 20130319051222.0 @@ -55622,7 +55622,7 @@ - 01151nas0 22002651 450 + 00000nas0 22002651 450 114225338 0001086239 20130319051222.0 @@ -55692,7 +55692,7 @@ - 01512cas0 2200301 450 + 00000cas0 2200301 450 039084663 0001086222 20130319051222.0 @@ -55776,7 +55776,7 @@ - 01222nas 2200337 i 450 + 00000nas 2200337 i 450 073593907 0000474602 20130514104646.0 @@ -55864,7 +55864,7 @@ - 01321cas0 2200385 450 + 00000cas0 2200385 450 039874796 0000884932 20131017160955.0 @@ -55977,7 +55977,7 @@ - 01382nas 2200313 i 450 + 00000nas 2200313 i 450 032986815 0000051277 20130313083302.0 @@ -56058,7 +56058,7 @@ - 01088nas 2200313 i 450 + 00000nas 2200313 i 450 0000180270 0000180270 20130319051222.0 @@ -56139,7 +56139,7 @@ - 01304nas 2200337 i 450 + 00000nas 2200337 i 450 0000134639 0000134639 20130319051222.0 @@ -56228,7 +56228,7 @@ - 01328nas 2200337 i 450 + 00000nas 2200337 i 450 0000215767 0000215767 20130319051222.0 @@ -56315,7 +56315,7 @@ - 01296nas 2200337 i 450 + 00000nas 2200337 i 450 040408124 0000146871 20130319051222.0 @@ -56403,7 +56403,7 @@ - 01043nas 2200301 i 450 + 00000nas 2200301 i 450 0000134312 0000134312 20130516171815.0 @@ -56482,7 +56482,7 @@ - 01248nas 2200349 i 450 + 00000nas 2200349 i 450 001254286 0000014777 20130412110113.0 @@ -56576,7 +56576,7 @@ - 01222nls 2200337 i 450 + 00000nls 2200337 i 450 0000061977 0000061977 20130319051223.0 @@ -56670,7 +56670,7 @@ - 01376cas0 2200373 450 + 00000cas0 2200373 450 085547026 0001011388 20131021170028.0 @@ -56774,7 +56774,7 @@ - 01186nas 2200325 i 450 + 00000nas 2200325 i 450 0000105815 20130328150227.0 @@ -56864,7 +56864,7 @@ - 01398nas0 2200337 450 + 00000nas0 2200337 450 121598942 0001130778 20130319051224.0 @@ -56955,7 +56955,7 @@ - 01664cas0 2200397 450 + 00000cas0 2200397 450 093435525 0000966951 20130319051225.0 @@ -57060,7 +57060,7 @@ - 00796nas 2200277 i 450 + 00000nas 2200277 i 450 040563677 0000236859 20130605133446.0 @@ -57129,7 +57129,7 @@ - 01146nas 2200313 i 450 + 00000nas 2200313 i 450 039904334 0000052398 20130712091341.0 @@ -57210,7 +57210,7 @@ - 01141nas0 2200349 450 + 00000nas0 2200349 450 113271972 0001081157 20130319051226.0 @@ -57306,7 +57306,7 @@ - 01227nas 2200325 i 450 + 00000nas 2200325 i 450 039696596 0000014809 20130613171426.0 @@ -57393,7 +57393,7 @@ - 00985nas 2200313 i 450 + 00000nas 2200313 i 450 036239348 0000014879 20130319051227.0 @@ -57473,7 +57473,7 @@ - 01013nas 2200313 i 450 + 00000nas 2200313 i 450 03955483X 0000004244 20130319051227.0 @@ -57551,7 +57551,7 @@ - 01057nas 2200337 i 450 + 00000nas 2200337 i 450 07731333X 0000619991 20130319051227.0 @@ -57637,7 +57637,7 @@ - 00964nls 2200313 i 450 + 00000nls 2200313 i 450 0001161289 0001161289 20130319051227.0 @@ -57716,7 +57716,7 @@ - 01009nas 2200313 i 450 + 00000nas 2200313 i 450 039541193 0000017611 20130606144414.0 @@ -57797,7 +57797,7 @@ - 00922nas 2200277 i 450 + 00000nas 2200277 i 450 039302687 0000017624 20130528170136.0 @@ -57866,7 +57866,7 @@ - 01433cas0 2200433 450 + 00000cas0 2200433 450 039087182 0001119832 20130319051228.0 @@ -57982,7 +57982,7 @@ - 01167cas0 2200373 450 + 00000cas0 2200373 450 038758075 0001140816 20130319051229.0 @@ -58085,7 +58085,7 @@ - 01714cas0 2200469 450 + 00000cas0 2200469 450 037437674 0000632498 20130319051229.0 @@ -58222,7 +58222,7 @@ - 01146nas 2200301 i 450 + 00000nas 2200301 i 450 039480844 0000016154 20131002143237.0 @@ -58305,7 +58305,7 @@ - 01425nas 2200337 i 450 + 00000nas 2200337 i 450 036738719 0000129097 20130319051229.0 @@ -58393,7 +58393,7 @@ - 01028nas 2200313 i 450 + 00000nas 2200313 i 450 040260771 0000055350 20130319051231.0 @@ -58475,7 +58475,7 @@ - 00924nls 2200301 i 450 + 00000nls 2200301 i 450 0001162421 0001162421 20130319051232.0 @@ -58549,7 +58549,7 @@ - 00808nls 2200253 i 450 + 00000nls 2200253 i 450 0000994385 0000994385 20130319051233.0 @@ -58608,7 +58608,7 @@ - 00905nas 2200313 i 450 + 00000nas 2200313 i 450 013626833 0000248887 20130319051233.0 @@ -58688,7 +58688,7 @@ - 01143nas 2200325 i 450 + 00000nas 2200325 i 450 036750743 0000207127 20130319051234.0 @@ -58770,7 +58770,7 @@ - 01092nas 2200301 i 450 + 00000nas 2200301 i 450 0000118430 0000118430 20130319051234.0 @@ -58844,7 +58844,7 @@ - 01119nas 2200325 i 450 + 00000nas 2200325 i 450 040094820 0000064637 20140107174216.0 @@ -58928,7 +58928,7 @@ - 01193nas 2200313 i 450 + 00000nas 2200313 i 450 039091880 0000006312 20131007172528.0 @@ -59007,7 +59007,7 @@ - 00892nas 2200301 i 450 + 00000nas 2200301 i 450 067775489 0000523598 20130319051234.0 @@ -59082,7 +59082,7 @@ - 01048nas 2200301 i 450 + 00000nas 2200301 i 450 058169881 0000245733 20130319051234.0 @@ -59156,7 +59156,7 @@ - 01030nas 2200301 i 450 + 00000nas 2200301 i 450 036740055 0000132666 20130911151947.0 @@ -59232,7 +59232,7 @@ - 01265nls 2200313 i 450 + 00000nls 2200313 i 450 0000487128 0000487128 20130319051234.0 @@ -59307,7 +59307,7 @@ - 01193nas 2200325 i 450 + 00000nas 2200325 i 450 040090760 0000071677 20140108125642.0 @@ -59388,7 +59388,7 @@ - 01100nas 2200325 i 450 + 00000nas 2200325 i 450 039031454 0000020612 20140108125837.0 @@ -59475,7 +59475,7 @@ - 01250nas 2200325 i 450 + 00000nas 2200325 i 450 092388809 0000207025 20130319051234.0 @@ -59561,7 +59561,7 @@ - 01049nas 2200313 i 450 + 00000nas 2200313 i 450 076794180 0000601163 20130319051235.0 @@ -59638,7 +59638,7 @@ - 00961nls 2200313 i 450 + 00000nls 2200313 i 450 0000601166 0000601166 20130319051235.0 @@ -59712,7 +59712,7 @@ - 00886nas 2200289 i 450 + 00000nas 2200289 i 450 036887072 0000254882 20130319051235.0 @@ -59783,7 +59783,7 @@ - 00867nls 2200289 i 450 + 00000nls 2200289 i 450 0000994386 0000994386 20130319051236.0 @@ -59850,7 +59850,7 @@ - 00910nls 2200289 i 450 + 00000nls 2200289 i 450 0000994387 0000994387 20130319051236.0 @@ -59920,7 +59920,7 @@ - 01159nas 2200349 i 450 + 00000nas 2200349 i 450 061095850 0000398056 20130504114610.0 @@ -60013,7 +60013,7 @@ - 01596nas 2200373 i 450 + 00000nas 2200373 i 450 03884799X 0000014977 20130703181236.0 @@ -60123,7 +60123,7 @@ - 01135nas0 2200337 450 + 00000nas0 2200337 450 110206908 0001035077 20130319051236.0 @@ -60214,7 +60214,7 @@ - 00767nas0 2200265 450 + 00000nas0 2200265 450 103481109 0000984939 20140109150343.0 @@ -60282,7 +60282,7 @@ - 00748nas 2200277 i 450 + 00000nas 2200277 i 450 057922993 0000380139 20130319051238.0 @@ -60348,7 +60348,7 @@ - 01251nas 2200325 i 450 + 00000nas 2200325 i 450 038693356 0000015102 20140110142747.0 @@ -60429,7 +60429,7 @@ - 01565nas 2200301 i 450 + 00000nas 2200301 i 450 039300994 0000077227 20131002185416.0 @@ -60507,7 +60507,7 @@ - 01053nas 2200253 i 450 + 00000nas 2200253 i 450 0000098042 0000098042 20130319051240.0 @@ -60574,7 +60574,7 @@ - 01525cas0 2200409 450 + 00000cas0 2200409 450 036251100 0000864889 20130319051240.0 @@ -60685,7 +60685,7 @@ - 01000cas0 2200301 450 + 00000cas0 2200301 450 050935763 0001094617 20130319051241.0 @@ -60770,7 +60770,7 @@ - 00925nas 2200289 i 450 + 00000nas 2200289 i 450 069458790 0000481659 20130918153912.0 @@ -60844,7 +60844,7 @@ - 00818nls 2200277 i 450 + 00000nls 2200277 i 450 0001159447 0001159447 20130319051241.0 @@ -60909,7 +60909,7 @@ - 01121nas 2200325 i 450 + 00000nas 2200325 i 450 039154777 0000071272 20130329144129.0 @@ -60991,7 +60991,7 @@ - 00904nls 2200301 i 450 + 00000nls 2200301 i 450 0001239085 0001239085 20130517155603.0 @@ -61066,7 +61066,7 @@ - 01692cas0 2200385 450 + 00000cas0 2200385 450 036768316 0001127489 20130319051242.0 @@ -61175,7 +61175,7 @@ - 00854nas 2200301 i 450 + 00000nas 2200301 i 450 039379981 0000015216 20130513165452.0 @@ -61253,7 +61253,7 @@ - 01020cas0 2200337 450 + 00000cas0 2200337 450 040221164 0000451293 20130319051242.0 @@ -61338,7 +61338,7 @@ - 01844nas 2200433 i 450 + 00000nas 2200433 i 450 039614905 0000004038 20130319051242.0 @@ -61462,7 +61462,7 @@ - 01116cas 2200313 i 450 + 00000cas 2200313 i 450 039255468 0000014983 20131004144125.0 @@ -61543,7 +61543,7 @@ - 01253nas 2200313 i 450 + 00000nas 2200313 i 450 036232556 0000015282 20130921140350.0 @@ -61627,7 +61627,7 @@ - 01126nas 2200277 i 450 + 00000nas 2200277 i 450 001814850 0000020119 20130319051242.0 @@ -61696,7 +61696,7 @@ - 01477nas 2200385 i 450 + 00000nas 2200385 i 450 044758006 0000615001 20130319051243.0 @@ -61793,7 +61793,7 @@ - 00914nas 2200313 i 450 + 00000nas 2200313 i 450 037359339 0000288162 20130319051243.0 @@ -61873,7 +61873,7 @@ - 01111cas0 2200361 450 + 00000cas0 2200361 450 074100254 0001130749 20130319051243.0 @@ -61972,7 +61972,7 @@ - 01761nas 2200385 i 450 + 00000nas 2200385 i 450 145979040 0000503570 20130319051244.0 @@ -62073,7 +62073,7 @@ - 01210nas 2200337 i 450 + 00000nas 2200337 i 450 040037231 0000028899 20140114095314.0 @@ -62164,7 +62164,7 @@ - 01243nls 2200361 i 450 + 00000nls 2200361 i 450 0000802827 0000802827 20130319051244.0 @@ -62250,7 +62250,7 @@ - 01285nas 2200337 i 450 + 00000nas 2200337 i 450 055762778 0000385181 20130319051247.0 @@ -62336,7 +62336,7 @@ - 01350nas 2200349 i 450 + 00000nas 2200349 i 450 039988694 0000010902 20130319051247.0 @@ -62427,7 +62427,7 @@ - 01200nas 2200301 i 450 + 00000nas 2200301 i 450 036839086 0000266418 20130319051247.0 @@ -62502,7 +62502,7 @@ - 00940nas 2200265 i 450 + 00000nas 2200265 i 450 040000184 0000015281 20131017160853.0 @@ -62570,7 +62570,7 @@ - 01046nas 2200325 i 450 + 00000nas 2200325 i 450 039222519 0000015459 20140109151552.0 @@ -62653,7 +62653,7 @@ - 01249nas 2200349 i 450 + 00000nas 2200349 i 450 039591689 0000015187 20130319051247.0 @@ -62751,7 +62751,7 @@ - 01430nas 2200385 i 450 + 00000nas 2200385 i 450 004430697 0000259047 20131219161427.0 @@ -62854,7 +62854,7 @@ - 01250nas 2200325 i 450 + 00000nas 2200325 i 450 039401677 0000015289 20130911114518.0 @@ -62937,7 +62937,7 @@ - 01106cas0 2200337 450 + 00000cas0 2200337 450 037470000 0001095482 20130319051247.0 @@ -63027,7 +63027,7 @@ - 00986nas 2200325 i 450 + 00000nas 2200325 i 450 036711020 0000528776 20130319051247.0 @@ -63109,7 +63109,7 @@ - 00920nas 2200301 i 450 + 00000nas 2200301 i 450 0000015447 0000015447 20130319051248.0 @@ -63184,7 +63184,7 @@ - 01310nas 2200349 i 450 + 00000nas 2200349 i 450 0000015424 0000015424 20130319051248.0 @@ -63276,7 +63276,7 @@ - 00972nas 2200289 i 450 + 00000nas 2200289 i 450 040305694 0000112266 20130319051248.0 @@ -63347,7 +63347,7 @@ - 01444nas 2200385 i 450 + 00000nas 2200385 i 450 013577654 0000015290 20130319051248.0 @@ -63452,7 +63452,7 @@ - 01155nas 2200325 i 450 + 00000nas 2200325 i 450 059854200 0000225636 20130319051248.0 @@ -63535,7 +63535,7 @@ - 01335cas0 2200361 450 + 00000cas0 2200361 450 076152448 0001152224 20131217100358.0 @@ -63631,7 +63631,7 @@ - 01030nas 2200301 i 450 + 00000nas 2200301 i 450 037385348 0000015780 20130319051249.0 @@ -63707,7 +63707,7 @@ - 01156cas0 2200361 450 + 00000cas0 2200361 450 039959716 0001151760 20130319051249.0 @@ -63808,7 +63808,7 @@ - 01290nas 2200385 i 450 + 00000nas 2200385 i 450 039934837 0000030512 20131219161500.0 @@ -63907,7 +63907,7 @@ - 01521nas 2200337 i 450 + 00000nas 2200337 i 450 038695332 0000015736 20130319051251.0 @@ -63990,7 +63990,7 @@ - 01210cas0 2200325 450 + 00000cas0 2200325 450 048699039 0001204825 20130319051251.0 @@ -64075,7 +64075,7 @@ - 01204nas 2200337 i 450 + 00000nas 2200337 i 450 03869557X 0000004078 20130319051251.0 @@ -64165,7 +64165,7 @@ - 01677nas 2200421 i 450 + 00000nas 2200421 i 450 038695758 0000008917 20130711152349.0 @@ -64279,7 +64279,7 @@ - 01355nls 2200373 i 450 + 00000nls 2200373 i 450 0000813723 0000813723 20130319051251.0 @@ -64370,7 +64370,7 @@ - 00877nls 2200301 i 450 + 00000nls 2200301 i 450 0000405086 0000405086 20130319051251.0 @@ -64442,7 +64442,7 @@ - 00768nas 2200277 i 450 + 00000nas 2200277 i 450 040155188 0000007366 20130319051251.0 @@ -64509,7 +64509,7 @@ - 00952nas 2200313 i 450 + 00000nas 2200313 i 450 045069018 0000258319 20130319051251.0 @@ -64588,7 +64588,7 @@ - 01169nas 2200373 i 450 + 00000nas 2200373 i 450 038696061 0000018271 20130319051252.0 @@ -64688,7 +64688,7 @@ - 01409nas 2200361 i 450 + 00000nas 2200361 i 450 03869607X 0000062397 20130319051252.0 @@ -64788,7 +64788,7 @@ - 01097nas 2200277 i 450 + 00000nas 2200277 i 450 038460378 0000134678 20130319051252.0 @@ -64863,7 +64863,7 @@ - 01471nas 2200397 i 450 + 00000nas 2200397 i 450 039481506 0000108467 20130319051252.0 @@ -64969,7 +64969,7 @@ - 01181nas 2200337 i 450 + 00000nas 2200337 i 450 036746924 0000084035 20140103141115.0 @@ -65061,7 +65061,7 @@ - 01053nls 2200325 i 450 + 00000nls 2200325 i 450 0001134314 0001134314 20130319051252.0 @@ -65143,7 +65143,7 @@ - 01087cas0 2200349 450 + 00000cas0 2200349 450 114206570 0001086117 20130603161738.0 @@ -65238,7 +65238,7 @@ - 01233nls 2200313 i 450 + 00000nls 2200313 i 450 0000619023 0000619023 20130319051257.0 @@ -65317,7 +65317,7 @@ - 01255nas 2200337 i 450 + 00000nas 2200337 i 450 045043477 0000222882 20140107174432.0 @@ -65405,7 +65405,7 @@ - 01382nas 2200385 i 450 + 00000nas 2200385 i 450 039742156 0000163222 20140113141030.0 @@ -65512,7 +65512,7 @@ - 00994cas0 2200337 450 + 00000cas0 2200337 450 078949599 0001073815 20130319051300.0 @@ -65605,7 +65605,7 @@ - 01626nas 2200361 i 450 + 00000nas 2200361 i 450 040200450 0000193901 20130319051300.0 @@ -65700,7 +65700,7 @@ - 01038nas 2200313 i 450 + 00000nas 2200313 i 450 064132072 0000577541 20140110160132.0 @@ -65778,7 +65778,7 @@ - 01067nas 2200313 i 450 + 00000nas 2200313 i 450 067779069 0000463937 20130319051300.0 @@ -65856,7 +65856,7 @@ - 01167nas 2200325 i 450 + 00000nas 2200325 i 450 039908046 0000164432 20130523111747.0 @@ -65940,7 +65940,7 @@ - 01273nas 2200361 i 450 + 00000nas 2200361 i 450 039531805 0000004060 20130319051300.0 @@ -66037,7 +66037,7 @@ - 01519cas0 2200409 450 + 00000cas0 2200409 450 108065863 0001041684 20130319051300.0 @@ -66150,7 +66150,7 @@ - 01042nas 2200337 i 450 + 00000nas 2200337 i 450 040352889 0000289082 20130830121757.0 @@ -66237,7 +66237,7 @@ - 01138cas0 2200361 450 + 00000cas0 2200361 450 104756241 0001156514 20130319051303.0 @@ -66332,7 +66332,7 @@ - 01028nas 2200313 i 450 + 00000nas 2200313 i 450 0000062198 0000062198 20130930171947.0 @@ -66413,7 +66413,7 @@ - 00891nas 2200289 i 450 + 00000nas 2200289 i 450 040457826 0000189342 20130319051305.0 @@ -66484,7 +66484,7 @@ - 01038nas 2200301 i 450 + 00000nas 2200301 i 450 039305309 0000062187 20130513170255.0 @@ -66562,7 +66562,7 @@ - 01271nas 2200361 i 450 + 00000nas 2200361 i 450 048779172 0000129959 20140114170818.0 @@ -66659,7 +66659,7 @@ - 00947nas 2200289 i 450 + 00000nas 2200289 i 450 039603628 0000015469 20130319051306.0 @@ -66731,7 +66731,7 @@ - 01308nas 2200337 i 450 + 00000nas 2200337 i 450 038848988 0000015979 20130910112655.0 @@ -66816,7 +66816,7 @@ - 01151nas 2200337 i 450 + 00000nas 2200337 i 450 075704234 0000225942 20140108103447.0 @@ -66901,7 +66901,7 @@ - 00963nas 2200301 i 450 + 00000nas 2200301 i 450 039151239 0000016142 20130319051307.0 @@ -66980,7 +66980,7 @@ - 01333nas 2200337 i 450 + 00000nas 2200337 i 450 038824612 0000062094 20140107135052.0 @@ -67070,7 +67070,7 @@ - 01116nas 2200337 i 450 + 00000nas 2200337 i 450 038697688 0000015978 20140107174820.0 @@ -67157,7 +67157,7 @@ - 01127cas0 2200325 450 + 00000cas0 2200325 450 112324428 0001086022 20130319051311.0 @@ -67242,7 +67242,7 @@ - 01163nas 2200313 i 450 + 00000nas 2200313 i 450 03623690X 0000015991 20131202124547.0 @@ -67325,7 +67325,7 @@ - 01593nas 2200409 i 450 + 00000nas 2200409 i 450 036771368 0000016144 20130319051312.0 @@ -67436,7 +67436,7 @@ - 00938nas 2200289 i 450 + 00000nas 2200289 i 450 039475107 0000016159 20130903145626.0 @@ -67510,7 +67510,7 @@ - 01203nas 2200325 i 450 + 00000nas 2200325 i 450 040095657 0000176655 20130319051312.0 @@ -67593,7 +67593,7 @@ - 01096nas 2200337 i 450 + 00000nas 2200337 i 450 040078795 0000016001 20130319051312.0 @@ -67680,7 +67680,7 @@ - 00959nas 2200313 i 450 + 00000nas 2200313 i 450 002564378 0000016008 20130319051314.0 @@ -67761,7 +67761,7 @@ - 00961nas 2200301 i 450 + 00000nas 2200301 i 450 0000016012 0000016012 20130319051314.0 @@ -67835,7 +67835,7 @@ - 00871nls 2200301 i 450 + 00000nls 2200301 i 450 0000505466 0000505466 20130319051314.0 @@ -67911,7 +67911,7 @@ - 01292nas 2200349 i 450 + 00000nas 2200349 i 450 083501428 0000665352 20130319051314.0 @@ -68002,7 +68002,7 @@ - 01000cas0 2200313 450 + 00000cas0 2200313 450 040514021 0001167059 20131025131003.0 @@ -68085,7 +68085,7 @@ - 01172cas0 2200325 450 + 00000cas0 2200325 450 167099167 0001245708 20140115163225.0 @@ -68174,7 +68174,7 @@ - 01227nas 2200349 i 450 + 00000nas 2200349 i 450 013868373 0001166606 20130319051317.0 @@ -68272,7 +68272,7 @@ - 01138nas 2200313 i 450 + 00000nas 2200313 i 450 013868373 0000016013 20131025133928.0 @@ -68357,7 +68357,7 @@ - 01162nas 2200337 i 450 + 00000nas 2200337 i 450 040091864 0000025924 20140110143333.0 @@ -68442,7 +68442,7 @@ - 01228nas 2200349 i 450 + 00000nas 2200349 i 450 039086674 0000016039 20130916164810.0 @@ -68535,7 +68535,7 @@ - 01079nas 2200337 i 450 + 00000nas 2200337 i 450 073903434 0000528483 20130319051317.0 @@ -68624,7 +68624,7 @@ - 01269cas0 2200397 450 + 00000cas0 2200397 450 150689454 0001232092 20130704120858.0 @@ -68732,7 +68732,7 @@ - 01057nas 2200337 i 450 + 00000nas 2200337 i 450 044754671 0000429725 20130319051318.0 @@ -68817,7 +68817,7 @@ - 00990nas 2200313 i 450 + 00000nas 2200313 i 450 03950669X 0000038345 20130319051318.0 @@ -68900,7 +68900,7 @@ - 00951nas 2200301 i 450 + 00000nas 2200301 i 450 04008986X 0000076703 20130319051319.0 @@ -68975,7 +68975,7 @@ - 01254nas 2200337 i 450 + 00000nas 2200337 i 450 039243451 0000016941 20131002151423.0 @@ -69063,7 +69063,7 @@ - 01081nas 2200301 i 450 + 00000nas 2200301 i 450 038698641 0000015992 20130319051320.0 @@ -69140,7 +69140,7 @@ - 01253cas0 2200373 450 + 00000cas0 2200373 450 078960207 0000986889 20130319051321.0 @@ -69244,7 +69244,7 @@ - 01005nls 2200301 450 + 00000nls 2200301 450 0000442906 0000442906 20130319051322.0 @@ -69316,7 +69316,7 @@ - 00960nas 2200301 i 450 + 00000nas 2200301 i 450 040536726 0000267281 20130319051322.0 @@ -69389,7 +69389,7 @@ - 01496nas 2200349 i 450 + 00000nas 2200349 i 450 039222705 0000016711 20131009140807.0 @@ -69486,7 +69486,7 @@ - 01154nas 2200325 i 450 + 00000nas 2200325 i 450 001255622 0000016164 20131022103630.0 @@ -69576,7 +69576,7 @@ - 01003nls 2200289 450 + 00000nls 2200289 450 0000311907 0000311907 20130319051322.0 @@ -69645,7 +69645,7 @@ - 01127nls 2200301 i 450 + 00000nls 2200301 i 450 0000491754 0000491754 20130319051322.0 @@ -69718,7 +69718,7 @@ - 01200cas0 2200337 450 + 00000cas0 2200337 450 037679201 0000851677 20131216093432.0 @@ -69806,7 +69806,7 @@ - 01465nas 2200409 i 450 + 00000nas 2200409 i 450 038698927 0000016794 20130329115730.0 @@ -69919,7 +69919,7 @@ - 00992nas 2200301 i 450 + 00000nas 2200301 i 450 038699001 0000062492 20130319051324.0 @@ -69994,7 +69994,7 @@ - 01907cas0 2200541 450 + 00000cas0 2200541 450 32927126 0000757662 20130319051324.0 @@ -70154,7 +70154,7 @@ - 00851nls 2200277 i 450 + 00000nls 2200277 i 450 0001162422 0001162422 20130319051324.0 @@ -70221,7 +70221,7 @@ - 01193nas 2200325 i 450 + 00000nas 2200325 i 450 001031384 0000004109 20131017112811.0 @@ -70308,7 +70308,7 @@ - 01278nas 2200301 i 450 + 00000nas 2200301 i 450 040405680 0000187445 20130521172014.0 @@ -70387,7 +70387,7 @@ - 00761nls 2200229 i 450 + 00000nls 2200229 i 450 0001243355 20130429122224.0 @@ -70441,7 +70441,7 @@ - 01448nas 2200373 i 450 + 00000nas 2200373 i 450 045105499 0000281927 20130319051325.0 @@ -70541,7 +70541,7 @@ - 00924nls 2200313 i 450 + 00000nls 2200313 i 450 0000432335 0000432335 20130319051325.0 @@ -70615,7 +70615,7 @@ - 01014nas 2200301 i 450 + 00000nas 2200301 i 450 039986365 0000089194 20130319051325.0 @@ -70690,7 +70690,7 @@ - 00934nas 2200289 i 450 + 00000nas 2200289 i 450 039606619 0000062097 20130514112757.0 @@ -70764,7 +70764,7 @@ - 00896nls 2200301 i 450 + 00000nls 2200301 i 450 0000994389 0000994389 20130319051325.0 @@ -70835,7 +70835,7 @@ - 00852nls 2200289 i 450 + 00000nls 2200289 i 450 0000994390 0000994390 20130319051326.0 @@ -70903,7 +70903,7 @@ - 00844nas 2200277 i 450 + 00000nas 2200277 i 450 001033603 0000033413 20140110122529.0 @@ -70970,7 +70970,7 @@ - 00839nls 2200277 i 450 + 00000nls 2200277 i 450 0000969208 0000969208 20130319051327.0 @@ -71036,7 +71036,7 @@ - 01203nas 2200313 i 450 + 00000nas 2200313 i 450 040162192 0000016250 20130930163448.0 @@ -71119,7 +71119,7 @@ - 01207nas 2200337 i 450 + 00000nas 2200337 i 450 039756521 0000004251 20130319051327.0 @@ -71207,7 +71207,7 @@ - 00762nas 2200277 i 450 + 00000nas 2200277 i 450 040414620 0000582307 20130319051328.0 @@ -71274,7 +71274,7 @@ - 00863nls 2200301 i 450 + 00000nls 2200301 i 450 0000505671 0000505671 20130319051328.0 @@ -71345,7 +71345,7 @@ - 01003nas 2200289 i 450 + 00000nas 2200289 i 450 037431463 0000016543 20130319051328.0 @@ -71416,7 +71416,7 @@ - 01307cas0 2200385 450 + 00000cas0 2200385 450 090068165 0001145030 20131002115608.0 @@ -71527,7 +71527,7 @@ - 01299nas 2200349 i 450 + 00000nas 2200349 i 450 040276902 0000072503 20130319051329.0 @@ -71615,7 +71615,7 @@ - 01052nas0 2200301 450 + 00000nas0 2200301 450 139145958 0001179390 20130319051330.0 @@ -71693,7 +71693,7 @@ - 00718nls 2200265 i 450 + 00000nls 2200265 i 450 0001183491 0001183491 20130319051330.0 @@ -71754,7 +71754,7 @@ - 01162nas 2200337 i 450 + 00000nas 2200337 i 450 039389162 0000004398 20131028120311.0 @@ -71845,7 +71845,7 @@ - 01046nas 2200313 i 450 + 00000nas 2200313 i 450 0000617133 20130919091838.0 @@ -71932,7 +71932,7 @@ - 01084nas 2200313 i 450 + 00000nas 2200313 i 450 040320804 0000249014 20130319051331.0 @@ -72011,7 +72011,7 @@ - 01128nas 2200325 i 450 + 00000nas 2200325 i 450 03673716X 0000072314 20130319051331.0 @@ -72095,7 +72095,7 @@ - 01163cas0 2200337 450 + 00000cas0 2200337 450 16188072X 0001240437 20130320102430.0 @@ -72186,7 +72186,7 @@ - 01147nas 2200325 i 450 + 00000nas 2200325 i 450 038699974 0000016686 20140107135415.0 @@ -72273,7 +72273,7 @@ - 01427nas 2200373 i 450 + 00000nas 2200373 i 450 03998284X 0000038223 20140108103925.0 @@ -72368,7 +72368,7 @@ - 01119nas 2200337 i 450 + 00000nas 2200337 i 450 055063462 0000107507 20130319051332.0 @@ -72462,7 +72462,7 @@ - 01782nls 2200361 450 + 00000nls 2200361 450 0000844070 0000844070 20130319051332.0 @@ -72556,7 +72556,7 @@ - 00919nas 2200289 i 450 + 00000nas 2200289 i 450 038585499 0000080036 20130319051332.0 @@ -72629,7 +72629,7 @@ - 00780nls 2200301 i 450 + 00000nls 2200301 i 450 0001182511 0001182511 20130319051332.0 @@ -72701,7 +72701,7 @@ - 01326nas 2200361 i 450 + 00000nas 2200361 i 450 166260002 0000016744 20130518171937.0 @@ -72797,7 +72797,7 @@ - 00808nas 2200289 i 450 + 00000nas 2200289 i 450 0000067011 0000067011 20130319051332.0 @@ -72868,7 +72868,7 @@ - 00995nas 2200313 i 450 + 00000nas 2200313 i 450 039484467 0000004327 20130319051332.0 @@ -72952,7 +72952,7 @@ - 00877nas 2200277 i 450 + 00000nas 2200277 i 450 036307521 0000085572 20130319051333.0 @@ -73020,7 +73020,7 @@ - 01331nas 2200373 i 450 + 00000nas 2200373 i 450 039996972 0000056731 20130319051333.0 @@ -73124,7 +73124,7 @@ - 00963nas 2200325 i 450 + 00000nas 2200325 i 450 039311848 0000016758 20130319051333.0 @@ -73208,7 +73208,7 @@ - 00896nas 2200325 i 450 + 00000nas 2200325 i 450 057801630 0000403953 20130319051333.0 @@ -73294,7 +73294,7 @@ - 01578nas 2200361 i 450 + 00000nas 2200361 i 450 038700255 0000063457 20131127153844.0 @@ -73389,7 +73389,7 @@ - 01158nls 2200337 i 450 + 00000nls 2200337 i 450 0000452004 0000452004 20130319051333.0 @@ -73471,7 +73471,7 @@ - 01289nas 2200337 i 450 + 00000nas 2200337 i 450 03931796X 0000017032 20131127154309.0 @@ -73557,7 +73557,7 @@ - 01344nas 2200385 i 450 + 00000nas 2200385 i 450 058384650 0000403850 20130319051333.0 @@ -73663,7 +73663,7 @@ - 01169nas 2200325 i 450 + 00000nas 2200325 i 450 039083683 0000017157 20130910163718.0 @@ -73747,7 +73747,7 @@ - 00971nas 2200289 i 450 + 00000nas 2200289 i 450 0000035272 0000035272 20130319051334.0 @@ -73825,7 +73825,7 @@ - 00904nas 2200289 i 450 + 00000nas 2200289 i 450 148289207 0000189241 20140116160502.0 @@ -73898,7 +73898,7 @@ - 01000nas 2200325 i 450 + 00000nas 2200325 i 450 039379531 0000052364 20130319051334.0 @@ -73981,7 +73981,7 @@ - 01104cas0 2200301 450 + 00000cas0 2200301 450 108948633 0001110342 20130319051334.0 @@ -74061,7 +74061,7 @@ - 01384nas 2200349 i 450 + 00000nas 2200349 i 450 036265586 0000017139 20130319051334.0 @@ -74152,7 +74152,7 @@ - 01126nas 2200313 i 450 + 00000nas 2200313 i 450 03870059X 0000017140 20130319051334.0 @@ -74234,7 +74234,7 @@ - 01989nas 2200421 i 450 + 00000nas 2200421 i 450 038700611 0000061252 20131127154653.0 @@ -74346,7 +74346,7 @@ - 01894nas 2200433 i 450 + 00000nas 2200433 i 450 038700638 0000017388 20131127155854.0 @@ -74466,7 +74466,7 @@ - 01427nas0 2200385 450 + 00000nas0 2200385 450 14258830X 0001186516 20130319051335.0 @@ -74568,7 +74568,7 @@ - 01964nas 2200433 i 450 + 00000nas 2200433 i 450 039320413 0000004330 20130917150921.0 @@ -74686,7 +74686,7 @@ - 01099nas 2200313 i 450 + 00000nas 2200313 i 450 037416936 0000155700 20131212111718.0 @@ -74765,7 +74765,7 @@ - 01555nas 2200361 i 450 + 00000nas 2200361 i 450 038700646 0000017393 20131127160131.0 @@ -74860,7 +74860,7 @@ - 01234nas 2200325 i 450 + 00000nas 2200325 i 450 0000061756 0000061756 20140116171919.0 @@ -74947,7 +74947,7 @@ - 01043nls 2200313 i 450 + 00000nls 2200313 i 450 0001131196 0001131196 20130319051335.0 @@ -75026,7 +75026,7 @@ - 01270nas 2200373 i 450 + 00000nas 2200373 i 450 039146081 0000014773 20130402144740.0 @@ -75129,7 +75129,7 @@ - 00965nls 2200277 i 450 + 00000nls 2200277 i 450 0001242542 20130522152112.0 @@ -75203,7 +75203,7 @@ - 01046nas 2200325 i 450 + 00000nas 2200325 i 450 038850516 0000004515 20130319051336.0 @@ -75288,7 +75288,7 @@ - 01192nas 2200325 i 450 + 00000nas 2200325 i 450 039290271 0000184762 20140108160147.0 @@ -75373,7 +75373,7 @@ - 01111nas 2200337 i 450 + 00000nas 2200337 i 450 040056961 0000038218 20130319051336.0 @@ -75461,7 +75461,7 @@ - 01687nas 2200361 i 450 + 00000nas 2200361 i 450 038700735 0000017450 20131127160231.0 @@ -75551,7 +75551,7 @@ - 01120nas 2200301 i 450 + 00000nas 2200301 i 450 038700719 0000017433 20130502115602.0 @@ -75633,7 +75633,7 @@ - 01127nas 2200313 i 450 + 00000nas 2200313 i 450 040084329 0000055668 20130319051336.0 @@ -75709,7 +75709,7 @@ - 01151nas 2200337 i 450 + 00000nas 2200337 i 450 039334147 0000017446 20131119173710.0 @@ -75802,7 +75802,7 @@ - 01942nas 2200445 i 450 + 00000nas 2200445 i 450 040101983 0000100607 20131127160747.0 @@ -75928,7 +75928,7 @@ - 01512nas 2200385 i 450 + 00000nas 2200385 i 450 039416038 0000004473 20130319051337.0 @@ -76032,7 +76032,7 @@ - 01197nas 2200349 i 450 + 00000nas 2200349 i 450 039222977 0000017425 20140106113010.0 @@ -76129,7 +76129,7 @@ - 00961nas 2200301 i 450 + 00000nas 2200301 i 450 0000062897 0000062897 20130319051337.0 @@ -76205,7 +76205,7 @@ - 01373cas0 2200409 450 + 00000cas0 2200409 450 104394269 0001138415 20130319051337.0 @@ -76321,7 +76321,7 @@ - 01181cas0 2200373 450 + 00000cas0 2200373 450 061783226 0001092669 20131028120210.0 @@ -76422,7 +76422,7 @@ - 01297nas 2200385 i 450 + 00000nas 2200385 i 450 013307509 0000004320 20130319051338.0 @@ -76527,7 +76527,7 @@ - 01720cas0 2200445 450 + 00000cas0 2200445 450 088588254 0001238861 20131021095921.0 @@ -76659,7 +76659,7 @@ - 01267nas 2200349 i 450 + 00000nas 2200349 i 450 040050114 0000100833 20130826120152.0 @@ -76749,7 +76749,7 @@ - 00978nas 2200289 i 450 + 00000nas 2200289 i 450 045087261 0000266759 20130828183706.0 @@ -76823,7 +76823,7 @@ - 01197cas0 2200385 450 + 00000cas0 2200385 450 044839049 0000875124 20140106114426.0 @@ -76931,7 +76931,7 @@ - 01158nas 2200325 i 450 + 00000nas 2200325 i 450 013302248 0000018537 20130319051339.0 @@ -77016,7 +77016,7 @@ - 01192nas 2200349 i 450 + 00000nas 2200349 i 450 080065139 0000539794 20130319051339.0 @@ -77109,7 +77109,7 @@ - 01304nas 2200361 i 450 + 00000nas 2200361 i 450 032921713 0000004599 20140106115406.0 @@ -77206,7 +77206,7 @@ - 01248nas 2200325 i 450 + 00000nas 2200325 i 450 038700859 0000004775 20131014103214.0 @@ -77291,7 +77291,7 @@ - 00857nls 2200289 i 450 + 00000nls 2200289 i 450 0000995139 0000995139 20130319051339.0 @@ -77361,7 +77361,7 @@ - 01596nas 2200361 i 450 + 00000nas 2200361 i 450 013385054 0000018235 20130319051339.0 @@ -77455,7 +77455,7 @@ - 00996nas 2200337 i 450 + 00000nas 2200337 i 450 058823913 0000544851 20130319051340.0 @@ -77543,7 +77543,7 @@ - 01050cas0 2200361 450 + 00000cas0 2200361 450 125204515 0001177087 20130319051340.0 @@ -77637,7 +77637,7 @@ - 01251cas0 2200325 450 + 00000cas0 2200325 450 036831875 0001093418 20130319051340.0 @@ -77727,7 +77727,7 @@ - 01584nls 2200361 i 450 + 00000nls 2200361 i 450 0000909073 0000909073 20130319051340.0 @@ -77814,7 +77814,7 @@ - 01144nas 2200337 i 450 + 00000nas 2200337 i 450 0000017656 0000017656 20130319051340.0 @@ -77901,7 +77901,7 @@ - 01148cas0 2200361 450 + 00000cas0 2200361 450 045044309 0000830073 20130319051340.0 @@ -78000,7 +78000,7 @@ - 01468nls 2200349 i 450 + 00000nls 2200349 i 450 0000813729 0000813729 20130319051341.0 @@ -78085,7 +78085,7 @@ - 01223cas0 22003853 450 + 00000cas0 22003853 450 128292857 0001187087 20130319051343.0 @@ -78187,7 +78187,7 @@ - 01087nls 2200301 i 450 + 00000nls 2200301 i 450 0000470135 0000470135 20130319051343.0 @@ -78263,7 +78263,7 @@ - 01151nas 2200313 i 450 + 00000nas 2200313 i 450 0000010856 0000010856 20130319051343.0 @@ -78345,7 +78345,7 @@ - 01000nas 2200277 i 450 + 00000nas 2200277 i 450 0000071550 0000071550 20130319051343.0 @@ -78412,7 +78412,7 @@ - 01067cas0 2200349 450 + 00000cas0 2200349 450 076791149 0001179384 20130319051344.0 @@ -78506,7 +78506,7 @@ - 01050cas0 2200337 450 + 00000cas0 2200337 450 044953046 0001095332 20130319051345.0 @@ -78596,7 +78596,7 @@ - 01016nas 2200313 i 450 + 00000nas 2200313 i 450 039312100 0000018012 20130319051346.0 @@ -78677,7 +78677,7 @@ - 01299nas 2200289 i 450 + 00000nas 2200289 i 450 058784772 0000455866 20131113155243.0 @@ -78750,7 +78750,7 @@ - 01169cas0 2200385 450 + 00000cas0 2200385 450 123875080 0001220709 20130319051349.0 @@ -78854,7 +78854,7 @@ - 00887nls 2200301 i 450 + 00000nls 2200301 i 450 0000497683 0000497683 20130827113128.0 @@ -78927,7 +78927,7 @@ - 01136nas 2200361 i 450 + 00000nas 2200361 i 450 112289215 0000594967 20130319051349.0 @@ -79022,7 +79022,7 @@ - 01186nas 2200337 i 450 + 00000nas 2200337 i 450 036328758 0000208780 20130319051350.0 @@ -79109,7 +79109,7 @@ - 01171nas 2200337 i 450 + 00000nas 2200337 i 450 0000432342 20140115144959.0 @@ -79198,7 +79198,7 @@ - 01053nas 2200301 i 450 + 00000nas 2200301 i 450 0000276429 0000276429 20130319051351.0 @@ -79275,7 +79275,7 @@ - 01096nas 2200313 i 450 + 00000nas 2200313 i 450 039362264 0000018117 20130319051351.0 @@ -79356,7 +79356,7 @@ - 01402nas 2200361 i 450 + 00000nas 2200361 i 450 0000432370 0000432370 20130319051351.0 @@ -79449,7 +79449,7 @@ - 01355nas 2200325 i 450 + 00000nas 2200325 i 450 0000047858 0000047858 20130319051351.0 @@ -79533,7 +79533,7 @@ - 01109nas 2200325 i 450 + 00000nas 2200325 i 450 038703645 0000054043 20130319051352.0 @@ -79617,7 +79617,7 @@ - 01192nas 2200349 i 450 + 00000nas 2200349 i 450 0000018192 0000018192 20130319051352.0 @@ -79709,7 +79709,7 @@ - 00957nls 2200313 i 450 + 00000nls 2200313 i 450 0000432323 0000432323 20130319051353.0 @@ -79785,7 +79785,7 @@ - 01253nas 2200325 i 450 + 00000nas 2200325 i 450 040004317 0000060755 20131104154717.0 @@ -79873,7 +79873,7 @@ - 01228nas 2200337 i 450 + 00000nas 2200337 i 450 039373142 0000018199 20130319051353.0 @@ -79963,7 +79963,7 @@ - 01233nas 2200337 i 450 + 00000nas 2200337 i 450 039011925 0000018203 20130319051354.0 @@ -80055,7 +80055,7 @@ - 01067nas 2200337 i 450 + 00000nas 2200337 i 450 040091007 0000306848 20130319051356.0 @@ -80145,7 +80145,7 @@ - 00981nas 2200325 i 450 + 00000nas 2200325 i 450 040290042 0000147328 20130319051356.0 @@ -80229,7 +80229,7 @@ - 01030nas 2200313 i 450 + 00000nas 2200313 i 450 03994767X 0000063932 20130523145552.0 @@ -80310,7 +80310,7 @@ - 01021nas0 2200325 450 + 00000nas0 2200325 450 112139051 0001083879 20130319051357.0 @@ -80396,7 +80396,7 @@ - 01051nas 2200325 i 450 + 00000nas 2200325 i 450 039608751 0000427985 20130927122121.0 @@ -80482,7 +80482,7 @@ - 00868nls 2200301 i 450 + 00000nls 2200301 i 450 0001161952 0001161952 20130319051357.0 @@ -80556,7 +80556,7 @@ - 01160cas0 2200385 450 + 00000cas0 2200385 450 03940238X 0001166384 20130319051357.0 @@ -80659,7 +80659,7 @@ - 01309nas 2200349 i 450 + 00000nas 2200349 i 450 039316009 0000255400 20130319051357.0 @@ -80749,7 +80749,7 @@ - 01130nas 2200325 i 450 + 00000nas 2200325 i 450 013707345 0000074924 20140107125652.0 @@ -80832,7 +80832,7 @@ - 00900nas 2200277 i 450 + 00000nas 2200277 i 450 088375307 0000071781 20131004151307.0 @@ -80900,7 +80900,7 @@ - 00899nls 2200301 i 450 + 00000nls 2200301 i 450 0000994391 0000994391 20130319051358.0 @@ -80973,7 +80973,7 @@ - 00971nas 2200289 i 450 + 00000nas 2200289 i 450 0000138238 0000138238 20130319051358.0 @@ -81047,7 +81047,7 @@ - 01075nas 2200313 i 450 + 00000nas 2200313 i 450 039236595 0000004603 20130319051359.0 @@ -81131,7 +81131,7 @@ - 01454nas 2200385 i 450 + 00000nas 2200385 i 450 001012576 0000004604 20131024164602.0 @@ -81243,7 +81243,7 @@ - 01103nas 2200325 i 450 + 00000nas 2200325 i 450 04035931X 0000140474 20130319051359.0 @@ -81328,7 +81328,7 @@ - 00870nas 2200289 i 450 + 00000nas 2200289 i 450 039558428 0000018325 20130319051359.0 @@ -81401,7 +81401,7 @@ - 00981nls 2200301 i 450 + 00000nls 2200301 i 450 0000498522 0000498522 20130319051359.0 @@ -81472,7 +81472,7 @@ - 00941nas 2200301 i 450 + 00000nas 2200301 i 450 036252506 0000104961 20131112142707.0 @@ -81551,7 +81551,7 @@ - 01060nls 2200313 450 + 00000nls 2200313 450 0000442878 0000442878 20130319051402.0 @@ -81626,7 +81626,7 @@ - 01490nas 2200361 i 450 + 00000nas 2200361 i 450 0000018607 0000018607 20130319051402.0 @@ -81717,7 +81717,7 @@ - 01524nas 2200349 i 450 + 00000nas 2200349 i 450 039678172 0000018624 20130319051402.0 @@ -81815,7 +81815,7 @@ - 01040nas 2200313 i 450 + 00000nas 2200313 i 450 038980703 0000112593 20130319051402.0 @@ -81894,7 +81894,7 @@ - 00837nas 2200277 i 450 + 00000nas 2200277 i 450 039915891 0000067239 20130319051405.0 @@ -81964,7 +81964,7 @@ - 01090nas 2200313 i 450 + 00000nas 2200313 i 450 073577995 0000250772 20131127140920.0 @@ -82043,7 +82043,7 @@ - 01150nas 2200313 i 450 + 00000nas 2200313 i 450 03870501X 0000018693 20130319051411.0 @@ -82122,7 +82122,7 @@ - 01151nas 2200325 i 450 + 00000nas 2200325 i 450 039991628 0000006686 20130319051411.0 @@ -82203,7 +82203,7 @@ - 01091nas 2200301 i 450 + 00000nas 2200301 i 450 039768732 0000005867 20130319051411.0 @@ -82284,7 +82284,7 @@ - 00941nas 2200289 i 450 + 00000nas 2200289 i 450 039079104 0000018696 20131025133627.0 @@ -82356,7 +82356,7 @@ - 01031nas 2200289 i 450 + 00000nas 2200289 i 450 07618935X 0000018884 20130319051411.0 @@ -82428,7 +82428,7 @@ - 00974nas 2200313 i 450 + 00000nas 2200313 i 450 059608706 0000417958 20130319051411.0 @@ -82508,7 +82508,7 @@ - 00934nas 2200289 i 450 + 00000nas 2200289 i 450 039480070 0000018887 20131113155840.0 @@ -82583,7 +82583,7 @@ - 00953nls 2200289 i 450 + 00000nls 2200289 i 450 0000534041 0000534041 20130319051412.0 @@ -82651,7 +82651,7 @@ - 01227nas 2200361 i 450 + 00000nas 2200361 i 450 039236617 0000018907 20130319051412.0 @@ -82746,7 +82746,7 @@ - 01436nas 2200361 i 450 + 00000nas 2200361 i 450 038705079 0000018892 20130319051412.0 @@ -82837,7 +82837,7 @@ - 01446cas0 2200409 450 + 00000cas0 2200409 450 108058034 0001079074 20131025131429.0 @@ -82946,7 +82946,7 @@ - 00980nls 2200289 i 450 + 00000nls 2200289 i 450 0000533874 0000533874 20130319051412.0 @@ -83015,7 +83015,7 @@ - 01051nas 2200337 i 450 + 00000nas 2200337 i 450 037398881 0000070013 20130319051412.0 @@ -83102,7 +83102,7 @@ - 01152nas 2200325 i 450 + 00000nas 2200325 i 450 038414201 0000004531 20130319051412.0 @@ -83189,7 +83189,7 @@ - 01408nas 2200397 i 450 + 00000nas 2200397 i 450 013870300 0000181585 20131129121047.0 @@ -83297,7 +83297,7 @@ - 00907nas 2200301 i 450 + 00000nas 2200301 i 450 0000018894 0000018894 20130319051412.0 @@ -83372,7 +83372,7 @@ - 00968nas 2200325 i 450 + 00000nas 2200325 i 450 039263355 0000018895 20130319051412.0 @@ -83456,7 +83456,7 @@ - 01181cas0 2200373 450 + 00000cas0 2200373 450 039660443 0000990833 20130523150150.0 @@ -83559,7 +83559,7 @@ - 01047nls 2200325 i 450 + 00000nls 2200325 i 450 0001182579 0001182579 20130319051412.0 @@ -83637,7 +83637,7 @@ - 01154nas 2200361 i 450 + 00000nas 2200361 i 450 077221427 0000615613 20131029102304.0 @@ -83729,7 +83729,7 @@ - 00974nas 2200313 i 450 + 00000nas 2200313 i 450 013558951 0000167917 20130425092348.0 @@ -83808,7 +83808,7 @@ - 01032cas0 2200325 450 + 00000cas0 2200325 450 076266397 0000747944 20130319051413.0 @@ -83891,7 +83891,7 @@ - 01095nas 2200301 i 450 + 00000nas 2200301 i 450 037383108 0000169529 20130319051413.0 @@ -83967,7 +83967,7 @@ - 01217nas 2200313 i 450 + 00000nas 2200313 i 450 039620492 0000004127 20130709140809.0 @@ -84049,7 +84049,7 @@ - 01080nas 2200301 i 450 + 00000nas 2200301 i 450 037036491 0000004135 20130827115045.0 @@ -84123,7 +84123,7 @@ - 01106nas 2200301 i 450 + 00000nas 2200301 i 450 11694207X 0000379754 20130710111425.0 @@ -84199,7 +84199,7 @@ - 01030nas 2200265 i 450 + 00000nas 2200265 i 450 116941936 0000215085 20130912111824.0 @@ -84267,7 +84267,7 @@ - 01077nas 2200277 i 450 + 00000nas 2200277 i 450 116881178 0000004826 20130715122048.0 @@ -84337,7 +84337,7 @@ - 01148nas 2200301 i 450 + 00000nas 2200301 i 450 037036467 0000004827 20130715121846.0 @@ -84414,7 +84414,7 @@ - 01142nas 2200301 i 450 + 00000nas 2200301 i 450 03703636X 0000004829 20130715121005.0 @@ -84491,7 +84491,7 @@ - 01160nas 2200301 i 450 + 00000nas 2200301 i 450 039620557 0000004830 20130715121057.0 @@ -84568,7 +84568,7 @@ - 01078nas 2200289 i 450 + 00000nas 2200289 i 450 039286150 0000004844 20130715121201.0 @@ -84642,7 +84642,7 @@ - 01128nas 2200301 i 450 + 00000nas 2200301 i 450 040132781 0000004340 20130715115928.0 @@ -84719,7 +84719,7 @@ - 01150nas 2200301 i 450 + 00000nas 2200301 i 450 039620514 0000004847 20130715120648.0 @@ -84796,7 +84796,7 @@ - 00982nas 2200289 i 450 + 00000nas 2200289 i 450 037396951 0000039321 20130319051413.0 @@ -84867,7 +84867,7 @@ - 01143nas 2200301 i 450 + 00000nas 2200301 i 450 037036386 0000004851 20130709134033.0 @@ -84944,7 +84944,7 @@ - 01134nas 2200301 i 450 + 00000nas 2200301 i 450 040132781 0000004889 20130828145201.0 @@ -85021,7 +85021,7 @@ - 01068nas 2200289 i 450 + 00000nas 2200289 i 450 039286150 0000004890 20130715121306.0 @@ -85095,7 +85095,7 @@ - 01042nas 2200301 i 450 + 00000nas 2200301 i 450 0000379751 0000379751 20130319051413.0 @@ -85169,7 +85169,7 @@ - 00959nas 2200277 i 450 + 00000nas 2200277 i 450 0000078280 0000078280 20130319051413.0 @@ -85237,7 +85237,7 @@ - 01148nas 2200301 i 450 + 00000nas 2200301 i 450 03703636X 0000004891 20130715120853.0 @@ -85314,7 +85314,7 @@ - 01128nas 2200289 i 450 + 00000nas 2200289 i 450 039306070 0000004892 20130715121617.0 @@ -85387,7 +85387,7 @@ - 01165nas 2200313 i 450 + 00000nas 2200313 i 450 040132803 0000004894 20130715121940.0 @@ -85467,7 +85467,7 @@ - 00951nas 2200277 i 450 + 00000nas 2200277 i 450 037396919 0000069313 20130319051413.0 @@ -85534,7 +85534,7 @@ - 01153nas 2200301 i 450 + 00000nas 2200301 i 450 037036246 0000004906 20130715121747.0 @@ -85611,7 +85611,7 @@ - 01217nas 2200301 i 450 + 00000nas 2200301 i 450 116941898 0000200206 20130710115342.0 @@ -85688,7 +85688,7 @@ - 01134nas 2200301 i 450 + 00000nas 2200301 i 450 116941871 0000196046 20130319051413.0 @@ -85762,7 +85762,7 @@ - 01032nas 2200289 i 450 + 00000nas 2200289 i 450 116941995 0000241770 20130319051413.0 @@ -85834,7 +85834,7 @@ - 01173nas 2200301 i 450 + 00000nas 2200301 i 450 040132536 0000004913 20130709140438.0 @@ -85911,7 +85911,7 @@ - 01071nas 2200277 i 450 + 00000nas 2200277 i 450 116941952 0000218468 20130912112842.0 @@ -85982,7 +85982,7 @@ - 01136nas 2200301 i 450 + 00000nas 2200301 i 450 037036343 0000004916 20130715120252.0 @@ -86059,7 +86059,7 @@ - 01135nas 2200301 i 450 + 00000nas 2200301 i 450 037036327 0000004917 20130710103943.0 @@ -86135,7 +86135,7 @@ - 01142nas 2200301 i 450 + 00000nas 2200301 i 450 116941790 0000004919 20130715120745.0 @@ -86212,7 +86212,7 @@ - 01067nas 2200301 i 450 + 00000nas 2200301 i 450 0000398396 0000398396 20130319051413.0 @@ -86287,7 +86287,7 @@ - 00964nas 2200265 i 450 + 00000nas 2200265 i 450 037404911 0000128375 20130319051413.0 @@ -86354,7 +86354,7 @@ - 01289nls 2200313 i 450 + 00000nls 2200313 i 450 0000311119 0000311119 20130319051413.0 @@ -86430,7 +86430,7 @@ - 01351nas 2200409 i 450 + 00000nas 2200409 i 450 039300862 0000003405 20130319051413.0 @@ -86546,7 +86546,7 @@ - 01170nas 2200313 i 450 + 00000nas 2200313 i 450 0000277295 0000277295 20130319051413.0 @@ -86626,7 +86626,7 @@ - 01043nas 2200313 i 450 + 00000nas 2200313 i 450 039305570 0000018623 20130923170315.0 @@ -86709,7 +86709,7 @@ - 01178nas 2200361 i 450 + 00000nas 2200361 i 450 036274623 0000004527 20130319051413.0 @@ -86804,7 +86804,7 @@ - 01065nas 2200301 i 450 + 00000nas 2200301 i 450 039667162 0000018549 20130319051413.0 @@ -86883,7 +86883,7 @@ - 01565cas0 2200397 450 + 00000cas0 2200397 450 038442795 0001084149 20130319051413.0 @@ -86991,7 +86991,7 @@ - 01360nas 2200361 i 450 + 00000nas 2200361 i 450 013310100 0000019009 20130319051413.0 @@ -87085,7 +87085,7 @@ - 01158nas 2200313 i 450 + 00000nas 2200313 i 450 039223531 0000061209 20130319051413.0 @@ -87166,7 +87166,7 @@ - 00889nas 2200313 i 450 + 00000nas 2200313 i 450 039223558 0000108027 20130319051413.0 @@ -87246,7 +87246,7 @@ - 01169nas 2200349 i 450 + 00000nas 2200349 i 450 039082962 0000019459 20131104163823.0 @@ -87343,7 +87343,7 @@ - 01263nas 2200361 i 450 + 00000nas 2200361 i 450 127737006 0000460111 20140106161951.0 @@ -87439,7 +87439,7 @@ - 00930nas 2200289 i 450 + 00000nas 2200289 i 450 036849049 0000220579 20130319051414.0 @@ -87512,7 +87512,7 @@ - 01068nas 2200325 i 450 + 00000nas 2200325 i 450 040141039 0000011171 20130319051414.0 @@ -87595,7 +87595,7 @@ - 01123nas 2200349 i 450 + 00000nas 2200349 i 450 038705338 0000004504 20131001141121.0 @@ -87686,7 +87686,7 @@ - 01048nas 2200325 i 450 + 00000nas 2200325 i 450 039379582 0000020052 20130725093234.0 @@ -87775,7 +87775,7 @@ - 01201nas 2200349 i 450 + 00000nas 2200349 i 450 040058700 0000041624 20130319051414.0 @@ -87866,7 +87866,7 @@ - 01228nas0 2200397 450 + 00000nas0 2200397 450 158393120 0001225247 20130319051414.0 @@ -87973,7 +87973,7 @@ - 00831nas 2200289 i 450 + 00000nas 2200289 i 450 039638049 0000020058 20130319051414.0 @@ -88044,7 +88044,7 @@ - 01099nas 2200325 i 450 + 00000nas 2200325 i 450 049007653 0000052418 20130319051414.0 @@ -88127,7 +88127,7 @@ - 01931nas 2200433 i 450 + 00000nas 2200433 i 450 040101622 0000085678 20140108104232.0 @@ -88241,7 +88241,7 @@ - 01081cas0 2200349 450 + 00000cas0 2200349 450 057909571 0001114153 20130319051415.0 @@ -88332,7 +88332,7 @@ - 01150nas 2200325 i 450 + 00000nas 2200325 i 450 039223582 0000018925 20130319051416.0 @@ -88415,7 +88415,7 @@ - 01145nas 2200313 i 450 + 00000nas 2200313 i 450 038759934 0000472498 20130319051416.0 @@ -88503,7 +88503,7 @@ - 00845nls 2200277 i 450 + 00000nls 2200277 i 450 0001159617 0001159617 20130319051417.0 @@ -88572,7 +88572,7 @@ - 01552nas 2200361 i 450 + 00000nas 2200361 i 450 0000151123 0000151123 20130319051417.0 @@ -88672,7 +88672,7 @@ - 00749nas 2200217 i 450 + 00000nas 2200217 i 450 036551589 0000064720 20130319051417.0 @@ -88722,7 +88722,7 @@ - 01427nas 2200337 i 450 + 00000nas 2200337 i 450 038705435 0000019079 20130319051417.0 @@ -88815,7 +88815,7 @@ - 01414cas0 2200397 450 + 00000cas0 2200397 450 067379257 0001011167 20130319051417.0 @@ -88923,7 +88923,7 @@ - 00852nls 2200265 i 450 + 00000nls 2200265 i 450 0000978263 0000978263 20130319051417.0 @@ -88986,7 +88986,7 @@ - 01004nas 2200313 i 450 + 00000nas 2200313 i 450 039318966 0000019080 20130319051417.0 @@ -89065,7 +89065,7 @@ - 01005nas 2200289 i 450 + 00000nas 2200289 i 450 03674932X 0000195515 20140110133659.0 @@ -89136,7 +89136,7 @@ - 00855nls 2200301 i 450 + 00000nls 2200301 i 450 0001221929 0001221929 20130319051417.0 @@ -89207,7 +89207,7 @@ - 00946nls 2200253 i 450 + 00000nls 2200253 i 450 0001147384 0001147384 20130319051417.0 @@ -89266,7 +89266,7 @@ - 01136nas 2200349 i 450 + 00000nas 2200349 i 450 039321983 0000019081 20140109145849.0 @@ -89355,7 +89355,7 @@ - 01524nas 2200361 i 450 + 00000nas 2200361 i 450 040089800 0000208896 20130319051417.0 @@ -89447,7 +89447,7 @@ - 01762cas0 2200433 450 + 00000cas0 2200433 450 039078604 0000794141 20131127163232.0 @@ -89566,7 +89566,7 @@ - 01233nas 2200337 i 450 + 00000nas 2200337 i 450 040055345 0000083307 20140110125905.0 @@ -89649,7 +89649,7 @@ - 01353nas 2200325 i 450 + 00000nas 2200325 i 450 036741140 0000172691 20130319051417.0 @@ -89732,7 +89732,7 @@ - 00997nas 2200289 i 450 + 00000nas 2200289 i 450 039129586 0000010782 20130319051417.0 @@ -89806,7 +89806,7 @@ - 01579nas 2200385 i 450 + 00000nas 2200385 i 450 039380920 0000019084 20131219162613.0 @@ -89919,7 +89919,7 @@ - 01105nas 2200313 i 450 + 00000nas 2200313 i 450 070079617 0000524975 20130319051417.0 @@ -89995,7 +89995,7 @@ - 01567nas 2200385 i 450 + 00000nas 2200385 i 450 0000019085 0000019085 20130319051417.0 @@ -90093,7 +90093,7 @@ - 00840nas 2200265 i 450 + 00000nas 2200265 i 450 0000066756 0000066756 20130319051417.0 @@ -90158,7 +90158,7 @@ - 00852nas 2200265 i 450 + 00000nas 2200265 i 450 036819808 0000255250 20130319051417.0 @@ -90222,7 +90222,7 @@ - 01536nas 2200349 i 450 + 00000nas 2200349 i 450 040102335 0000116682 20130319051417.0 @@ -90312,7 +90312,7 @@ - 01137nas 2200313 i 450 + 00000nas 2200313 i 450 036737828 0000145784 20130319051417.0 @@ -90390,7 +90390,7 @@ - 01122nas 2200301 i 450 + 00000nas 2200301 i 450 036739162 0000238983 20140110121434.0 @@ -90463,7 +90463,7 @@ - 01098nas 2200301 i 450 + 00000nas 2200301 i 450 039399249 0000019333 20140110135148.0 @@ -90540,7 +90540,7 @@ - 01452nas 2200361 i 450 + 00000nas 2200361 i 450 040349381 0000415170 20130319051417.0 @@ -90635,7 +90635,7 @@ - 01510nas 2200361 i 450 + 00000nas 2200361 i 450 040100235 0000136968 20130319051418.0 @@ -90730,7 +90730,7 @@ - 01174nas 2200337 i 450 + 00000nas 2200337 i 450 059239492 0000589156 20140114170901.0 @@ -90817,7 +90817,7 @@ - 01022nas 2200313 i 450 + 00000nas 2200313 i 450 040293149 0000266426 20130319051418.0 @@ -90898,7 +90898,7 @@ - 01191nas 2200289 i 450 + 00000nas 2200289 i 450 039109712 0000019337 20130903142815.0 @@ -90972,7 +90972,7 @@ - 01116nas 2200325 i 450 + 00000nas 2200325 i 450 048879150 0000268919 20130319051418.0 @@ -91052,7 +91052,7 @@ - 01243nas 2200325 i 450 + 00000nas 2200325 i 450 040101088 0000085173 20130319051418.0 @@ -91137,7 +91137,7 @@ - 01415nas 2200349 i 450 + 00000nas 2200349 i 450 048811823 0000276894 20130830110955.0 @@ -91227,7 +91227,7 @@ - 01220nas 2200349 i 450 + 00000nas 2200349 i 450 039320960 0000019342 20131025121155.0 @@ -91319,7 +91319,7 @@ - 01439nas 2200385 i 450 + 00000nas 2200385 i 450 056260350 0000385162 20130319051418.0 @@ -91420,7 +91420,7 @@ - 01044nas 2200313 i 450 + 00000nas 2200313 i 450 040105202 0000198707 20130319051419.0 @@ -91501,7 +91501,7 @@ - 01099nas0 2200325 450 + 00000nas0 2200325 450 112874363 0001068981 20130319051419.0 @@ -91586,7 +91586,7 @@ - 01014cas0 2200337 450 + 00000cas0 2200337 450 073551333 0000944901 20130319051419.0 @@ -91676,7 +91676,7 @@ - 01073nas 2200325 i 450 + 00000nas 2200325 i 450 0000169298 0000169298 20130319051419.0 @@ -91757,7 +91757,7 @@ - 01131nas 2200325 i 450 + 00000nas 2200325 i 450 0000075739 0000075739 20130319051419.0 @@ -91836,7 +91836,7 @@ - 01232cas0 2200385 450 + 00000cas0 2200385 450 094895945 0000966953 20130319051420.0 @@ -91941,7 +91941,7 @@ - 01227nas 2200325 i 450 + 00000nas 2200325 i 450 078585961 0000290924 20131217101451.0 @@ -92027,7 +92027,7 @@ - 01758cas0 2200385 450 + 00000cas0 2200385 450 048859125 0001187276 20130319051421.0 @@ -92131,7 +92131,7 @@ - 01364cas0 2200361 450 + 00000cas0 2200361 450 099486458 0001187277 20130319051421.0 @@ -92229,7 +92229,7 @@ - 00968nas 2200313 i 450 + 00000nas 2200313 i 450 0000063803 0000063803 20130319051422.0 @@ -92310,7 +92310,7 @@ - 00762nas 2200265 i 450 + 00000nas 2200265 i 450 0000124918 0000124918 20130319051422.0 @@ -92376,7 +92376,7 @@ - 00977nas 2200301 i 450 + 00000nas 2200301 i 450 0000082931 0000082931 20130319051422.0 @@ -92452,7 +92452,7 @@ - 00800nas 2200277 i 450 + 00000nas 2200277 i 450 03912858X 0000019543 20130319051422.0 @@ -92520,7 +92520,7 @@ - 01362nas 2200337 i 450 + 00000nas 2200337 i 450 001012606 0000004470 20130930160424.0 @@ -92615,7 +92615,7 @@ - 00990nas 2200289 i 450 + 00000nas 2200289 i 450 038706458 0000019353 20130319051423.0 @@ -92686,7 +92686,7 @@ - 00929nas 2200313 i 450 + 00000nas 2200313 i 450 0000585910 0000585910 20130319051423.0 @@ -92767,7 +92767,7 @@ - 01242cas0 2200397 450 + 00000cas0 2200397 450 001030493 0001189732 20130319051424.0 @@ -92877,7 +92877,7 @@ - 01438nas 2200325 i 450 + 00000nas 2200325 i 450 039223612 0000004474 20131219152509.0 @@ -92970,7 +92970,7 @@ - 00996nas 2200337 i 450 + 00000nas 2200337 i 450 04005456X 0000014634 20130319051424.0 @@ -93057,7 +93057,7 @@ - 01049nls 2200301 i 450 + 00000nls 2200301 i 450 0001160211 0001160211 20130319051424.0 @@ -93134,7 +93134,7 @@ - 00910nas 2200301 i 450 + 00000nas 2200301 i 450 057931534 0000153796 20130319051426.0 @@ -93213,7 +93213,7 @@ - 01056nls 2200301 i 450 + 00000nls 2200301 i 450 0000486590 0000486590 20130319051426.0 @@ -93286,7 +93286,7 @@ - 01180nls 2200301 i 450 + 00000nls 2200301 i 450 0000534049 0000534049 20130319051426.0 @@ -93358,7 +93358,7 @@ - 01046nas 2200313 i 450 + 00000nas 2200313 i 450 03870708X 0000019363 20130319051426.0 @@ -93438,7 +93438,7 @@ - 01178nls 2200325 i 450 + 00000nls 2200325 i 450 0000464137 0000464137 20130319051426.0 @@ -93517,7 +93517,7 @@ - 01173nas 2200325 i 450 + 00000nas 2200325 i 450 038707411 0000019372 20130319051427.0 @@ -93602,7 +93602,7 @@ - 01037nas 2200313 i 450 + 00000nas 2200313 i 450 039078477 0000594994 20130319051428.0 @@ -93679,7 +93679,7 @@ - 01199cas0 2200349 450 + 00000cas0 2200349 450 058256520 0000575555 20130319051428.0 @@ -93769,7 +93769,7 @@ - 02254cas0 2200457 450 + 00000cas0 2200457 450 038316102 0001094580 20130319051429.0 @@ -93901,7 +93901,7 @@ - 01538nas 2200373 i 450 + 00000nas 2200373 i 450 040621235 0000019374 20130319051429.0 @@ -94001,7 +94001,7 @@ - 00994nas 2200313 i 450 + 00000nas 2200313 i 450 039318117 0000004277 20131008105303.0 @@ -94084,7 +94084,7 @@ - 00914nas 2200301 i 450 + 00000nas 2200301 i 450 039599485 0000064600 20130319051430.0 @@ -94162,7 +94162,7 @@ - 01372nas 2200385 i 450 + 00000nas 2200385 i 450 03963809X 0000019512 20130319051430.0 @@ -94264,7 +94264,7 @@ - 01219nas 2200349 i 450 + 00000nas 2200349 i 450 039607720 0000019518 20130319051430.0 @@ -94354,7 +94354,7 @@ - 01036nas 2200313 i 450 + 00000nas 2200313 i 450 045080682 0000258579 20130319051430.0 @@ -94432,7 +94432,7 @@ - 01199nas 2200337 i 450 + 00000nas 2200337 i 450 051689553 0000310520 20130319051430.0 @@ -94517,7 +94517,7 @@ - 01245nas 2200349 i 450 + 00000nas 2200349 i 450 0000297440 0000297440 20130319051431.0 @@ -94605,7 +94605,7 @@ - 01270nas 2200349 i 450 + 00000nas 2200349 i 450 0000405072 0000405072 20130319051431.0 @@ -94697,7 +94697,7 @@ - 01126nas 2200349 i 450 + 00000nas 2200349 i 450 048884634 0000298779 20130319051431.0 @@ -94787,7 +94787,7 @@ - 01098nas 2200301 i 450 + 00000nas 2200301 i 450 038708469 0000019524 20130319051431.0 @@ -94862,7 +94862,7 @@ - 00943nls 2200277 i 450 + 00000nls 2200277 i 450 0000311915 0000311915 20130319051431.0 @@ -94927,7 +94927,7 @@ - 00954cas0 2200313 450 + 00000cas0 2200313 450 040103811 0001086645 20130408123824.0 @@ -95010,7 +95010,7 @@ - 00918nls 2200301 i 450 + 00000nls 2200301 i 450 0001152440 0001152440 20130319051431.0 @@ -95083,7 +95083,7 @@ - 01247nas 2200325 i 450 + 00000nas 2200325 i 450 036561541 0000058756 20130618164619.0 @@ -95164,7 +95164,7 @@ - 01244nas 2200337 i 450 + 00000nas 2200337 i 450 0000417617 0000417617 20130319051431.0 @@ -95250,7 +95250,7 @@ - 00791nas 2200289 i 450 + 00000nas 2200289 i 450 038708582 0000019514 20130319051431.0 @@ -95321,7 +95321,7 @@ - 00948nas 2200289 i 450 + 00000nas 2200289 i 450 039607917 0000046786 20131007113120.0 @@ -95395,7 +95395,7 @@ - 00821nls 2200289 i 450 + 00000nls 2200289 i 450 0001228852 0001228852 20130319051432.0 @@ -95464,7 +95464,7 @@ - 01211nas 2200313 i 450 + 00000nas 2200313 i 450 039920887 0000085488 20130523150548.0 @@ -95543,7 +95543,7 @@ - 01057nas 2200325 i 450 + 00000nas 2200325 i 450 040152952 0000223831 20130319051433.0 @@ -95625,7 +95625,7 @@ - 01006nas 2200313 i 450 + 00000nas 2200313 i 450 03922371X 0000019550 20130319051433.0 @@ -95705,7 +95705,7 @@ - 00844nas 2200265 i 450 + 00000nas 2200265 i 450 039397866 0000020128 20131002154744.0 @@ -95770,7 +95770,7 @@ - 00769nls 2200289 i 450 + 00000nls 2200289 i 450 0001180246 0001180246 20130319051434.0 @@ -95839,7 +95839,7 @@ - 00996nas 2200325 i 450 + 00000nas 2200325 i 450 0000084689 0000084689 20130319051434.0 @@ -95925,7 +95925,7 @@ - 01573nas 2200373 i 450 + 00000nas 2200373 i 450 038710021 0000004333 20131219163643.0 @@ -96026,7 +96026,7 @@ - 01868nas 2200445 i 450 + 00000nas 2200445 i 450 038710056 0000004377 20131219163736.0 @@ -96151,7 +96151,7 @@ - 01243nas 2200325 i 450 + 00000nas 2200325 i 450 013304429 0000004416 20140106173129.0 @@ -96234,7 +96234,7 @@ - 01311nas 2200373 i 450 + 00000nas 2200373 i 450 039133869 0000020132 20130319051436.0 @@ -96333,7 +96333,7 @@ - 00921nas 2200301 i 450 + 00000nas 2200301 i 450 04004825X 0000172707 20130319051436.0 @@ -96407,7 +96407,7 @@ - 01088nas 2200337 i 450 + 00000nas 2200337 i 450 039701638 0000004313 20130319051436.0 @@ -96495,7 +96495,7 @@ - 01071nas 2200337 i 450 + 00000nas 2200337 i 450 073340065 0000552777 20130319051436.0 @@ -96582,7 +96582,7 @@ - 01136nas 2200313 i 450 + 00000nas 2200313 i 450 039666565 0000020288 20131219151823.0 @@ -96663,7 +96663,7 @@ - 00864nas 2200277 i 450 + 00000nas 2200277 i 450 0000020823 0000020823 20130319051436.0 @@ -96732,7 +96732,7 @@ - 00963nas 2200313 i 450 + 00000nas 2200313 i 450 004292901 0000231630 20130319051438.0 @@ -96813,7 +96813,7 @@ - 01212cas0 2200373 450 + 00000cas0 2200373 450 040501574 0000718282 20130319051438.0 @@ -96920,7 +96920,7 @@ - 00948cas0 2200313 450 + 00000cas0 2200313 450 039091112 0001125243 20130319051438.0 @@ -97002,7 +97002,7 @@ - 01423cas0 2200385 450 + 00000cas0 2200385 450 039862089 0000928032 20131017163430.0 @@ -97114,7 +97114,7 @@ - 00969nas 2200313 i 450 + 00000nas 2200313 i 450 039236684 0000020296 20130319051439.0 @@ -97197,7 +97197,7 @@ - 00735nas 2200253 i 450 + 00000nas 2200253 i 450 0000071480 0000071480 20130319051439.0 @@ -97258,7 +97258,7 @@ - 00948nls 2200289 i 450 + 00000nls 2200289 i 450 0001131860 0001131860 20130319051439.0 @@ -97325,7 +97325,7 @@ - 00839nas 2200277 i 450 + 00000nas 2200277 i 450 040051099 0000110593 20130319051439.0 @@ -97395,7 +97395,7 @@ - 01112nas 2200301 i 450 + 00000nas 2200301 i 450 040088197 0000031517 20140107174916.0 @@ -97476,7 +97476,7 @@ - 01112nas 2200301 i 450 + 00000nas 2200301 i 450 038710951 0000058733 20130319051440.0 @@ -97553,7 +97553,7 @@ - 01365nas 2200373 i 450 + 00000nas 2200373 i 450 073547786 0000541526 20130716151855.0 @@ -97654,7 +97654,7 @@ - 01355nas 2200361 i 450 + 00000nas 2200361 i 450 052303799 0000320846 20130319051440.0 @@ -97751,7 +97751,7 @@ - 00991nas 2200277 i 450 + 00000nas 2200277 i 450 039463052 0000066876 20130319051440.0 @@ -97820,7 +97820,7 @@ - 01641cas0 2200421 450 + 00000cas0 2200421 450 171169727 0001247517 20130906152505.0 @@ -97945,7 +97945,7 @@ - 00983nls 2200277 i 450 + 00000nls 2200277 i 450 0000313753 0000313753 20130319051440.0 @@ -98011,7 +98011,7 @@ - 01048nas 2200301 i 450 + 00000nas 2200301 i 450 039921409 0000009318 20130319051445.0 @@ -98088,7 +98088,7 @@ - 01249nas 2200385 i 450 + 00000nas 2200385 i 450 039541177 0000004417 20130319051446.0 @@ -98193,7 +98193,7 @@ - 01057nas 2200325 i 450 + 00000nas 2200325 i 450 038712040 0000020292 20130319051447.0 @@ -98276,7 +98276,7 @@ - 01200nas 2200289 i 450 + 00000nas 2200289 i 450 039790118 0000020297 20131018174907.0 @@ -98352,7 +98352,7 @@ - 01388nas 2200373 i 450 + 00000nas 2200373 i 450 039373452 0000004432 20130319051447.0 @@ -98454,7 +98454,7 @@ - 00829nls 2200265 i 450 + 00000nls 2200265 i 450 0000941430 0000941430 20130319051447.0 @@ -98520,7 +98520,7 @@ - 04580nas 2200589 i 450 + 00000nas 2200589 i 450 038705710 0000046554 20131028165955.0 @@ -98691,7 +98691,7 @@ - 01051nas0 2200313 450 + 00000nas0 2200313 450 09893046X 0000954511 20130319051447.0 @@ -98773,7 +98773,7 @@ - 01560nas 2200373 i 450 + 00000nas 2200373 i 450 039988139 0000020304 20130319051447.0 @@ -98866,7 +98866,7 @@ - 01298nas 2200325 i 450 + 00000nas 2200325 i 450 03674199X 0000195523 20130828181423.0 @@ -98949,7 +98949,7 @@ - 01292nas 2200361 i 450 + 00000nas 2200361 i 450 039925196 0000014090 20131219164035.0 @@ -99047,7 +99047,7 @@ - 01430cas0 2200373 450 + 00000cas0 2200373 450 055391508 0000334665 20130319051450.0 @@ -99141,7 +99141,7 @@ - 01280nas 2200349 i 450 + 00000nas 2200349 i 450 054376890 0000326358 20140107131955.0 @@ -99232,7 +99232,7 @@ - 01013nls 2200277 i 450 + 00000nls 2200277 i 450 0000534062 0000534062 20130319051450.0 @@ -99297,7 +99297,7 @@ - 01944nas 2200361 i 450 + 00000nas 2200361 i 450 040208915 0000153805 20131008125502.0 @@ -99400,7 +99400,7 @@ - 01316nas 2200337 i 450 + 00000nas 2200337 i 450 038712644 0000020347 20131127163314.0 @@ -99486,7 +99486,7 @@ - 01097nas 2200325 i 450 + 00000nas 2200325 i 450 045103232 0000281813 20140106115805.0 @@ -99573,7 +99573,7 @@ - 00995nas 2200325 i 450 + 00000nas 2200325 i 450 03998110X 0000069260 20130319051450.0 @@ -99656,7 +99656,7 @@ - 01451cas0 2200421 450 + 00000cas0 2200421 450 048813249 0000280687 20130916122738.0 @@ -99772,7 +99772,7 @@ - 00866nas 2200277 i 450 + 00000nas 2200277 i 450 0000267349 0000267349 20130319051451.0 @@ -99838,7 +99838,7 @@ - 01074nas 2200301 i 450 + 00000nas 2200301 i 450 058780106 0000385096 20130916171412.0 @@ -99918,7 +99918,7 @@ - 01186nas 2200325 i 450 + 00000nas 2200325 i 450 039320200 0000588979 20130319051451.0 @@ -99999,7 +99999,7 @@ - 01267nas 2200349 i 450 + 00000nas 2200349 i 450 040099199 0000082638 20130319051452.0 @@ -100088,7 +100088,7 @@ - 01518cas0 2200409 450 + 00000cas0 2200409 450 093815360 0001130577 20130319051452.0 @@ -100204,7 +100204,7 @@ - 01170nas 2200325 i 450 + 00000nas 2200325 i 450 039248550 0000020782 20130911163310.0 @@ -100290,7 +100290,7 @@ - 01403nas 2200409 i 450 + 00000nas 2200409 i 450 0000083238 0000083238 20130319051452.0 @@ -100399,7 +100399,7 @@ - 01107nls 2200349 i 450 + 00000nls 2200349 i 450 0001130124 0001130124 20130319051452.0 @@ -100489,7 +100489,7 @@ - 00978nas 2200313 i 450 + 00000nas 2200313 i 450 039556417 0000020589 20130319051452.0 @@ -100572,7 +100572,7 @@ - 00851nas 2200301 i 450 + 00000nas 2200301 i 450 168221276 0000459830 20140107180033.0 @@ -100646,7 +100646,7 @@ - 01156cas0 2200385 450 + 00000cas0 2200385 450 130470139 0001174576 20130319051452.0 @@ -100751,7 +100751,7 @@ - 00983nas 2200313 i 450 + 00000nas 2200313 i 450 036987697 0000176794 20130319051453.0 @@ -100830,7 +100830,7 @@ - 00880nas 2200301 i 450 + 00000nas 2200301 i 450 038713659 0000021097 20130319051453.0 @@ -100906,7 +100906,7 @@ - 01168cas0 2200349 450 + 00000cas0 2200349 450 058799907 0001143509 20130319051453.0 @@ -100998,7 +100998,7 @@ - 00892nas0 2200313 450 + 00000nas0 2200313 450 113696620 0001079090 20130319051454.0 @@ -101078,7 +101078,7 @@ - 01319nas 2200361 i 450 + 00000nas 2200361 i 450 078920256 0000609000 20130319051454.0 @@ -101172,7 +101172,7 @@ - 01272nas0 2200337 450 + 00000nas0 2200337 450 088969754 0000844010 20130319051454.0 @@ -101260,7 +101260,7 @@ - 00943cas0 2200349 450 + 00000cas0 2200349 450 104769106 0000517066 20130319051454.0 @@ -101352,7 +101352,7 @@ - 01214cas0 2200373 450 + 00000cas0 2200373 450 094895872 0001162739 20130319051454.0 @@ -101450,7 +101450,7 @@ - 01405nas 2200361 i 450 + 00000nas 2200361 i 450 040182819 0000215479 20131011110149.0 @@ -101546,7 +101546,7 @@ - 01166nas 2200325 i 450 + 00000nas 2200325 i 450 040152685 0000155951 20130319051454.0 @@ -101630,7 +101630,7 @@ - 00905nls 2200301 i 450 + 00000nls 2200301 i 450 0000995136 0000995136 20130319051454.0 @@ -101702,7 +101702,7 @@ - 01141cas0 2200361 450 + 00000cas0 2200361 450 076788482 0001078859 20130319051454.0 @@ -101797,7 +101797,7 @@ - 01307nas 2200361 i 450 + 00000nas 2200361 i 450 040319784 0000158522 20130319051454.0 @@ -101891,7 +101891,7 @@ - 01234nas 2200349 i 450 + 00000nas 2200349 i 450 0000538910 0000538910 20130319051454.0 @@ -101984,7 +101984,7 @@ - 00953nas 2200313 i 450 + 00000nas 2200313 i 450 058263780 0000486887 20130319051455.0 @@ -102064,7 +102064,7 @@ - 00928nas 2200289 i 450 + 00000nas 2200289 i 450 064130304 0000421516 20130319051455.0 @@ -102136,7 +102136,7 @@ - 01070nas 2200301 i 450 + 00000nas 2200301 i 450 055053386 0000203328 20140114174152.0 @@ -102212,7 +102212,7 @@ - 00938cas0 2200313 450 + 00000cas0 2200313 450 044943334 0000819692 20130319051457.0 @@ -102294,7 +102294,7 @@ - 01056nas 2200313 i 450 + 00000nas 2200313 i 450 040212394 0000073483 20130319051458.0 @@ -102378,7 +102378,7 @@ - 01175nas0 2200349 450 + 00000nas0 2200349 450 160348943 0001227027 20130329100339.0 @@ -102469,7 +102469,7 @@ - 01482nas 2200373 i 450 + 00000nas 2200373 i 450 040081168 0000021139 20131219164141.0 @@ -102569,7 +102569,7 @@ - 00920nas 2200253 i 450 + 00000nas 2200253 i 450 039704165 0000202318 20130319051500.0 @@ -102632,7 +102632,7 @@ - 01399cas0 2200361 450 + 00000cas0 2200361 450 093787588 0000966952 20130319051500.0 @@ -102729,7 +102729,7 @@ - 00820nas 2200277 i 450 + 00000nas 2200277 i 450 040038122 0000160974 20130319051502.0 @@ -102797,7 +102797,7 @@ - 01291nas 2200313 i 450 + 00000nas 2200313 i 450 036304093 0000020824 20131127163949.0 @@ -102876,7 +102876,7 @@ - 01067cas0 2200325 450 + 00000cas0 2200325 450 094684863 0000919197 20130319051503.0 @@ -102965,7 +102965,7 @@ - 00929nls 2200289 i 450 + 00000nls 2200289 i 450 0001132428 0001132428 20130319051503.0 @@ -103031,7 +103031,7 @@ - 01403nas 2200349 i 450 + 00000nas 2200349 i 450 001234641 0000021144 20130319051504.0 @@ -103125,7 +103125,7 @@ - 01097nas 2200301 i 450 + 00000nas 2200301 i 450 0000122643 0000122643 20130319051504.0 @@ -103200,7 +103200,7 @@ - 01141nas 2200337 i 450 + 00000nas 2200337 i 450 0000609085 0000609085 20130319051504.0 @@ -103292,7 +103292,7 @@ - 01064nas 2200301 i 450 + 00000nas 2200301 i 450 0000187581 20130409115237.0 @@ -103376,7 +103376,7 @@ - 01284cas0 2200433 450 + 00000cas0 2200433 450 036062421 0000823263 20130606160542.0 @@ -103501,7 +103501,7 @@ - 01091nas 2200301 i 450 + 00000nas 2200301 i 450 0000128378 0000128378 20130319051504.0 @@ -103577,7 +103577,7 @@ - 01233cas0 2200397 450 + 00000cas0 2200397 450 09468457X 0000919194 20130319051505.0 @@ -103687,7 +103687,7 @@ - 01069nas 2200313 i 450 + 00000nas 2200313 i 450 048702595 0000181520 20131009154052.0 @@ -103765,7 +103765,7 @@ - 01235cas0 2200349 450 + 00000cas0 2200349 450 07870782X 0000351578 20130806122040.0 @@ -103858,7 +103858,7 @@ - 01205nas0 2200373 450 + 00000nas0 2200373 450 12726311X 0001157464 20130319051505.0 @@ -103960,7 +103960,7 @@ - 01043cas0 2200349 450 + 00000cas0 2200349 450 133920658 0001211329 20130319051505.0 @@ -104050,7 +104050,7 @@ - 00906nls 2200265 i 450 + 00000nls 2200265 i 450 0000313740 0000313740 20130319051506.0 @@ -104113,7 +104113,7 @@ - 01068nas0 2200289 450 + 00000nas0 2200289 450 078858178 0000713823 20140117162333.0 @@ -104190,7 +104190,7 @@ - 00892nas 2200289 i 450 + 00000nas 2200289 i 450 039997901 0000067012 20130319051507.0 @@ -104261,7 +104261,7 @@ - 01362nas 2200337 i 450 + 00000nas 2200337 i 450 03871616X 0000021714 20131022155933.0 @@ -104352,7 +104352,7 @@ - 00998nas 2200313 i 450 + 00000nas 2200313 i 450 040332993 0000208628 20130319051507.0 @@ -104431,7 +104431,7 @@ - 00987nas 2200325 i 450 + 00000nas 2200325 i 450 038716240 0000434497 20140110130513.0 @@ -104512,7 +104512,7 @@ - 01318nas 2200313 i 450 + 00000nas 2200313 i 450 038716275 0000021326 20130319051507.0 @@ -104591,7 +104591,7 @@ - 01126cas0 2200337 450 + 00000cas0 2200337 450 048854611 0000963146 20130319051508.0 @@ -104678,7 +104678,7 @@ - 00872nas 2200301 i 450 + 00000nas 2200301 i 450 039773515 0000021297 20130319051508.0 @@ -104755,7 +104755,7 @@ - 01110nas 2200349 i 450 + 00000nas 2200349 i 450 039550427 0000002358 20130724115607.0 @@ -104847,7 +104847,7 @@ - 01173nas 2200313 i 450 + 00000nas 2200313 i 450 038717786 0000021300 20140114101940.0 @@ -104928,7 +104928,7 @@ - 01184nls 2200277 i 450 + 00000nls 2200277 i 450 0001245759 20130626100205.0 @@ -105002,7 +105002,7 @@ - 01502cas0 2200349 450 + 00000cas0 2200349 450 070253749 0001175325 20140114102400.0 @@ -105100,7 +105100,7 @@ - 01259nas 2200337 i 450 + 00000nas 2200337 i 450 04008003X 0000021284 20131209112248.0 @@ -105183,7 +105183,7 @@ - 01087nas 2200349 i 450 + 00000nas 2200349 i 450 039295982 0000004584 20130912090210.0 @@ -105269,7 +105269,7 @@ - 01192nas 2200289 i 450 + 00000nas 2200289 i 450 0000021293 20130603162855.0 @@ -105350,7 +105350,7 @@ - 00966nls 2200313 i 450 + 00000nls 2200313 i 450 0001096211 0001096211 20130319051509.0 @@ -105428,7 +105428,7 @@ - 01132nas 2200313 i 450 + 00000nas 2200313 i 450 013304488 0000138211 20140107172208.0 @@ -105512,7 +105512,7 @@ - 01216nls 2200265 450 + 00000nls 2200265 450 0000582173 0000582173 20130319051513.0 @@ -105576,7 +105576,7 @@ - 01098nas 2200325 i 450 + 00000nas 2200325 i 450 044930151 0000355183 20130319051513.0 @@ -105661,7 +105661,7 @@ - 01186nas 2200337 i 450 + 00000nas 2200337 i 450 039125327 0000021787 20131028152332.0 @@ -105747,7 +105747,7 @@ - 01615nas 2200409 i 450 + 00000nas 2200409 i 450 039236773 0000021225 20130319051513.0 @@ -105869,7 +105869,7 @@ - 01276nas 2200349 i 450 + 00000nas 2200349 i 450 038718499 0000057459 20130319051513.0 @@ -105960,7 +105960,7 @@ - 00782nas 2200277 i 450 + 00000nas 2200277 i 450 040050866 0000120062 20130319051514.0 @@ -106027,7 +106027,7 @@ - 01499nas 2200373 i 450 + 00000nas 2200373 i 450 038718502 0000021230 20131127170306.0 @@ -106125,7 +106125,7 @@ - 01214nas 2200337 i 450 + 00000nas 2200337 i 450 039143791 0000021232 20130926105637.0 @@ -106220,7 +106220,7 @@ - 01367nas 2200325 i 450 + 00000nas 2200325 i 450 038718537 0000057460 20130319051514.0 @@ -106301,7 +106301,7 @@ - 00952nas 2200289 i 450 + 00000nas 2200289 i 450 040082008 0000082501 20130319051514.0 @@ -106376,7 +106376,7 @@ - 01030nls 2200301 i 450 + 00000nls 2200301 i 450 0000534058 0000534058 20130319051514.0 @@ -106447,7 +106447,7 @@ - 00971nas 2200313 i 450 + 00000nas 2200313 i 450 036756881 0000154896 20130319051514.0 @@ -106525,7 +106525,7 @@ - 01340nas 2200349 i 450 + 00000nas 2200349 i 450 037430998 0000415195 20130319051515.0 @@ -106612,7 +106612,7 @@ - 01143nas 2200337 i 450 + 00000nas 2200337 i 450 039607704 0000021234 20130319051515.0 @@ -106699,7 +106699,7 @@ - 00915nas 2200289 i 450 + 00000nas 2200289 i 450 001012622 0000021236 20131025100906.0 @@ -106772,7 +106772,7 @@ - 01190nas 2200361 i 450 + 00000nas 2200361 i 450 039892328 0000021356 20130805144116.0 @@ -106872,7 +106872,7 @@ - 00828cas0 2200265 450 + 00000cas0 2200265 450 048879398 0000627480 20130319051515.0 @@ -106942,7 +106942,7 @@ - 01073nas 2200301 i 450 + 00000nas 2200301 i 450 104702176 0000113135 20130627122605.0 @@ -107018,7 +107018,7 @@ - 01101cas0 2200325 450 + 00000cas0 2200325 450 044904622 0001174305 20130319051516.0 @@ -107105,7 +107105,7 @@ - 01224nas0 2200337 450 + 00000nas0 2200337 450 11241947X 0001065349 20130319051516.0 @@ -107195,7 +107195,7 @@ - 00974nas 2200289 i 450 + 00000nas 2200289 i 450 093980175 0000145432 20130319051518.0 @@ -107266,7 +107266,7 @@ - 01141cas0 2200337 450 + 00000cas0 2200337 450 039505014 0001129826 20130319051518.0 @@ -107354,7 +107354,7 @@ - 01256nas 2200337 i 450 + 00000nas 2200337 i 450 038720000 0000021385 20130319051518.0 @@ -107440,7 +107440,7 @@ - 01254nas 2200349 i 450 + 00000nas 2200349 i 450 039336816 0000021386 20130319051519.0 @@ -107530,7 +107530,7 @@ - 00976cas0 2200289 450 + 00000cas0 2200289 450 074102699 0000761965 20130319051519.0 @@ -107603,7 +107603,7 @@ - 00948nas 2200337 i 450 + 00000nas 2200337 i 450 0000517170 0000517170 20130319051519.0 @@ -107687,7 +107687,7 @@ - 01237nas0 2200421 450 + 00000nas0 2200421 450 108056236 0001019646 20130319051519.0 @@ -107797,7 +107797,7 @@ - 00955nls 2200325 i 450 + 00000nls 2200325 i 450 0001239080 0001239080 20130603162804.0 @@ -107879,7 +107879,7 @@ - 01279nas 2200325 i 450 + 00000nas 2200325 i 450 039224082 0000004594 20130319051519.0 @@ -107968,7 +107968,7 @@ - 01101nas 2200337 i 450 + 00000nas 2200337 i 450 057925615 0000451276 20140114100629.0 @@ -108058,7 +108058,7 @@ - 00978nas 2200325 i 450 + 00000nas 2200325 i 450 0000678527 0000678527 20131011094220.0 @@ -108140,7 +108140,7 @@ - 01490nas 2200361 i 450 + 00000nas 2200361 i 450 0000021736 0000021736 20130319051519.0 @@ -108237,7 +108237,7 @@ - 01042nas0 2200301 450 + 00000nas0 2200301 450 147737087 0001201698 20140110134235.0 @@ -108316,7 +108316,7 @@ - 01314cas0 2200409 450 + 00000cas0 2200409 450 013758225 0000711775 20130319051519.0 @@ -108427,7 +108427,7 @@ - 01332nls 2200313 i 450 + 00000nls 2200313 i 450 0000254180 0000254180 20130319051519.0 @@ -108502,7 +108502,7 @@ - 00831nas 2200289 i 450 + 00000nas 2200289 i 450 036262218 0000161821 20130319051520.0 @@ -108574,7 +108574,7 @@ - 01417nas 2200373 i 450 + 00000nas 2200373 i 450 039318699 0000021566 20131202124224.0 @@ -108669,7 +108669,7 @@ - 01262nas 2200325 i 450 + 00000nas 2200325 i 450 0000021486 0000021486 20130319051521.0 @@ -108748,7 +108748,7 @@ - 01055nas 2200301 i 450 + 00000nas 2200301 i 450 038720914 0000021688 20130319051521.0 @@ -108825,7 +108825,7 @@ - 00980nas 2200313 i 450 + 00000nas 2200313 i 450 038775263 0000143626 20130319051521.0 @@ -108906,7 +108906,7 @@ - 01590cas0 2200397 450 + 00000cas0 2200397 450 14677180X 0001201866 20140107140331.0 @@ -109011,7 +109011,7 @@ - 01386nas 2200373 i 450 + 00000nas 2200373 i 450 044754884 0000282085 20140107135910.0 @@ -109107,7 +109107,7 @@ - 01144nls 2200349 450 + 00000nls 2200349 450 0000311218 0000311218 20130403094450.0 @@ -109192,7 +109192,7 @@ - 00852nls 2200277 i 450 + 00000nls 2200277 i 450 0001166836 0001166836 20130319051522.0 @@ -109258,7 +109258,7 @@ - 01221nas 2200361 i 450 + 00000nas 2200361 i 450 039312879 0000021473 20130319051522.0 @@ -109349,7 +109349,7 @@ - 01233cas0 2200397 450 + 00000cas0 2200397 450 160813778 0001238850 20130319051525.0 @@ -109459,7 +109459,7 @@ - 00869nas 2200277 i 450 + 00000nas 2200277 i 450 03989732X 0000021824 20130321094924.0 @@ -109526,7 +109526,7 @@ - 01142nls 2200313 i 450 + 00000nls 2200313 i 450 0000491580 0000491580 20130319051526.0 @@ -109601,7 +109601,7 @@ - 00984nas 2200265 i 450 + 00000nas 2200265 i 450 0000071492 0000071492 20130319051527.0 @@ -109665,7 +109665,7 @@ - 01089nas 2200313 i 450 + 00000nas 2200313 i 450 040355519 0000207291 20130319051527.0 @@ -109744,7 +109744,7 @@ - 01222nas 2200325 i 450 + 00000nas 2200325 i 450 039396606 0000021814 20130319051527.0 @@ -109830,7 +109830,7 @@ - 01215nas 2200325 i 450 + 00000nas 2200325 i 450 039242889 0000066957 20130319051528.0 @@ -109914,7 +109914,7 @@ - 01310nas 2200349 i 450 + 00000nas 2200349 i 450 067777422 0000488930 20140108130506.0 @@ -109999,7 +109999,7 @@ - 01001nas 2200289 i 450 + 00000nas 2200289 i 450 0000053839 0000053839 20130926152634.0 @@ -110067,7 +110067,7 @@ - 01316nas 2200337 i 450 + 00000nas 2200337 i 450 0000402328 0000402328 20130621131000.0 @@ -110154,7 +110154,7 @@ - 01085nas 2200325 i 450 + 00000nas 2200325 i 450 036286885 0000083463 20131003135533.0 @@ -110237,7 +110237,7 @@ - 00955nas 2200289 i 450 + 00000nas 2200289 i 450 038723921 0000021851 20130319051529.0 @@ -110308,7 +110308,7 @@ - 01734nas 2200397 i 450 + 00000nas 2200397 i 450 013310011 0000021853 20130319051529.0 @@ -110412,7 +110412,7 @@ - 00881nas 2200289 i 450 + 00000nas 2200289 i 450 048780952 0000245387 20130319051529.0 @@ -110483,7 +110483,7 @@ - 01179nas 2200325 i 450 + 00000nas 2200325 i 450 038724448 0000021856 20130729122804.0 @@ -110567,7 +110567,7 @@ - 01148nas 2200325 i 450 + 00000nas 2200325 i 450 078221102 0000559855 20140117162748.0 @@ -110654,7 +110654,7 @@ - 01390nas 2200313 i 450 + 00000nas 2200313 i 450 0000077531 0000077531 20130319051530.0 @@ -110731,7 +110731,7 @@ - 01606nas 2200421 i 450 + 00000nas 2200421 i 450 036786004 0000231510 20130319051530.0 @@ -110842,7 +110842,7 @@ - 01152cas 2200385 450 + 00000cas 2200385 450 086155237 0000926336 20130319051531.0 @@ -110948,7 +110948,7 @@ - 01113nas 2200337 i 450 + 00000nas 2200337 i 450 038724677 0000022619 20140106172218.0 @@ -111037,7 +111037,7 @@ - 00986nas 2200313 i 450 + 00000nas 2200313 i 450 039224228 0000022065 20130930131253.0 @@ -111120,7 +111120,7 @@ - 00919nas 2200253 i 450 + 00000nas 2200253 i 450 0000022610 0000022610 20130319051531.0 @@ -111183,7 +111183,7 @@ - 01049nas 2200313 i 450 + 00000nas 2200313 i 450 039224260 0000022611 20130319051531.0 @@ -111262,7 +111262,7 @@ - 01560nas 2200325 i 450 + 00000nas 2200325 i 450 039152502 0000022614 20130730143554.0 @@ -111349,7 +111349,7 @@ - 01219nas 2200325 i 450 + 00000nas 2200325 i 450 039371905 0000022734 20130930154747.0 @@ -111434,7 +111434,7 @@ - 01004nas 2200289 i 450 + 00000nas 2200289 i 450 039891615 0000022714 20140107140851.0 @@ -111506,7 +111506,7 @@ - 01131nas 2200289 i 450 + 00000nas 2200289 i 450 0000212103 0000212103 20130319051532.0 @@ -111583,7 +111583,7 @@ - 01017nas 2200289 i 450 + 00000nas 2200289 i 450 039236854 0000023098 20140114100940.0 @@ -111657,7 +111657,7 @@ - 00967nas 2200301 i 450 + 00000nas 2200301 i 450 0000621530 0000621530 20130319051532.0 @@ -111731,7 +111731,7 @@ - 00998nls 2200313 i 450 + 00000nls 2200313 i 450 0000505390 0000505390 20130319051532.0 @@ -111808,7 +111808,7 @@ - 01047nas 2200301 i 450 + 00000nas 2200301 i 450 040143392 0000047556 20130319051532.0 @@ -111884,7 +111884,7 @@ - 00959nas 2200289 i 450 + 00000nas 2200289 i 450 040456773 0000214746 20130319051533.0 @@ -111959,7 +111959,7 @@ - 00967nas 2200313 i 450 + 00000nas 2200313 i 450 037455265 0000023277 20130319051533.0 @@ -112040,7 +112040,7 @@ - 01141nas 2200337 i 450 + 00000nas 2200337 i 450 038725568 0000022716 20130319051533.0 @@ -112128,7 +112128,7 @@ - 00962nas0 2200337 450 + 00000nas0 2200337 450 114940487 0001093309 20130319051533.0 @@ -112219,7 +112219,7 @@ - 01007nas 2200313 i 450 + 00000nas 2200313 i 450 0000067283 0000067283 20130319051533.0 @@ -112300,7 +112300,7 @@ - 01075nas 2200325 i 450 + 00000nas 2200325 i 450 0000299607 0000299607 20130319051534.0 @@ -112379,7 +112379,7 @@ - 01279nas 2200313 i 450 + 00000nas 2200313 i 450 036035289 0000102726 20140106171152.0 @@ -112460,7 +112460,7 @@ - 01148nas 2200349 i 450 + 00000nas 2200349 i 450 039682250 0000023097 20130319051535.0 @@ -112551,7 +112551,7 @@ - 01507cas0 2200397 450 + 00000cas0 2200397 450 116904224 0001143525 20130319051535.0 @@ -112656,7 +112656,7 @@ - 00986nas 2200289 i 450 + 00000nas 2200289 i 450 039323897 0000022707 20130319051536.0 @@ -112728,7 +112728,7 @@ - 01116nas 2200313 i 450 + 00000nas 2200313 i 450 059483253 0000411638 20130827111744.0 @@ -112807,7 +112807,7 @@ - 01306cas0 2200385 450 + 00000cas0 2200385 450 039674657 0001172805 20130319051536.0 @@ -112910,7 +112910,7 @@ - 01152cas0 2200337 450 + 00000cas0 2200337 450 038432978 0001093431 20130319051537.0 @@ -113007,7 +113007,7 @@ - 01774nas 2200397 i 450 + 00000nas 2200397 i 450 038726955 0000004649 20131219164350.0 @@ -113113,7 +113113,7 @@ - 01013cas0 2200313 450 + 00000cas0 2200313 450 040326039 0000732570 20130319051537.0 @@ -113196,7 +113196,7 @@ - 02098nas 2200445 i 450 + 00000nas 2200445 i 450 038726971 0000022663 20140110130826.0 @@ -113319,7 +113319,7 @@ - 01266nas 2200349 i 450 + 00000nas 2200349 i 450 04015971X 0000144369 20130319051537.0 @@ -113407,7 +113407,7 @@ - 01137nas 2200337 i 450 + 00000nas 2200337 i 450 076243230 0000691878 20130319051537.0 @@ -113492,7 +113492,7 @@ - 01265nas0 2200385 450 + 00000nas0 2200385 450 108058913 0001014611 20130319051537.0 @@ -113595,7 +113595,7 @@ - 00777nas 2200277 i 450 + 00000nas 2200277 i 450 064147681 0000523603 20130319051538.0 @@ -113662,7 +113662,7 @@ - 01278nas 2200301 i 450 + 00000nas 2200301 i 450 040202267 0000103158 20140107161004.0 @@ -113739,7 +113739,7 @@ - 02061nas 2200397 i 450 + 00000nas 2200397 i 450 038727250 0000057028 20131127170737.0 @@ -113845,7 +113845,7 @@ - 01177nls 2200313 i 450 + 00000nls 2200313 i 450 0000486591 0000486591 20130319051538.0 @@ -113921,7 +113921,7 @@ - 01182nls 2200313 i 450 + 00000nls 2200313 i 450 0000486671 0000486671 20130319051538.0 @@ -113997,7 +113997,7 @@ - 01250nls 2200325 i 450 + 00000nls 2200325 i 450 0000486668 0000486668 20130319051538.0 @@ -114076,7 +114076,7 @@ - 01081nas 2200337 i 450 + 00000nas 2200337 i 450 058255788 0000355124 20131025132842.0 @@ -114161,7 +114161,7 @@ - 01061nas 2200289 i 450 + 00000nas 2200289 i 450 0000022776 0000022776 20131104152734.0 @@ -114233,7 +114233,7 @@ - 01066nas 2200313 i 450 + 00000nas 2200313 i 450 039672581 0000022690 20140107172340.0 @@ -114311,7 +114311,7 @@ - 01310nas 2200301 i 450 + 00000nas 2200301 i 450 039393127 0000034916 20130319051538.0 @@ -114388,7 +114388,7 @@ - 01471nas0 2200409 450 + 00000nas0 2200409 450 130021687 0001158821 20130319051538.0 @@ -114500,7 +114500,7 @@ - 01323nas 2200349 i 450 + 00000nas 2200349 i 450 038727358 0000022688 20130319051538.0 @@ -114593,7 +114593,7 @@ - 01003nas 2200301 i 450 + 00000nas 2200301 i 450 036387258 0000269950 20130319051538.0 @@ -114667,7 +114667,7 @@ - 01277nas 2200349 i 450 + 00000nas 2200349 i 450 038727455 0000022699 20131025123149.0 @@ -114760,7 +114760,7 @@ - 01092cas0 2200349 450 + 00000cas0 2200349 450 089938569 0001131516 20130319051538.0 @@ -114851,7 +114851,7 @@ - 01177nas 2200313 i 450 + 00000nas 2200313 i 450 06413265X 0000605495 20130319051538.0 @@ -114927,7 +114927,7 @@ - 01190nas 2200325 i 450 + 00000nas 2200325 i 450 039701212 0000022710 20130916164531.0 @@ -115016,7 +115016,7 @@ - 01077nls 2200301 i 450 + 00000nls 2200301 i 450 0000486587 0000486587 20130319051538.0 @@ -115088,7 +115088,7 @@ - 01102nas 2200325 i 450 + 00000nas 2200325 i 450 036762733 0000231872 20130319051538.0 @@ -115171,7 +115171,7 @@ - 00937nas 2200289 i 450 + 00000nas 2200289 i 450 039323730 0000022711 20130319051538.0 @@ -115243,7 +115243,7 @@ - 01052nas 2200289 i 450 + 00000nas 2200289 i 450 0000464533 0000464533 20130319051538.0 @@ -115313,7 +115313,7 @@ - 01027nas 2200301 i 450 + 00000nas 2200301 i 450 039091910 0000022719 20130916141021.0 @@ -115388,7 +115388,7 @@ - 01256nas 2200325 i 450 + 00000nas 2200325 i 450 039309851 0000022721 20130319051538.0 @@ -115471,7 +115471,7 @@ - 01085nas 2200301 i 450 + 00000nas 2200301 i 450 055672957 0000307119 20130319051538.0 @@ -115548,7 +115548,7 @@ - 01193cas0 2200385 450 + 00000cas0 2200385 450 104755571 0001153658 20130319051539.0 @@ -115649,7 +115649,7 @@ - 01393nas 2200385 i 450 + 00000nas 2200385 i 450 038727765 0000022743 20140108154154.0 @@ -115749,7 +115749,7 @@ - 01032nas0 2200325 450 + 00000nas0 2200325 450 097572284 0000936207 20130319051539.0 @@ -115833,7 +115833,7 @@ - 01141nas 2200301 i 450 + 00000nas 2200301 i 450 039987965 0000023624 20130319051539.0 @@ -115908,7 +115908,7 @@ - 01188nas 2200337 i 450 + 00000nas 2200337 i 450 039988872 0000023576 20131003163516.0 @@ -115998,7 +115998,7 @@ - 01371nas 2200337 i 450 + 00000nas 2200337 i 450 039141330 0000023563 20130319051539.0 @@ -116086,7 +116086,7 @@ - 00939nas 2200289 i 450 + 00000nas 2200289 i 450 040084515 0000039941 20130319051539.0 @@ -116157,7 +116157,7 @@ - 01096nas 2200313 i 450 + 00000nas 2200313 i 450 040083578 0000010776 20140110124429.0 @@ -116235,7 +116235,7 @@ - 01505nas 2200349 i 450 + 00000nas 2200349 i 450 036764574 0000605830 20130319051539.0 @@ -116321,7 +116321,7 @@ - 01275nas 2200337 i 450 + 00000nas 2200337 i 450 039148793 0000023696 20130909150350.0 @@ -116409,7 +116409,7 @@ - 01338cas0 2200361 450 + 00000cas0 2200361 450 116224924 0001140592 20140110134418.0 @@ -116503,7 +116503,7 @@ - 02036nas 2200433 i 450 + 00000nas 2200433 i 450 039404080 0000023560 20130926113115.0 @@ -116626,7 +116626,7 @@ - 00901nas 2200289 i 450 + 00000nas 2200289 i 450 036861820 0000224547 20130319051539.0 @@ -116697,7 +116697,7 @@ - 01713cas0 2200409 450 + 00000cas0 2200409 450 080162770 0001073982 20130319051539.0 @@ -116817,7 +116817,7 @@ - 01840cas0 2200397 450 + 00000cas0 2200397 450 080162002 0001073978 20130319051539.0 @@ -116933,7 +116933,7 @@ - 01036nas 2200289 i 450 + 00000nas 2200289 i 450 0000056302 20130429150258.0 @@ -117009,7 +117009,7 @@ - 01236nas 2200337 i 450 + 00000nas 2200337 i 450 038728265 0000036260 20130319051539.0 @@ -117094,7 +117094,7 @@ - 01477nas 2200361 i 450 + 00000nas 2200361 i 450 039153630 0000023698 20131202094231.0 @@ -117187,7 +117187,7 @@ - 01051nas 2200289 i 450 + 00000nas 2200289 i 450 068680384 0000220173 20130319051540.0 @@ -117259,7 +117259,7 @@ - 01551nas 2200361 i 450 + 00000nas 2200361 i 450 038728346 0000023117 20140110145203.0 @@ -117349,7 +117349,7 @@ - 01190nas 2200349 i 450 + 00000nas 2200349 i 450 036740640 0000158365 20140110151002.0 @@ -117437,7 +117437,7 @@ - 01422nas 2200337 i 450 + 00000nas 2200337 i 450 038728451 0000066328 20131112101449.0 @@ -117523,7 +117523,7 @@ - 02017nas 2200445 i 450 + 00000nas 2200445 i 450 039145107 0000023139 20131219164436.0 @@ -117649,7 +117649,7 @@ - 01180nas0 2200337 450 + 00000nas0 2200337 450 113755376 0001080818 20131219164536.0 @@ -117743,7 +117743,7 @@ - 01123nas 2200325 i 450 + 00000nas 2200325 i 450 036858544 0000200872 20130709140403.0 @@ -117832,7 +117832,7 @@ - 01047nas 2200313 i 450 + 00000nas 2200313 i 450 036159298 0000269556 20130319051540.0 @@ -117911,7 +117911,7 @@ - 01172nas 2200301 i 450 + 00000nas 2200301 i 450 039101371 0000023143 20130319051540.0 @@ -117989,7 +117989,7 @@ - 01237nas 2200325 i 450 + 00000nas 2200325 i 450 038826704 0000023144 20130319051540.0 @@ -118072,7 +118072,7 @@ - 01252nas 2200349 i 450 + 00000nas 2200349 i 450 06413248X 0000490361 20130319051540.0 @@ -118164,7 +118164,7 @@ - 01349nas 2200337 i 450 + 00000nas 2200337 i 450 038728516 0000043403 20130319051541.0 @@ -118249,7 +118249,7 @@ - 01487nas 2200349 i 450 + 00000nas 2200349 i 450 039325288 0000010777 20130319051541.0 @@ -118337,7 +118337,7 @@ - 00978nas 2200289 i 450 + 00000nas 2200289 i 450 039086011 0000056222 20130319051541.0 @@ -118413,7 +118413,7 @@ - 01323nas 2200337 i 450 + 00000nas 2200337 i 450 038728591 0000073990 20130319051541.0 @@ -118498,7 +118498,7 @@ - 00880nls 2200301 i 450 + 00000nls 2200301 i 450 0001161296 0001161296 20130319051541.0 @@ -118570,7 +118570,7 @@ - 01178nas 2200337 i 450 + 00000nas 2200337 i 450 038786877 0000042358 20130319051541.0 @@ -118658,7 +118658,7 @@ - 01635nas 2200361 i 450 + 00000nas 2200361 i 450 039105679 0000023151 20131219164737.0 @@ -118760,7 +118760,7 @@ - 01130nas 2200313 i 450 + 00000nas 2200313 i 450 039324044 0000023157 20131003155536.0 @@ -118840,7 +118840,7 @@ - 01185nas 2200337 i 450 + 00000nas 2200337 i 450 039594351 0000023158 20140110150546.0 @@ -118928,7 +118928,7 @@ - 01119nas 2200313 i 450 + 00000nas 2200313 i 450 038728729 0000023218 20130319051541.0 @@ -119008,7 +119008,7 @@ - 01010cas0 2200337 450 + 00000cas0 2200337 450 058346473 0000733064 20130319051541.0 @@ -119095,7 +119095,7 @@ - 01609nas 2200385 i 450 + 00000nas 2200385 i 450 038728745 0000023264 20130319051541.0 @@ -119192,7 +119192,7 @@ - 01148cas0 2200349 450 + 00000cas0 2200349 450 056261063 0000923322 20130319051541.0 @@ -119284,7 +119284,7 @@ - 01222nas 2200313 i 450 + 00000nas 2200313 i 450 039976831 0000023268 20131002165945.0 @@ -119362,7 +119362,7 @@ - 01197nas 2200313 i 450 + 00000nas 2200313 i 450 036063886 0000077846 20130319051541.0 @@ -119445,7 +119445,7 @@ - 01191nas 2200349 i 450 + 00000nas 2200349 i 450 037132326 0000147898 20130319051541.0 @@ -119538,7 +119538,7 @@ - 01401cas0 2200397 450 + 00000cas0 2200397 450 058234853 0001189500 20130319051541.0 @@ -119647,7 +119647,7 @@ - 00964nas 2200313 i 450 + 00000nas 2200313 i 450 040066843 0000131104 20130319051541.0 @@ -119724,7 +119724,7 @@ - 00928nas 2200301 i 450 + 00000nas 2200301 i 450 038729059 0000023578 20130319051541.0 @@ -119801,7 +119801,7 @@ - 01513cas0 2200397 450 + 00000cas0 2200397 450 04036318X 0001130739 20130319051542.0 @@ -119906,7 +119906,7 @@ - 01227cas0 2200373 450 + 00000cas0 2200373 450 040402460 0000281849 20131119143817.0 @@ -120000,7 +120000,7 @@ - 01186cas0 2200361 450 + 00000cas0 2200361 450 068846819 0001110340 20130319051544.0 @@ -120098,7 +120098,7 @@ - 01157nas 2200325 i 450 + 00000nas 2200325 i 450 038729636 0000026436 20130613175733.0 @@ -120187,7 +120187,7 @@ - 01113nas 2200325 i 450 + 00000nas 2200325 i 450 039752453 0000006711 20130319051545.0 @@ -120270,7 +120270,7 @@ - 01054nas 2200301 i 450 + 00000nas 2200301 i 450 040092763 0000161352 20140109163127.0 @@ -120346,7 +120346,7 @@ - 00745nas 2200277 i 450 + 00000nas 2200277 i 450 040508056 0000238253 20130319051547.0 @@ -120413,7 +120413,7 @@ - 01339nas 2200349 i 450 + 00000nas 2200349 i 450 138880220 0000149529 20130319051548.0 @@ -120501,7 +120501,7 @@ - 00888nas 2200313 i 450 + 00000nas 2200313 i 450 038730324 0000026112 20130319051548.0 @@ -120580,7 +120580,7 @@ - 00796nas 2200289 i 450 + 00000nas 2200289 i 450 0000089879 0000089879 20130319051548.0 @@ -120651,7 +120651,7 @@ - 01076nas 2200337 i 450 + 00000nas 2200337 i 450 040349640 0000214391 20130319051548.0 @@ -120736,7 +120736,7 @@ - 01263cas0 2200397 450 + 00000cas0 2200397 450 104732342 0001052061 20130319051549.0 @@ -120845,7 +120845,7 @@ - 01159cas0 2200361 450 + 00000cas0 2200361 450 153819405 0001218258 20130319051549.0 @@ -120940,7 +120940,7 @@ - 01072nas 2200313 i 450 + 00000nas 2200313 i 450 038826828 0000023910 20130319051549.0 @@ -121028,7 +121028,7 @@ - 01584nas 2200385 i 450 + 00000nas 2200385 i 450 040145484 0000018768 20131024154937.0 @@ -121134,7 +121134,7 @@ - 00939nas0 2200301 450 + 00000nas0 2200301 450 125304412 0001145918 20130319051549.0 @@ -121213,7 +121213,7 @@ - 01090cas0 2200361 450 + 00000cas0 2200361 450 10472725X 0001142414 20130319051550.0 @@ -121307,7 +121307,7 @@ - 01155nas 2200337 i 450 + 00000nas 2200337 i 450 0000071526 0000071526 20130319051550.0 @@ -121389,7 +121389,7 @@ - 00958nas 2200325 i 450 + 00000nas 2200325 i 450 0000521345 0000521345 20130319051550.0 @@ -121475,7 +121475,7 @@ - 00938nls 2200301 i 450 + 00000nls 2200301 i 450 0001221078 0001221078 20130319051550.0 @@ -121547,7 +121547,7 @@ - 00995cas0 2200313 450 + 00000cas0 2200313 450 059601728 0000908125 20130319051550.0 @@ -121631,7 +121631,7 @@ - 00904nas 2200301 i 450 + 00000nas 2200301 i 450 038861798 0000028833 20130319051550.0 @@ -121709,7 +121709,7 @@ - 01051nas 2200289 i 450 + 00000nas 2200289 i 450 0000091344 0000091344 20130319051550.0 @@ -121786,7 +121786,7 @@ - 00811nas 2200253 i 450 + 00000nas 2200253 i 450 036557382 0000092678 20130603152201.0 @@ -121849,7 +121849,7 @@ - 01248cas0 2200349 450 + 00000cas0 2200349 450 044900112 0001143462 20130319051550.0 @@ -121942,7 +121942,7 @@ - 01017nas 2200313 i 450 + 00000nas 2200313 i 450 037392387 0000004924 20130319051550.0 @@ -122021,7 +122021,7 @@ - 00756nas 2200265 i 450 + 00000nas 2200265 i 450 044835086 0000264353 20130319051551.0 @@ -122084,7 +122084,7 @@ - 01339cas0 2200421 450 + 00000cas0 2200421 450 056260318 0000523608 20130319051551.0 @@ -122199,7 +122199,7 @@ - 01251nas 2200337 i 450 + 00000nas 2200337 i 450 040463338 0000252607 20130319051552.0 @@ -122290,7 +122290,7 @@ - 00664nas 2200229 i 450 + 00000nas 2200229 i 450 0000380054 0000380054 20130319051552.0 @@ -122342,7 +122342,7 @@ - 00963nls 2200289 i 450 + 00000nls 2200289 i 450 0001131863 0001131863 20130319051552.0 @@ -122409,7 +122409,7 @@ - 01011nas 2200325 i 450 + 00000nas 2200325 i 450 0000024008 0000024008 20130319051552.0 @@ -122492,7 +122492,7 @@ - 00926nas 2200277 i 450 + 00000nas 2200277 i 450 038080028 0000058570 20130319051552.0 @@ -122566,7 +122566,7 @@ - 00810nas 2200277 i 450 + 00000nas 2200277 i 450 038732092 0000024023 20130319051553.0 @@ -122634,7 +122634,7 @@ - 00870nls 2200301 i 450 + 00000nls 2200301 i 450 0001238857 0001238857 20130319051553.0 @@ -122705,7 +122705,7 @@ - 01101nas 2200313 i 450 + 00000nas 2200313 i 450 038732149 0000099836 20130319051553.0 @@ -122785,7 +122785,7 @@ - 00797nas 2200277 i 450 + 00000nas 2200277 i 450 040046192 0000025469 20130319051553.0 @@ -122853,7 +122853,7 @@ - 01215nas 2200337 i 450 + 00000nas 2200337 i 450 039105962 0000086216 20130521165116.0 @@ -122944,7 +122944,7 @@ - 00984nas 2200289 i 450 + 00000nas 2200289 i 450 090054040 0001194373 20130319051553.0 @@ -123018,7 +123018,7 @@ - 00959nas 2200289 i 450 + 00000nas 2200289 i 450 0000024052 0000024052 20130319051553.0 @@ -123092,7 +123092,7 @@ - 00988nas 2200301 i 450 + 00000nas 2200301 i 450 037448811 0000024373 20130319051553.0 @@ -123169,7 +123169,7 @@ - 01019nas 2200289 i 450 + 00000nas 2200289 i 450 03923150X 0000115292 20130319051553.0 @@ -123243,7 +123243,7 @@ - 01374nas 2200373 i 450 + 00000nas 2200373 i 450 039520471 0000024371 20131016144958.0 @@ -123344,7 +123344,7 @@ - 00929nls 2200301 i 450 + 00000nls 2200301 i 450 0001161404 0001161404 20130319051553.0 @@ -123416,7 +123416,7 @@ - 01099nas 2200313 i 450 + 00000nas 2200313 i 450 03959789X 0000024374 20130319051553.0 @@ -123495,7 +123495,7 @@ - 01930nas 2200409 450 + 00000nas 2200409 450 036695866 0001194372 20140117194338.0 @@ -123606,7 +123606,7 @@ - 02152cas0 2200457 450 + 00000cas0 2200457 450 038554100 0001085592 20130319051553.0 @@ -123745,7 +123745,7 @@ - 01032nls 2200313 i 450 + 00000nls 2200313 i 450 0001131867 0001131867 20130319051554.0 @@ -123820,7 +123820,7 @@ - 01166cas0 2200337 450 + 00000cas0 2200337 450 03767031X 0001084129 20130319051554.0 @@ -123909,7 +123909,7 @@ - 00997nas 2200301 i 450 + 00000nas 2200301 i 450 039224791 0000004671 20140110131216.0 @@ -123987,7 +123987,7 @@ - 01366cas0 2200385 450 + 00000cas0 2200385 450 038604159 0001085595 20130319051554.0 @@ -124095,7 +124095,7 @@ - 01198cas0 2200337 450 + 00000cas0 2200337 450 074395114 0000607401 20130319051554.0 @@ -124181,7 +124181,7 @@ - 01092cas0 2200361 450 + 00000cas0 2200361 450 116948094 0001145036 20130319051554.0 @@ -124275,7 +124275,7 @@ - 01274nas 2200325 i 450 + 00000nas 2200325 i 450 038732475 0000055982 20131202104834.0 @@ -124358,7 +124358,7 @@ - 01346nas 2200325 i 450 + 00000nas 2200325 i 450 060295937 0000528711 20130319051554.0 @@ -124441,7 +124441,7 @@ - 01452nas 2200373 i 450 + 00000nas 2200373 i 450 04009877X 0000096183 20130905112528.0 @@ -124536,7 +124536,7 @@ - 01194nas 2200313 i 450 + 00000nas 2200313 i 450 070228396 0000218649 20130917101315.0 @@ -124616,7 +124616,7 @@ - 01403nas 2200385 i 450 + 00000nas 2200385 i 450 03873267X 0000055933 20130319051554.0 @@ -124720,7 +124720,7 @@ - 01551nas 2200361 i 450 + 00000nas 2200361 i 450 038732688 0000024638 20130319051554.0 @@ -124810,7 +124810,7 @@ - 00728nas 2200265 i 450 + 00000nas 2200265 i 450 036754935 0000254208 20131028145516.0 @@ -124874,7 +124874,7 @@ - 01507nas 2200373 i 450 + 00000nas 2200373 i 450 038732912 0000024654 20130319051554.0 @@ -124969,7 +124969,7 @@ - 01294nas 2200361 i 450 + 00000nas 2200361 i 450 038732920 0000024660 20130319051554.0 @@ -125063,7 +125063,7 @@ - 01049nas 2200289 i 450 + 00000nas 2200289 i 450 03873303X 0000024682 20130319051554.0 @@ -125134,7 +125134,7 @@ - 00990nls 2200289 i 450 + 00000nls 2200289 i 450 0000468694 0000468694 20130319051554.0 @@ -125204,7 +125204,7 @@ - 00837nas 2200289 i 450 + 00000nas 2200289 i 450 058719199 0000451443 20130319051554.0 @@ -125277,7 +125277,7 @@ - 01393nas 2200373 i 450 + 00000nas 2200373 i 450 03873334X 0000024710 20130319051554.0 @@ -125374,7 +125374,7 @@ - 00934nas0 2200277 450 + 00000nas0 2200277 450 128412348 0001154673 20130319051554.0 @@ -125445,7 +125445,7 @@ - 01471nas 2200361 i 450 + 00000nas 2200361 i 450 038733366 0000024716 20130319051554.0 @@ -125539,7 +125539,7 @@ - 01578cas0 2200385 450 + 00000cas0 2200385 450 133349888 0001179105 20140107180829.0 @@ -125639,7 +125639,7 @@ - 01348cas0 2200349 450 + 00000cas0 2200349 450 039106489 0000732566 20130319051554.0 @@ -125731,7 +125731,7 @@ - 01245nas 2200337 i 450 + 00000nas 2200337 i 450 03873348X 0000024689 20130319051554.0 @@ -125815,7 +125815,7 @@ - 01505nas 2200361 i 450 + 00000nas 2200361 i 450 039974162 0000024693 20130903173558.0 @@ -125911,7 +125911,7 @@ - 01710nas 2200385 i 450 + 00000nas 2200385 i 450 03873351X 0000055928 20130319051554.0 @@ -126009,7 +126009,7 @@ - 01309nls 2200337 i 450 + 00000nls 2200337 i 450 0000470122 0000470122 20130319051554.0 @@ -126091,7 +126091,7 @@ - 01078cas0 2200361 450 + 00000cas0 2200361 450 104828986 0000691874 20130319051554.0 @@ -126185,7 +126185,7 @@ - 01121nas 2200325 i 450 + 00000nas 2200325 i 450 064130959 0000524863 20130319051554.0 @@ -126266,7 +126266,7 @@ - 01349nas 2200385 i 450 + 00000nas 2200385 i 450 050924133 0000301573 20130903143543.0 @@ -126368,7 +126368,7 @@ - 01638nas 2200385 i 450 + 00000nas 2200385 i 450 038733935 0000024771 20130319051554.0 @@ -126471,7 +126471,7 @@ - 01148nas 2200325 i 450 + 00000nas 2200325 i 450 037270184 0000024778 20130319051554.0 @@ -126554,7 +126554,7 @@ - 00880nas 2200289 i 450 + 00000nas 2200289 i 450 038733978 0000024780 20131202100011.0 @@ -126628,7 +126628,7 @@ - 01406nas 2200361 i 450 + 00000nas 2200361 i 450 036740071 0000137868 20130917164155.0 @@ -126721,7 +126721,7 @@ - 01074nas 2200301 i 450 + 00000nas 2200301 i 450 094015082 0000149241 20130319051554.0 @@ -126796,7 +126796,7 @@ - 00954nas 2200289 i 450 + 00000nas 2200289 i 450 039092992 0000024868 20130319051554.0 @@ -126868,7 +126868,7 @@ - 02170cas0 2200445 450 + 00000cas0 2200445 450 03685736X 0001095059 20130319051554.0 @@ -126997,7 +126997,7 @@ - 01657nas 2200385 i 450 + 00000nas 2200385 i 450 070505187 0000487141 20130319051554.0 @@ -127100,7 +127100,7 @@ - 01149nas 2200325 i 450 + 00000nas 2200325 i 450 058260420 0000523584 20130319051554.0 @@ -127180,7 +127180,7 @@ - 01656nas 2200409 i 450 + 00000nas 2200409 i 450 038734249 0000024787 20140110151449.0 @@ -127287,7 +127287,7 @@ - 01404nas 2200349 i 450 + 00000nas 2200349 i 450 038734303 0000024866 20131202100833.0 @@ -127379,7 +127379,7 @@ - 01286nas 2200349 i 450 + 00000nas 2200349 i 450 064131491 0000490375 20130319051554.0 @@ -127472,7 +127472,7 @@ - 01086nas 2200313 i 450 + 00000nas 2200313 i 450 039302148 0000195072 20130828181243.0 @@ -127551,7 +127551,7 @@ - 00901nas 2200277 i 450 + 00000nas 2200277 i 450 036535036 0000025125 20140108131044.0 @@ -127620,7 +127620,7 @@ - 01434nas 2200385 i 450 + 00000nas 2200385 i 450 040301788 0000116367 20140108131319.0 @@ -127723,7 +127723,7 @@ - 01611nas 2200373 i 450 + 00000nas 2200373 i 450 078920418 0000550554 20130319051554.0 @@ -127818,7 +127818,7 @@ - 01362nas 2200349 i 450 + 00000nas 2200349 i 450 036347507 0000025139 20130319051554.0 @@ -127912,7 +127912,7 @@ - 01374nas 2200361 i 450 + 00000nas 2200361 i 450 039976556 0000414943 20131025134253.0 @@ -128007,7 +128007,7 @@ - 01369nas0 2200385 450 + 00000nas0 2200385 450 135308534 0001170958 20130319051554.0 @@ -128109,7 +128109,7 @@ - 01273nas0 2200361 450 + 00000nas0 2200361 450 135307651 0001170957 20130319051554.0 @@ -128204,7 +128204,7 @@ - 01118nas0 2200337 450 + 00000nas0 2200337 450 121770095 0001131589 20130319051554.0 @@ -128294,7 +128294,7 @@ - 01121nas 2200349 i 450 + 00000nas 2200349 i 450 040264777 0000008295 20130319051554.0 @@ -128385,7 +128385,7 @@ - 00982nas 2200301 i 450 + 00000nas 2200301 i 450 038734591 0000025142 20130319051554.0 @@ -128460,7 +128460,7 @@ - 01266nas 2200313 i 450 + 00000nas 2200313 i 450 039120422 0000010900 20130319051554.0 @@ -128538,7 +128538,7 @@ - 01342nas 2200361 i 450 + 00000nas 2200361 i 450 038734621 0000025160 20130319051554.0 @@ -128634,7 +128634,7 @@ - 00981cas0 2200337 450 + 00000cas0 2200337 450 104725672 0001047871 20130319051554.0 @@ -128723,7 +128723,7 @@ - 01225nas 2200313 i 450 + 00000nas 2200313 i 450 040301583 0000137254 20130319051554.0 @@ -128801,7 +128801,7 @@ - 01137nls 2200313 i 450 + 00000nls 2200313 i 450 0000469929 0000469929 20130319051554.0 @@ -128876,7 +128876,7 @@ - 01102nas 2200301 i 450 + 00000nas 2200301 i 450 03873477X 0000055985 20130319051554.0 @@ -128953,7 +128953,7 @@ - 01200nas 2200337 i 450 + 00000nas 2200337 i 450 038731053 0000022926 20130319051554.0 @@ -129042,7 +129042,7 @@ - 01373nas 2200349 i 450 + 00000nas 2200349 i 450 038734788 0000025163 20130319051554.0 @@ -129132,7 +129132,7 @@ - 01522nas 2200373 i 450 + 00000nas 2200373 i 450 039997065 0000025170 20131004101836.0 @@ -129230,7 +129230,7 @@ - 01359cas0 2200373 450 + 00000cas0 2200373 450 115408606 0001132248 20130319051554.0 @@ -129331,7 +129331,7 @@ - 00956nas 2200277 i 450 + 00000nas 2200277 i 450 040045293 0000056027 20130729114116.0 @@ -129400,7 +129400,7 @@ - 01636nls 2200373 i 450 + 00000nls 2200373 i 450 0000815974 0000815974 20130319051554.0 @@ -129494,7 +129494,7 @@ - 01440cas0 2200397 450 + 00000cas0 2200397 450 104760192 0000898108 20140110100238.0 @@ -129598,7 +129598,7 @@ - 01160nas 2200313 i 450 + 00000nas 2200313 i 450 040307670 0000082418 20130319051554.0 @@ -129677,7 +129677,7 @@ - 01461nas 2200349 i 450 + 00000nas 2200349 i 450 040099016 0000071857 20130319051554.0 @@ -129765,7 +129765,7 @@ - 01164cas0 2200349 450 + 00000cas0 2200349 450 058344772 0000301422 20130319051554.0 @@ -129855,7 +129855,7 @@ - 01262nas 2200325 i 450 + 00000nas 2200325 i 450 037421085 0000255082 20131025131823.0 @@ -129937,7 +129937,7 @@ - 01162nas 2200325 i 450 + 00000nas 2200325 i 450 04881167X 0000279461 20130319051554.0 @@ -130018,7 +130018,7 @@ - 01159nas0 2200325 450 + 00000nas0 2200325 450 115665285 0001101871 20130319051554.0 @@ -130105,7 +130105,7 @@ - 01181nas 2200325 i 450 + 00000nas 2200325 i 450 040071561 0000167925 20130319051554.0 @@ -130190,7 +130190,7 @@ - 01449nas 2200361 i 450 + 00000nas 2200361 i 450 044835426 0000137116 20130319051554.0 @@ -130285,7 +130285,7 @@ - 01148nas 2200325 i 450 + 00000nas 2200325 i 450 040091449 0000096193 20130319051554.0 @@ -130369,7 +130369,7 @@ - 01027nas 2200301 i 450 + 00000nas 2200301 i 450 039302296 0000025310 20130918161139.0 @@ -130446,7 +130446,7 @@ - 01237nas 2200313 i 450 + 00000nas 2200313 i 450 0000123229 0000123229 20130319051554.0 @@ -130525,7 +130525,7 @@ - 01457nas 2200373 i 450 + 00000nas 2200373 i 450 038735253 0000025375 20131202101429.0 @@ -130619,7 +130619,7 @@ - 01081nas 2200313 i 450 + 00000nas 2200313 i 450 038735261 0000056030 20130319051554.0 @@ -130698,7 +130698,7 @@ - 01026nas 2200289 i 450 + 00000nas 2200289 i 450 03938084X 0000094625 20131127130156.0 @@ -130772,7 +130772,7 @@ - 00860nas 2200277 i 450 + 00000nas 2200277 i 450 036873942 0000269473 20130830103253.0 @@ -130840,7 +130840,7 @@ - 01263nas 2200325 i 450 + 00000nas 2200325 i 450 050912437 0000327612 20130830125224.0 @@ -130923,7 +130923,7 @@ - 01112cas0 2200349 450 + 00000cas0 2200349 450 108057607 0001152229 20130319051554.0 @@ -131015,7 +131015,7 @@ - 01350nas 2200325 i 450 + 00000nas 2200325 i 450 039987884 0000025376 20131004125754.0 @@ -131098,7 +131098,7 @@ - 01106nas 2200313 i 450 + 00000nas 2200313 i 450 040001792 0000060575 20130319051554.0 @@ -131177,7 +131177,7 @@ - 00989nas 2200301 i 450 + 00000nas 2200301 i 450 038735741 0000025381 20130319051554.0 @@ -131253,7 +131253,7 @@ - 01263nas 2200337 i 450 + 00000nas 2200337 i 450 067779514 0000680281 20130319051554.0 @@ -131338,7 +131338,7 @@ - 01178nas 2200325 i 450 + 00000nas 2200325 i 450 039402894 0000025446 20130319051554.0 @@ -131424,7 +131424,7 @@ - 01455nas 2200337 i 450 + 00000nas 2200337 i 450 038735938 0000025450 20131202101903.0 @@ -131511,7 +131511,7 @@ - 01208nas 2200301 i 450 + 00000nas 2200301 i 450 03911046X 0000025454 20131104155944.0 @@ -131584,7 +131584,7 @@ - 01120nas0 2200325 450 + 00000nas0 2200325 450 129103977 0001156516 20130319051554.0 @@ -131669,7 +131669,7 @@ - 01071cas0 2200349 450 + 00000cas0 2200349 450 104757701 0001035028 20130319051554.0 @@ -131760,7 +131760,7 @@ - 01620nas 2200397 i 450 + 00000nas 2200397 i 450 038736020 0000004690 20130319051554.0 @@ -131870,7 +131870,7 @@ - 01275nas 2200325 i 450 + 00000nas 2200325 i 450 038736047 0000054044 20130319051554.0 @@ -131950,7 +131950,7 @@ - 01793nas 2200337 i 450 + 00000nas 2200337 i 450 038736098 0000025558 20130319051554.0 @@ -132041,7 +132041,7 @@ - 01883nas 2200457 i 450 + 00000nas 2200457 i 450 038827506 0000025563 20130319051554.0 @@ -132165,7 +132165,7 @@ - 01212nas 2200349 i 450 + 00000nas 2200349 i 450 03873611X 0000178990 20130906101015.0 @@ -132259,7 +132259,7 @@ - 01455nas 2200337 i 450 + 00000nas 2200337 i 450 0000617132 0000617132 20130319051554.0 @@ -132346,7 +132346,7 @@ - 00941nas 2200289 i 450 + 00000nas 2200289 i 450 03931250X 0000481782 20130319051555.0 @@ -132419,7 +132419,7 @@ - 01132cas0 2200373 450 + 00000cas0 2200373 450 125000499 0001179387 20130319051555.0 @@ -132516,7 +132516,7 @@ - 01216cas0 2200361 450 + 00000cas0 2200361 450 116904240 0001202385 20130319051555.0 @@ -132610,7 +132610,7 @@ - 01066nas 2200301 i 450 + 00000nas 2200301 i 450 040085856 0000093073 20130319051555.0 @@ -132683,7 +132683,7 @@ - 01451nas 2200361 i 450 + 00000nas 2200361 i 450 036740497 0000129865 20130319051555.0 @@ -132774,7 +132774,7 @@ - 01029nas 2200313 i 450 + 00000nas 2200313 i 450 038900262 0000161650 20130319051555.0 @@ -132853,7 +132853,7 @@ - 01159nas 2200301 i 450 + 00000nas 2200301 i 450 039696537 0000025782 20130319051555.0 @@ -132927,7 +132927,7 @@ - 01150nas 2200325 i 450 + 00000nas 2200325 i 450 039149730 0000025718 20130911121232.0 @@ -133011,7 +133011,7 @@ - 01057cas0 2200337 450 + 00000cas0 2200337 450 070086877 0001130748 20130319051555.0 @@ -133102,7 +133102,7 @@ - 01366nas 2200361 i 450 + 00000nas 2200361 i 450 038736306 0000025674 20130319051555.0 @@ -133199,7 +133199,7 @@ - 01615nas 2200409 i 450 + 00000nas 2200409 i 450 038736314 0000025677 20130319051555.0 @@ -133313,7 +133313,7 @@ - 01071nas 2200337 i 450 + 00000nas 2200337 i 450 039716554 0000025681 20130319051555.0 @@ -133398,7 +133398,7 @@ - 01615cas0 2200397 450 + 00000cas0 2200397 450 037430963 0001133517 20130614103733.0 @@ -133503,7 +133503,7 @@ - 01368nls 2200361 i 450 + 00000nls 2200361 i 450 0000816058 0000816058 20130319051555.0 @@ -133594,7 +133594,7 @@ - 01066nas 2200301 i 450 + 00000nas 2200301 i 450 037657429 0000025684 20130918150856.0 @@ -133669,7 +133669,7 @@ - 01706nas 2200337 i 450 + 00000nas 2200337 i 450 039315096 0000025715 20130920153849.0 @@ -133761,7 +133761,7 @@ - 01234nas 2200313 i 450 + 00000nas 2200313 i 450 0000055776 0000055776 20130607142402.0 @@ -133844,7 +133844,7 @@ - 01024nas 2200301 i 450 + 00000nas 2200301 i 450 036744034 0000183477 20130313085410.0 @@ -133919,7 +133919,7 @@ - 01257nas 2200337 i 450 + 00000nas 2200337 i 450 039511022 0000025716 20130515180358.0 @@ -134010,7 +134010,7 @@ - 01299nas 2200361 i 450 + 00000nas 2200361 i 450 039108244 0001106523 20130319051555.0 @@ -134107,7 +134107,7 @@ - 01202nas 2200337 i 450 + 00000nas 2200337 i 450 039108244 0000025720 20130313085410.0 @@ -134194,7 +134194,7 @@ - 01163nas 2200349 i 450 + 00000nas 2200349 i 450 038736438 0000025740 20130709125859.0 @@ -134286,7 +134286,7 @@ - 01169nas 2200313 i 450 + 00000nas 2200313 i 450 040264475 0000083943 20130319051555.0 @@ -134364,7 +134364,7 @@ - 01456nas 2200349 i 450 + 00000nas 2200349 i 450 038736462 0000025742 20130319051555.0 @@ -134455,7 +134455,7 @@ - 01303nas 2200337 i 450 + 00000nas 2200337 i 450 038736470 0000057002 20130319051555.0 @@ -134540,7 +134540,7 @@ - 01590nas 2200361 i 450 + 00000nas 2200361 i 450 038736489 0000025745 20130319051555.0 @@ -134634,7 +134634,7 @@ - 00847nas 2200217 i 450 + 00000nas 2200217 i 450 0000067748 0000067748 20130605115554.0 @@ -134687,7 +134687,7 @@ - 01078cas0 2200325 450 + 00000cas0 2200325 450 109897536 0001043420 20130319051555.0 @@ -134771,7 +134771,7 @@ - 01064nls 2200301 i 450 + 00000nls 2200301 i 450 0000470731 0000470731 20130319051555.0 @@ -134843,7 +134843,7 @@ - 01433nas 2200373 i 450 + 00000nas 2200373 i 450 038736640 0000025748 20130319051555.0 @@ -134940,7 +134940,7 @@ - 01037nas 2200301 i 450 + 00000nas 2200301 i 450 038736659 0000025749 20130319051555.0 @@ -135014,7 +135014,7 @@ - 00946nas 2200289 i 450 + 00000nas 2200289 i 450 036741531 0000269493 20130319051555.0 @@ -135087,7 +135087,7 @@ - 01054nas 2200301 i 450 + 00000nas 2200301 i 450 039380688 0000200297 20130409154303.0 @@ -135168,7 +135168,7 @@ - 01243nas 2200325 i 450 + 00000nas 2200325 i 450 038736748 0000025754 20131202102212.0 @@ -135250,7 +135250,7 @@ - 01569nas 2200361 i 450 + 00000nas 2200361 i 450 036748382 0000190610 20130319051555.0 @@ -135342,7 +135342,7 @@ - 01102nas 2200301 i 450 + 00000nas 2200301 i 450 0000067749 0000067749 20130319051555.0 @@ -135418,7 +135418,7 @@ - 01126nas 2200325 i 450 + 00000nas 2200325 i 450 036754897 0000231860 20130319051555.0 @@ -135500,7 +135500,7 @@ - 01876nls 2200301 i 450 + 00000nls 2200301 i 450 0001206050 0001206050 20130319051555.0 @@ -135571,7 +135571,7 @@ - 01514nas 2200385 i 450 + 00000nas 2200385 i 450 039552381 0000025753 20130319051555.0 @@ -135674,7 +135674,7 @@ - 01228nas 2200337 i 450 + 00000nas 2200337 i 450 038737205 0000025810 20140110122711.0 @@ -135760,7 +135760,7 @@ - 01573nas 2200373 i 450 + 00000nas 2200373 i 450 039397092 0000025811 20130806155817.0 @@ -135860,7 +135860,7 @@ - 01269nas 2200337 i 450 + 00000nas 2200337 i 450 039339777 0000025827 20131119165928.0 @@ -135953,7 +135953,7 @@ - 01395nas 2200313 i 450 + 00000nas 2200313 i 450 040002519 0000005367 20130319051555.0 @@ -136033,7 +136033,7 @@ - 01277nas0 2200361 450 + 00000nas0 2200361 450 113732325 0001079283 20130319051555.0 @@ -136130,7 +136130,7 @@ - 01003nas 2200313 i 450 + 00000nas 2200313 i 450 094868336 0000253704 20130319051555.0 @@ -136206,7 +136206,7 @@ - 01126nas 2200313 i 450 + 00000nas 2200313 i 450 03882762X 0000025861 20130726161529.0 @@ -136286,7 +136286,7 @@ - 01230nas 2200337 i 450 + 00000nas 2200337 i 450 038737574 0000025862 20130319051555.0 @@ -136373,7 +136373,7 @@ - 01139nas 2200313 i 450 + 00000nas 2200313 i 450 079280935 0000208995 20130828182226.0 @@ -136451,7 +136451,7 @@ - 00937nas 2200289 i 450 + 00000nas 2200289 i 450 0000530715 0000530715 20130319051555.0 @@ -136521,7 +136521,7 @@ - 00808nas 2200265 i 450 + 00000nas 2200265 i 450 040098761 0000117120 20130319051555.0 @@ -136585,7 +136585,7 @@ - 01026nas0 2200313 450 + 00000nas0 2200313 450 15229578X 0001211680 20130319051555.0 @@ -136666,7 +136666,7 @@ - 01098nas0 2200325 450 + 00000nas0 2200325 450 121769399 0001131585 20130319051555.0 @@ -136753,7 +136753,7 @@ - 01693nas 2200385 i 450 + 00000nas 2200385 i 450 038737582 0000025833 20130319051555.0 @@ -136861,7 +136861,7 @@ - 01286nas0 2200373 450 + 00000nas0 2200373 450 135935709 0001174306 20130319051555.0 @@ -136958,7 +136958,7 @@ - 01053nas 2200301 i 450 + 00000nas 2200301 i 450 039102041 0000025866 20130910170958.0 @@ -137034,7 +137034,7 @@ - 01064cas0 2200325 450 + 00000cas0 2200325 450 131663003 0001181261 20130319051555.0 @@ -137117,7 +137117,7 @@ - 01023nas 2200289 i 450 + 00000nas 2200289 i 450 040276406 0000072505 20130319051555.0 @@ -137188,7 +137188,7 @@ - 01149nas 2200313 i 450 + 00000nas 2200313 i 450 040307794 0000182469 20131202165605.0 @@ -137268,7 +137268,7 @@ - 00901nas 2200253 i 450 + 00000nas 2200253 i 450 0000169615 0000169615 20130319051555.0 @@ -137330,7 +137330,7 @@ - 00910nas 2200277 i 450 + 00000nas 2200277 i 450 039083586 0000025869 20130911170846.0 @@ -137403,7 +137403,7 @@ - 00940nas0 2200325 450 + 00000nas0 2200325 450 092126316 0001035016 20130319051555.0 @@ -137487,7 +137487,7 @@ - 00884nas 2200301 i 450 + 00000nas 2200301 i 450 040080285 0000025897 20130319051555.0 @@ -137563,7 +137563,7 @@ - 01182nas 2200313 i 450 + 00000nas 2200313 i 450 038737787 0000025881 20130319051555.0 @@ -137646,7 +137646,7 @@ - 01030nas 2200325 i 450 + 00000nas 2200325 i 450 038737817 0000025882 20130319051555.0 @@ -137731,7 +137731,7 @@ - 01345nls 2200373 i 450 + 00000nls 2200373 i 450 0000816062 0000816062 20130319051555.0 @@ -137824,7 +137824,7 @@ - 01228nas 2200337 i 450 + 00000nas 2200337 i 450 03955175X 0000025896 20130319051555.0 @@ -137912,7 +137912,7 @@ - 01209nas 2200337 i 450 + 00000nas 2200337 i 450 036739278 0000094295 20130319051555.0 @@ -138002,7 +138002,7 @@ - 01528nas 2200361 i 450 + 00000nas 2200361 i 450 03934388X 0000025907 20130319051555.0 @@ -138096,7 +138096,7 @@ - 01275nas 2200325 i 450 + 00000nas 2200325 i 450 038738112 0000056039 20130319051555.0 @@ -138178,7 +138178,7 @@ - 01078nas 2200301 i 450 + 00000nas 2200301 i 450 038827719 0000025905 20130605111345.0 @@ -138257,7 +138257,7 @@ - 01092nas 2200313 i 450 + 00000nas 2200313 i 450 038738139 0000025934 20130319051555.0 @@ -138338,7 +138338,7 @@ - 01153nas 2200313 i 450 + 00000nas 2200313 i 450 037420984 0000247274 20130319051555.0 @@ -138422,7 +138422,7 @@ - 01344nas 2200373 i 450 + 00000nas 2200373 i 450 038738236 0000025936 20130319051555.0 @@ -138522,7 +138522,7 @@ - 01407nas 2200373 i 450 + 00000nas 2200373 i 450 064130592 0000488864 20130319051555.0 @@ -138614,7 +138614,7 @@ - 01283nas 2200325 i 450 + 00000nas 2200325 i 450 039394476 0000067754 20130319051555.0 @@ -138697,7 +138697,7 @@ - 01651nas 2200409 i 450 + 00000nas 2200409 i 450 048811726 0000327506 20130830122335.0 @@ -138805,7 +138805,7 @@ - 01239nas 2200325 i 450 + 00000nas 2200325 i 450 058256245 0000385039 20130319051555.0 @@ -138889,7 +138889,7 @@ - 01160nas 2200349 i 450 + 00000nas 2200349 i 450 039075362 0000025945 20130624095302.0 @@ -138983,7 +138983,7 @@ - 01260nas 2200337 i 450 + 00000nas 2200337 i 450 040286312 0000559395 20130319051555.0 @@ -139074,7 +139074,7 @@ - 01176nls 2200301 i 450 + 00000nls 2200301 i 450 0000470140 0000470140 20130319051555.0 @@ -139146,7 +139146,7 @@ - 01217nls 2200313 i 450 + 00000nls 2200313 i 450 0000470143 0000470143 20130319051555.0 @@ -139221,7 +139221,7 @@ - 01688nas 2200349 i 450 + 00000nas 2200349 i 450 039148556 0000025947 20130319051555.0 @@ -139308,7 +139308,7 @@ - 01626nas 2200361 i 450 + 00000nas 2200361 i 450 039105547 0000053466 20130319051555.0 @@ -139404,7 +139404,7 @@ - 01386cas0 2200385 450 + 00000cas0 2200385 450 048779695 0000528502 20131016153306.0 @@ -139508,7 +139508,7 @@ - 00964nls 2200253 i 450 + 00000nls 2200253 i 450 0001147381 0001147381 20130319051555.0 @@ -139567,7 +139567,7 @@ - 01319nas 2200337 i 450 + 00000nas 2200337 i 450 080086357 0000618867 20131202101306.0 @@ -139650,7 +139650,7 @@ - 01018nas 2200289 i 450 + 00000nas 2200289 i 450 0000075294 0000075294 20130920151508.0 @@ -139722,7 +139722,7 @@ - 01180nas 2200325 i 450 + 00000nas 2200325 i 450 038738562 0000054259 20130319051555.0 @@ -139805,7 +139805,7 @@ - 01070nas 2200313 i 450 + 00000nas 2200313 i 450 039984370 0000025950 20130319051555.0 @@ -139888,7 +139888,7 @@ - 01163nas 2200289 i 450 + 00000nas 2200289 i 450 037923463 0000106852 20130319051555.0 @@ -139964,7 +139964,7 @@ - 01107nas 2200289 i 450 + 00000nas 2200289 i 450 036469211 0000025997 20130319051555.0 @@ -140038,7 +140038,7 @@ - 01732nas 2200361 i 450 + 00000nas 2200361 i 450 040099113 0000106894 20131202104422.0 @@ -140133,7 +140133,7 @@ - 01359nas 2200325 i 450 + 00000nas 2200325 i 450 013308408 0000106881 20130319051555.0 @@ -140219,7 +140219,7 @@ - 01077nls 2200277 i 450 + 00000nls 2200277 i 450 0000491575 0000491575 20130319051555.0 @@ -140286,7 +140286,7 @@ - 01071nas 2200289 i 450 + 00000nas 2200289 i 450 037931059 0000106872 20130319051555.0 @@ -140359,7 +140359,7 @@ - 00785nas 2200265 i 450 + 00000nas 2200265 i 450 040080242 0000025998 20130319051555.0 @@ -140424,7 +140424,7 @@ - 01117nas 2200301 i 450 + 00000nas 2200301 i 450 037428942 0000195206 20130319051555.0 @@ -140499,7 +140499,7 @@ - 01432nas 2200373 i 450 + 00000nas 2200373 i 450 039697827 0000004195 20130319051555.0 @@ -140598,7 +140598,7 @@ - 01174cas0 2200373 450 + 00000cas0 2200373 450 110908368 0001143522 20130319051555.0 @@ -140696,7 +140696,7 @@ - 01016cas0 2200349 450 + 00000cas0 2200349 450 131662694 0001154751 20130319051555.0 @@ -140788,7 +140788,7 @@ - 01267nas 2200373 i 450 + 00000nas 2200373 i 450 0000928735 0000928735 20140110101042.0 @@ -140884,7 +140884,7 @@ - 00892nas 2200277 i 450 + 00000nas 2200277 i 450 037418823 0000218798 20130319051555.0 @@ -140951,7 +140951,7 @@ - 01232cas0 2200397 450 + 00000cas0 2200397 450 040264866 0001168650 20130319051555.0 @@ -141056,7 +141056,7 @@ - 01040cas0 2200301 450 + 00000cas0 2200301 450 040137236 0000819689 20130319051555.0 @@ -141135,7 +141135,7 @@ - 00877nls 2200265 i 450 + 00000nls 2200265 i 450 0000960196 0000960196 20130319051555.0 @@ -141198,7 +141198,7 @@ - 00859nls 2200265 i 450 + 00000nls 2200265 i 450 0000960204 0000960204 20130319051555.0 @@ -141261,7 +141261,7 @@ - 00917nas 2200241 i 450 + 00000nas 2200241 i 450 0000100320 0000100320 20131015170350.0 @@ -141318,7 +141318,7 @@ - 01327nas 2200325 i 450 + 00000nas 2200325 i 450 013303058 0000004765 20131104171739.0 @@ -141405,7 +141405,7 @@ - 01155nas 2200241 i 450 + 00000nas 2200241 i 450 0000011120 0000011120 20130319051555.0 @@ -141461,7 +141461,7 @@ - 01130nas 2200253 i 450 + 00000nas 2200253 i 450 0000010978 0000010978 20130319051555.0 @@ -141521,7 +141521,7 @@ - 00976nas 2200241 i 450 + 00000nas 2200241 i 450 0000011136 0000011136 20130319051555.0 @@ -141578,7 +141578,7 @@ - 01120nas 2200241 i 450 + 00000nas 2200241 i 450 0000010980 0000010980 20130319051555.0 @@ -141635,7 +141635,7 @@ - 01218nas 2200313 i 450 + 00000nas 2200313 i 450 0000010972 0000010972 20130319051555.0 @@ -141716,7 +141716,7 @@ - 01424nas 2200325 i 450 + 00000nas 2200325 i 450 0000011036 0000011036 20130319051555.0 @@ -141801,7 +141801,7 @@ - 01332nas 2200301 i 450 + 00000nas 2200301 i 450 0000066844 0000066844 20130319051555.0 @@ -141874,7 +141874,7 @@ - 00853nls 2200265 i 450 + 00000nls 2200265 i 450 0000066801 0000066801 20130319051555.0 @@ -141938,7 +141938,7 @@ - 01404cas0 2200397 450 + 00000cas0 2200397 450 058256679 0000486950 20130617100238.0 @@ -142048,7 +142048,7 @@ - 01071cas0 2200337 450 + 00000cas0 2200337 450 11463551X 0001158816 20130319051556.0 @@ -142134,7 +142134,7 @@ - 01492nas 2200373 i 450 + 00000nas 2200373 i 450 089938143 0000602976 20140109121833.0 @@ -142228,7 +142228,7 @@ - 01492nls 2200265 450 + 00000nls 2200265 450 0000583657 0000583657 20130319051557.0 @@ -142292,7 +142292,7 @@ - 00851nls 2200277 i 450 + 00000nls 2200277 i 450 0000969198 0000969198 20130319051557.0 @@ -142359,7 +142359,7 @@ - 01141nas0 2200385 450 + 00000nas0 2200385 450 136030920 0001173518 20130319051557.0 @@ -142464,7 +142464,7 @@ - 00976nls 2200289 i 450 + 00000nls 2200289 i 450 0001159586 0001159586 20130319051557.0 @@ -142540,7 +142540,7 @@ - 00890nls 2200241 450 + 00000nls 2200241 450 0000857308 0000857308 20130319051559.0 @@ -142597,7 +142597,7 @@ - 01037nas 2200289 i 450 + 00000nas 2200289 i 450 0000010318 0000010318 20130319051559.0 @@ -142671,7 +142671,7 @@ - 01015nas 2200289 i 450 + 00000nas 2200289 i 450 0000191784 20140116164010.0 @@ -142746,7 +142746,7 @@ - 00955nls 2200277 i 450 + 00000nls 2200277 i 450 0001244608 20130517102228.0 @@ -142817,7 +142817,7 @@ - 00825nas 2200301 i 450 + 00000nas 2200301 i 450 0000291561 0000291561 20140117164634.0 @@ -142892,7 +142892,7 @@ - 00945nas 2200313 i 450 + 00000nas 2200313 i 450 036311278 0000008067 20130705125137.0 @@ -142974,7 +142974,7 @@ - 00888nas 2200289 i 450 + 00000nas 2200289 i 450 038740966 0000026439 20130319051600.0 @@ -143046,7 +143046,7 @@ - 00905nas 2200277 i 450 + 00000nas 2200277 i 450 0000268634 0000268634 20130319051600.0 @@ -143119,7 +143119,7 @@ - 01077nas 2200313 i 450 + 00000nas 2200313 i 450 038741199 0000026478 20130319051600.0 @@ -143197,7 +143197,7 @@ - 01121nas 2200313 i 450 + 00000nas 2200313 i 450 01331257X 0000026202 20131028124522.0 @@ -143282,7 +143282,7 @@ - 01132nas 2200301 i 450 + 00000nas 2200301 i 450 040161153 0000078654 20130319051600.0 @@ -143357,7 +143357,7 @@ - 01014nls 2200301 i 450 + 00000nls 2200301 i 450 0001131861 0001131861 20130319051600.0 @@ -143429,7 +143429,7 @@ - 00834nas 2200313 i 450 + 00000nas 2200313 i 450 039869024 0000026279 20140110101413.0 @@ -143508,7 +143508,7 @@ - 00856nas 2200289 i 450 + 00000nas 2200289 i 450 03874175X 0000026475 20130319051600.0 @@ -143580,7 +143580,7 @@ - 00783nas 2200265 i 450 + 00000nas 2200265 i 450 038742209 0000026292 20131202105249.0 @@ -143644,7 +143644,7 @@ - 01293cas0 2200373 450 + 00000cas0 2200373 450 089844181 0001047589 20130319051601.0 @@ -143747,7 +143747,7 @@ - 01168nas 2200301 i 450 + 00000nas 2200301 i 450 039102262 0000026701 20131011161744.0 @@ -143825,7 +143825,7 @@ - 01132nas 2200325 i 450 + 00000nas 2200325 i 450 058818057 0000455526 20131010162147.0 @@ -143914,7 +143914,7 @@ - 01465cas0 2200361 450 + 00000cas0 2200361 450 139787135 0001191206 20130319051602.0 @@ -144012,7 +144012,7 @@ - 01094nas 2200325 i 450 + 00000nas 2200325 i 450 036255947 0000026767 20131202131819.0 @@ -144099,7 +144099,7 @@ - 01366nas 2200325 i 450 + 00000nas 2200325 i 450 039671437 0000026773 20130319051602.0 @@ -144185,7 +144185,7 @@ - 00881nas 2200289 i 450 + 00000nas 2200289 i 450 0000013472 0000013472 20130319051602.0 @@ -144258,7 +144258,7 @@ - 01304nas 2200313 i 450 + 00000nas 2200313 i 450 032923473 0000077244 20130319051602.0 @@ -144338,7 +144338,7 @@ - 01067nas 2200325 i 450 + 00000nas 2200325 i 450 040604217 0000482801 20131008114237.0 @@ -144421,7 +144421,7 @@ - 00828nls 2200277 i 450 + 00000nls 2200277 i 450 0000969220 0000969220 20130319051602.0 @@ -144488,7 +144488,7 @@ - 00939nls 2200301 i 450 + 00000nls 2200301 i 450 0000969197 0000969197 20130319051602.0 @@ -144564,7 +144564,7 @@ - 00836nls 2200277 i 450 + 00000nls 2200277 i 450 0000969218 0000969218 20130319051602.0 @@ -144631,7 +144631,7 @@ - 00846nls 2200277 i 450 + 00000nls 2200277 i 450 0000969216 0000969216 20130319051602.0 @@ -144698,7 +144698,7 @@ - 00895nls 2200289 i 450 + 00000nls 2200289 i 450 0000969217 0000969217 20130319051602.0 @@ -144768,7 +144768,7 @@ - 00833nls 2200265 i 450 + 00000nls 2200265 i 450 0000969221 0000969221 20130319051602.0 @@ -144832,7 +144832,7 @@ - 01497cls0 2200349 450 + 00000cls0 2200349 450 055476023 0000769957 20130319051602.0 @@ -144935,7 +144935,7 @@ - 01080nas 2200313 i 450 + 00000nas 2200313 i 450 038743035 0000027392 20130319051603.0 @@ -145015,7 +145015,7 @@ - 00953nas 2200301 i 450 + 00000nas 2200301 i 450 039608085 0000053918 20130527155828.0 @@ -145089,7 +145089,7 @@ - 00855nas 2200265 i 450 + 00000nas 2200265 i 450 0000472432 0000472432 20130319051603.0 @@ -145158,7 +145158,7 @@ - 01591cas0 2200445 450 + 00000cas0 2200445 450 038430665 0001109373 20130319051603.0 @@ -145282,7 +145282,7 @@ - 01135cas0 2200361 450 + 00000cas0 2200361 450 093710291 0001179386 20130319051603.0 @@ -145377,7 +145377,7 @@ - 01227cas0 2200337 450 + 00000cas0 2200337 450 067796214 0001148352 20130319051604.0 @@ -145467,7 +145467,7 @@ - 01328nas 2200361 i 450 + 00000nas 2200361 i 450 03889856X 0000026884 20130319051604.0 @@ -145563,7 +145563,7 @@ - 01558nas 2200373 i 450 + 00000nas 2200373 i 450 059340762 0000405317 20140108160453.0 @@ -145662,7 +145662,7 @@ - 01112nas 2200325 i 450 + 00000nas 2200325 i 450 038743272 0000027561 20140108160547.0 @@ -145743,7 +145743,7 @@ - 01178nas 2200349 i 450 + 00000nas 2200349 i 450 089938976 0000615664 20130319051604.0 @@ -145832,7 +145832,7 @@ - 00857nas 2200289 i 450 + 00000nas 2200289 i 450 036253162 0000054252 20131003160027.0 @@ -145906,7 +145906,7 @@ - 01027nas 2200301 i 450 + 00000nas 2200301 i 450 039319164 0000026912 20130319051604.0 @@ -145982,7 +145982,7 @@ - 00735nas 2200253 i 450 + 00000nas 2200253 i 450 036943002 0001106678 20130319051604.0 @@ -146047,7 +146047,7 @@ - 00693nas 2200229 i 450 + 00000nas 2200229 i 450 036943002 0000026885 20130313085516.0 @@ -146102,7 +146102,7 @@ - 01171nls 2200325 i 450 + 00000nls 2200325 i 450 0001061824 0001061824 20130319051604.0 @@ -146180,7 +146180,7 @@ - 01256nas 2200337 i 450 + 00000nas 2200337 i 450 038743566 0000026807 20130319051604.0 @@ -146265,7 +146265,7 @@ - 01223nas 2200325 i 450 + 00000nas 2200325 i 450 038743507 0000027393 20130930121604.0 @@ -146352,7 +146352,7 @@ - 00987nas 2200301 i 450 + 00000nas 2200301 i 450 038743604 0000026780 20130319051605.0 @@ -146428,7 +146428,7 @@ - 00803nls 2200289 i 450 + 00000nls 2200289 i 450 0000405093 0000405093 20130319051605.0 @@ -146495,7 +146495,7 @@ - 00987nas 2200313 i 450 + 00000nas 2200313 i 450 040479595 0000196869 20130319051607.0 @@ -146571,7 +146571,7 @@ - 01026nas 2200325 i 450 + 00000nas 2200325 i 450 040479609 0000200489 20130319051607.0 @@ -146658,7 +146658,7 @@ - 01375nas 2200349 i 450 + 00000nas 2200349 i 450 039509893 0000026469 20130319051607.0 @@ -146752,7 +146752,7 @@ - 01260nas 2200349 i 450 + 00000nas 2200349 i 450 013797298 0000487050 20130902171623.0 @@ -146842,7 +146842,7 @@ - 00862nas 2200253 i 450 + 00000nas 2200253 i 450 039095797 0000026488 20130319051607.0 @@ -146904,7 +146904,7 @@ - 01053cas0 2200337 450 + 00000cas0 2200337 450 058424288 0001010902 20130918101146.0 @@ -146996,7 +146996,7 @@ - 01223nls 2200325 i 450 + 00000nls 2200325 i 450 0000505413 0000505413 20130319051609.0 @@ -147077,7 +147077,7 @@ - 01051nas 2200301 i 450 + 00000nas 2200301 i 450 040140385 0000085949 20130319051609.0 @@ -147151,7 +147151,7 @@ - 01288nas 2200361 i 450 + 00000nas 2200361 i 450 0000539792 0000539792 20130319051609.0 @@ -147244,7 +147244,7 @@ - 01158nls 2200337 i 450 + 00000nls 2200337 i 450 0000776564 0000776564 20130319051609.0 @@ -147327,7 +147327,7 @@ - 01045nas 2200289 i 450 + 00000nas 2200289 i 450 076235629 0000138657 20130319051609.0 @@ -147397,7 +147397,7 @@ - 00985nls 2200313 i 450 + 00000nls 2200313 i 450 0000776626 0000776626 20130319051609.0 @@ -147472,7 +147472,7 @@ - 01181cas0 2200373 450 + 00000cas0 2200373 450 040524736 0001073805 20130319051609.0 @@ -147574,7 +147574,7 @@ - 00822nas 2200289 i 450 + 00000nas 2200289 i 450 039967336 0000064731 20130319051609.0 @@ -147644,7 +147644,7 @@ - 00978nas 2200289 i 450 + 00000nas 2200289 i 450 039376281 0000149481 20130319051609.0 @@ -147718,7 +147718,7 @@ - 01034nas 2200325 i 450 + 00000nas 2200325 i 450 039893618 0000054468 20130319051609.0 @@ -147800,7 +147800,7 @@ - 01004nas 2200301 i 450 + 00000nas 2200301 i 450 0000183454 0000183454 20130319051609.0 @@ -147875,7 +147875,7 @@ - 01048nls 2200325 i 450 + 00000nls 2200325 i 450 0000505422 0000505422 20130319051609.0 @@ -147955,7 +147955,7 @@ - 00951nls 2200301 i 450 + 00000nls 2200301 i 450 039608530 0000026772 20130319051609.0 @@ -148029,7 +148029,7 @@ - 01493nls 2200289 450 + 00000nls 2200289 450 0000582191 0000582191 20130319051609.0 @@ -148103,7 +148103,7 @@ - 01310nas 2200301 i 450 + 00000nas 2200301 i 450 039469441 0000026797 20130319051609.0 @@ -148177,7 +148177,7 @@ - 01223nas 2200373 i 450 + 00000nas 2200373 i 450 040482502 0000445230 20130319051609.0 @@ -148276,7 +148276,7 @@ - 01381cas0 2200421 450 + 00000cas0 2200421 450 133880796 0001165486 20130319051609.0 @@ -148394,7 +148394,7 @@ - 01353nas 2200337 i 450 + 00000nas 2200337 i 450 039523209 0000026784 20130319051610.0 @@ -148487,7 +148487,7 @@ - 01183nas 2200325 i 450 + 00000nas 2200325 i 450 040602060 0000217313 20130319051610.0 @@ -148575,7 +148575,7 @@ - 01220cas0 2200361 450 + 00000cas0 2200361 450 083128018 0001130750 20131209101446.0 @@ -148676,7 +148676,7 @@ - 01026nas 2200337 i 450 + 00000nas 2200337 i 450 036441937 0000153552 20130319051611.0 @@ -148762,7 +148762,7 @@ - 01068nas 2200325 i 450 + 00000nas 2200325 i 450 039848671 0000004757 20131025105210.0 @@ -148854,7 +148854,7 @@ - 01135nls 2200313 i 450 + 00000nls 2200313 i 450 0001131857 0001131857 20130319051612.0 @@ -148932,7 +148932,7 @@ - 01080nas 2200301 i 450 + 00000nas 2200301 i 450 038745933 0000053467 20130319051613.0 @@ -149009,7 +149009,7 @@ - 01640nas 2200397 i 450 + 00000nas 2200397 i 450 039324966 0000026761 20130319051613.0 @@ -149112,7 +149112,7 @@ - 01046nas 2200313 i 450 + 00000nas 2200313 i 450 03935833X 0000091363 20130319051613.0 @@ -149191,7 +149191,7 @@ - 01056cas0 2200349 450 + 00000cas0 2200349 450 039311244 0001065300 20130319051615.0 @@ -149282,7 +149282,7 @@ - 01398nas 2200325 i 450 + 00000nas 2200325 i 450 04010110X 0000082642 20130319051616.0 @@ -149361,7 +149361,7 @@ - 00968nas 2200313 i 450 + 00000nas 2200313 i 450 039224937 0000026758 20130319051616.0 @@ -149440,7 +149440,7 @@ - 01090nas 2200349 i 450 + 00000nas 2200349 i 450 03897648X 0000026961 20130319051616.0 @@ -149532,7 +149532,7 @@ - 01216nas 2200325 i 450 + 00000nas 2200325 i 450 038746794 0000053468 20130319051616.0 @@ -149617,7 +149617,7 @@ - 01446nas 2200385 i 450 + 00000nas 2200385 i 450 040295532 0000134853 20140115173425.0 @@ -149722,7 +149722,7 @@ - 01166cas0 2200361 450 + 00000cas0 2200361 450 110559622 0001139958 20130319051616.0 @@ -149823,7 +149823,7 @@ - 01019nas 2200313 i 450 + 00000nas 2200313 i 450 040402169 0000043346 20130319051616.0 @@ -149904,7 +149904,7 @@ - 00954nas 2200289 i 450 + 00000nas 2200289 i 450 038724936 0000068131 20130319051617.0 @@ -149978,7 +149978,7 @@ - 01342nas 2200361 i 450 + 00000nas 2200361 i 450 040195295 0000181455 20130319051617.0 @@ -150074,7 +150074,7 @@ - 01353nas 2200349 i 450 + 00000nas 2200349 i 450 013373218 0000027230 20130930132355.0 @@ -150168,7 +150168,7 @@ - 01430cas0 2200361 450 + 00000cas0 2200361 450 145529363 0001235294 20130319051618.0 @@ -150267,7 +150267,7 @@ - 01459nas 2200397 i 450 + 00000nas 2200397 i 450 073654051 0000539528 20131219165149.0 @@ -150377,7 +150377,7 @@ - 02224nas 2200457 i 450 + 00000nas 2200457 i 450 070249202 0000050987 20130930145418.0 @@ -150501,7 +150501,7 @@ - 00937nas 2200301 i 450 + 00000nas 2200301 i 450 040444988 0000163092 20130319051618.0 @@ -150577,7 +150577,7 @@ - 01064nas0 2200313 i 450 + 00000nas0 2200313 i 450 114224730 0001125760 20130319051618.0 @@ -150666,7 +150666,7 @@ - 00891nas 2200289 i 450 + 00000nas 2200289 i 450 036376698 0000027043 20130319051620.0 @@ -150738,7 +150738,7 @@ - 01186nas 2200361 i 450 + 00000nas 2200361 i 450 040478947 0000188260 20131025125006.0 @@ -150835,7 +150835,7 @@ - 00962nas 2200313 i 450 + 00000nas 2200313 i 450 052447669 0000279370 20131104161714.0 @@ -150915,7 +150915,7 @@ - 00756nas 2200265 i 450 + 00000nas 2200265 i 450 036376779 0000026881 20131108120104.0 @@ -150981,7 +150981,7 @@ - 01154nas 2200301 i 450 + 00000nas 2200301 i 450 038748290 0000026918 20130319051621.0 @@ -151059,7 +151059,7 @@ - 01466nas 2200349 i 450 + 00000nas 2200349 i 450 037247824 0000275325 20131202110418.0 @@ -151148,7 +151148,7 @@ - 01271nas 2200301 i 450 + 00000nas 2200301 i 450 039247570 0000196770 20130319051621.0 @@ -151222,7 +151222,7 @@ - 00982nls 2200289 i 450 + 00000nls 2200289 i 450 0001190128 0001190128 20130319051621.0 @@ -151291,7 +151291,7 @@ - 00970nas 2200301 i 450 + 00000nas 2200301 i 450 039736350 0000010739 20130319051622.0 @@ -151368,7 +151368,7 @@ - 00990nls 2200337 i 450 + 00000nls 2200337 i 450 0000610214 0000610214 20130319051622.0 @@ -151453,7 +151453,7 @@ - 00933nls 2200301 i 450 + 00000nls 2200301 i 450 0000432327 0000432327 20130319051622.0 @@ -151525,7 +151525,7 @@ - 00828nas 2200277 i 450 + 00000nas 2200277 i 450 04050803X 0000217256 20130903160757.0 @@ -151597,7 +151597,7 @@ - 00885nas 2200289 i 450 + 00000nas 2200289 i 450 039402819 0000027713 20130429114031.0 @@ -151669,7 +151669,7 @@ - 00928cas0 2200325 450 + 00000cas0 2200325 450 090057163 0000916554 20130319051623.0 @@ -151755,7 +151755,7 @@ - 01453nas 2200361 i 450 + 00000nas 2200361 i 450 001033557 0000052788 20130319051624.0 @@ -151852,7 +151852,7 @@ - 01180nas 2200349 i 450 + 00000nas 2200349 i 450 048886696 0000317667 20130319051624.0 @@ -151944,7 +151944,7 @@ - 00979nas 2200289 i 450 + 00000nas 2200289 i 450 038816601 0000107232 20130319051624.0 @@ -152018,7 +152018,7 @@ - 01230cas0 2200397 450 + 00000cas0 2200397 450 094684693 0000919195 20130319051624.0 @@ -152129,7 +152129,7 @@ - 01018nas 2200301 i 450 + 00000nas 2200301 i 450 038828308 0000027303 20130319051624.0 @@ -152204,7 +152204,7 @@ - 01626cas0 2200361 450 + 00000cas0 2200361 450 048881309 0000819787 20130319051625.0 @@ -152303,7 +152303,7 @@ - 01090nas 2200337 i 450 + 00000nas 2200337 i 450 03910723X 0000052348 20140109135214.0 @@ -152389,7 +152389,7 @@ - 00999nas 2200289 i 450 + 00000nas 2200289 i 450 039121143 0000021288 20130319051626.0 @@ -152460,7 +152460,7 @@ - 01428nas 2200397 i 450 + 00000nas 2200397 i 450 118815296 0001102983 20131025115448.0 @@ -152570,7 +152570,7 @@ - 01352cas0 2200385 450 + 00000cas0 2200385 450 127900748 0001190304 20130515184200.0 @@ -152681,7 +152681,7 @@ - 01130nas 2200325 i 450 + 00000nas 2200325 i 450 036754900 0000213942 20140107172726.0 @@ -152761,7 +152761,7 @@ - 01127nas 2200313 i 450 + 00000nas 2200313 i 450 040267660 0000012936 20140107173031.0 @@ -152840,7 +152840,7 @@ - 01373nas 2200337 i 450 + 00000nas 2200337 i 450 039225151 0000027901 20130319051626.0 @@ -152926,7 +152926,7 @@ - 00965cas0 2200337 450 + 00000cas0 2200337 450 083216626 0000912966 20130319051626.0 @@ -153016,7 +153016,7 @@ - 01079nas 2200325 i 450 + 00000nas 2200325 i 450 038828618 0000028743 20130319051627.0 @@ -153102,7 +153102,7 @@ - 01154nas 2200313 i 450 + 00000nas 2200313 i 450 039871495 0000146605 20130828143100.0 @@ -153184,7 +153184,7 @@ - 01412cas0 2200385 450 + 00000cas0 2200385 450 038859602 0001127494 20130319051627.0 @@ -153291,7 +153291,7 @@ - 00978nls 2200325 i 450 + 00000nls 2200325 i 450 0001140369 0001140369 20130319051628.0 @@ -153373,7 +153373,7 @@ - 00988nls 2200325 i 450 + 00000nls 2200325 i 450 0001140373 0001140373 20130319051628.0 @@ -153455,7 +153455,7 @@ - 01051nls 2200325 i 450 + 00000nls 2200325 i 450 0001140375 0001140375 20130319051628.0 @@ -153537,7 +153537,7 @@ - 01051nas 2200337 i 450 + 00000nas 2200337 i 450 0000090811 0000090811 20130319051628.0 @@ -153626,7 +153626,7 @@ - 00998nls 2200325 i 450 + 00000nls 2200325 i 450 0001140677 0001140677 20130319051628.0 @@ -153708,7 +153708,7 @@ - 00976nls 2200313 i 450 + 00000nls 2200313 i 450 0001109620 0001109620 20130319051628.0 @@ -153787,7 +153787,7 @@ - 01099nas 2200337 i 450 + 00000nas 2200337 i 450 0000994767 0000994767 20130319051628.0 @@ -153875,7 +153875,7 @@ - 00957nls 2200313 i 450 + 00000nls 2200313 i 450 0001109736 0001109736 20130319051628.0 @@ -153954,7 +153954,7 @@ - 01241cas0 2200373 450 + 00000cas0 2200373 450 094683166 0001110341 20130319051629.0 @@ -154054,7 +154054,7 @@ - 00921nls 2200289 i 450 + 00000nls 2200289 i 450 0001061819 0001061819 20130319051629.0 @@ -154124,7 +154124,7 @@ - 01489cas0 2200373 450 + 00000cas0 2200373 450 038551616 0000376196 20130319051629.0 @@ -154225,7 +154225,7 @@ - 01408nas 2200337 i 450 + 00000nas 2200337 i 450 037817620 0000028748 20130319051629.0 @@ -154311,7 +154311,7 @@ - 00941nas 2200301 i 450 + 00000nas 2200301 i 450 038751534 0000028520 20130319051629.0 @@ -154387,7 +154387,7 @@ - 01207nas 2200325 i 450 + 00000nas 2200325 i 450 040327558 0000131851 20130319051629.0 @@ -154469,7 +154469,7 @@ - 01134nas 2200313 i 450 + 00000nas 2200313 i 450 111254590 0000208971 20130319051630.0 @@ -154550,7 +154550,7 @@ - 01180nas 2200337 i 450 + 00000nas 2200337 i 450 039707164 0000028539 20140108155833.0 @@ -154635,7 +154635,7 @@ - 01201nls 2200349 i 450 + 00000nls 2200349 i 450 0000801860 0000801860 20130319051631.0 @@ -154719,7 +154719,7 @@ - 01073nas 2200349 i 450 + 00000nas 2200349 i 450 039599531 0000028566 20130918162802.0 @@ -154814,7 +154814,7 @@ - 01086nas 2200325 i 450 + 00000nas 2200325 i 450 038752743 0000004905 20130319051631.0 @@ -154900,7 +154900,7 @@ - 01302nas 2200373 i 450 + 00000nas 2200373 i 450 040290522 0000061689 20130319051631.0 @@ -155002,7 +155002,7 @@ - 00993nas 2200325 i 450 + 00000nas 2200325 i 450 094034982 0000136951 20140108154315.0 @@ -155082,7 +155082,7 @@ - 01183nas 2200325 i 450 + 00000nas 2200325 i 450 040004597 0000028749 20130319051631.0 @@ -155164,7 +155164,7 @@ - 01303nas 2200325 i 450 + 00000nas 2200325 i 450 03875276X 0000028750 20130319051631.0 @@ -155246,7 +155246,7 @@ - 01468nas 2200397 i 450 + 00000nas 2200397 i 450 038752786 0000004908 20130319051631.0 @@ -155356,7 +155356,7 @@ - 01117nls 2200301 i 450 + 00000nls 2200301 i 450 0000486589 0000486589 20130319051631.0 @@ -155428,7 +155428,7 @@ - 00873nas 2200301 i 450 + 00000nas 2200301 i 450 040011984 0000069229 20130319051632.0 @@ -155503,7 +155503,7 @@ - 01272nas 2200361 i 450 + 00000nas 2200361 i 450 039873935 0000055832 20130430111926.0 @@ -155603,7 +155603,7 @@ - 01167nas 2200337 i 450 + 00000nas 2200337 i 450 039899268 0000006914 20130319051632.0 @@ -155691,7 +155691,7 @@ - 01445nas 2200349 i 450 + 00000nas 2200349 i 450 039980804 0000028407 20131202111053.0 @@ -155782,7 +155782,7 @@ - 01164nls 2200313 i 450 + 00000nls 2200313 i 450 0000470730 0000470730 20130319051633.0 @@ -155857,7 +155857,7 @@ - 01430nas 2200373 i 450 + 00000nas 2200373 i 450 039617653 0000023714 20131018091756.0 @@ -155953,7 +155953,7 @@ - 01080nas 2200313 i 450 + 00000nas 2200313 i 450 038753111 0000052654 20130705110622.0 @@ -156038,7 +156038,7 @@ - 01091nas 2200337 i 450 + 00000nas 2200337 i 450 039394875 0000028792 20130319051633.0 @@ -156126,7 +156126,7 @@ - 01327nas 2200349 i 450 + 00000nas 2200349 i 450 038753308 0000028562 20130319051633.0 @@ -156218,7 +156218,7 @@ - 01857cas0 2200361 450 + 00000cas0 2200361 450 03746471X 0000936755 20130319051633.0 @@ -156319,7 +156319,7 @@ - 01118nas0 2200313 450 + 00000nas0 2200313 450 110020278 0001031315 20130319051634.0 @@ -156403,7 +156403,7 @@ - 01335nas 2200409 i 450 + 00000nas 2200409 i 450 038753634 0001102589 20130319051634.0 @@ -156520,7 +156520,7 @@ - 01530nas 2200421 i 450 + 00000nas 2200421 i 450 038753634 0000027941 20130313085935.0 @@ -156645,7 +156645,7 @@ - 01063nas 2200337 i 450 + 00000nas 2200337 i 450 058777695 0000379785 20130319051635.0 @@ -156730,7 +156730,7 @@ - 01299cas0 2200385 450 + 00000cas0 2200385 450 135817730 0001188799 20130319051635.0 @@ -156835,7 +156835,7 @@ - 01079nls 2200301 i 450 + 00000nls 2200301 i 450 0000480104 0000480104 20130319051635.0 @@ -156908,7 +156908,7 @@ - 01020nas 2200313 i 450 + 00000nas 2200313 i 450 040358127 0000231847 20131025105945.0 @@ -156989,7 +156989,7 @@ - 01359nas 2200373 i 450 + 00000nas 2200373 i 450 039225445 0000005299 20130319051635.0 @@ -157088,7 +157088,7 @@ - 01097nas 2200325 i 450 + 00000nas 2200325 i 450 036252263 0000040130 20130319051635.0 @@ -157179,7 +157179,7 @@ - 01291nas 2200361 i 450 + 00000nas 2200361 i 450 040098931 0000093177 20130319051636.0 @@ -157273,7 +157273,7 @@ - 01269nas 2200337 i 450 + 00000nas 2200337 i 450 038754002 0000028534 20130319051636.0 @@ -157357,7 +157357,7 @@ - 01256nas 2200349 i 450 + 00000nas 2200349 i 450 038963132 0000028519 20130319051636.0 @@ -157445,7 +157445,7 @@ - 01434nas 2200361 i 450 + 00000nas 2200361 i 450 06164899X 0000269539 20130319051636.0 @@ -157535,7 +157535,7 @@ - 00954nas 2200289 i 450 + 00000nas 2200289 i 450 039338614 0000028530 20130319051636.0 @@ -157606,7 +157606,7 @@ - 01102nls 2200313 i 450 + 00000nls 2200313 i 450 0000478701 0000478701 20130319051636.0 @@ -157683,7 +157683,7 @@ - 01493nas 2200361 i 450 + 00000nas 2200361 i 450 038754142 0000028503 20130319051636.0 @@ -157777,7 +157777,7 @@ - 01115nas 2200313 i 450 + 00000nas 2200313 i 450 038764636 0000036265 20130319051637.0 @@ -157854,7 +157854,7 @@ - 01311nas 2200349 i 450 + 00000nas 2200349 i 450 0000011063 0000011063 20130319051637.0 @@ -157946,7 +157946,7 @@ - 01019nas 2200325 i 450 + 00000nas 2200325 i 450 048761397 0000278507 20130319051637.0 @@ -158028,7 +158028,7 @@ - 01469nas 2200325 i 450 + 00000nas 2200325 i 450 039225321 0000004951 20131029112811.0 @@ -158116,7 +158116,7 @@ - 01013nas 2200301 i 450 + 00000nas 2200301 i 450 001226460 0000111740 20130319051637.0 @@ -158191,7 +158191,7 @@ - 00987nas 2200301 i 450 + 00000nas 2200301 i 450 0000052877 0000052877 20130510112633.0 @@ -158266,7 +158266,7 @@ - 01186nas 2200313 i 450 + 00000nas 2200313 i 450 039521656 0000004955 20140107141128.0 @@ -158350,7 +158350,7 @@ - 01324nas 2200349 i 450 + 00000nas 2200349 i 450 013382101 0000036327 20130319051639.0 @@ -158442,7 +158442,7 @@ - 01193nas 2200349 i 450 + 00000nas 2200349 i 450 039373169 0000004958 20130319051639.0 @@ -158539,7 +158539,7 @@ - 01350nas 2200337 i 450 + 00000nas 2200337 i 450 038811510 0000059791 20140106144204.0 @@ -158631,7 +158631,7 @@ - 01017nas 2200313 i 450 + 00000nas 2200313 i 450 0000052878 0000052878 20130319051639.0 @@ -158710,7 +158710,7 @@ - 01246nas 2200337 i 450 + 00000nas 2200337 i 450 038963620 0000036272 20140116150244.0 @@ -158797,7 +158797,7 @@ - 00868nas 2200289 i 450 + 00000nas 2200289 i 450 038755130 0000029249 20130319051639.0 @@ -158869,7 +158869,7 @@ - 01053nls 2200337 i 450 + 00000nls 2200337 i 450 0000796015 0000796015 20130319051639.0 @@ -158955,7 +158955,7 @@ - 01105nas 2200349 i 450 + 00000nas 2200349 i 450 038755300 0000030645 20130319051640.0 @@ -159046,7 +159046,7 @@ - 01614nas 2200409 i 450 + 00000nas 2200409 i 450 001016741 0000002061 20131219165514.0 @@ -159160,7 +159160,7 @@ - 01540nas 2200397 i 450 + 00000nas 2200397 i 450 03922547X 0000005360 20130319051641.0 @@ -159270,7 +159270,7 @@ - 01092nas 2200301 i 450 + 00000nas 2200301 i 450 038538814 0000522740 20130319051641.0 @@ -159348,7 +159348,7 @@ - 01190nas 2200337 i 450 + 00000nas 2200337 i 450 045076529 0000259329 20140103114716.0 @@ -159437,7 +159437,7 @@ - 00970nas 2200325 i 450 + 00000nas 2200325 i 450 038756137 0000029242 20140108102326.0 @@ -159521,7 +159521,7 @@ - 00947nas 2200313 i 450 + 00000nas 2200313 i 450 054530660 0000320923 20140109152225.0 @@ -159601,7 +159601,7 @@ - 01192cas0 2200373 450 + 00000cas0 2200373 450 038591553 0001112860 20130319051642.0 @@ -159706,7 +159706,7 @@ - 01066cas0 2200337 450 + 00000cas0 2200337 450 038591561 0001093434 20130319051642.0 @@ -159799,7 +159799,7 @@ - 01178cas0 2200349 450 + 00000cas0 2200349 450 03859157X 0001093435 20130319051642.0 @@ -159898,7 +159898,7 @@ - 01181nas 2200349 i 450 + 00000nas 2200349 i 450 036928151 0000048888 20130319051644.0 @@ -159992,7 +159992,7 @@ - 01421nas 2200385 i 450 + 00000nas 2200385 i 450 040311511 0000154444 20130319051644.0 @@ -160096,7 +160096,7 @@ - 01381cas0 2200325 450 + 00000cas0 2200325 450 038389061 0000987369 20130319051644.0 @@ -160186,7 +160186,7 @@ - 00878nas 2200289 i 450 + 00000nas 2200289 i 450 0000029046 0000029046 20130506145542.0 @@ -160259,7 +160259,7 @@ - 01640cas0 2200421 450 + 00000cas0 2200421 450 03863452X 0001109381 20130319051645.0 @@ -160385,7 +160385,7 @@ - 01668cas0 2200421 450 + 00000cas0 2200421 450 100511198 0001113844 20130319051645.0 @@ -160503,7 +160503,7 @@ - 01591cas0 2200397 450 + 00000cas0 2200397 450 100507301 0001113843 20130319051645.0 @@ -160618,7 +160618,7 @@ - 01006nas 2200301 i 450 + 00000nas 2200301 i 450 039304310 0000077978 20131022145328.0 @@ -160696,7 +160696,7 @@ - 01034nas 2200313 i 450 + 00000nas 2200313 i 450 08984601X 0000113097 20130319051645.0 @@ -160776,7 +160776,7 @@ - 01292nas 2200349 i 450 + 00000nas 2200349 i 450 050912364 0000327569 20130830124533.0 @@ -160867,7 +160867,7 @@ - 01425nas 2200349 i 450 + 00000nas 2200349 i 450 038758067 0000004794 20130319051645.0 @@ -160961,7 +160961,7 @@ - 00847nas 2200301 i 450 + 00000nas 2200301 i 450 039975991 0000029054 20140110102033.0 @@ -161035,7 +161035,7 @@ - 00770nas 2200277 i 450 + 00000nas 2200277 i 450 03875830X 0000029056 20130319051645.0 @@ -161103,7 +161103,7 @@ - 01141nas 2200313 i 450 + 00000nas 2200313 i 450 038758474 0000029060 20130319051645.0 @@ -161185,7 +161185,7 @@ - 01371nas 2200337 i 450 + 00000nas 2200337 i 450 036740969 0000149746 20130319051646.0 @@ -161268,7 +161268,7 @@ - 01828nas 2200433 i 450 + 00000nas 2200433 i 450 038892162 0000029061 20140108104417.0 @@ -161387,7 +161387,7 @@ - 01080nas 2200313 i 450 + 00000nas 2200313 i 450 036741507 0000161364 20140110102716.0 @@ -161467,7 +161467,7 @@ - 01103nas 2200325 i 450 + 00000nas 2200325 i 450 048881260 0000233168 20140117161522.0 @@ -161549,7 +161549,7 @@ - 01081nas 2200325 i 450 + 00000nas 2200325 i 450 038758679 0000029071 20130319051647.0 @@ -161634,7 +161634,7 @@ - 00987nls 2200337 i 450 + 00000nls 2200337 i 450 0001236017 0001236017 20130319051647.0 @@ -161718,7 +161718,7 @@ - 01123nas 2200301 i 450 + 00000nas 2200301 i 450 040039358 0000269889 20130319051647.0 @@ -161793,7 +161793,7 @@ - 01052nas 2200325 i 450 + 00000nas 2200325 i 450 038758970 0000029073 20130319051647.0 @@ -161881,7 +161881,7 @@ - 01924nas 2200349 i 450 + 00000nas 2200349 i 450 039984672 0000017569 20130605155443.0 @@ -161975,7 +161975,7 @@ - 01096nls 2200301 i 450 + 00000nls 2200301 i 450 0000464365 0000464365 20130319051647.0 @@ -162048,7 +162048,7 @@ - 01026nas 2200289 i 450 + 00000nas 2200289 i 450 0000103824 0000103824 20130319051647.0 @@ -162119,7 +162119,7 @@ - 00872nls 2200277 i 450 + 00000nls 2200277 i 450 0001180911 0001180911 20130319051648.0 @@ -162186,7 +162186,7 @@ - 00903cas0 2200301 450 + 00000cas0 2200301 450 036549797 0000090706 20130319051649.0 @@ -162267,7 +162267,7 @@ - 00834nls 2200301 i 450 + 00000nls 2200301 i 450 0001133697 0001133697 20130319051649.0 @@ -162341,7 +162341,7 @@ - 01091nas 2200349 i 450 + 00000nas 2200349 i 450 059514140 0000606994 20130718143242.0 @@ -162434,7 +162434,7 @@ - 01144cas0 2200361 450 + 00000cas0 2200361 450 039109488 0000984430 20130319051649.0 @@ -162531,7 +162531,7 @@ - 01063nas 2200337 i 450 + 00000nas 2200337 i 450 039131289 0000029326 20140109153551.0 @@ -162619,7 +162619,7 @@ - 01065nas 2200325 i 450 + 00000nas 2200325 i 450 038759616 0000031095 20130319051649.0 @@ -162705,7 +162705,7 @@ - 00942nls 2200289 i 450 + 00000nls 2200289 i 450 0001131856 0001131856 20130319051649.0 @@ -162772,7 +162772,7 @@ - 00833nas 2200289 i 450 + 00000nas 2200289 i 450 036356344 0000029623 20130319051649.0 @@ -162843,7 +162843,7 @@ - 00924nas 2200289 i 450 + 00000nas 2200289 i 450 04030731X 0000181787 20130319051650.0 @@ -162916,7 +162916,7 @@ - 00969nas 2200301 i 450 + 00000nas 2200301 i 450 039395359 0000029652 20130319051651.0 @@ -162993,7 +162993,7 @@ - 01148nas 2200349 i 450 + 00000nas 2200349 i 450 038760274 0000029655 20130319051651.0 @@ -163087,7 +163087,7 @@ - 01308nas 2200325 i 450 + 00000nas 2200325 i 450 036743062 0000198792 20140106120315.0 @@ -163168,7 +163168,7 @@ - 01531nas 2200373 i 450 + 00000nas 2200373 i 450 039702545 0000114458 20130319051651.0 @@ -163268,7 +163268,7 @@ - 00804nas 2200265 i 450 + 00000nas 2200265 i 450 038760428 0000029675 20130605104236.0 @@ -163334,7 +163334,7 @@ - 00811nas 2200289 i 450 + 00000nas 2200289 i 450 038760479 0000066308 20131129122236.0 @@ -163406,7 +163406,7 @@ - 00889nas 2200289 i 450 + 00000nas 2200289 i 450 036765929 0000200876 20131129143617.0 @@ -163480,7 +163480,7 @@ - 00868nas 2200277 i 450 + 00000nas 2200277 i 450 073325317 0000053119 20130319051652.0 @@ -163551,7 +163551,7 @@ - 01565cas0 2200433 450 + 00000cas0 2200433 450 03950932X 0001062265 20130319051652.0 @@ -163664,7 +163664,7 @@ - 00944nls 2200289 i 450 + 00000nls 2200289 i 450 0001131864 0001131864 20130319051652.0 @@ -163731,7 +163731,7 @@ - 01398cas0 2200301 450 + 00000cas0 2200301 450 083413723 0001084178 20130319051652.0 @@ -163816,7 +163816,7 @@ - 01364nas0 2200289 450 + 00000nas0 2200289 450 083413383 0001084177 20130319051652.0 @@ -163898,7 +163898,7 @@ - 00984nas 2200313 i 450 + 00000nas 2200313 i 450 036356948 0000030055 20130319051652.0 @@ -163978,7 +163978,7 @@ - 01256nas 2200361 i 450 + 00000nas 2200361 i 450 038869764 0000102498 20130514155854.0 @@ -164078,7 +164078,7 @@ - 01290nls 2200349 i 450 + 00000nls 2200349 i 450 0000466810 0000466810 20130319051652.0 @@ -164164,7 +164164,7 @@ - 01050nls 2200313 i 450 + 00000nls 2200313 i 450 0000505408 0000505408 20130319051652.0 @@ -164240,7 +164240,7 @@ - 01063nls 2200313 i 450 + 00000nls 2200313 i 450 0001145135 0001145135 20130319051652.0 @@ -164314,7 +164314,7 @@ - 00907nas 2200313 i 450 + 00000nas 2200313 i 450 0000469692 0000469692 20130319051653.0 @@ -164393,7 +164393,7 @@ - 01076nas 2200301 i 450 + 00000nas 2200301 i 450 040317161 0000220732 20130319051654.0 @@ -164467,7 +164467,7 @@ - 01117nas 2200337 i 450 + 00000nas 2200337 i 450 074935887 0000316013 20140115104131.0 @@ -164552,7 +164552,7 @@ - 01106nas 2200325 i 450 + 00000nas 2200325 i 450 058734821 0000132726 20140106103825.0 @@ -164637,7 +164637,7 @@ - 01120cas0 2200373 450 + 00000cas0 2200373 450 076262170 0000573967 20140115174429.0 @@ -164738,7 +164738,7 @@ - 00881nls 2200313 i 450 + 00000nls 2200313 i 450 0001134319 0001134319 20130319051654.0 @@ -164817,7 +164817,7 @@ - 01310nas 2200349 i 450 + 00000nas 2200349 i 450 039225615 0000030164 20130319051654.0 @@ -164908,7 +164908,7 @@ - 01011nas0 2200313 450 + 00000nas0 2200313 450 143212842 0001188800 20130319051654.0 @@ -164988,7 +164988,7 @@ - 01134nas 2200289 i 450 + 00000nas 2200289 i 450 0000053116 0000053116 20130319051655.0 @@ -165061,7 +165061,7 @@ - 01334nls 2200349 i 450 + 00000nls 2200349 i 450 0000415148 0000415148 20130319051655.0 @@ -165149,7 +165149,7 @@ - 01428nas 2200361 i 450 + 00000nas 2200361 i 450 0000004817 0000004817 20130319051655.0 @@ -165243,7 +165243,7 @@ - 00963nls 2200277 i 450 + 00000nls 2200277 i 450 0000534374 0000534374 20130319051655.0 @@ -165308,7 +165308,7 @@ - 01372nas 2200349 i 450 + 00000nas 2200349 i 450 04002296X 0000076975 20130319051655.0 @@ -165402,7 +165402,7 @@ - 00819nls 2200289 i 450 + 00000nls 2200289 i 450 0001165379 0001165379 20130319051655.0 @@ -165471,7 +165471,7 @@ - 02086nas 2200685 i 450 + 00000nas 2200685 i 450 0000895820 0000895820 20130320122217.0 @@ -165676,7 +165676,7 @@ - 01077nas 2200373 i 450 + 00000nas 2200373 i 450 037898728 0000034373 20130319051656.0 @@ -165774,7 +165774,7 @@ - 01410nas0 2200373 450 + 00000nas0 2200373 450 147245389 0001201696 20130319051656.0 @@ -165877,7 +165877,7 @@ - 01197cas0 2200349 450 + 00000cas0 2200349 450 081016816 0000744536 20130319051657.0 @@ -165968,7 +165968,7 @@ - 02433cas0 2200385 450 + 00000cas0 2200385 450 038395274 0000931695 20130319051657.0 @@ -166077,7 +166077,7 @@ - 01611nas 2200385 i 450 + 00000nas 2200385 i 450 039572374 0000004883 20130319051657.0 @@ -166186,7 +166186,7 @@ - 01485nas 2200409 i 450 + 00000nas 2200409 i 450 039225666 0000004897 20130903161005.0 @@ -166302,7 +166302,7 @@ - 01085cas0 2200337 450 + 00000cas0 2200337 450 094684936 0000919198 20130319051657.0 @@ -166395,7 +166395,7 @@ - 00970nas 2200325 i 450 + 00000nas 2200325 i 450 039237060 0000030395 20130319051658.0 @@ -166477,7 +166477,7 @@ - 01221cas0 2200373 450 + 00000cas0 2200373 450 03757731X 0001094574 20130319051658.0 @@ -166587,7 +166587,7 @@ - 01199cas0 2200349 450 + 00000cas0 2200349 450 038429624 0001094584 20130319051658.0 @@ -166682,7 +166682,7 @@ - 00939nas 2200313 i 450 + 00000nas 2200313 i 450 039412024 0000030600 20130319051658.0 @@ -166763,7 +166763,7 @@ - 01139nas 2200337 i 450 + 00000nas 2200337 i 450 0000417663 0000417663 20130319051658.0 @@ -166847,7 +166847,7 @@ - 00832nls 2200277 i 450 + 00000nls 2200277 i 450 0000969196 0000969196 20130319051658.0 @@ -166913,7 +166913,7 @@ - 01125cas0 2200349 450 + 00000cas0 2200349 450 107988100 0001059816 20130319051658.0 @@ -167004,7 +167004,7 @@ - 00973nls 2200301 i 450 + 00000nls 2200301 i 450 0001145136 0001145136 20130319051659.0 @@ -167074,7 +167074,7 @@ - 01088nas 2200361 i 450 + 00000nas 2200361 i 450 038762730 0000070110 20130319051659.0 @@ -167169,7 +167169,7 @@ - 01256nas 2200373 i 450 + 00000nas 2200373 i 450 038972220 0000030646 20130319051659.0 @@ -167268,7 +167268,7 @@ - 00896nas 2200277 i 450 + 00000nas 2200277 i 450 038763192 0000030647 20130502110254.0 @@ -167344,7 +167344,7 @@ - 01068nas 2200349 i 450 + 00000nas 2200349 i 450 039243346 0000030650 20140108160825.0 @@ -167437,7 +167437,7 @@ - 01700nls 2200289 i 450 + 00000nls 2200289 i 450 0001206049 0001206049 20130319051700.0 @@ -167506,7 +167506,7 @@ - 01145nas0 2200361 450 + 00000nas0 2200361 450 111800692 0001075778 20130319051700.0 @@ -167601,7 +167601,7 @@ - 01154nas 2200337 i 450 + 00000nas 2200337 i 450 039380165 0000004920 20130319051700.0 @@ -167687,7 +167687,7 @@ - 01122nas 2200313 i 450 + 00000nas 2200313 i 450 038027828 0000002035 20130411112724.0 @@ -167772,7 +167772,7 @@ - 01038nas 2200325 i 450 + 00000nas 2200325 i 450 039983854 0000415092 20130319051700.0 @@ -167858,7 +167858,7 @@ - 00825nls 2200265 i 450 + 00000nls 2200265 i 450 0000310701 0000310701 20130319051700.0 @@ -167921,7 +167921,7 @@ - 00959nls 2200289 i 450 + 00000nls 2200289 i 450 0001131855 0001131855 20130319051700.0 @@ -167988,7 +167988,7 @@ - 01264nas 2200349 i 450 + 00000nas 2200349 i 450 03918241X 0000083881 20130319051700.0 @@ -168086,7 +168086,7 @@ - 01115nas 2200301 i 450 + 00000nas 2200301 i 450 038892502 0000030727 20130725113729.0 @@ -168163,7 +168163,7 @@ - 01257cas0 2200373 450 + 00000cas0 2200373 450 130771171 0001182602 20130711122416.0 @@ -168262,7 +168262,7 @@ - 00825nls 2200253 i 450 + 00000nls 2200253 i 450 0001246590 20130711122400.0 @@ -168326,7 +168326,7 @@ - 01255cas0 2200385 450 + 00000cas0 2200385 450 114024669 0001156552 20140107131635.0 @@ -168426,7 +168426,7 @@ - 01389nas 2200337 i 450 + 00000nas 2200337 i 450 058053514 0000429461 20130518172557.0 @@ -168510,7 +168510,7 @@ - 00958nas 2200313 i 450 + 00000nas 2200313 i 450 038764210 0000030739 20130319051701.0 @@ -168587,7 +168587,7 @@ - 01015nas 2200313 i 450 + 00000nas 2200313 i 450 039103722 0000167084 20130420120041.0 @@ -168670,7 +168670,7 @@ - 00773nls 2200253 i 450 + 00000nls 2200253 i 450 0001243263 20130522152447.0 @@ -168735,7 +168735,7 @@ - 01171nas 2200313 i 450 + 00000nas 2200313 i 450 0000233166 0000233166 20130319051702.0 @@ -168812,7 +168812,7 @@ - 00807nls 2200253 i 450 + 00000nls 2200253 i 450 0001243119 20130522152221.0 @@ -168877,7 +168877,7 @@ - 00834nls 2200301 i 450 + 00000nls 2200301 i 450 0000505682 0000505682 20130319051702.0 @@ -168949,7 +168949,7 @@ - 01055nas 2200313 i 450 + 00000nas 2200313 i 450 050921134 0000326903 20130319051704.0 @@ -169027,7 +169027,7 @@ - 01007nls 2200289 i 450 + 00000nls 2200289 i 450 0000311793 0000311793 20130319051704.0 @@ -169096,7 +169096,7 @@ - 01262nas 2200349 i 450 + 00000nas 2200349 i 450 03962076X 0000030752 20130319051704.0 @@ -169189,7 +169189,7 @@ - 00879nas 2200301 i 450 + 00000nas 2200301 i 450 0000211878 0000211878 20130319051705.0 @@ -169265,7 +169265,7 @@ - 00990nls 2200325 i 450 + 00000nls 2200325 i 450 0000505636 0000505636 20130319051705.0 @@ -169346,7 +169346,7 @@ - 01134nas 2200337 i 450 + 00000nas 2200337 i 450 0000539809 0000539809 20130319051705.0 @@ -169435,7 +169435,7 @@ - 01176nas 2200349 i 450 + 00000nas 2200349 i 450 038766302 0000004929 20130319051705.0 @@ -169529,7 +169529,7 @@ - 01167cas0 2200361 450 + 00000cas0 2200361 450 040387089 0001190463 20130319051705.0 @@ -169624,7 +169624,7 @@ - 01220nas 2200337 i 450 + 00000nas 2200337 i 450 161409776 0000062776 20140107143032.0 @@ -169710,7 +169710,7 @@ - 00918nls 2200301 i 450 + 00000nls 2200301 i 450 0001131334 0001131334 20130319051705.0 @@ -169785,7 +169785,7 @@ - 01015nas 2200325 i 450 + 00000nas 2200325 i 450 038829495 0000007864 20140106120850.0 @@ -169871,7 +169871,7 @@ - 01058nas 2200313 i 450 + 00000nas 2200313 i 450 036737860 0000145414 20130319051706.0 @@ -169952,7 +169952,7 @@ - 01413nas 2200337 i 450 + 00000nas 2200337 i 450 039122174 0000030905 20130319051707.0 @@ -170042,7 +170042,7 @@ - 01027nas 2200337 i 450 + 00000nas 2200337 i 450 03876654X 0000030907 20130319051707.0 @@ -170128,7 +170128,7 @@ - 00953nas 2200301 i 450 + 00000nas 2200301 i 450 038766760 0000031000 20130319051707.0 @@ -170205,7 +170205,7 @@ - 00951nls 2200289 i 450 + 00000nls 2200289 i 450 0000534379 0000534379 20130319051708.0 @@ -170273,7 +170273,7 @@ - 01104nas 2200265 i 450 + 00000nas 2200265 i 450 039556425 0000031104 20130620163917.0 @@ -170339,7 +170339,7 @@ - 01142nas 2200349 i 450 + 00000nas 2200349 i 450 038767155 0000031111 20130319051708.0 @@ -170431,7 +170431,7 @@ - 00976nas 2200301 i 450 + 00000nas 2200301 i 450 038767163 0000031113 20130313090533.0 @@ -170507,7 +170507,7 @@ - 00987nas 2200313 i 450 + 00000nas 2200313 i 450 038767171 0000031120 20130319051708.0 @@ -170588,7 +170588,7 @@ - 01124nas 2200337 i 450 + 00000nas 2200337 i 450 073601136 0000385002 20140110152306.0 @@ -170676,7 +170676,7 @@ - 01344nas 2200313 i 450 + 00000nas 2200313 i 450 0000598859 0000598859 20130319051709.0 @@ -170756,7 +170756,7 @@ - 01252nas 2200325 i 450 + 00000nas 2200325 i 450 039395057 0000031091 20130319051709.0 @@ -170837,7 +170837,7 @@ - 01447nas 2200349 i 450 + 00000nas 2200349 i 450 038767406 0000031092 20130319051710.0 @@ -170927,7 +170927,7 @@ - 01193nas 2200325 i 450 + 00000nas 2200325 i 450 03932124X 0000031094 20130319051710.0 @@ -171010,7 +171010,7 @@ - 01178nas 2200337 i 450 + 00000nas 2200337 i 450 03876766 0000031205 20130319051711.0 @@ -171095,7 +171095,7 @@ - 00953nas 2200277 i 450 + 00000nas 2200277 i 450 040079600 0000031210 20140108160946.0 @@ -171163,7 +171163,7 @@ - 01055nas 2200325 i 450 + 00000nas 2200325 i 450 0000279639 20130830111825.0 @@ -171250,7 +171250,7 @@ - 00985nas 2200313 i 450 + 00000nas 2200313 i 450 038768119 0000031218 20130319051711.0 @@ -171330,7 +171330,7 @@ - 00799nls 2200265 i 450 + 00000nls 2200265 i 450 0001245607 20130619095032.0 @@ -171396,7 +171396,7 @@ - 00936nas 2200289 i 450 + 00000nas 2200289 i 450 036372919 0000041076 20131220114713.0 @@ -171469,7 +171469,7 @@ - 01016cas0 2200337 450 + 00000cas0 2200337 450 059143835 0001130746 20130319051711.0 @@ -171560,7 +171560,7 @@ - 01020nas 2200301 i 450 + 00000nas 2200301 i 450 036870080 0000006992 20130916162924.0 @@ -171637,7 +171637,7 @@ - 01707cas0 2200445 450 + 00000cas0 2200445 450 083270949 0001000667 20130319051712.0 @@ -171765,7 +171765,7 @@ - 01473cas0 2200385 450 + 00000cas0 2200385 450 059201797 0000919399 20130724112524.0 @@ -171870,7 +171870,7 @@ - 00792nls 2200253 i 450 + 00000nls 2200253 i 450 0001246702 20130719175048.0 @@ -171933,7 +171933,7 @@ - 00874nls 2200277 i 450 + 00000nls 2200277 i 450 0001246688 20130718163028.0 @@ -172006,7 +172006,7 @@ - 01333nas 2200337 i 450 + 00000nas 2200337 i 450 038779242 0000035360 20130319051713.0 @@ -172089,7 +172089,7 @@ - 01114cas0 2200349 450 + 00000cas0 2200349 450 13310852X 0001174240 20130319051714.0 @@ -172186,7 +172186,7 @@ - 00995nas 2200313 i 450 + 00000nas 2200313 i 450 039582914 0000034372 20130319051714.0 @@ -172265,7 +172265,7 @@ - 00905nas 2200277 i 450 + 00000nas 2200277 i 450 039582914 0000034374 20130313090634.0 @@ -172335,7 +172335,7 @@ - 00991nas 2200277 i 450 + 00000nas 2200277 i 450 0000091075 0000091075 20130319051714.0 @@ -172402,7 +172402,7 @@ - 00772nas 2200253 i 450 + 00000nas 2200253 i 450 036373842 0000067233 20130319051714.0 @@ -172465,7 +172465,7 @@ - 01363cas0 2200409 450 + 00000cas0 2200409 450 083127771 0000955171 20130319051714.0 @@ -172579,7 +172579,7 @@ - 01432cas0 2200421 450 + 00000cas0 2200421 450 127790314 0001170775 20130319051714.0 @@ -172696,7 +172696,7 @@ - 01156nas 2200337 i 450 + 00000nas 2200337 i 450 039299155 0000031326 20130319051714.0 @@ -172783,7 +172783,7 @@ - 01229nas 2200313 i 450 + 00000nas 2200313 i 450 038769239 0000051956 20131001113410.0 @@ -172867,7 +172867,7 @@ - 01019nas 2200337 i 450 + 00000nas 2200337 i 450 038769247 0000004934 20140110103444.0 @@ -172954,7 +172954,7 @@ - 00854nas 2200277 i 450 + 00000nas 2200277 i 450 039673413 0000052643 20130319051715.0 @@ -173022,7 +173022,7 @@ - 01146nas 2200325 i 450 + 00000nas 2200325 i 450 040536408 0000616682 20130319051715.0 @@ -173108,7 +173108,7 @@ - 01271cas0 2200361 450 + 00000cas0 2200361 450 158384814 0001230253 20130319051716.0 @@ -173208,7 +173208,7 @@ - 01260nas 2200349 i 450 + 00000nas 2200349 i 450 036741183 0000160219 20131219170149.0 @@ -173301,7 +173301,7 @@ - 00742nas 2200265 i 450 + 00000nas 2200265 i 450 039846237 0000031333 20130319051717.0 @@ -173365,7 +173365,7 @@ - 00845nls 2200289 i 450 + 00000nls 2200289 i 450 0000505676 0000505676 20130319051717.0 @@ -173433,7 +173433,7 @@ - 01040nls 2200313 i 450 + 00000nls 2200313 i 450 0000528787 0000528787 20130319051717.0 @@ -173509,7 +173509,7 @@ - 01657nas 2200373 i 450 + 00000nas 2200373 i 450 038769530 0000031336 20130919155823.0 @@ -173609,7 +173609,7 @@ - 01008nas 2200313 i 450 + 00000nas 2200313 i 450 039295311 0000097469 20130716112610.0 @@ -173689,7 +173689,7 @@ - 01560nas 2200397 i 450 + 00000nas 2200397 i 450 039095851 0000031694 20130911153445.0 @@ -173802,7 +173802,7 @@ - 01253nas 2200313 i 450 + 00000nas 2200313 i 450 094060231 0000261674 20130319051719.0 @@ -173879,7 +173879,7 @@ - 01170cas0 2200373 450 + 00000cas0 2200373 450 094081859 0000931197 20130319051719.0 @@ -173977,7 +173977,7 @@ - 01312nas 2200325 i 450 + 00000nas 2200325 i 450 04025495X 0000105734 20130319051719.0 @@ -174057,7 +174057,7 @@ - 01079nas 2200325 i 450 + 00000nas 2200325 i 450 054372968 0000602954 20130408174738.0 @@ -174141,7 +174141,7 @@ - 00849cas0 2200301 450 + 00000cas0 2200301 450 036375225 0000911270 20130319051720.0 @@ -174221,7 +174221,7 @@ - 01177nas 2200313 i 450 + 00000nas 2200313 i 450 037416634 0000195422 20130319051720.0 @@ -174304,7 +174304,7 @@ - 01119nas 2200337 i 450 + 00000nas 2200337 i 450 0000991472 0000991472 20130319051721.0 @@ -174396,7 +174396,7 @@ - 00916nls 2200313 i 450 + 00000nls 2200313 i 450 0000505686 0000505686 20130319051721.0 @@ -174474,7 +174474,7 @@ - 01387nas 2200361 i 450 + 00000nas 2200361 i 450 039348784 0000031846 20130319051722.0 @@ -174574,7 +174574,7 @@ - 01053nas 2200337 i 450 + 00000nas 2200337 i 450 039189449 0000050775 20130319051722.0 @@ -174663,7 +174663,7 @@ - 01021nas 2200337 i 450 + 00000nas 2200337 i 450 03897231X 0000032055 20130319051722.0 @@ -174752,7 +174752,7 @@ - 00887nas 2200301 i 450 + 00000nas 2200301 i 450 058474595 0000132083 20130525132703.0 @@ -174826,7 +174826,7 @@ - 01087nas 2200265 i 450 + 00000nas 2200265 i 450 040217752 0000153550 20131219154129.0 @@ -174895,7 +174895,7 @@ - 01487nas 2200361 i 450 + 00000nas 2200361 i 450 048859109 0000379743 20131219154848.0 @@ -174988,7 +174988,7 @@ - 01136nas 2200337 i 450 + 00000nas 2200337 i 450 040189449 0000064985 20130430114133.0 @@ -175074,7 +175074,7 @@ - 01077nas 2200325 i 450 + 00000nas 2200325 i 450 04018062X 0000010933 20130319051722.0 @@ -175158,7 +175158,7 @@ - 01085nas 2200325 i 450 + 00000nas 2200325 i 450 0000608700 0000608700 20130319051722.0 @@ -175241,7 +175241,7 @@ - 01329nas 2200313 i 450 + 00000nas 2200313 i 450 059552085 0000539801 20130716171247.0 @@ -175323,7 +175323,7 @@ - 01493nas 2200337 i 450 + 00000nas 2200337 i 450 045029342 0000411968 20130319051722.0 @@ -175409,7 +175409,7 @@ - 01277nas 2200325 i 450 + 00000nas 2200325 i 450 119395959 0000327476 20130319051722.0 @@ -175491,7 +175491,7 @@ - 01431nas 2200361 i 450 + 00000nas 2200361 i 450 013349422 0000004949 20131009142821.0 @@ -175587,7 +175587,7 @@ - 01449nas 2200313 i 450 + 00000nas 2200313 i 450 079580637 0000539800 20140116121731.0 @@ -175668,7 +175668,7 @@ - 00818nls 2200289 i 450 + 00000nls 2200289 i 450 0001222482 0001222482 20130319051722.0 @@ -175736,7 +175736,7 @@ - 01220cas0 2200397 450 + 00000cas0 2200397 450 153901543 0001252183 20131209103345.0 @@ -175847,7 +175847,7 @@ - 01464cas0 2200385 450 + 00000cas0 2200385 450 075627396 0001143229 20130319051722.0 @@ -175955,7 +175955,7 @@ - 01460cas0 2200373 450 + 00000cas0 2200373 450 060849894 0000926873 20130319051722.0 @@ -176056,7 +176056,7 @@ - 01357nas 2200373 i 450 + 00000nas 2200373 i 450 071042113 0000615048 20140110103903.0 @@ -176152,7 +176152,7 @@ - 01038nas 2200277 i 450 + 00000nas 2200277 i 450 0000472408 0000472408 20131113134647.0 @@ -176226,7 +176226,7 @@ - 01159nas 2200325 i 450 + 00000nas 2200325 i 450 039884228 0000053457 20130319051723.0 @@ -176310,7 +176310,7 @@ - 00763nls 2200241 i 450 + 00000nls 2200241 i 450 0000941453 0000941453 20130319051723.0 @@ -176367,7 +176367,7 @@ - 01067nas 2200337 i 450 + 00000nas 2200337 i 450 039389308 0000050339 20130319051723.0 @@ -176455,7 +176455,7 @@ - 01054cas0 2200325 450 + 00000cas0 2200325 450 038771543 0001095319 20130319051724.0 @@ -176540,7 +176540,7 @@ - 01035nas 2200337 i 450 + 00000nas 2200337 i 450 038771551 0000158539 20131014091825.0 @@ -176631,7 +176631,7 @@ - 00879cas0 2200289 450 + 00000cas0 2200289 450 099030136 0001050052 20130918100222.0 @@ -176709,7 +176709,7 @@ - 00931nas 2200301 i 450 + 00000nas 2200301 i 450 039957004 0000057795 20130319051724.0 @@ -176786,7 +176786,7 @@ - 01087nas 2200313 i 450 + 00000nas 2200313 i 450 040568679 0000574313 20130403145028.0 @@ -176865,7 +176865,7 @@ - 01115nas 2200325 i 450 + 00000nas 2200325 i 450 038829835 0000050773 20140109162034.0 @@ -176951,7 +176951,7 @@ - 01116nas 2200337 i 450 + 00000nas 2200337 i 450 039143279 0000145426 20130319051724.0 @@ -177040,7 +177040,7 @@ - 01026nas 2200313 i 450 + 00000nas 2200313 i 450 038829843 0000032122 20130319051724.0 @@ -177119,7 +177119,7 @@ - 01160cas0 2200373 450 + 00000cas0 2200373 450 073604119 0000902898 20130319051725.0 @@ -177220,7 +177220,7 @@ - 00928nas 2200289 i 450 + 00000nas 2200289 i 450 067777031 0000538890 20130319051725.0 @@ -177291,7 +177291,7 @@ - 01129nas 2200313 i 450 + 00000nas 2200313 i 450 039844633 0000032157 20140110141325.0 @@ -177375,7 +177375,7 @@ - 01650cas0 2200409 450 + 00000cas0 2200409 450 10448358X 0001244689 20130527120954.0 @@ -177500,7 +177500,7 @@ - 01207nas 2200325 i 450 + 00000nas 2200325 i 450 013559214 0000005062 20130319051726.0 @@ -177584,7 +177584,7 @@ - 01152nas 2200325 i 450 + 00000nas 2200325 i 450 004044762 0000293062 20130319051726.0 @@ -177671,7 +177671,7 @@ - 01633nas 2200409 i 450 + 00000nas 2200409 i 450 040387046 0000142930 20131219170450.0 @@ -177784,7 +177784,7 @@ - 01057cas0 2200373 450 + 00000cas0 2200373 450 139572074 0001184903 20130319051727.0 @@ -177883,7 +177883,7 @@ - 00924nls 2200289 i 450 + 00000nls 2200289 i 450 0001180933 0001180933 20130319051727.0 @@ -177953,7 +177953,7 @@ - 00937nls 2200289 i 450 + 00000nls 2200289 i 450 0000311830 0000311830 20130319051727.0 @@ -178020,7 +178020,7 @@ - 01024nas 2200313 i 450 + 00000nas 2200313 i 450 039090434 0000051008 20130319051728.0 @@ -178101,7 +178101,7 @@ - 00778nas 2200277 i 450 + 00000nas 2200277 i 450 038773805 0000032266 20130319051728.0 @@ -178169,7 +178169,7 @@ - 01345nas 2200337 i 450 + 00000nas 2200337 i 450 039084752 0000238407 20130319051728.0 @@ -178252,7 +178252,7 @@ - 01589nas 2200349 i 450 + 00000nas 2200349 i 450 039141799 0000032267 20131219170514.0 @@ -178347,7 +178347,7 @@ - 01221nas 2200349 i 450 + 00000nas 2200349 i 450 039343170 0000032268 20131119153756.0 @@ -178441,7 +178441,7 @@ - 01033nas 2200349 i 450 + 00000nas 2200349 i 450 040212440 0000055287 20130319051728.0 @@ -178534,7 +178534,7 @@ - 00916nas 2200301 i 450 + 00000nas 2200301 i 450 036253227 0000034338 20140108102758.0 @@ -178611,7 +178611,7 @@ - 01104nas 2200313 i 450 + 00000nas 2200313 i 450 038774062 0000032284 20130319051728.0 @@ -178690,7 +178690,7 @@ - 01169nas 2200325 i 450 + 00000nas 2200325 i 450 039376850 0000032474 20130607140244.0 @@ -178781,7 +178781,7 @@ - 00883nas 2200301 i 450 + 00000nas 2200301 i 450 038774151 0000050557 20130319051728.0 @@ -178858,7 +178858,7 @@ - 00879nas 2200289 i 450 + 00000nas 2200289 i 450 036253251 0000032500 20131029115517.0 @@ -178931,7 +178931,7 @@ - 01121nas 2200349 i 450 + 00000nas 2200349 i 450 039203093 0000052950 20130319051728.0 @@ -179023,7 +179023,7 @@ - 01169nas 2200325 i 450 + 00000nas 2200325 i 450 048888028 0000583057 20130731143806.0 @@ -179107,7 +179107,7 @@ - 01063nas 2200325 i 450 + 00000nas 2200325 i 450 038774186 0000032603 20131017150822.0 @@ -179194,7 +179194,7 @@ - 01012nas 2200301 i 450 + 00000nas 2200301 i 450 071424768 0000158729 20130925161105.0 @@ -179270,7 +179270,7 @@ - 01211nas 2200325 i 450 + 00000nas 2200325 i 450 036308129 0000079017 20130319051728.0 @@ -179356,7 +179356,7 @@ - 01133nas 2200325 i 450 + 00000nas 2200325 i 450 0000032605 0000032605 20130319051728.0 @@ -179442,7 +179442,7 @@ - 00973nas 2200301 i 450 + 00000nas 2200301 i 450 03914254X 0000032606 20130319051728.0 @@ -179517,7 +179517,7 @@ - 01242nas 2200337 i 450 + 00000nas 2200337 i 450 040284433 0000064089 20130319051728.0 @@ -179605,7 +179605,7 @@ - 01374nas 2200349 i 450 + 00000nas 2200349 i 450 039106403 0000032622 20130910121817.0 @@ -179694,7 +179694,7 @@ - 01096nas 2200325 i 450 + 00000nas 2200325 i 450 038774224 0000005072 20130319051731.0 @@ -179782,7 +179782,7 @@ - 01307nas 2200337 i 450 + 00000nas 2200337 i 450 040299813 0000095124 20131219170550.0 @@ -179873,7 +179873,7 @@ - 01680nas 2200421 i 450 + 00000nas 2200421 i 450 038774267 0000005078 20131219170640.0 @@ -179989,7 +179989,7 @@ - 01390nas 2200361 i 450 + 00000nas 2200361 i 450 038774313 0000005100 20131219170838.0 @@ -180087,7 +180087,7 @@ - 01181nas 2200301 i 450 + 00000nas 2200301 i 450 038892146 0000032842 20131219170925.0 @@ -180168,7 +180168,7 @@ - 01233nas 2200373 i 450 + 00000nas 2200373 i 450 094889708 0000429772 20130319051732.0 @@ -180265,7 +180265,7 @@ - 00933nas 2200301 i 450 + 00000nas 2200301 i 450 038774372 0000032976 20131025110548.0 @@ -180339,7 +180339,7 @@ - 01218nas 2200325 i 450 + 00000nas 2200325 i 450 039315215 0000032944 20130319051732.0 @@ -180420,7 +180420,7 @@ - 01179nas 2200337 i 450 + 00000nas 2200337 i 450 067775381 0000505128 20130319051732.0 @@ -180507,7 +180507,7 @@ - 01168cas0 2200337 450 + 00000cas0 2200337 450 153374586 0001218732 20130319051732.0 @@ -180597,7 +180597,7 @@ - 01163nls 2200253 450 + 00000nls 2200253 450 0000769581 0000769581 20130319051732.0 @@ -180662,7 +180662,7 @@ - 01035cas0 2200325 450 + 00000cas0 2200325 450 131883992 0001249225 20131007170149.0 @@ -180746,7 +180746,7 @@ - 01097nas0 2200337 450 + 00000nas0 2200337 450 140689729 0001184587 20131007131700.0 @@ -180837,7 +180837,7 @@ - 01335nas 2200325 i 450 + 00000nas 2200325 i 450 03930227X 0000032991 20130319051735.0 @@ -180922,7 +180922,7 @@ - 01096cas0 2200349 450 + 00000cas0 2200349 450 068804083 0001179298 20130319051735.0 @@ -181017,7 +181017,7 @@ - 01207nas 2200361 i 450 + 00000nas 2200361 i 450 039385663 0000005101 20131219171007.0 @@ -181112,7 +181112,7 @@ - 01275cas0 2200385 450 + 00000cas0 2200385 450 08711237X 0000876875 20131014181831.0 @@ -181219,7 +181219,7 @@ - 01406nas 2200373 i 450 + 00000nas 2200373 i 450 03643762X 0000196866 20130319051736.0 @@ -181319,7 +181319,7 @@ - 01925nas 2200481 i 450 + 00000nas 2200481 i 450 039226662 0000005104 20131219171226.0 @@ -181458,7 +181458,7 @@ - 01152nas 2200313 i 450 + 00000nas 2200313 i 450 0000316100 20140106134453.0 @@ -181545,7 +181545,7 @@ - 01072nas 2200313 i 450 + 00000nas 2200313 i 450 03932964X 0000005119 20131220095719.0 @@ -181628,7 +181628,7 @@ - 01465nas 2200349 i 450 + 00000nas 2200349 i 450 040238024 0000313944 20131011111622.0 @@ -181722,7 +181722,7 @@ - 01120nas 2200325 i 450 + 00000nas 2200325 i 450 048859079 0000426434 20130319051737.0 @@ -181806,7 +181806,7 @@ - 01219cas0 2200337 450 + 00000cas0 2200337 450 068809174 0000822956 20131028120631.0 @@ -181896,7 +181896,7 @@ - 01643nas 2200349 i 450 + 00000nas 2200349 i 450 060853883 0000454083 20130319051737.0 @@ -181989,7 +181989,7 @@ - 01202nas0 2200325 450 + 00000nas0 2200325 450 132454300 0001165873 20131218105625.0 @@ -182081,7 +182081,7 @@ - 01122nas 2200337 i 450 + 00000nas 2200337 i 450 045069077 0000264873 20130319051738.0 @@ -182173,7 +182173,7 @@ - 00801nas 2200301 i 450 + 00000nas 2200301 i 450 03877447X 0000032994 20140110121507.0 @@ -182248,7 +182248,7 @@ - 00970nas 2200325 i 450 + 00000nas 2200325 i 450 038774496 0000032996 20130319051738.0 @@ -182331,7 +182331,7 @@ - 01153nas 2200313 i 450 + 00000nas 2200313 i 450 039621553 0000032999 20130729110040.0 @@ -182412,7 +182412,7 @@ - 01080nas0 2200313 450 + 00000nas0 2200313 450 080468837 0000699783 20130319051738.0 @@ -182495,7 +182495,7 @@ - 01161nas 2200337 i 450 + 00000nas 2200337 i 450 013738267 0000033000 20140110121020.0 @@ -182583,7 +182583,7 @@ - 01091nas 2200325 i 450 + 00000nas 2200325 i 450 0000007838 0000007838 20140110120636.0 @@ -182666,7 +182666,7 @@ - 01594nas 2200421 i 450 + 00000nas 2200421 i 450 002449072 0000002040 20131220095758.0 @@ -182789,7 +182789,7 @@ - 01151cas0 2200325 450 + 00000cas0 2200325 450 036916528 0001133753 20130319051738.0 @@ -182874,7 +182874,7 @@ - 01062cas0 2200349 450 + 00000cas0 2200349 450 074939939 0000973534 20130319051738.0 @@ -182969,7 +182969,7 @@ - 01355nas 2200337 i 450 + 00000nas 2200337 i 450 038774534 0000033131 20130319051738.0 @@ -183057,7 +183057,7 @@ - 01123nas 2200301 i 450 + 00000nas 2200301 i 450 039226689 0000033138 20130522095025.0 @@ -183134,7 +183134,7 @@ - 01149cas0 2200385 450 + 00000cas0 2200385 450 094675872 0000916593 20130319051739.0 @@ -183239,7 +183239,7 @@ - 01697nas 2200421 i 450 + 00000nas 2200421 i 450 039226727 0000005219 20130319051739.0 @@ -183357,7 +183357,7 @@ - 00992nls 2200301 i 450 + 00000nls 2200301 i 450 0000486676 0000486676 20130319051739.0 @@ -183430,7 +183430,7 @@ - 01710nas 2200373 i 450 + 00000nas 2200373 i 450 013569570 0000033154 20131202112234.0 @@ -183527,7 +183527,7 @@ - 01139nas 2200325 i 450 + 00000nas 2200325 i 450 039316718 0000005222 20130319051739.0 @@ -183608,7 +183608,7 @@ - 01069nas 2200313 i 450 + 00000nas 2200313 i 450 0000050565 0000050565 20130319051739.0 @@ -183687,7 +183687,7 @@ - 01194nls 2200337 i 450 + 00000nls 2200337 i 450 0000487127 0000487127 20130319051739.0 @@ -183771,7 +183771,7 @@ - 00991nas 2200277 i 450 + 00000nas 2200277 i 450 039113523 0000033168 20130319051739.0 @@ -183839,7 +183839,7 @@ - 01712nas 2200385 i 450 + 00000nas 2200385 i 450 038775409 0000033344 20130319051739.0 @@ -183942,7 +183942,7 @@ - 01646cas0 2200457 450 + 00000cas0 2200457 450 039083101 0001120879 20130319051740.0 @@ -184063,7 +184063,7 @@ - 00985nas 2200325 i 450 + 00000nas 2200325 i 450 039237141 0000033347 20130319051740.0 @@ -184151,7 +184151,7 @@ - 01677nas 2200373 i 450 + 00000nas 2200373 i 450 045044724 0000270346 20140107141656.0 @@ -184247,7 +184247,7 @@ - 01125nas 2200301 i 450 + 00000nas 2200301 i 450 040289540 0000189595 20140108104639.0 @@ -184330,7 +184330,7 @@ - 00893cas0 2200313 450 + 00000cas0 2200313 450 121354288 0001158950 20130319051741.0 @@ -184411,7 +184411,7 @@ - 00904nas 2200289 i 450 + 00000nas 2200289 i 450 04013475X 0000095026 20130319051741.0 @@ -184485,7 +184485,7 @@ - 01294cas0 2200361 450 + 00000cas0 2200361 450 114704317 0001188850 20130319051741.0 @@ -184588,7 +184588,7 @@ - 01307nas 2200361 i 450 + 00000nas 2200361 i 450 001013491 0000005227 20131220095939.0 @@ -184683,7 +184683,7 @@ - 00970nas 2200301 i 450 + 00000nas 2200301 i 450 036654671 0000229742 20131003162921.0 @@ -184760,7 +184760,7 @@ - 00971nas 2200301 i 450 + 00000nas 2200301 i 450 038775905 0000033356 20130319051744.0 @@ -184837,7 +184837,7 @@ - 01681nas 2200337 i 450 + 00000nas 2200337 i 450 040237710 0000196349 20140108150302.0 @@ -184930,7 +184930,7 @@ - 01071nls 2200265 i 450 + 00000nls 2200265 i 450 0001161319 20130517112804.0 @@ -185001,7 +185001,7 @@ - 02187nas 2200469 i 450 + 00000nas 2200469 i 450 013451154 0000004854 20130516135021.0 @@ -185136,7 +185136,7 @@ - 01071nas 2200337 i 450 + 00000nas 2200337 i 450 039226859 0000005229 20131205151949.0 @@ -185226,7 +185226,7 @@ - 01082nas 2200325 i 450 + 00000nas 2200325 i 450 001012614 0000005231 20131029103125.0 @@ -185311,7 +185311,7 @@ - 01411nas 2200337 i 450 + 00000nas 2200337 i 450 040290638 0000087633 20131017160443.0 @@ -185400,7 +185400,7 @@ - 01278nas 2200337 i 450 + 00000nas 2200337 i 450 036440396 0000033759 20131017153129.0 @@ -185490,7 +185490,7 @@ - 01164nas 2200313 i 450 + 00000nas 2200313 i 450 001042181 0000007482 20130319051751.0 @@ -185571,7 +185571,7 @@ - 02629cas0 2200457 450 + 00000cas0 2200457 450 038102595 0001076095 20130319051751.0 @@ -185703,7 +185703,7 @@ - 00691nas 2200265 i 450 + 00000nas 2200265 i 450 040564002 0000249842 20130319051752.0 @@ -185767,7 +185767,7 @@ - 00665nas 2200241 i 450 + 00000nas 2200241 i 450 0000253301 0000253301 20130319051752.0 @@ -185823,7 +185823,7 @@ - 01286nas 2200385 i 450 + 00000nas 2200385 i 450 039226891 0000005280 20140109155237.0 @@ -185928,7 +185928,7 @@ - 00914nls 2200301 i 450 + 00000nls 2200301 i 450 0000994392 0000994392 20130319051754.0 @@ -185998,7 +185998,7 @@ - 01190cas0 2200361 450 + 00000cas0 2200361 450 059439289 0001050047 20130319051754.0 @@ -186096,7 +186096,7 @@ - 01178nas 2200313 i 450 + 00000nas 2200313 i 450 039634299 0000180041 20130319051755.0 @@ -186174,7 +186174,7 @@ - 01442nas 2200373 i 450 + 00000nas 2200373 i 450 03642255X 0000008036 20130518172826.0 @@ -186272,7 +186272,7 @@ - 01601cas0 2200421 450 + 00000cas0 2200421 450 040270092 0001020363 20131220100325.0 @@ -186394,7 +186394,7 @@ - 01360cas0 2200385 450 + 00000cas0 2200385 450 040087735 0001191202 20130319051756.0 @@ -186494,7 +186494,7 @@ - 01671nas 2200397 i 450 + 00000nas 2200397 i 450 038779226 0000036238 20130319051756.0 @@ -186600,7 +186600,7 @@ - 01075nas 2200301 i 450 + 00000nas 2200301 i 450 039331040 0000035070 20130319051756.0 @@ -186676,7 +186676,7 @@ - 01154nas 2200337 i 450 + 00000nas 2200337 i 450 039336972 0000035056 20130319051756.0 @@ -186764,7 +186764,7 @@ - 00949nas 2200313 i 450 + 00000nas 2200313 i 450 038830418 0000035068 20130319051756.0 @@ -186845,7 +186845,7 @@ - 01110nas 2200313 i 450 + 00000nas 2200313 i 450 040004503 0000117204 20130319051756.0 @@ -186924,7 +186924,7 @@ - 00979nas 2200301 i 450 + 00000nas 2200301 i 450 040389707 0000212298 20130319051756.0 @@ -186999,7 +186999,7 @@ - 01108nas 2200301 i 450 + 00000nas 2200301 i 450 038779366 0000035072 20130319051756.0 @@ -187074,7 +187074,7 @@ - 01369nas 2200337 i 450 + 00000nas 2200337 i 450 040083977 0000051110 20130319051756.0 @@ -187163,7 +187163,7 @@ - 01983nas 2200445 i 450 + 00000nas 2200445 i 450 038779404 0000035944 20131025130014.0 @@ -187287,7 +187287,7 @@ - 00959nas 2200313 i 450 + 00000nas 2200313 i 450 108562735 0000539823 20130319051757.0 @@ -187364,7 +187364,7 @@ - 01508cas0 2200421 450 + 00000cas0 2200421 450 076686701 0001133529 20130319051757.0 @@ -187481,7 +187481,7 @@ - 01303cas0 2200385 450 + 00000cas0 2200385 450 090031350 0000928829 20130628122625.0 @@ -187584,7 +187584,7 @@ - 00864nls 2200301 450 + 00000nls 2200301 450 0000559790 0000559790 20130319051757.0 @@ -187658,7 +187658,7 @@ - 02023cas0 2200481 450 + 00000cas0 2200481 450 013392484 0001149827 20130319051757.0 @@ -187802,7 +187802,7 @@ - 01562cas0 2200361 450 + 00000cas0 2200361 450 036768286 0001128366 20130319051757.0 @@ -187904,7 +187904,7 @@ - 01616cas0 2200373 450 + 00000cas0 2200373 450 080068944 0001128370 20130319051757.0 @@ -188007,7 +188007,7 @@ - 01647cas0 2200385 450 + 00000cas0 2200385 450 037953397 0001127490 20130319051757.0 @@ -188108,7 +188108,7 @@ - 01168cas0 2200265 450 + 00000cas0 2200265 450 038608278 0001127491 20130319051757.0 @@ -188183,7 +188183,7 @@ - 01570cas0 2200373 450 + 00000cas0 2200373 450 038608286 0001127492 20130319051757.0 @@ -188284,7 +188284,7 @@ - 01464cas0 2200301 450 + 00000cas0 2200301 450 038608294 0001127493 20130319051757.0 @@ -188367,7 +188367,7 @@ - 01194nls 2200313 i 450 + 00000nls 2200313 i 450 0000467820 0000467820 20130319051757.0 @@ -188442,7 +188442,7 @@ - 01019nas 2200325 i 450 + 00000nas 2200325 i 450 038830515 0000035071 20130725121907.0 @@ -188527,7 +188527,7 @@ - 01366nas 2200385 i 450 + 00000nas 2200385 i 450 05820153X 0000500887 20130319051758.0 @@ -188631,7 +188631,7 @@ - 01110nas 2200337 i 450 + 00000nas 2200337 i 450 039844293 0000005921 20130319051758.0 @@ -188720,7 +188720,7 @@ - 00927nas 2200289 i 450 + 00000nas 2200289 i 450 039590399 0000035198 20130911122656.0 @@ -188795,7 +188795,7 @@ - 01118nas 2200325 i 450 + 00000nas 2200325 i 450 037480553 0000035784 20130319051758.0 @@ -188881,7 +188881,7 @@ - 01114nas 2200301 i 450 + 00000nas 2200301 i 450 039590542 0000035788 20130911145656.0 @@ -188959,7 +188959,7 @@ - 00818nas 2200277 i 450 + 00000nas 2200277 i 450 036270237 0000137371 20130319051758.0 @@ -189029,7 +189029,7 @@ - 01265nas 2200361 i 450 + 00000nas 2200361 i 450 0000539796 0000539796 20130319051759.0 @@ -189120,7 +189120,7 @@ - 01329nls 2200361 i 450 + 00000nls 2200361 i 450 038799146 0000050527 20130319051759.0 @@ -189209,7 +189209,7 @@ - 01814nas 2200457 i 450 + 00000nas 2200457 i 450 038779927 0000035805 20130319051759.0 @@ -189336,7 +189336,7 @@ - 01307nas 2200301 i 450 + 00000nas 2200301 i 450 039275930 0000050216 20130701155438.0 @@ -189416,7 +189416,7 @@ - 01262nas 2200301 i 450 + 00000nas 2200301 i 450 070233802 0000050217 20130319051759.0 @@ -189491,7 +189491,7 @@ - 01427nas 2200361 i 450 + 00000nas 2200361 i 450 040293378 0000067543 20130319051759.0 @@ -189591,7 +189591,7 @@ - 00838nas 2200301 i 450 + 00000nas 2200301 i 450 038780054 0000035936 20130319051800.0 @@ -189667,7 +189667,7 @@ - 00983cas0 2200313 450 + 00000cas0 2200313 450 167129333 0001059814 20130319051802.0 @@ -189748,7 +189748,7 @@ - 01159cas0 2200337 450 + 00000cas0 2200337 450 073871915 0000899894 20130319051803.0 @@ -189838,7 +189838,7 @@ - 00933nls 2200301 i 450 + 00000nls 2200301 i 450 0000497686 0000497686 20130319051803.0 @@ -189911,7 +189911,7 @@ - 00894cas0 2200253 450 + 00000cas0 2200253 450 036866830 0001094562 20130319051803.0 @@ -189978,7 +189978,7 @@ - 01235nas 2200349 i 450 + 00000nas 2200349 i 450 07335810X 0000538676 20131029103905.0 @@ -190073,7 +190073,7 @@ - 00753cas0 2200253 450 + 00000cas0 2200253 450 039202518 0001093445 20130319051803.0 @@ -190137,7 +190137,7 @@ - 00814nas 2200277 i 450 + 00000nas 2200277 i 450 039237192 0000036218 20130319051803.0 @@ -190207,7 +190207,7 @@ - 01399cas0 2200421 450 + 00000cas0 2200421 450 048867861 0001049423 20130319051804.0 @@ -190325,7 +190325,7 @@ - 00871nls 2200301 i 450 + 00000nls 2200301 i 450 0000505689 0000505689 20130319051804.0 @@ -190397,7 +190397,7 @@ - 01139nas 2200349 i 450 + 00000nas 2200349 i 450 039396541 0000035941 20130319051804.0 @@ -190487,7 +190487,7 @@ - 01525nas 2200373 i 450 + 00000nas 2200373 i 450 039107612 0000036092 20130911115406.0 @@ -190590,7 +190590,7 @@ - 01074nls 2200301 i 450 + 00000nls 2200301 i 450 0000462567 0000462567 20130319051805.0 @@ -190662,7 +190662,7 @@ - 01185nas 2200325 i 450 + 00000nas 2200325 i 450 045073554 0000262923 20131220100845.0 @@ -190751,7 +190751,7 @@ - 01018nas 2200313 i 450 + 00000nas 2200313 i 450 001018698 0000003979 20131220101337.0 @@ -190831,7 +190831,7 @@ - 01028nas 2200313 i 450 + 00000nas 2200313 i 450 039705757 0000469937 20131202114128.0 @@ -190909,7 +190909,7 @@ - 01228cas0 2200349 450 + 00000cas0 2200349 450 081688482 0000750924 20130319051805.0 @@ -191001,7 +191001,7 @@ - 01360cas0 2200361 450 + 00000cas0 2200361 450 057975744 0000371088 20130319051805.0 @@ -191097,7 +191097,7 @@ - 00943cas0 2200325 450 + 00000cas0 2200325 450 040557588 0000713801 20130319051805.0 @@ -191186,7 +191186,7 @@ - 01134nas 2200361 i 450 + 00000nas 2200361 i 450 039256200 0000071760 20130319051805.0 @@ -191282,7 +191282,7 @@ - 01201nas0 2200337 450 + 00000nas0 2200337 450 11228678X 0001113845 20130515113401.0 @@ -191375,7 +191375,7 @@ - 00981nas 2200337 i 450 + 00000nas 2200337 i 450 040195899 0000132643 20140106175336.0 @@ -191461,7 +191461,7 @@ - 01227nas 2200337 i 450 + 00000nas 2200337 i 450 039738973 0000063810 20131018120122.0 @@ -191550,7 +191550,7 @@ - 00974nls 2200325 i 450 + 00000nls 2200325 i 450 0001134322 0001134322 20130319051805.0 @@ -191632,7 +191632,7 @@ - 01105nas 2200313 i 450 + 00000nas 2200313 i 450 039819388 0000068691 20131210162603.0 @@ -191717,7 +191717,7 @@ - 01346cas0 2200397 450 + 00000cas0 2200397 450 104392266 0001020419 20130319051805.0 @@ -191827,7 +191827,7 @@ - 00839nas 2200265 i 450 + 00000nas 2200265 i 450 0000102811 0000102811 20130319051805.0 @@ -191890,7 +191890,7 @@ - 01113nas 2200325 i 450 + 00000nas 2200325 i 450 040241556 0000093473 20130829120201.0 @@ -191974,7 +191974,7 @@ - 01401cas0 2200373 450 + 00000cas0 2200373 450 159259975 0001242892 20130419100742.0 @@ -192076,7 +192076,7 @@ - 00881nas 2200289 i 450 + 00000nas 2200289 i 450 040049388 0000165201 20130319051805.0 @@ -192149,7 +192149,7 @@ - 01487nas 2200373 i 450 + 00000nas 2200373 i 450 039244989 0000003499 20130319051805.0 @@ -192247,7 +192247,7 @@ - 00752nas 2200253 i 450 + 00000nas 2200253 i 450 0000116771 0000116771 20130319051806.0 @@ -192309,7 +192309,7 @@ - 01164nas 2200325 i 450 + 00000nas 2200325 i 450 048771961 0000254806 20140117162606.0 @@ -192392,7 +192392,7 @@ - 01003nls 2200313 i 450 + 00000nls 2200313 i 450 0001241189 0001241189 20130521162906.0 @@ -192469,7 +192469,7 @@ - 01059nas 2200265 i 450 + 00000nas 2200265 i 450 0000045143 20140116155125.0 @@ -192540,7 +192540,7 @@ - 02302cas0 2200481 450 + 00000cas0 2200481 450 058836934 0001242891 20130419100751.0 @@ -192681,7 +192681,7 @@ - 01186cas0 2200361 450 + 00000cas0 2200361 450 150408013 0001207225 20131002143452.0 @@ -192786,7 +192786,7 @@ - 01263cas0 2200361 450 + 00000cas0 2200361 450 081760396 0000984899 20131029103008.0 @@ -192883,7 +192883,7 @@ - 00841nas 2200301 i 450 + 00000nas 2200301 i 450 0000341139 0000341139 20130319051806.0 @@ -192961,7 +192961,7 @@ - 00986nas 2200301 i 450 + 00000nas 2200301 i 450 0000063201 0000063201 20130319051806.0 @@ -193037,7 +193037,7 @@ - 00949nas 2200277 i 450 + 00000nas 2200277 i 450 0000207119 20131023162613.0 @@ -193112,7 +193112,7 @@ - 00993nls 2200301 i 450 + 00000nls 2200301 i 450 0001135271 0001135271 20130319051806.0 @@ -193189,7 +193189,7 @@ - 01009nls 2200313 i 450 + 00000nls 2200313 i 450 0001137275 0001137275 20130319051806.0 @@ -193268,7 +193268,7 @@ - 00910nls 2200301 i 450 + 00000nls 2200301 i 450 0001135058 0001135058 20130319051806.0 @@ -193342,7 +193342,7 @@ - 00983nls 2200313 i 450 + 00000nls 2200313 i 450 0001137278 0001137278 20130905103547.0 @@ -193421,7 +193421,7 @@ - 01099nas 2200313 i 450 + 00000nas 2200313 i 450 045022720 0000271483 20140110144423.0 @@ -193500,7 +193500,7 @@ - 00993nls 2200301 i 450 + 00000nls 2200301 i 450 0001212599 0001212599 20130319051805.0 @@ -193574,7 +193574,7 @@ - 01230nas 2200349 i 450 + 00000nas 2200349 i 450 039291758 0000101078 20131009120107.0 @@ -193667,7 +193667,7 @@ - 00916nls 2200301 i 450 + 00000nls 2200301 i 450 0001132901 0001132901 20130319051806.0 @@ -193742,7 +193742,7 @@ - 01201nas 2200337 i 450 + 00000nas 2200337 i 450 038668041 0000003903 20130422115430.0 @@ -193836,7 +193836,7 @@ - 00994nas 2200301 i 450 + 00000nas 2200301 i 450 0000159847 0000159847 20130319051806.0 @@ -193913,7 +193913,7 @@ - 01447nas 2200361 i 450 + 00000nas 2200361 i 450 039263274 0000063496 20130717094636.0 @@ -194012,7 +194012,7 @@ - 01116nls 2200301 i 450 + 00000nls 2200301 i 450 0001204274 0001204274 20130319051806.0 @@ -194087,7 +194087,7 @@ - 00923nas 2200277 i 450 + 00000nas 2200277 i 450 0000064283 0000064283 20130319051806.0 @@ -194157,7 +194157,7 @@ - 01075nas 2200325 i 450 + 00000nas 2200325 i 450 120576848 0000608669 20130319051806.0 @@ -194243,7 +194243,7 @@ - 01316nas 2200325 i 450 + 00000nas 2200325 i 450 0000071839 0000071839 20130319051806.0 @@ -194328,7 +194328,7 @@ - 01341nas 2200373 i 450 + 00000nas 2200373 i 450 039883566 0000006806 20130319051806.0 @@ -194424,7 +194424,7 @@ - 00917nls 2200289 i 450 + 00000nls 2200289 i 450 0001240678 0001240678 20130521101004.0 @@ -194498,7 +194498,7 @@ - 01303nas 2200325 i 450 + 00000nas 2200325 i 450 036232300 0000044602 20130319051806.0 @@ -194584,7 +194584,7 @@ - 01013nas 2200289 i 450 + 00000nas 2200289 i 450 0000083024 0000083024 20130319051806.0 @@ -194656,7 +194656,7 @@ - 01031nas 2200301 i 450 + 00000nas 2200301 i 450 0000221314 0000221314 20130319051806.0 @@ -194731,7 +194731,7 @@ - 00840nas 2200277 i 450 + 00000nas 2200277 i 450 0000155386 0000155386 20130319051806.0 @@ -194800,7 +194800,7 @@ - 00932nas 2200301 i 450 + 00000nas 2200301 i 450 0000502197 0000502197 20130319051806.0 @@ -194875,7 +194875,7 @@ - 01194cas0 2200325 450 + 00000cas0 2200325 450 112388760 0001113846 20130920111154.0 @@ -194966,7 +194966,7 @@ - 01091nas 2200337 i 450 + 00000nas 2200337 i 450 039921255 0000008075 20130319051806.0 @@ -195056,7 +195056,7 @@ - 01427nas 2200373 i 450 + 00000nas 2200373 i 450 073591653 0000679687 20140102142334.0 @@ -195163,7 +195163,7 @@ - 01299nas 2200361 i 450 + 00000nas 2200361 i 450 076231429 0000086187 20140102141133.0 @@ -195264,7 +195264,7 @@ - 00913nas 2200301 i 450 + 00000nas 2200301 i 450 0000094926 0000094926 20130319051806.0 @@ -195342,7 +195342,7 @@ - 01014nas 2200301 i 450 + 00000nas 2200301 i 450 0000090814 0000090814 20130319051806.0 @@ -195417,7 +195417,7 @@ - 01327nas 2200349 i 450 + 00000nas 2200349 i 450 0000448753 0000448753 20130319051806.0 @@ -195512,7 +195512,7 @@ - 01207nas 2200289 i 450 + 00000nas 2200289 i 450 0000210093 0000210093 20130319051806.0 @@ -195588,7 +195588,7 @@ - 01537cas0 2200349 450 + 00000cas0 2200349 450 133135764 0001188269 20130521172842.0 @@ -195687,7 +195687,7 @@ - 01464nas0 2200409 450 + 00000nas0 2200409 450 094150966 0000518102 20130319051806.0 @@ -195800,7 +195800,7 @@ - 01401nas 2200385 i 450 + 00000nas 2200385 i 450 040182401 0000207020 20130319051806.0 @@ -195902,7 +195902,7 @@ - 00943nas 2200313 i 450 + 00000nas 2200313 i 450 0000276433 0000276433 20130319051806.0 @@ -195980,7 +195980,7 @@ - 00779nas 2200277 i 450 + 00000nas 2200277 i 450 0000237967 0000237967 20130319051806.0 @@ -196047,7 +196047,7 @@ - 00846nas 2200289 i 450 + 00000nas 2200289 i 450 039444309 0000109139 20131217121552.0 @@ -196121,7 +196121,7 @@ - 01092nls 2200325 i 450 + 00000nls 2200325 i 450 0001204278 0001204278 20130319051806.0 @@ -196203,7 +196203,7 @@ - 01346nas 2200349 i 450 + 00000nas 2200349 i 450 053567765 0000165408 20140114161734.0 @@ -196290,7 +196290,7 @@ - 00940nas 2200289 i 450 + 00000nas 2200289 i 450 0000194598 0000194598 20130319051806.0 @@ -196363,7 +196363,7 @@ - 01080nas 2200301 i 450 + 00000nas 2200301 i 450 0000102308 0000102308 20130319051806.0 @@ -196439,7 +196439,7 @@ - 01421nas 2200337 i 450 + 00000nas 2200337 i 450 040613429 0000093350 20140102104608.0 @@ -196533,7 +196533,7 @@ - 01297nas 2200349 i 450 + 00000nas 2200349 i 450 090052684 0001003172 20130524145729.0 @@ -196626,7 +196626,7 @@ - 01454cas0 2200361 450 + 00000cas0 2200361 450 084560223 0000897787 20130319051806.0 @@ -196728,7 +196728,7 @@ - 01055cas0 2200325 450 + 00000cas0 2200325 450 068804369 0000711800 20130319051806.0 @@ -196814,7 +196814,7 @@ - 01100nas 2200313 i 450 + 00000nas 2200313 i 450 161486223 0000445584 20130319051806.0 @@ -196894,7 +196894,7 @@ - 01232nas 2200337 i 450 + 00000nas 2200337 i 450 039239055 0000011342 20140116115930.0 @@ -196984,7 +196984,7 @@ - 01124nas 2200325 i 450 + 00000nas 2200325 i 450 053567803 0000149348 20130319051806.0 @@ -197068,7 +197068,7 @@ - 01458nas0 2200373 450 + 00000nas0 2200373 450 121356892 0001130899 20131028141926.0 @@ -197171,7 +197171,7 @@ - 01510nas0 2200373 450 + 00000nas0 2200373 450 121356906 0001130900 20130319051806.0 @@ -197274,7 +197274,7 @@ - 01438cas0 2200361 450 + 00000cas0 2200361 450 121356914 0001130901 20131029094911.0 @@ -197372,7 +197372,7 @@ - 00881nas 2200241 i 450 + 00000nas 2200241 i 450 0000263691 20130522151010.0 @@ -197433,7 +197433,7 @@ - 00932nas 2200289 i 450 + 00000nas 2200289 i 450 058837450 0000373668 20130604155326.0 @@ -197506,7 +197506,7 @@ - 01173nas 2200325 i 450 + 00000nas 2200325 i 450 0000598545 0000598545 20130319051806.0 @@ -197591,7 +197591,7 @@ - 01043cas0 2200301 450 + 00000cas0 2200301 450 059135891 0001000459 20130319051806.0 @@ -197672,7 +197672,7 @@ - 00952nls 2200277 i 450 + 00000nls 2200277 i 450 0001240692 0001240692 20131202135454.0 @@ -197742,7 +197742,7 @@ - 01329cas0 2200337 450 + 00000cas0 2200337 450 09366513X 0000969825 20130319051806.0 @@ -197834,7 +197834,7 @@ - 00850nas 2200277 i 450 + 00000nas 2200277 i 450 0000005120 0000005120 20130319051806.0 @@ -197905,7 +197905,7 @@ - 01266nas 2200349 i 450 + 00000nas 2200349 i 450 0000454175 0000454175 20130319051806.0 @@ -197996,7 +197996,7 @@ - 00977nas 2200289 i 450 + 00000nas 2200289 i 450 039300676 0000004045 20130522154106.0 @@ -198073,7 +198073,7 @@ - 02098nas 2200409 i 450 + 00000nas 2200409 i 450 036063320 0000004046 20140117150009.0 @@ -198189,7 +198189,7 @@ - 01015nas 2200301 i 450 + 00000nas 2200301 i 450 040403637 0000117615 20130319051806.0 @@ -198269,7 +198269,7 @@ - 01243nas 2200313 i 450 + 00000nas 2200313 i 450 040513440 0000220642 20130319051806.0 @@ -198352,7 +198352,7 @@ - 00973nas 2200289 i 450 + 00000nas 2200289 i 450 0000061005 0000061005 20130319051806.0 @@ -198424,7 +198424,7 @@ - 00891nls 2200289 i 450 + 00000nls 2200289 i 450 0001240870 0001240870 20130521102505.0 @@ -198495,7 +198495,7 @@ - 01297nas 2200349 i 450 + 00000nas 2200349 i 450 0000063372 0000063372 20130319051806.0 @@ -198586,7 +198586,7 @@ - 01051nls 2200313 i 450 + 00000nls 2200313 i 450 0001134452 0001134452 20130319051806.0 @@ -198665,7 +198665,7 @@ - 01333nas 2200349 i 450 + 00000nas 2200349 i 450 0000063330 0000063330 20130319051806.0 @@ -198756,7 +198756,7 @@ - 01013nls 2200313 i 450 + 00000nls 2200313 i 450 0001134607 0001134607 20130319051806.0 @@ -198835,7 +198835,7 @@ - 01436nas 2200349 i 450 + 00000nas 2200349 i 450 039239284 0000101215 20131220152218.0 @@ -198931,7 +198931,7 @@ - 00897nas 2200277 i 450 + 00000nas 2200277 i 450 04504614X 0000200404 20130319051806.0 @@ -199002,7 +199002,7 @@ - 01085cas0 2200301 450 + 00000cas0 2200301 450 068028008 0000978008 20130319051806.0 @@ -199079,7 +199079,7 @@ - 01031nas 2200301 i 450 + 00000nas 2200301 i 450 040047644 0000092086 20130319051806.0 @@ -199156,7 +199156,7 @@ - 01353nas 2200349 i 450 + 00000nas 2200349 i 450 16435669X 0000005151 20130319051806.0 @@ -199250,7 +199250,7 @@ - 01315nas 2200349 i 450 + 00000nas 2200349 i 450 039819930 0000100667 20131009115442.0 @@ -199347,7 +199347,7 @@ - 01018nas 2200313 i 450 + 00000nas 2200313 i 450 0000588617 0000588617 20130319051807.0 @@ -199428,7 +199428,7 @@ - 01217cas0 2200373 450 + 00000cas0 2200373 450 040025780 0001198542 20130319051807.0 @@ -199525,7 +199525,7 @@ - 00938nas 2200301 i 450 + 00000nas 2200301 i 450 076208427 0000165449 20140113164705.0 @@ -199601,7 +199601,7 @@ - 01033nas 2200289 i 450 + 00000nas 2200289 i 450 040153282 0000100438 20130319051807.0 @@ -199672,7 +199672,7 @@ - 01020nas 2200277 i 450 + 00000nas 2200277 i 450 0000678582 20131119155920.0 @@ -199748,7 +199748,7 @@ - 01440cas0 2200325 450 + 00000cas0 2200325 450 073601918 0001176005 20131213164202.0 @@ -199839,7 +199839,7 @@ - 00964nls 2200325 i 450 + 00000nls 2200325 i 450 116244321 0001133462 20131120171428.0 @@ -199920,7 +199920,7 @@ - 01154nas 2200325 i 450 + 00000nas 2200325 i 450 114554625 0000062157 20140103105101.0 @@ -200008,7 +200008,7 @@ - 00948nas 2200301 i 450 + 00000nas 2200301 i 450 0000385030 0000385030 20130319051807.0 @@ -200084,7 +200084,7 @@ - 01374nls 2200373 i 450 + 00000nls 2200373 i 450 0000796025 0000796025 20130319051807.0 @@ -200183,7 +200183,7 @@ - 00895nas 2200289 i 450 + 00000nas 2200289 i 450 0000090253 0000090253 20130319051807.0 @@ -200256,7 +200256,7 @@ - 01272nas 2200325 i 450 + 00000nas 2200325 i 450 059699833 0000617128 20130319051807.0 @@ -200339,7 +200339,7 @@ - 01201nas 2200289 i 450 + 00000nas 2200289 i 450 04018403X 0000140624 20131220142907.0 @@ -200415,7 +200415,7 @@ - 01112nas 2200337 i 450 + 00000nas 2200337 i 450 036030635 0000005107 20130319051807.0 @@ -200504,7 +200504,7 @@ - 01038cas0 2200337 450 + 00000cas0 2200337 450 073565237 0000477009 20130319051807.0 @@ -200592,7 +200592,7 @@ - 00812nls 2200253 i 450 + 00000nls 2200253 i 450 0001245158 20130611120927.0 @@ -200657,7 +200657,7 @@ - 01205nas 2200265 i 450 + 00000nas 2200265 i 450 039769070 0000097021 20130528112549.0 @@ -200723,7 +200723,7 @@ - 01161nas 2200337 i 450 + 00000nas 2200337 i 450 149537549 0000466607 20130319051807.0 @@ -200810,7 +200810,7 @@ - 01090cas0 2200325 450 + 00000cas0 2200325 450 081966865 0001175593 20140108155319.0 @@ -200900,7 +200900,7 @@ - 01122nas 2200313 i 450 + 00000nas 2200313 i 450 04021317X 0000153389 20130319051807.0 @@ -200980,7 +200980,7 @@ - 01003cas0 2200337 450 + 00000cas0 2200337 450 091879213 0001080903 20130319051807.0 @@ -201068,7 +201068,7 @@ - 01144nas 2200361 i 450 + 00000nas 2200361 i 450 081761554 0000559721 20130319051807.0 @@ -201169,7 +201169,7 @@ - 00842nas 2200265 i 450 + 00000nas 2200265 i 450 040177459 0000019078 20131025130547.0 @@ -201235,7 +201235,7 @@ - 01202nas 2200349 i 450 + 00000nas 2200349 i 450 040352188 0000133584 20130319051807.0 @@ -201333,7 +201333,7 @@ - 01128nas 2200337 i 450 + 00000nas 2200337 i 450 03884253X 0000101812 20140107114446.0 @@ -201423,7 +201423,7 @@ - 01028nls 2200337 i 450 + 00000nls 2200337 i 450 0001115421 0001115421 20130319051807.0 @@ -201508,7 +201508,7 @@ - 01282cas0 2200361 450 + 00000cas0 2200361 450 045061637 0000895917 20130709133138.0 @@ -201614,7 +201614,7 @@ - 01148nas 2200313 i 450 + 00000nas 2200313 i 450 0000692197 0000692197 20130722145059.0 @@ -201696,7 +201696,7 @@ - 01207nas 2200349 i 450 + 00000nas 2200349 i 450 045100594 0000264514 20130415143022.0 @@ -201791,7 +201791,7 @@ - 01068nls 2200337 i 450 + 00000nls 2200337 i 450 0001020515 0001020515 20130319051807.0 @@ -201874,7 +201874,7 @@ - 01196nas 2200301 i 450 + 00000nas 2200301 i 450 03928770X 0000101356 20130604143950.0 @@ -201956,7 +201956,7 @@ - 00879nas 2200301 i 450 + 00000nas 2200301 i 450 040181596 0000244975 20130319051807.0 @@ -202031,7 +202031,7 @@ - 01084nas 2200349 i 450 + 00000nas 2200349 i 450 048761303 0000305003 20130319051807.0 @@ -202124,7 +202124,7 @@ - 01112nas 2200325 i 450 + 00000nas 2200325 i 450 039281272 0000100332 20130319051807.0 @@ -202208,7 +202208,7 @@ - 01069cas0 2200337 450 + 00000cas0 2200337 450 078205638 0000857475 20130319051807.0 @@ -202297,7 +202297,7 @@ - 01074nas 2200325 i 450 + 00000nas 2200325 i 450 001957252 0000005081 20130319051807.0 @@ -202381,7 +202381,7 @@ - 00964nas 2200301 i 450 + 00000nas 2200301 i 450 045046476 0000166262 20130319051807.0 @@ -202455,7 +202455,7 @@ - 02177cas0 2200565 450 + 00000cas0 2200565 450 045067228 0000857718 20130319051807.0 @@ -202615,7 +202615,7 @@ - 00852nas 2200277 i 450 + 00000nas 2200277 i 450 0000060569 0000060569 20140110111356.0 @@ -202688,7 +202688,7 @@ - 00934nas 2200301 i 450 + 00000nas 2200301 i 450 039623378 0000036189 20130319051808.0 @@ -202765,7 +202765,7 @@ - 00892nas 2200277 i 450 + 00000nas 2200277 i 450 040260836 0000010775 20130319051808.0 @@ -202832,7 +202832,7 @@ - 01537cas0 2200409 450 + 00000cas0 2200409 450 097572810 0000924080 20130319051808.0 @@ -202944,7 +202944,7 @@ - 01118cas0 2200337 450 + 00000cas0 2200337 450 083745173 0000783283 20131001141822.0 @@ -203036,7 +203036,7 @@ - 01309nas0 2200373 450 + 00000nas0 2200373 450 155005898 0001219336 20130319051808.0 @@ -203146,7 +203146,7 @@ - 01065nas 2200325 i 450 + 00000nas 2200325 i 450 039431452 0000137453 20130319051809.0 @@ -203229,7 +203229,7 @@ - 00952nas 2200289 i 450 + 00000nas 2200289 i 450 039905837 0000085929 20130319051809.0 @@ -203299,7 +203299,7 @@ - 00900nas 2200289 i 450 + 00000nas 2200289 i 450 037421387 0000192360 20130319051809.0 @@ -203375,7 +203375,7 @@ - 01074nas 2200349 i 450 + 00000nas 2200349 i 450 039225763 0000036195 20131127121856.0 @@ -203468,7 +203468,7 @@ - 01315nas 2200325 i 450 + 00000nas 2200325 i 450 001031309 0000180346 20140114170036.0 @@ -203553,7 +203553,7 @@ - 01183nas 2200313 i 450 + 00000nas 2200313 i 450 039720403 0000036425 20130319051810.0 @@ -203633,7 +203633,7 @@ - 01093nas 2200313 i 450 + 00000nas 2200313 i 450 039906914 0000152592 20140115174544.0 @@ -203719,7 +203719,7 @@ - 01129nas 2200325 i 450 + 00000nas 2200325 i 450 039800822 0000036435 20130319051810.0 @@ -203800,7 +203800,7 @@ - 01501nas 2200385 i 450 + 00000nas 2200385 i 450 039464695 0000036547 20130430134949.0 @@ -203908,7 +203908,7 @@ - 01032nas 2200313 i 450 + 00000nas 2200313 i 450 038782472 0000036437 20130319051810.0 @@ -203987,7 +203987,7 @@ - 01001nas 2200337 i 450 + 00000nas 2200337 i 450 0000208684 0000208684 20130319051811.0 @@ -204074,7 +204074,7 @@ - 01193nas 2200325 i 450 + 00000nas 2200325 i 450 0000005283 0000005283 20130319051811.0 @@ -204162,7 +204162,7 @@ - 01250cas0 2200337 450 + 00000cas0 2200337 450 013303988 0001126395 20130319051811.0 @@ -204254,7 +204254,7 @@ - 02549cas0 2200517 450 + 00000cas0 2200517 450 113163592 0001086390 20130319051811.0 @@ -204399,7 +204399,7 @@ - 01711cas0 2200433 450 + 00000cas0 2200433 450 003008428 0001127473 20130319051811.0 @@ -204526,7 +204526,7 @@ - 02207nas 2200433 i 450 + 00000nas 2200433 i 450 037670433 0001085586 20130319051811.0 @@ -204648,7 +204648,7 @@ - 02139nas 2200409 i 450 + 00000nas 2200409 i 450 037670433 0000022069 20130313091818.0 @@ -204762,7 +204762,7 @@ - 01437cas0 2200361 450 + 00000cas0 2200361 450 038674432 0001085596 20130319051812.0 @@ -204865,7 +204865,7 @@ - 01284nas 2200373 i 450 + 00000nas 2200373 i 450 039610691 0000022063 20130319051812.0 @@ -204964,7 +204964,7 @@ - 01702nas 2200445 i 450 + 00000nas 2200445 i 450 039419649 0000022068 20130319051812.0 @@ -205088,7 +205088,7 @@ - 01309nas 2200325 i 450 + 00000nas 2200325 i 450 0000134671 0000134671 20130319051812.0 @@ -205174,7 +205174,7 @@ - 01333cas0 2200385 450 + 00000cas0 2200385 450 170074293 0001247802 20140114173209.0 @@ -205278,7 +205278,7 @@ - 01351cas0 2200361 450 + 00000cas0 2200361 450 03933922X 0001143908 20130319051813.0 @@ -205370,7 +205370,7 @@ - 01223nas 2200325 i 450 + 00000nas 2200325 i 450 013307657 0000036777 20140106164233.0 @@ -205455,7 +205455,7 @@ - 01203nas 2200313 i 450 + 00000nas 2200313 i 450 132489074 0000155833 20130319051813.0 @@ -205538,7 +205538,7 @@ - 01681cas0 2200433 450 + 00000cas0 2200433 450 038591448 0001094590 20130319051814.0 @@ -205664,7 +205664,7 @@ - 00961nas 2200301 i 450 + 00000nas 2200301 i 450 115374205 0000476861 20130319051815.0 @@ -205740,7 +205740,7 @@ - 01357nas 2200337 i 450 + 00000nas 2200337 i 450 040150267 0000036939 20130529142042.0 @@ -205832,7 +205832,7 @@ - 01007nls 2200373 i 450 + 00000nls 2200373 i 450 0000405091 0000405091 20130319051816.0 @@ -205920,7 +205920,7 @@ - 01052nas 2200337 i 450 + 00000nas 2200337 i 450 040383318 0000155450 20131015172813.0 @@ -206010,7 +206010,7 @@ - 01122nas 2200325 i 450 + 00000nas 2200325 i 450 039849082 0000008076 20130319051816.0 @@ -206097,7 +206097,7 @@ - 01069nas0 2200301 450 + 00000nas0 2200301 450 113477767 0001078870 20140106121303.0 @@ -206174,7 +206174,7 @@ - 01010nas 2200301 i 450 + 00000nas 2200301 i 450 039973549 0000573909 20131008113832.0 @@ -206250,7 +206250,7 @@ - 01258nas 2200349 i 450 + 00000nas 2200349 i 450 03292139X 0000005285 20131029104045.0 @@ -206343,7 +206343,7 @@ - 01269nas 2200325 i 450 + 00000nas 2200325 i 450 03993022X 0000086659 20140106173039.0 @@ -206425,7 +206425,7 @@ - 00919nas 2200301 i 450 + 00000nas 2200301 i 450 045064024 0000259760 20130319051816.0 @@ -206499,7 +206499,7 @@ - 01246nas 2200313 i 450 + 00000nas 2200313 i 450 0000107588 0000107588 20130319051816.0 @@ -206580,7 +206580,7 @@ - 01238nas 2200349 i 450 + 00000nas 2200349 i 450 036747742 0000172404 20130319051817.0 @@ -206670,7 +206670,7 @@ - 00988nas 2200289 i 450 + 00000nas 2200289 i 450 0000148464 0000148464 20130319051817.0 @@ -206740,7 +206740,7 @@ - 01266nas 2200325 i 450 + 00000nas 2200325 i 450 038783207 0000036878 20131220120949.0 @@ -206822,7 +206822,7 @@ - 01012nas 2200325 i 450 + 00000nas 2200325 i 450 039270572 0000036858 20130319051817.0 @@ -206904,7 +206904,7 @@ - 01395nas 2200361 i 450 + 00000nas 2200361 i 450 059603453 0000665355 20130319051817.0 @@ -206999,7 +206999,7 @@ - 00960nas 2200301 i 450 + 00000nas 2200301 i 450 03909166X 0000036881 20130319051818.0 @@ -207078,7 +207078,7 @@ - 01001cas0 2200301 450 + 00000cas0 2200301 450 103965378 0000993205 20130319051819.0 @@ -207154,7 +207154,7 @@ - 01500nas 2200385 i 450 + 00000nas 2200385 i 450 038783363 0000036886 20130319051821.0 @@ -207261,7 +207261,7 @@ - 01593nas 2200421 i 450 + 00000nas 2200421 i 450 039523365 0000005288 20130319051821.0 @@ -207376,7 +207376,7 @@ - 01057nls 2200325 i 450 + 00000nls 2200325 i 450 0001134316 0001134316 20130319051821.0 @@ -207457,7 +207457,7 @@ - 01536nas 2200373 i 450 + 00000nas 2200373 i 450 039958248 0000062709 20140106124107.0 @@ -207564,7 +207564,7 @@ - 01575nas 2200385 i 450 + 00000nas 2200385 i 450 040098729 0000145427 20130319051822.0 @@ -207666,7 +207666,7 @@ - 01054nas0 2200337 450 + 00000nas0 2200337 450 133111075 0001189737 20130319051824.0 @@ -207755,7 +207755,7 @@ - 01590cas0 2200433 450 + 00000cas0 2200433 450 058866434 0001127077 20130319051824.0 @@ -207874,7 +207874,7 @@ - 01367nas 2200349 i 450 + 00000nas 2200349 i 450 0000103159 0000103159 20130319051824.0 @@ -207969,7 +207969,7 @@ - 01588cas0 2200325 450 + 00000cas0 2200325 450 038760355 0000886469 20130319051824.0 @@ -208055,7 +208055,7 @@ - 00820nls 2200265 i 450 + 00000nls 2200265 i 450 0000941455 0000941455 20130319051824.0 @@ -208119,7 +208119,7 @@ - 00960nls 2200325 i 450 + 00000nls 2200325 i 450 0001130114 0001130114 20130319051824.0 @@ -208199,7 +208199,7 @@ - 01079nas 2200325 i 450 + 00000nas 2200325 i 450 038870037 0000090522 20140103115543.0 @@ -208280,7 +208280,7 @@ - 01101nas 2200325 i 450 + 00000nas 2200325 i 450 0000107587 0000107587 20130319051824.0 @@ -208362,7 +208362,7 @@ - 01005nls 2200313 i 450 + 00000nls 2200313 i 450 0001133708 0001133708 20130319051824.0 @@ -208439,7 +208439,7 @@ - 01041nas 2200277 i 450 + 00000nas 2200277 i 450 0000107691 20131009095421.0 @@ -208515,7 +208515,7 @@ - 01637cas0 2200445 450 + 00000cas0 2200445 450 038845997 0000222371 20140110115115.0 @@ -208639,7 +208639,7 @@ - 01199nas 2200313 i 450 + 00000nas 2200313 i 450 0000050014 0000050014 20130319051824.0 @@ -208718,7 +208718,7 @@ - 01205nas 2200325 i 450 + 00000nas 2200325 i 450 038035979 0000028990 20130319051824.0 @@ -208804,7 +208804,7 @@ - 01027cas0 2200301 450 + 00000cas0 2200301 450 075128209 0000990527 20130319051824.0 @@ -208881,7 +208881,7 @@ - 01324nas 2200325 i 450 + 00000nas 2200325 i 450 040617548 0000231372 20140115193253.0 @@ -208970,7 +208970,7 @@ - 01000nas 2200289 i 450 + 00000nas 2200289 i 450 11313987X 0000071623 20130319051825.0 @@ -209042,7 +209042,7 @@ - 00930nas 2200277 i 450 + 00000nas 2200277 i 450 0000041492 0000041492 20130319051825.0 @@ -209106,7 +209106,7 @@ - 00830nas 2200277 i 450 + 00000nas 2200277 i 450 04014464X 0000078266 20130730145050.0 @@ -209175,7 +209175,7 @@ - 00892nas 2200301 i 450 + 00000nas 2200301 i 450 040530094 0000435807 20130319051826.0 @@ -209250,7 +209250,7 @@ - 01080nas 2200313 i 450 + 00000nas 2200313 i 450 039337553 0000008117 20130909155858.0 @@ -209331,7 +209331,7 @@ - 00959nas 2200301 i 450 + 00000nas 2200301 i 450 039339351 0000008133 20130319051826.0 @@ -209408,7 +209408,7 @@ - 00935nas 2200289 i 450 + 00000nas 2200289 i 450 038830779 0000037203 20130925155724.0 @@ -209483,7 +209483,7 @@ - 01551nas 2200409 i 450 + 00000nas 2200409 i 450 039633616 0000029911 20140109135323.0 @@ -209597,7 +209597,7 @@ - 01343nas 2200385 i 450 + 00000nas 2200385 i 450 036081310 0000530721 20130319051827.0 @@ -209700,7 +209700,7 @@ - 01194nas 2200337 i 450 + 00000nas 2200337 i 450 039348717 0000037210 20140102141719.0 @@ -209797,7 +209797,7 @@ - 01040cas0 2200325 450 + 00000cas0 2200325 450 104384654 0001063573 20130319051827.0 @@ -209884,7 +209884,7 @@ - 01062nls 2200313 i 450 + 00000nls 2200313 i 450 0001252135 20131204152226.0 @@ -209968,7 +209968,7 @@ - 01183nas 2200349 i 450 + 00000nas 2200349 i 450 040005852 0000189678 20130319051829.0 @@ -210063,7 +210063,7 @@ - 01089cas0 2200337 450 + 00000cas0 2200337 450 094684499 0000919193 20130319051830.0 @@ -210156,7 +210156,7 @@ - 00895nas 2200277 i 450 + 00000nas 2200277 i 450 0000472453 0000472453 20131106152003.0 @@ -210226,7 +210226,7 @@ - 01692cas0 2200445 450 + 00000cas0 2200445 450 037372815 0001117810 20130319051830.0 @@ -210347,7 +210347,7 @@ - 01783cas0 2200469 450 + 00000cas0 2200469 450 11125728X 0001208785 20130319051830.0 @@ -210491,7 +210491,7 @@ - 01315nas 2200349 i 450 + 00000nas 2200349 i 450 038707403 0000019370 20130319051830.0 @@ -210580,7 +210580,7 @@ - 01196nas 2200313 i 450 + 00000nas 2200313 i 450 039093565 0000037268 20130319051830.0 @@ -210662,7 +210662,7 @@ - 01296nas 2200337 i 450 + 00000nas 2200337 i 450 039394158 0000037426 20140108155624.0 @@ -210755,7 +210755,7 @@ - 01361nas 2200361 i 450 + 00000nas 2200361 i 450 061149993 0000158186 20130319051830.0 @@ -210855,7 +210855,7 @@ - 01580nas 2200349 i 450 + 00000nas 2200349 i 450 038783894 0000049405 20130319051830.0 @@ -210944,7 +210944,7 @@ - 01787nas 2200385 i 450 + 00000nas 2200385 i 450 038783916 0000037410 20130812105515.0 @@ -211047,7 +211047,7 @@ - 00985nls 2200289 i 450 + 00000nls 2200289 i 450 0000470131 0000470131 20130319051830.0 @@ -211116,7 +211116,7 @@ - 01194nas 2200325 i 450 + 00000nas 2200325 i 450 038783991 0000037661 20131202114253.0 @@ -211197,7 +211197,7 @@ - 01108nas 2200325 i 450 + 00000nas 2200325 i 450 070079846 0000486902 20131028145812.0 @@ -211280,7 +211280,7 @@ - 01311nas 2200337 i 450 + 00000nas 2200337 i 450 044740557 0000130718 20140107132627.0 @@ -211366,7 +211366,7 @@ - 01161nas 2200337 i 450 + 00000nas 2200337 i 450 039309959 0000037529 20140110152615.0 @@ -211450,7 +211450,7 @@ - 00869cas0 2200301 450 + 00000cas0 2200301 450 039400247 0001106162 20130319051830.0 @@ -211529,7 +211529,7 @@ - 01608nas 2200385 i 450 + 00000nas 2200385 i 450 076872106 0000482927 20131119113803.0 @@ -211630,7 +211630,7 @@ - 01348nas 2200313 i 450 + 00000nas 2200313 i 450 040083608 0000038348 20130319051830.0 @@ -211706,7 +211706,7 @@ - 01245nas 2200361 i 450 + 00000nas 2200361 i 450 038784122 0000037531 20131220101910.0 @@ -211800,7 +211800,7 @@ - 00914nas 2200277 i 450 + 00000nas 2200277 i 450 039623912 0000049413 20130319051830.0 @@ -211868,7 +211868,7 @@ - 01534nas 2200337 i 450 + 00000nas 2200337 i 450 038784165 0000195147 20130319051830.0 @@ -211952,7 +211952,7 @@ - 01091nas 2200325 i 450 + 00000nas 2200325 i 450 070699631 0000539587 20130319051830.0 @@ -212037,7 +212037,7 @@ - 01007nas 2200313 i 450 + 00000nas 2200313 i 450 039480542 0000037665 20130725164132.0 @@ -212118,7 +212118,7 @@ - 01078nas 2200325 i 450 + 00000nas 2200325 i 450 038976722 0000110010 20130319051830.0 @@ -212201,7 +212201,7 @@ - 01281nas 2200385 i 450 + 00000nas 2200385 i 450 038784289 0000037666 20130319051830.0 @@ -212307,7 +212307,7 @@ - 01323nas 2200349 i 450 + 00000nas 2200349 i 450 087943921 0000120827 20130319051830.0 @@ -212399,7 +212399,7 @@ - 01331nas 2200385 i 450 + 00000nas 2200385 i 450 038984172 0000439480 20130319051830.0 @@ -212496,7 +212496,7 @@ - 01298nas 2200325 i 450 + 00000nas 2200325 i 450 038784599 0000037779 20130524122331.0 @@ -212584,7 +212584,7 @@ - 01358nas 2200361 i 450 + 00000nas 2200361 i 450 038784610 0000037807 20130319051830.0 @@ -212686,7 +212686,7 @@ - 01314nas 2200325 i 450 + 00000nas 2200325 i 450 03967830X 0000037808 20130917144505.0 @@ -212771,7 +212771,7 @@ - 01534nas 2200385 i 450 + 00000nas 2200385 i 450 038784769 0000049272 20130319051830.0 @@ -212873,7 +212873,7 @@ - 01149nas 2200325 i 450 + 00000nas 2200325 i 450 03962241X 0000037813 20130319051831.0 @@ -212956,7 +212956,7 @@ - 01199nas 2200337 i 450 + 00000nas 2200337 i 450 036356352 0000236657 20130319051831.0 @@ -213044,7 +213044,7 @@ - 01117nas 2200337 i 450 + 00000nas 2200337 i 450 038972131 0000104781 20130319051831.0 @@ -213131,7 +213131,7 @@ - 01203nas 2200337 i 450 + 00000nas 2200337 i 450 038784955 0000069253 20130319051831.0 @@ -213219,7 +213219,7 @@ - 01179nls 2200349 i 450 + 00000nls 2200349 i 450 0001231658 0001231658 20130319051831.0 @@ -213319,7 +213319,7 @@ - 01423nas 2200397 i 450 + 00000nas 2200397 i 450 038831104 0000005461 20130319051831.0 @@ -213431,7 +213431,7 @@ - 01072nas 2200325 i 450 + 00000nas 2200325 i 450 0000476898 0000476898 20130319051831.0 @@ -213516,7 +213516,7 @@ - 01026nas 2200301 i 450 + 00000nas 2200301 i 450 038673975 0000089984 20131205161516.0 @@ -213597,7 +213597,7 @@ - 01426nas 2200349 i 450 + 00000nas 2200349 i 450 036343714 0000256645 20130319051831.0 @@ -213689,7 +213689,7 @@ - 01544nls 2200361 i 450 + 00000nls 2200361 i 450 0001162060 0001162060 20130319051831.0 @@ -213782,7 +213782,7 @@ - 01446cas0 2200361 450 + 00000cas0 2200361 450 093357184 0001167761 20130319051831.0 @@ -213881,7 +213881,7 @@ - 01055nas 2200313 i 450 + 00000nas 2200313 i 450 058381465 0000406012 20130925161512.0 @@ -213960,7 +213960,7 @@ - 01268nas 2200337 i 450 + 00000nas 2200337 i 450 039196518 0000038006 20130319051831.0 @@ -214054,7 +214054,7 @@ - 01125nas 2200301 i 450 + 00000nas 2200301 i 450 038785536 0000038010 20130319051831.0 @@ -214135,7 +214135,7 @@ - 01522nas 2200385 i 450 + 00000nas 2200385 i 450 039192202 0000038012 20130319051831.0 @@ -214241,7 +214241,7 @@ - 01327nas 2200349 i 450 + 00000nas 2200349 i 450 040035166 0000007956 20130826162137.0 @@ -214332,7 +214332,7 @@ - 01210nas 2200337 i 450 + 00000nas 2200337 i 450 058334319 0000488885 20130319051831.0 @@ -214421,7 +214421,7 @@ - 01298nas 2200349 i 450 + 00000nas 2200349 i 450 038785684 0000038018 20130319051831.0 @@ -214514,7 +214514,7 @@ - 01178nas 2200337 i 450 + 00000nas 2200337 i 450 039011445 0000038108 20130319051831.0 @@ -214603,7 +214603,7 @@ - 01562nas 2200385 i 450 + 00000nas 2200385 i 450 039135063 0000038113 20130319051831.0 @@ -214713,7 +214713,7 @@ - 01650nas 2200397 i 450 + 00000nas 2200397 i 450 039139255 0000038118 20130319051831.0 @@ -214822,7 +214822,7 @@ - 01071nas 2200313 i 450 + 00000nas 2200313 i 450 039759954 0000085021 20130319051831.0 @@ -214901,7 +214901,7 @@ - 01592cas0 2200373 450 + 00000cas0 2200373 450 037461389 0001085582 20130319051831.0 @@ -215014,7 +215014,7 @@ - 01292nas 2200361 i 450 + 00000nas 2200361 i 450 040085171 0000209004 20130319051831.0 @@ -215112,7 +215112,7 @@ - 01262cas0 2200397 450 + 00000cas0 2200397 450 10896907X 0001079075 20130319051831.0 @@ -215221,7 +215221,7 @@ - 01218nas 2200385 i 450 + 00000nas 2200385 i 450 039227405 0000005392 20130319051831.0 @@ -215327,7 +215327,7 @@ - 01117cas0 2200337 450 + 00000cas0 2200337 450 037966758 0001104237 20130319051831.0 @@ -215414,7 +215414,7 @@ - 01331cas0 2200349 450 + 00000cas0 2200349 450 037959964 0001084135 20130319051831.0 @@ -215506,7 +215506,7 @@ - 00902nls 2200289 i 450 + 00000nls 2200289 i 450 0000432336 0000432336 20131023150524.0 @@ -215575,7 +215575,7 @@ - 01028nas 2200313 i 450 + 00000nas 2200313 i 450 038786338 0000038250 20131104103213.0 @@ -215652,7 +215652,7 @@ - 01194nas 2200313 i 450 + 00000nas 2200313 i 450 038786419 0000038251 20131015164441.0 @@ -215736,7 +215736,7 @@ - 01533cas0 2200325 450 + 00000cas0 2200325 450 038834502 0001095095 20130319051831.0 @@ -215818,7 +215818,7 @@ - 01221cas0 2200361 450 + 00000cas0 2200361 450 038586002 0001094589 20130319051831.0 @@ -215919,7 +215919,7 @@ - 01233cas0 2200301 450 + 00000cas0 2200301 450 03746521X 0001094571 20130319051831.0 @@ -215999,7 +215999,7 @@ - 01230nas 2200337 i 450 + 00000nas 2200337 i 450 039209822 0000038260 20130910175626.0 @@ -216088,7 +216088,7 @@ - 00968cas0 2200265 450 + 00000cas0 2200265 450 036688592 0001085572 20130319051831.0 @@ -216159,7 +216159,7 @@ - 01169cas0 2200313 450 + 00000cas0 2200313 450 037457527 0001094568 20130319051831.0 @@ -216250,7 +216250,7 @@ - 01077cas0 2200325 450 + 00000cas0 2200325 450 03863807X 0001095084 20130319051831.0 @@ -216338,7 +216338,7 @@ - 01710cas0 2200349 450 + 00000cas0 2200349 450 037456504 0001094567 20131015164501.0 @@ -216439,7 +216439,7 @@ - 01360nas 2200409 i 450 + 00000nas 2200409 i 450 039227499 0000005397 20130319051831.0 @@ -216548,7 +216548,7 @@ - 01233nas 2200337 i 450 + 00000nas 2200337 i 450 040131610 0000094318 20130319051831.0 @@ -216637,7 +216637,7 @@ - 01304nas 2200361 i 450 + 00000nas 2200361 i 450 03984465X 0000005405 20130319051831.0 @@ -216732,7 +216732,7 @@ - 01061nas 2200349 i 450 + 00000nas 2200349 i 450 013309447 0000005407 20130319051831.0 @@ -216822,7 +216822,7 @@ - 01424nas 2200361 i 450 + 00000nas 2200361 i 450 013305379 0000005410 20130319051831.0 @@ -216924,7 +216924,7 @@ - 01408nas 2200373 i 450 + 00000nas 2200373 i 450 039283666 0000038490 20130319051831.0 @@ -217025,7 +217025,7 @@ - 01486nas 2200409 i 450 + 00000nas 2200409 i 450 039546659 0000038492 20130611170831.0 @@ -217137,7 +217137,7 @@ - 01494cas0 2200325 450 + 00000cas0 2200325 450 03745756X 0001085578 20130319051831.0 @@ -217231,7 +217231,7 @@ - 01074nas 2200301 i 450 + 00000nas 2200301 i 450 05092141X 0000429698 20131008112346.0 @@ -217309,7 +217309,7 @@ - 01547nas 2200385 i 450 + 00000nas 2200385 i 450 0000487193 0000487193 20130319051831.0 @@ -217408,7 +217408,7 @@ - 01044nas 2200301 i 450 + 00000nas 2200301 i 450 046692347 0000138710 20130319051831.0 @@ -217487,7 +217487,7 @@ - 01050nas 2200301 i 450 + 00000nas 2200301 i 450 038432862 0000421346 20130319051831.0 @@ -217564,7 +217564,7 @@ - 01254nas 2200325 i 450 + 00000nas 2200325 i 450 038432870 0000421344 20130319051831.0 @@ -217651,7 +217651,7 @@ - 01468nas 2200373 i 450 + 00000nas 2200373 i 450 039237311 0000005415 20130319051831.0 @@ -217754,7 +217754,7 @@ - 01380cas0 2200361 450 + 00000cas0 2200361 450 037457578 0001093244 20130319051831.0 @@ -217854,7 +217854,7 @@ - 01675nas 2200409 i 450 + 00000nas 2200409 i 450 039668940 0000038494 20130319051831.0 @@ -217965,7 +217965,7 @@ - 00984nas 2200301 i 450 + 00000nas 2200301 i 450 127790292 0000550322 20130319051832.0 @@ -218041,7 +218041,7 @@ - 01231nas 2200337 i 450 + 00000nas 2200337 i 450 039475883 0000049874 20131002115458.0 @@ -218130,7 +218130,7 @@ - 01030cas0 2200337 450 + 00000cas0 2200337 450 103674438 0001047059 20140110135438.0 @@ -218220,7 +218220,7 @@ - 01145cas0 2200313 450 + 00000cas0 2200313 450 036688673 0001085573 20130319051832.0 @@ -218300,7 +218300,7 @@ - 01703cas0 2200385 450 + 00000cas0 2200385 450 03668869X 0001085574 20130319051832.0 @@ -218407,7 +218407,7 @@ - 01367nas 2200373 i 450 + 00000nas 2200373 i 450 0000038623 0000038623 20130319051832.0 @@ -218506,7 +218506,7 @@ - 01734nas 2200397 i 450 + 00000nas 2200397 i 450 039227588 0000038626 20130319051832.0 @@ -218619,7 +218619,7 @@ - 01007nas 2200277 i 450 + 00000nas 2200277 i 450 039928055 0000036032 20131218160019.0 @@ -218690,7 +218690,7 @@ - 01302nas 2200337 i 450 + 00000nas 2200337 i 450 039543862 0000005970 20140108110911.0 @@ -218785,7 +218785,7 @@ - 01178nas0 2200385 450 + 00000nas0 2200385 450 001421131 0000744388 20130530121257.0 @@ -218888,7 +218888,7 @@ - 01235nas 2200325 i 450 + 00000nas 2200325 i 450 037984608 0000572566 20130319051832.0 @@ -218972,7 +218972,7 @@ - 01772cas0 2200457 450 + 00000cas0 2200457 450 039227723 0001094608 20130319051832.0 @@ -219099,7 +219099,7 @@ - 01050cas0 2200277 450 + 00000cas0 2200277 450 03860342X 0001093437 20131015160925.0 @@ -219172,7 +219172,7 @@ - 01136nas 2200301 i 450 + 00000nas 2200301 i 450 0000421152 0000421152 20130319051832.0 @@ -219246,7 +219246,7 @@ - 01591cas0 2200397 450 + 00000cas0 2200397 450 098977911 0001175329 20130319051832.0 @@ -219355,7 +219355,7 @@ - 01362nas 2200337 i 450 + 00000nas 2200337 i 450 045017832 0000270080 20130319051832.0 @@ -219441,7 +219441,7 @@ - 01430nas 2200373 i 450 + 00000nas 2200373 i 450 040446263 0000134364 20130903121950.0 @@ -219534,7 +219534,7 @@ - 01172cas0 2200337 450 + 00000cas0 2200337 450 107982927 0001055892 20131118121137.0 @@ -219622,7 +219622,7 @@ - 01050nas 2200325 i 450 + 00000nas 2200325 i 450 039243613 0001111749 20130319051832.0 @@ -219707,7 +219707,7 @@ - 01060nas 2200301 i 450 + 00000nas 2200301 i 450 039243613 0000041594 20130313092225.0 @@ -219782,7 +219782,7 @@ - 01067nas 2200301 i 450 + 00000nas 2200301 i 450 039555984 0000041538 20130319051832.0 @@ -219859,7 +219859,7 @@ - 02142cas0 2200433 450 + 00000cas0 2200433 450 07739755X 0001094621 20130319051832.0 @@ -219988,7 +219988,7 @@ - 01146nas 2200325 i 450 + 00000nas 2200325 i 450 037468294 0000116459 20130319051832.0 @@ -220068,7 +220068,7 @@ - 01568nas 2200421 i 450 + 00000nas 2200421 i 450 001018426 0000041684 20130319051832.0 @@ -220183,7 +220183,7 @@ - 01049cas0 2200313 450 + 00000cas0 2200313 450 038294214 0001093257 20130319051832.0 @@ -220267,7 +220267,7 @@ - 00838nls 2200265 i 450 + 00000nls 2200265 i 450 0001180735 20130604161034.0 @@ -220333,7 +220333,7 @@ - 01193cas0 2200337 450 + 00000cas0 2200337 450 038429608 0001094583 20130319051832.0 @@ -220425,7 +220425,7 @@ - 01425cas0 2200325 450 + 00000cas0 2200325 450 036688770 0001094555 20130319051832.0 @@ -220513,7 +220513,7 @@ - 00978cas0 2200301 450 + 00000cas0 2200301 450 038553724 0001094588 20130319051832.0 @@ -220594,7 +220594,7 @@ - 01263nas 2200325 i 450 + 00000nas 2200325 i 450 039227774 0000037729 20130319051832.0 @@ -220679,7 +220679,7 @@ - 00871cas0 2200301 450 + 00000cas0 2200301 450 037619918 0001084127 20130319051832.0 @@ -220757,7 +220757,7 @@ - 01228nas 2200349 i 450 + 00000nas 2200349 i 450 05786683X 0000414917 20140106134753.0 @@ -220845,7 +220845,7 @@ - 00898nas 2200289 i 450 + 00000nas 2200289 i 450 0000174665 0000174665 20130319051832.0 @@ -220917,7 +220917,7 @@ - 01163nas 2200325 i 450 + 00000nas 2200325 i 450 039227847 0000041702 20130319051832.0 @@ -221001,7 +221001,7 @@ - 01434cas0 2200373 450 + 00000cas0 2200373 450 037714414 0001083716 20130319051832.0 @@ -221098,7 +221098,7 @@ - 01228nas 2200325 i 450 + 00000nas 2200325 i 450 039227871 0000049225 20130522123318.0 @@ -221187,7 +221187,7 @@ - 01899cas0 2200409 450 + 00000cas0 2200409 450 038439743 0001083723 20130319051832.0 @@ -221304,7 +221304,7 @@ - 01272cas0 2200361 450 + 00000cas0 2200361 450 139793313 0001180352 20131219161558.0 @@ -221405,7 +221405,7 @@ - 00768nls 2200253 i 450 + 00000nls 2200253 i 450 0000941521 0000941521 20130319051832.0 @@ -221465,7 +221465,7 @@ - 01380cas0 2200361 450 + 00000cas0 2200361 450 037468308 0001109369 20130319051832.0 @@ -221571,7 +221571,7 @@ - 01333nas 2200373 i 450 + 00000nas 2200373 i 450 039624579 0000041708 20130319051832.0 @@ -221674,7 +221674,7 @@ - 01274nas 2200313 i 450 + 00000nas 2200313 i 450 037446797 0000267433 20130319051832.0 @@ -221756,7 +221756,7 @@ - 01292nas 2200349 i 450 + 00000nas 2200349 i 450 040560732 0000239682 20131218140500.0 @@ -221848,7 +221848,7 @@ - 01611cas0 2200409 450 + 00000cas0 2200409 450 039227944 0001095101 20130319051832.0 @@ -221968,7 +221968,7 @@ - 01106cas0 2200313 450 + 00000cas0 2200313 450 001598074 0001084100 20130319051832.0 @@ -222053,7 +222053,7 @@ - 01254nas 2200313 i 450 + 00000nas 2200313 i 450 039608778 0000049170 20130319051832.0 @@ -222136,7 +222136,7 @@ - 01429cas0 2200349 450 + 00000cas0 2200349 450 037577948 0001095065 20130319051832.0 @@ -222234,7 +222234,7 @@ - 00956cas0 2200277 450 + 00000cas0 2200277 450 03745773X 0001085580 20130319051832.0 @@ -222306,7 +222306,7 @@ - 01180cas0 2200397 450 + 00000cas0 2200397 450 039797198 0000435926 20130319051832.0 @@ -222413,7 +222413,7 @@ - 01060nas 2200337 i 450 + 00000nas 2200337 i 450 0000617099 0000617099 20130319051832.0 @@ -222500,7 +222500,7 @@ - 01281nas 2200361 i 450 + 00000nas 2200361 i 450 036060364 0000041766 20130319051832.0 @@ -222596,7 +222596,7 @@ - 01183nas 2200325 i 450 + 00000nas 2200325 i 450 038500930 0000141593 20130319051832.0 @@ -222678,7 +222678,7 @@ - 01188nas 2200349 i 450 + 00000nas 2200349 i 450 050927183 0000455887 20130319051832.0 @@ -222770,7 +222770,7 @@ - 01245nas 2200349 i 450 + 00000nas 2200349 i 450 039373053 0000042077 20130319051832.0 @@ -222867,7 +222867,7 @@ - 01300nas 2200325 i 450 + 00000nas 2200325 i 450 037650009 0000041770 20130319051832.0 @@ -222957,7 +222957,7 @@ - 01259cas0 2200325 450 + 00000cas0 2200325 450 038078643 0001095069 20130319051832.0 @@ -223047,7 +223047,7 @@ - 01549nas 2200409 i 450 + 00000nas 2200409 i 450 039228223 0000005454 20130319051832.0 @@ -223161,7 +223161,7 @@ - 01169nas 2200337 i 450 + 00000nas 2200337 i 450 040155927 0000220235 20130319051832.0 @@ -223249,7 +223249,7 @@ - 01390nas 2200385 i 450 + 00000nas 2200385 i 450 039877175 0000041926 20130319051832.0 @@ -223351,7 +223351,7 @@ - 00866nls 2200289 i 450 + 00000nls 2200289 i 450 0000432337 0000432337 20130319051832.0 @@ -223418,7 +223418,7 @@ - 01762nas 2200421 i 450 + 00000nas 2200421 i 450 039228371 0000002034 20130319051832.0 @@ -223533,7 +223533,7 @@ - 01353nas 2200349 i 450 + 00000nas 2200349 i 450 039424022 0000005472 20130319051832.0 @@ -223621,7 +223621,7 @@ - 01199cas0 2200325 450 + 00000cas0 2200325 450 039068137 0001109391 20130319051832.0 @@ -223706,7 +223706,7 @@ - 00918nas 2200289 i 450 + 00000nas 2200289 i 450 0000042110 0000042110 20130319051832.0 @@ -223776,7 +223776,7 @@ - 01393cas0 2200385 450 + 00000cas0 2200385 450 036688851 0001085575 20130319051832.0 @@ -223878,7 +223878,7 @@ - 01227cas0 2200385 450 + 00000cas0 2200385 450 130918040 0001185782 20130319051832.0 @@ -223983,7 +223983,7 @@ - 01681nas 2200409 i 450 + 00000nas 2200409 i 450 039741419 0000005463 20130916142153.0 @@ -224096,7 +224096,7 @@ - 01300nas 2200349 i 450 + 00000nas 2200349 i 450 038831287 0000600929 20131025111146.0 @@ -224187,7 +224187,7 @@ - 01061nas 2200301 i 450 + 00000nas 2200301 i 450 0000256694 0000256694 20130319051832.0 @@ -224264,7 +224264,7 @@ - 01485nas 2200385 i 450 + 00000nas 2200385 i 450 013304127 0000002365 20140110114658.0 @@ -224370,7 +224370,7 @@ - 01036nas 2200325 i 450 + 00000nas 2200325 i 450 039785092 0000005475 20130319051832.0 @@ -224455,7 +224455,7 @@ - 01162nas 2200337 i 450 + 00000nas 2200337 i 450 039588165 0000005956 20130319051832.0 @@ -224543,7 +224543,7 @@ - 01209nas 2200349 i 450 + 00000nas 2200349 i 450 039410803 0000005480 20130319051832.0 @@ -224638,7 +224638,7 @@ - 01085nas 2200349 i 450 + 00000nas 2200349 i 450 039726266 0000005925 20130319051832.0 @@ -224729,7 +224729,7 @@ - 01260nas 2200325 i 450 + 00000nas 2200325 i 450 001643223 0000011177 20130729114543.0 @@ -224818,7 +224818,7 @@ - 01015nas 2200337 i 450 + 00000nas 2200337 i 450 013302469 0000005659 20130319051832.0 @@ -224906,7 +224906,7 @@ - 00908nas 2200289 i 450 + 00000nas 2200289 i 450 040577848 0000214789 20130828182542.0 @@ -224978,7 +224978,7 @@ - 01423nas 2200385 i 450 + 00000nas 2200385 i 450 039550117 0000005660 20130319051832.0 @@ -225085,7 +225085,7 @@ - 00951cas0 2200253 450 + 00000cas0 2200253 450 039210065 0001093277 20130319051832.0 @@ -225148,7 +225148,7 @@ - 01047nas 2200313 i 450 + 00000nas 2200313 i 450 039228452 0000042269 20130319051832.0 @@ -225227,7 +225227,7 @@ - 01495nas 2200397 i 450 + 00000nas 2200397 i 450 039228460 0000002009 20131220102150.0 @@ -225336,7 +225336,7 @@ - 01483cas0 2200397 450 + 00000cas0 2200397 450 130342084 0001155393 20130319051832.0 @@ -225448,7 +225448,7 @@ - 01915nas 2200457 i 450 + 00000nas 2200457 i 450 039228487 0000002221 20131220102218.0 @@ -225579,7 +225579,7 @@ - 01973nas 2200445 i 450 + 00000nas 2200445 i 450 039228509 0000005666 20130319051832.0 @@ -225702,7 +225702,7 @@ - 01154cas0 2200301 450 + 00000cas0 2200301 450 037456520 0001085577 20130319051832.0 @@ -225788,7 +225788,7 @@ - 00980nas 2200313 i 450 + 00000nas 2200313 i 450 03956603X 0000005662 20130319051832.0 @@ -225868,7 +225868,7 @@ - 00920nas 2200277 i 450 + 00000nas 2200277 i 450 00393862X 0000189964 20130319051832.0 @@ -225937,7 +225937,7 @@ - 00782nls 2200241 i 450 + 00000nls 2200241 i 450 0000941458 0000941458 20130319051832.0 @@ -225994,7 +225994,7 @@ - 01255cas0 2200337 450 + 00000cas0 2200337 450 037486322 0001085584 20130319051832.0 @@ -226087,7 +226087,7 @@ - 01324nas 2200337 i 450 + 00000nas 2200337 i 450 039228649 0000042316 20130319051832.0 @@ -226182,7 +226182,7 @@ - 01369cas0 2200349 450 + 00000cas0 2200349 450 104550880 0001198594 20130319051832.0 @@ -226278,7 +226278,7 @@ - 00934nas 2200301 i 450 + 00000nas 2200301 i 450 039719952 0000042346 20130910162409.0 @@ -226352,7 +226352,7 @@ - 01031cas0 2200325 450 + 00000cas0 2200325 450 040261859 0000732569 20130319051832.0 @@ -226440,7 +226440,7 @@ - 01330nas 2200361 i 450 + 00000nas 2200361 i 450 039228754 0000037731 20130319051832.0 @@ -226536,7 +226536,7 @@ - 01212nas 2200337 i 450 + 00000nas 2200337 i 450 040133664 0000042352 20131002162916.0 @@ -226623,7 +226623,7 @@ - 01082nas 2200313 i 450 + 00000nas 2200313 i 450 013305360 0000042355 20140110123046.0 @@ -226703,7 +226703,7 @@ - 01117nas 2200301 i 450 + 00000nas 2200301 i 450 039375854 0000048104 20130930110548.0 @@ -226778,7 +226778,7 @@ - 01239nas 2200337 i 450 + 00000nas 2200337 i 450 036841498 0000129769 20131220102510.0 @@ -226870,7 +226870,7 @@ - 00857nas 2200277 i 450 + 00000nas 2200277 i 450 039560759 0000005663 20130319051832.0 @@ -226937,7 +226937,7 @@ - 01312nas 2200325 i 450 + 00000nas 2200325 i 450 039581837 0000239775 20130319051832.0 @@ -227015,7 +227015,7 @@ - 01350cas0 2200397 450 + 00000cas0 2200397 450 120069644 0001153661 20130319051832.0 @@ -227125,7 +227125,7 @@ - 01482nas 2200373 i 450 + 00000nas 2200373 i 450 039376664 0000042660 20130625142731.0 @@ -227222,7 +227222,7 @@ - 01374aas 2200373 i 450 + 00000aas 2200373 i 450 013307193 0000042664 20130626175424.0 @@ -227322,7 +227322,7 @@ - 01408nas 2200409 i 450 + 00000nas 2200409 i 450 039556824 0000005673 20131015144629.0 @@ -227436,7 +227436,7 @@ - 01277nas 2200349 i 450 + 00000nas 2200349 i 450 004386892 0000244275 20130319051832.0 @@ -227531,7 +227531,7 @@ - 00960nas 2200313 i 450 + 00000nas 2200313 i 450 039581543 0000042672 20130319051832.0 @@ -227615,7 +227615,7 @@ - 00903nls 2200289 i 450 + 00000nls 2200289 i 450 0000969202 0000969202 20130319051832.0 @@ -227687,7 +227687,7 @@ - 00858nls 2200277 i 450 + 00000nls 2200277 i 450 0000969205 0000969205 20130319051832.0 @@ -227753,7 +227753,7 @@ - 01392cas0 2200397 450 + 00000cas0 2200397 450 082391165 0000794168 20130319051832.0 @@ -227861,7 +227861,7 @@ - 00831nls 2200277 i 450 + 00000nls 2200277 i 450 0000969204 0000969204 20130319051832.0 @@ -227927,7 +227927,7 @@ - 00881nls 2200277 i 450 + 00000nls 2200277 i 450 0000969207 0000969207 20130319051832.0 @@ -227993,7 +227993,7 @@ - 01710cas0 2200421 450 + 00000cas0 2200421 450 03787585X 0001084132 20130319051832.0 @@ -228113,7 +228113,7 @@ - 01166cas0 2200361 450 + 00000cas0 2200361 450 038752719 0001084164 20130319051832.0 @@ -228211,7 +228211,7 @@ - 01155nas 2200361 i 450 + 00000nas 2200361 i 450 079535240 0000594996 20130319051832.0 @@ -228306,7 +228306,7 @@ - 00811nas 2200301 i 450 + 00000nas 2200301 i 450 038786974 0000042719 20140109161348.0 @@ -228382,7 +228382,7 @@ - 01113nas 2200301 i 450 + 00000nas 2200301 i 450 039228967 0000047918 20130319051832.0 @@ -228461,7 +228461,7 @@ - 01653cas0 2200433 450 + 00000cas0 2200433 450 037457861 0001109368 20130319051832.0 @@ -228594,7 +228594,7 @@ - 01182nas 2200361 i 450 + 00000nas 2200361 i 450 045328307 0000005693 20140113094212.0 @@ -228693,7 +228693,7 @@ - 00912nls 2200289 i 450 + 00000nls 2200289 i 450 0001147911 0001147911 20130319051832.0 @@ -228761,7 +228761,7 @@ - 00946cas0 2200277 450 + 00000cas0 2200277 450 039167461 0001045085 20130319051833.0 @@ -228837,7 +228837,7 @@ - 00951nas 2200313 i 450 + 00000nas 2200313 i 450 039648656 0000048137 20130319051833.0 @@ -228916,7 +228916,7 @@ - 00921nas 2200301 i 450 + 00000nas 2200301 i 450 036555096 0000058344 20130319051833.0 @@ -228992,7 +228992,7 @@ - 01104nas 2200337 i 450 + 00000nas 2200337 i 450 03655507X 0000090322 20130319051833.0 @@ -229081,7 +229081,7 @@ - 01280cas0 2200349 450 + 00000cas0 2200349 450 037447874 0001084121 20130319051833.0 @@ -229180,7 +229180,7 @@ - 01172nas 2200361 i 450 + 00000nas 2200361 i 450 039738264 0000576053 20130319051833.0 @@ -229277,7 +229277,7 @@ - 00989nas 2200337 i 450 + 00000nas 2200337 i 450 059383437 0000421927 20130530155653.0 @@ -229362,7 +229362,7 @@ - 00936nas 2200325 i 450 + 00000nas 2200325 i 450 059383054 0000421926 20130530155407.0 @@ -229447,7 +229447,7 @@ - 01195cas0 2200373 450 + 00000cas0 2200373 450 044760515 0001132763 20130319051833.0 @@ -229544,7 +229544,7 @@ - 01172cas0 2200373 450 + 00000cas0 2200373 450 036253286 0000794140 20130319051833.0 @@ -229647,7 +229647,7 @@ - 01015nas 2200313 i 450 + 00000nas 2200313 i 450 1152-9253 0000017595 20140114101318.0 @@ -229728,7 +229728,7 @@ - 01097cas0 2200361 450 + 00000cas0 2200361 450 075929996 0000745745 20130319051834.0 @@ -229824,7 +229824,7 @@ - 00736nas 2200277 i 450 + 00000nas 2200277 i 450 039229092 0000043227 20130319051834.0 @@ -229892,7 +229892,7 @@ - 01000nas 2200277 i 450 + 00000nas 2200277 i 450 038788225 0000043092 20130319051834.0 @@ -229963,7 +229963,7 @@ - 01009nas 2200301 i 450 + 00000nas 2200301 i 450 036253308 0000093490 20130319051834.0 @@ -230040,7 +230040,7 @@ - 01032cas0 2200325 450 + 00000cas0 2200325 450 070103186 0001180968 20130319051834.0 @@ -230123,7 +230123,7 @@ - 00879nas 2200301 i 450 + 00000nas 2200301 i 450 038831465 0000043108 20131029115938.0 @@ -230200,7 +230200,7 @@ - 01008nas 2200301 450 + 00000nas 2200301 450 090054059 0000046559 20130319051834.0 @@ -230281,7 +230281,7 @@ - 00956nls 2200289 i 450 + 00000nls 2200289 i 450 0001145138 0001145138 20130319051836.0 @@ -230348,7 +230348,7 @@ - 01009nas 2200313 i 450 + 00000nas 2200313 i 450 039229130 0000067404 20131029105135.0 @@ -230431,7 +230431,7 @@ - 01342nas 2200349 i 450 + 00000nas 2200349 i 450 038788977 0000043130 20130319051836.0 @@ -230524,7 +230524,7 @@ - 01078nas 2200337 i 450 + 00000nas 2200337 i 450 061054763 0000467828 20130319051837.0 @@ -230612,7 +230612,7 @@ - 01197nas 2200349 i 450 + 00000nas 2200349 i 450 061056901 0000462489 20130319051837.0 @@ -230706,7 +230706,7 @@ - 00970nas 2200289 i 450 + 00000nas 2200289 i 450 039895335 0000059582 20140110143155.0 @@ -230778,7 +230778,7 @@ - 01390nas 2200373 i 450 + 00000nas 2200373 i 450 039398528 0000043234 20130319051837.0 @@ -230874,7 +230874,7 @@ - 01222cas0 2200385 450 + 00000cas0 2200385 450 077583361 0001067851 20130319051838.0 @@ -230978,7 +230978,7 @@ - 01251nas 2200337 i 450 + 00000nas 2200337 i 450 040102033 0000084059 20130319051838.0 @@ -231062,7 +231062,7 @@ - 01309nas 2200361 i 450 + 00000nas 2200361 i 450 038789906 0000048314 20131202115444.0 @@ -231153,7 +231153,7 @@ - 01118nas0 2200325 450 + 00000nas0 2200325 450 117681407 0001111564 20130319051840.0 @@ -231240,7 +231240,7 @@ - 01001nas0 2200313 450 + 00000nas0 2200313 450 11768645X 0001111578 20130319051840.0 @@ -231322,7 +231322,7 @@ - 01312cas0 2200397 450 + 00000cas0 2200397 450 094684758 0000919196 20130319051840.0 @@ -231432,7 +231432,7 @@ - 01511nas 2200349 i 450 + 00000nas 2200349 i 450 03879019X 0000110620 20130725120156.0 @@ -231523,7 +231523,7 @@ - 01559nas 2200385 i 450 + 00000nas 2200385 i 450 123194377 0000677747 20130319051840.0 @@ -231624,7 +231624,7 @@ - 01270cas0 2200397 450 + 00000cas0 2200397 450 090231546 0001138410 20130319051840.0 @@ -231735,7 +231735,7 @@ - 01268nas 2200325 i 450 + 00000nas 2200325 i 450 03879067X 0000041274 20131119114843.0 @@ -231818,7 +231818,7 @@ - 01176nas 2200349 i 450 + 00000nas 2200349 i 450 039873099 0000172376 20130823115656.0 @@ -231913,7 +231913,7 @@ - 01136cas0 2200373 450 + 00000cas0 2200373 450 119524422 0001132947 20130319051842.0 @@ -232015,7 +232015,7 @@ - 01445nas 2200361 i 450 + 00000nas 2200361 i 450 002660350 0000041296 20131202120018.0 @@ -232108,7 +232108,7 @@ - 01198nas 2200337 i 450 + 00000nas 2200337 i 450 002936410 0000041295 20130703145007.0 @@ -232200,7 +232200,7 @@ - 00935nas 2200313 i 450 + 00000nas 2200313 i 450 056714157 0000404302 20130319051842.0 @@ -232277,7 +232277,7 @@ - 01021nls 2200325 i 450 + 00000nls 2200325 i 450 0000617367 0000617367 20130319051842.0 @@ -232357,7 +232357,7 @@ - 01383nas 2200385 i 450 + 00000nas 2200385 i 450 058226486 0000595138 20140115104920.0 @@ -232461,7 +232461,7 @@ - 01301nas 2200349 i 450 + 00000nas 2200349 i 450 037082426 0000171367 20131220102821.0 @@ -232551,7 +232551,7 @@ - 01037nas 2200325 i 450 + 00000nas 2200325 i 450 039563847 0000047262 20130319051843.0 @@ -232633,7 +232633,7 @@ - 00825nas 2200241 i 450 + 00000nas 2200241 i 450 039992209 0000014906 20130319051843.0 @@ -232690,7 +232690,7 @@ - 01484nas 2200361 i 450 + 00000nas 2200361 i 450 039105628 0000005277 20130319051843.0 @@ -232788,7 +232788,7 @@ - 00976nas 2200325 i 450 + 00000nas 2200325 i 450 038792206 0000041688 20130319051843.0 @@ -232871,7 +232871,7 @@ - 01608cas0 2200433 450 + 00000cas0 2200433 450 038591480 0001094593 20130319051843.0 @@ -232989,7 +232989,7 @@ - 01346nas 2200361 i 450 + 00000nas 2200361 i 450 039875830 0000034920 20130319051843.0 @@ -233086,7 +233086,7 @@ - 00932nas 2200313 i 450 + 00000nas 2200313 i 450 040224813 0000087258 20130319051843.0 @@ -233163,7 +233163,7 @@ - 01170nas 2200337 i 450 + 00000nas 2200337 i 450 0001227071 0001227071 20130319051843.0 @@ -233252,7 +233252,7 @@ - 01002nas 2200301 i 450 + 00000nas 2200301 i 450 0000258869 0000258869 20130319051843.0 @@ -233330,7 +233330,7 @@ - 01115nas 2200301 i 450 + 00000nas 2200301 i 450 039461920 0000041944 20130319051843.0 @@ -233407,7 +233407,7 @@ - 01036cas 2200337 i 450 + 00000cas 2200337 i 450 038792435 0000041994 20130930152113.0 @@ -233499,7 +233499,7 @@ - 01346nas 2200361 i 450 + 00000nas 2200361 i 450 038792559 0000041940 20131202120225.0 @@ -233594,7 +233594,7 @@ - 01506cas0 2200349 450 + 00000cas0 2200349 450 038761203 0001085599 20130319051843.0 @@ -233692,7 +233692,7 @@ - 01201nas0 2200361 450 + 00000nas0 2200361 450 135944600 0001184586 20130319051845.0 @@ -233791,7 +233791,7 @@ - 01073nas0 2200349 450 + 00000nas0 2200349 450 120569442 0001127315 20130319051845.0 @@ -233884,7 +233884,7 @@ - 01159nas 2200337 i 450 + 00000nas 2200337 i 450 0000552768 0000552768 20130319051845.0 @@ -233970,7 +233970,7 @@ - 01454cas0 2200421 450 + 00000cas0 2200421 450 13908987X 0001231555 20130319051845.0 @@ -234087,7 +234087,7 @@ - 01032nas 2200313 i 450 + 00000nas 2200313 i 450 040101819 0000077214 20140110160551.0 @@ -234166,7 +234166,7 @@ - 00987nas 2200301 i 450 + 00000nas 2200301 i 450 040098567 0000096053 20130319051846.0 @@ -234242,7 +234242,7 @@ - 00979nls 2200289 i 450 + 00000nls 2200289 i 450 0000977517 0000977517 20130319051846.0 @@ -234316,7 +234316,7 @@ - 01266nas 2200361 i 450 + 00000nas 2200361 i 450 039373126 0000005362 20130319051846.0 @@ -234417,7 +234417,7 @@ - 00919nls 2200301 i 450 + 00000nls 2200301 i 450 0000977515 0000977515 20130319051846.0 @@ -234490,7 +234490,7 @@ - 01194nas 2200313 i 450 + 00000nas 2200313 i 450 040609502 0000236963 20130319051846.0 @@ -234570,7 +234570,7 @@ - 00851nls 2200277 i 450 + 00000nls 2200277 i 450 0000977516 0000977516 20130319051846.0 @@ -234637,7 +234637,7 @@ - 01326nas0 2200373 450 + 00000nas0 2200373 450 118106910 0001133922 20130319051847.0 @@ -234744,7 +234744,7 @@ - 01210nas 2200361 i 450 + 00000nas 2200361 i 450 080063497 0000691876 20130523105137.0 @@ -234836,7 +234836,7 @@ - 00985nas 2200289 i 450 + 00000nas 2200289 i 450 0000047379 0000047379 20130319051847.0 @@ -234908,7 +234908,7 @@ - 00988nas 2200313 i 450 + 00000nas 2200313 i 450 040004244 0000059970 20131028142127.0 @@ -234989,7 +234989,7 @@ - 01163cas0 2200373 450 + 00000cas0 2200373 450 096353279 0001078392 20130319051848.0 @@ -235089,7 +235089,7 @@ - 01147nas 2200361 i 450 + 00000nas 2200361 i 450 078577128 0000621664 20130319051848.0 @@ -235182,7 +235182,7 @@ - 01058cas0 2200361 450 + 00000cas0 2200361 450 037423061 0001219295 20130319051848.0 @@ -235276,7 +235276,7 @@ - 01189cas0 2200373 450 + 00000cas0 2200373 450 089746325 0001190301 20131112160644.0 @@ -235379,7 +235379,7 @@ - 01069cas0 2200361 450 + 00000cas0 2200361 450 077582268 0001083878 20130319051849.0 @@ -235477,7 +235477,7 @@ - 01181cas0 2200373 450 + 00000cas0 2200373 450 036750050 0001132762 20130319051849.0 @@ -235578,7 +235578,7 @@ - 01046nas 2200313 i 450 + 00000nas 2200313 i 450 0000329295 0000329295 20130319051849.0 @@ -235660,7 +235660,7 @@ - 01160nas 2200301 i 450 + 00000nas 2200301 i 450 03896340X 0000041949 20130920144136.0 @@ -235741,7 +235741,7 @@ - 01380nas 2200349 i 450 + 00000nas 2200349 i 450 040266702 0000007082 20130319051850.0 @@ -235829,7 +235829,7 @@ - 01092nls 2200337 i 450 + 00000nls 2200337 i 450 0001046990 0001046990 20130319051850.0 @@ -235913,7 +235913,7 @@ - 01084nas 2200289 i 450 + 00000nas 2200289 i 450 039203271 0000010839 20130319051850.0 @@ -235988,7 +235988,7 @@ - 00895nls 2200301 450 + 00000nls 2200301 450 0000756429 0000756429 20130827154118.0 @@ -236060,7 +236060,7 @@ - 01170nas 2200361 i 450 + 00000nas 2200361 i 450 040082709 0000004971 20131202172833.0 @@ -236157,7 +236157,7 @@ - 01414nas 2200349 i 450 + 00000nas 2200349 i 450 039189295 0000069490 20130904112404.0 @@ -236252,7 +236252,7 @@ - 01285nls 2200337 i 450 + 00000nls 2200337 i 450 0000314400 0000314400 20130319051850.0 @@ -236341,7 +236341,7 @@ - 00849nas 2200277 i 450 + 00000nas 2200277 i 450 0000134059 0000134059 20130319051850.0 @@ -236410,7 +236410,7 @@ - 01324nas 2200349 i 450 + 00000nas 2200349 i 450 039241742 0000120801 20131018115244.0 @@ -236506,7 +236506,7 @@ - 01529nas 2200385 i 450 + 00000nas 2200385 i 450 038794586 0000042401 20140108104938.0 @@ -236606,7 +236606,7 @@ - 01247nas 2200349 i 450 + 00000nas 2200349 i 450 038724332 0000042418 20130319051851.0 @@ -236697,7 +236697,7 @@ - 01136nas 2200325 i 450 + 00000nas 2200325 i 450 0000613877 0000613877 20130319051851.0 @@ -236783,7 +236783,7 @@ - 01072nas 2200337 i 450 + 00000nas 2200337 i 450 039305716 0000046694 20130319051851.0 @@ -236868,7 +236868,7 @@ - 01247nas 2200373 i 450 + 00000nas 2200373 i 450 037392379 0000082643 20140110161308.0 @@ -236966,7 +236966,7 @@ - 01091nas 2200313 i 450 + 00000nas 2200313 i 450 040099326 0000196768 20130319051852.0 @@ -237042,7 +237042,7 @@ - 01591nas 2200385 i 450 + 00000nas 2200385 i 450 038795000 0000042385 20140109172008.0 @@ -237150,7 +237150,7 @@ - 01066nas 2200313 i 450 + 00000nas 2200313 i 450 039261697 0000042378 20130319051852.0 @@ -237229,7 +237229,7 @@ - 01514nas 2200337 i 450 + 00000nas 2200337 i 450 038795051 0000047528 20130319051852.0 @@ -237320,7 +237320,7 @@ - 01479nas 2200373 i 450 + 00000nas 2200373 i 450 036737690 0000154659 20130319051852.0 @@ -237418,7 +237418,7 @@ - 01016nas 2200301 i 450 + 00000nas 2200301 i 450 040260283 0000014985 20130319051852.0 @@ -237494,7 +237494,7 @@ - 01177nas 2200325 i 450 + 00000nas 2200325 i 450 067778429 0000488635 20130319051853.0 @@ -237579,7 +237579,7 @@ - 01056nas 2200301 i 450 + 00000nas 2200301 i 450 07679136X 0000577748 20130319051853.0 @@ -237654,7 +237654,7 @@ - 00755nas 2200253 i 450 + 00000nas 2200253 i 450 040313492 0000231515 20130319051853.0 @@ -237715,7 +237715,7 @@ - 01337nas 2200337 i 450 + 00000nas 2200337 i 450 038795124 0000043381 20130319051853.0 @@ -237803,7 +237803,7 @@ - 01174nas 2200301 i 450 + 00000nas 2200301 i 450 039141748 0000043485 20130319051853.0 @@ -237876,7 +237876,7 @@ - 01292nas 2200313 i 450 + 00000nas 2200313 i 450 038795175 0000047486 20131025111523.0 @@ -237955,7 +237955,7 @@ - 01084nas 2200313 i 450 + 00000nas 2200313 i 450 039087654 0000043320 20130319051853.0 @@ -238033,7 +238033,7 @@ - 01327nas 2200361 i 450 + 00000nas 2200361 i 450 039641899 0000043390 20130319051853.0 @@ -238130,7 +238130,7 @@ - 00949nas 2200301 i 450 + 00000nas 2200301 i 450 044837879 0000255377 20130319051853.0 @@ -238206,7 +238206,7 @@ - 01018nas 2200289 i 450 + 00000nas 2200289 i 450 038799944 0000043350 20130319051853.0 @@ -238278,7 +238278,7 @@ - 01170nas 2200325 i 450 + 00000nas 2200325 i 450 039257770 0000047526 20140108152637.0 @@ -238362,7 +238362,7 @@ - 01617nas 2200337 i 450 + 00000nas 2200337 i 450 036426830 0000043468 20130319051853.0 @@ -238448,7 +238448,7 @@ - 01143nas 2200313 i 450 + 00000nas 2200313 i 450 039396304 0000161654 20130319051853.0 @@ -238527,7 +238527,7 @@ - 00869nas 2200301 i 450 + 00000nas 2200301 i 450 074394770 0000594976 20130319051853.0 @@ -238600,7 +238600,7 @@ - 01075nas 2200301 i 450 + 00000nas 2200301 i 450 038795256 0000043337 20130528171822.0 @@ -238678,7 +238678,7 @@ - 00833nas 2200289 i 450 + 00000nas 2200289 i 450 0000119636 0000119636 20130319051854.0 @@ -238749,7 +238749,7 @@ - 01232cas0 2200361 450 + 00000cas0 2200361 450 125010923 0001145079 20130319051854.0 @@ -238849,7 +238849,7 @@ - 01396nas 2200301 i 450 + 00000nas 2200301 i 450 039976912 0000043318 20131011161016.0 @@ -238932,7 +238932,7 @@ - 00793nas 2200289 i 450 + 00000nas 2200289 i 450 038877821 0000131776 20130319051854.0 @@ -239006,7 +239006,7 @@ - 00975nas 2200313 i 450 + 00000nas 2200313 i 450 050893270 0000287757 20130319051854.0 @@ -239085,7 +239085,7 @@ - 01055cas0 2200289 450 + 00000cas0 2200289 450 038459752 0001093432 20130319051854.0 @@ -239163,7 +239163,7 @@ - 01034nas 2200301 i 450 + 00000nas 2200301 i 450 039745805 0000043589 20131007120302.0 @@ -239246,7 +239246,7 @@ - 01142nas 2200337 i 450 + 00000nas 2200337 i 450 001600028 0000009315 20131209092239.0 @@ -239338,7 +239338,7 @@ - 01180nas 2200301 i 450 + 00000nas 2200301 i 450 040389936 0000276947 20130919122953.0 @@ -239420,7 +239420,7 @@ - 01187nas 2200349 i 450 + 00000nas 2200349 i 450 039091988 0000043594 20130319051854.0 @@ -239515,7 +239515,7 @@ - 01180cas0 2200373 450 + 00000cas0 2200373 450 168120127 0001242979 20140103172445.0 @@ -239615,7 +239615,7 @@ - 01072nas 2200325 i 450 + 00000nas 2200325 i 450 074953648 0000575570 20130319051855.0 @@ -239699,7 +239699,7 @@ - 01066nas 2200313 i 450 + 00000nas 2200313 i 450 038797690 0000043725 20130319051855.0 @@ -239783,7 +239783,7 @@ - 01417nas 2200349 i 450 + 00000nas 2200349 i 450 038797739 0000043717 20130319051855.0 @@ -239871,7 +239871,7 @@ - 01503nas 2200397 i 450 + 00000nas 2200397 i 450 036427640 0000043699 20130319051855.0 @@ -239984,7 +239984,7 @@ - 01238nas 2200325 i 450 + 00000nas 2200325 i 450 038797801 0000043661 20130319051855.0 @@ -240063,7 +240063,7 @@ - 01259nas 2200325 i 450 + 00000nas 2200325 i 450 0000140237 0000140237 20130319051855.0 @@ -240143,7 +240143,7 @@ - 01254nas 2200337 i 450 + 00000nas 2200337 i 450 039691705 0000043640 20130319051855.0 @@ -240228,7 +240228,7 @@ - 01015nas 2200313 i 450 + 00000nas 2200313 i 450 03879781X 0000047488 20130319051855.0 @@ -240306,7 +240306,7 @@ - 01315nas 2200337 i 450 + 00000nas 2200337 i 450 038797828 0000043596 20130319051855.0 @@ -240393,7 +240393,7 @@ - 01019nas 2200325 i 450 + 00000nas 2200325 i 450 039049760 0000043745 20130319051855.0 @@ -240478,7 +240478,7 @@ - 01113cas0 2200349 450 + 00000cas0 2200349 450 145447901 0001190140 20130319051855.0 @@ -240568,7 +240568,7 @@ - 01007nas 2200325 i 450 + 00000nas 2200325 i 450 038797844 0000043867 20130319051856.0 @@ -240651,7 +240651,7 @@ - 01565nas 2200421 i 450 + 00000nas 2200421 i 450 045103240 0000385026 20130902115034.0 @@ -240773,7 +240773,7 @@ - 01021cas0 2200337 450 + 00000cas0 2200337 450 036918512 0001116055 20130319051856.0 @@ -240862,7 +240862,7 @@ - 01279nas 2200337 i 450 + 00000nas 2200337 i 450 03879795X 0000043871 20130319051856.0 @@ -240948,7 +240948,7 @@ - 01208nas 2200301 i 450 + 00000nas 2200301 i 450 040305740 0000096864 20130319051856.0 @@ -241021,7 +241021,7 @@ - 00757nas 2200265 i 450 + 00000nas 2200265 i 450 0000071543 0000071543 20130319051856.0 @@ -241085,7 +241085,7 @@ - 01023nls 2200337 i 450 + 00000nls 2200337 i 450 0000432324 0000432324 20130319051856.0 @@ -241166,7 +241166,7 @@ - 01038cas0 2200349 450 + 00000cas0 2200349 450 116930454 0001131735 20130319051857.0 @@ -241256,7 +241256,7 @@ - 00903nas 2200325 i 450 + 00000nas 2200325 i 450 0000367234 0000367234 20130319051858.0 @@ -241337,7 +241337,7 @@ - 01490cas0 2200409 450 + 00000cas0 2200409 450 037403958 0001203123 20130319051858.0 @@ -241445,7 +241445,7 @@ - 01060nas 2200337 i 450 + 00000nas 2200337 i 450 039300625 0000043836 20130319051858.0 @@ -241533,7 +241533,7 @@ - 01189nas 2200337 i 450 + 00000nas 2200337 i 450 037407864 0000137578 20130319051858.0 @@ -241620,7 +241620,7 @@ - 01429nas 2200349 i 450 + 00000nas 2200349 i 450 036749036 0000213383 20140108102956.0 @@ -241707,7 +241707,7 @@ - 01177nas 2200313 i 450 + 00000nas 2200313 i 450 039374777 0000044222 20130319051859.0 @@ -241785,7 +241785,7 @@ - 01082nas 2200301 i 450 + 00000nas 2200301 i 450 03649416X 0000046746 20130319051859.0 @@ -241861,7 +241861,7 @@ - 01467nas 2200409 i 450 + 00000nas 2200409 i 450 036495352 0000044023 20130319051859.0 @@ -241972,7 +241972,7 @@ - 01015nas 2200301 i 450 + 00000nas 2200301 i 450 036743046 0000231866 20130319051900.0 @@ -242046,7 +242046,7 @@ - 02392cas0 2200385 450 + 00000cas0 2200385 450 038085534 0001120061 20130319051901.0 @@ -242152,7 +242152,7 @@ - 02050cas0 2200385 450 + 00000cas0 2200385 450 039181766 0001120062 20130422130202.0 @@ -242256,7 +242256,7 @@ - 00943nas 2200289 i 450 + 00000nas 2200289 i 450 0000037705 0000037705 20130319051901.0 @@ -242330,7 +242330,7 @@ - 01127nas 2200325 i 450 + 00000nas 2200325 i 450 038801086 0000044252 20130319051901.0 @@ -242417,7 +242417,7 @@ - 01371nas 2200349 i 450 + 00000nas 2200349 i 450 038728281 0000005705 20130319051902.0 @@ -242511,7 +242511,7 @@ - 01197nls 2200349 i 450 + 00000nls 2200349 i 450 0000801861 0000801861 20130319051902.0 @@ -242595,7 +242595,7 @@ - 01058nas 2200301 i 450 + 00000nas 2200301 i 450 039102009 0000060716 20130402120115.0 @@ -242674,7 +242674,7 @@ - 01187nls 2200313 i 450 + 00000nls 2200313 i 450 0001239018 0001239018 20130319051903.0 @@ -242754,7 +242754,7 @@ - 01070nas 2200361 i 450 + 00000nas 2200361 i 450 039980707 0000615588 20130319051903.0 @@ -242850,7 +242850,7 @@ - 01145nas0 2200349 450 + 00000nas0 2200349 450 127660577 0001152760 20130528122628.0 @@ -242940,7 +242940,7 @@ - 00817nls 2200265 i 450 + 00000nls 2200265 i 450 0001244840 20130528114037.0 @@ -243007,7 +243007,7 @@ - 01153cas0 2200337 450 + 00000cas0 2200337 450 058777601 0001114154 20130319051903.0 @@ -243100,7 +243100,7 @@ - 01043nas 2200301 i 450 + 00000nas 2200301 i 450 039245853 0000050328 20131008173119.0 @@ -243177,7 +243177,7 @@ - 01114nas 2200289 i 450 + 00000nas 2200289 i 450 038857723 0000080480 20130521144611.0 @@ -243249,7 +243249,7 @@ - 01042nls 2200301 i 450 + 00000nls 2200301 i 450 0001241172 0001241172 20130319051904.0 @@ -243323,7 +243323,7 @@ - 01087nas 2200337 i 450 + 00000nas 2200337 i 450 038879417 0000078259 20130425121315.0 @@ -243410,7 +243410,7 @@ - 00910nls 2200289 i 450 + 00000nls 2200289 i 450 0001243395 20130522152603.0 @@ -243484,7 +243484,7 @@ - 01200nas 2200325 i 450 + 00000nas 2200325 i 450 038879433 0000083180 20130426094343.0 @@ -243571,7 +243571,7 @@ - 00827nls 2200265 i 450 + 00000nls 2200265 i 450 0001243560 20130522153355.0 @@ -243640,7 +243640,7 @@ - 01341cas0 2200361 450 + 00000cas0 2200361 450 077151208 0001147868 20130319051904.0 @@ -243738,7 +243738,7 @@ - 00995nas 2200313 i 450 + 00000nas 2200313 i 450 036433950 0000101645 20130903170900.0 @@ -243820,7 +243820,7 @@ - 01010nas 2200313 i 450 + 00000nas 2200313 i 450 0000448359 0000448359 20130319051904.0 @@ -243902,7 +243902,7 @@ - 00980nas 2200301 i 450 + 00000nas 2200301 i 450 038883317 0000005426 20131219142514.0 @@ -243984,7 +243984,7 @@ - 01017nas 2200301 i 450 + 00000nas 2200301 i 450 036434264 0000080564 20140107120311.0 @@ -244063,7 +244063,7 @@ - 01453nas 2200373 i 450 + 00000nas 2200373 i 450 039252035 0000157214 20130319051904.0 @@ -244166,7 +244166,7 @@ - 00892nas 2200301 i 450 + 00000nas 2200301 i 450 059239387 0000680500 20130319051904.0 @@ -244243,7 +244243,7 @@ - 01011nas 2200301 i 450 + 00000nas 2200301 i 450 039373584 0000163881 20130319051904.0 @@ -244323,7 +244323,7 @@ - 01111nas 2200301 i 450 + 00000nas 2200301 i 450 039286096 0000090440 20131120100705.0 @@ -244400,7 +244400,7 @@ - 00885nls 2200253 i 450 + 00000nls 2200253 i 450 0001244892 20130529154828.0 @@ -244464,7 +244464,7 @@ - 01053nls 2200301 i 450 + 00000nls 2200301 i 450 0000491582 0000491582 20130319051904.0 @@ -244536,7 +244536,7 @@ - 00974nas 2200301 i 450 + 00000nas 2200301 i 450 0000286122 0000286122 20130319051904.0 @@ -244613,7 +244613,7 @@ - 01111cas0 2200313 450 + 00000cas0 2200313 450 036815748 0001080774 20130319051904.0 @@ -244699,7 +244699,7 @@ - 01736cas0 2200337 450 + 00000cas0 2200337 450 039098958 0001081138 20130319051904.0 @@ -244787,7 +244787,7 @@ - 01997cas0 2200409 450 + 00000cas0 2200409 450 050927140 0001075580 20130319051904.0 @@ -244906,7 +244906,7 @@ - 01433cas0 2200409 450 + 00000cas0 2200409 450 07782167X 0001137935 20131008150025.0 @@ -245019,7 +245019,7 @@ - 02127cas0 2200457 450 + 00000cas0 2200457 450 039174212 0001126421 20130319051904.0 @@ -245149,7 +245149,7 @@ - 01477cas0 2200409 450 + 00000cas0 2200409 450 04006350X 0001198686 20130827111146.0 @@ -245261,7 +245261,7 @@ - 01179nas 2200325 i 450 + 00000nas 2200325 i 450 038849143 0000082592 20140107120958.0 @@ -245349,7 +245349,7 @@ - 01007nas 2200325 i 450 + 00000nas 2200325 i 450 039552268 0000078269 20130319051904.0 @@ -245436,7 +245436,7 @@ - 01090nas 2200325 i 450 + 00000nas 2200325 i 450 000901148 0000078449 20131119161802.0 @@ -245527,7 +245527,7 @@ - 00763nas 2200277 i 450 + 00000nas 2200277 i 450 039592227 0000044224 20140106161226.0 @@ -245595,7 +245595,7 @@ - 00831nas 2200289 i 450 + 00000nas 2200289 i 450 039084981 0000222379 20130319051904.0 @@ -245666,7 +245666,7 @@ - 01275nas 2200349 i 450 + 00000nas 2200349 i 450 064228878 0000044250 20131002164656.0 @@ -245756,7 +245756,7 @@ - 01188nas 2200301 i 450 + 00000nas 2200301 i 450 040105679 0000044336 20131121123201.0 @@ -245834,7 +245834,7 @@ - 01080nas 2200301 i 450 + 00000nas 2200301 i 450 039081818 0000463981 20130319051905.0 @@ -245908,7 +245908,7 @@ - 01217nas 2200301 i 450 + 00000nas 2200301 i 450 039617661 0000100150 20131018092442.0 @@ -245987,7 +245987,7 @@ - 01327nas 2200337 i 450 + 00000nas 2200337 i 450 013741012 0000005473 20130319051906.0 @@ -246079,7 +246079,7 @@ - 01315nas 2200385 i 450 + 00000nas 2200385 i 450 039351610 0000005466 20130319051906.0 @@ -246181,7 +246181,7 @@ - 01193nas 2200361 i 450 + 00000nas 2200361 i 450 038802775 0000044616 20130709172114.0 @@ -246274,7 +246274,7 @@ - 01245nas 2200349 i 450 + 00000nas 2200349 i 450 039720209 0000044604 20130319051907.0 @@ -246370,7 +246370,7 @@ - 01163nas 2200313 i 450 + 00000nas 2200313 i 450 040003302 0000081670 20131003170703.0 @@ -246452,7 +246452,7 @@ - 01298nas 2200301 i 450 + 00000nas 2200301 i 450 038803496 0000044645 20130607113906.0 @@ -246532,7 +246532,7 @@ - 01831nas 2200433 i 450 + 00000nas 2200433 i 450 040282953 0000063334 20131220102941.0 @@ -246647,7 +246647,7 @@ - 00987nas 2200313 i 450 + 00000nas 2200313 i 450 03739827X 0000097464 20130319051907.0 @@ -246727,7 +246727,7 @@ - 01023nas 2200289 i 450 + 00000nas 2200289 i 450 038803550 0000044610 20130319051907.0 @@ -246801,7 +246801,7 @@ - 01883cas0 2200445 450 + 00000cas0 2200445 450 038803577 0001206755 20130319051907.0 @@ -246924,7 +246924,7 @@ - 00911nas 2200301 i 450 + 00000nas 2200301 i 450 039672727 0000044333 20130319051907.0 @@ -247003,7 +247003,7 @@ - 01053nas 2200325 i 450 + 00000nas 2200325 i 450 036441430 0000009469 20130319051907.0 @@ -247088,7 +247088,7 @@ - 01113cas0 2200349 450 + 00000cas0 2200349 450 039685624 0001149454 20130319051908.0 @@ -247181,7 +247181,7 @@ - 01161nas 2200361 i 450 + 00000nas 2200361 i 450 039685039 0000044699 20130319051908.0 @@ -247277,7 +247277,7 @@ - 01159nas 2200349 i 450 + 00000nas 2200349 i 450 039463443 0000075824 20130319051908.0 @@ -247371,7 +247371,7 @@ - 00936nls 2200289 i 450 + 00000nls 2200289 i 450 0001145139 0001145139 20130319051908.0 @@ -247437,7 +247437,7 @@ - 01229nls 2200301 i 450 + 00000nls 2200301 i 450 0000491572 0000491572 20130319051909.0 @@ -247511,7 +247511,7 @@ - 01086nas 2200313 i 450 + 00000nas 2200313 i 450 038880563 0000105817 20130319051909.0 @@ -247596,7 +247596,7 @@ - 01261cas0 2200361 450 + 00000cas0 2200361 450 169283542 0001245377 20140115165438.0 @@ -247697,7 +247697,7 @@ - 01331nas 2200337 i 450 + 00000nas 2200337 i 450 0000005476 0000005476 20130319051910.0 @@ -247787,7 +247787,7 @@ - 01055nas 2200289 i 450 + 00000nas 2200289 i 450 039277364 0000159845 20140108154728.0 @@ -247858,7 +247858,7 @@ - 01071nas 2200325 i 450 + 00000nas 2200325 i 450 078546257 0000528567 20130319051910.0 @@ -247942,7 +247942,7 @@ - 01561nas 2200397 i 450 + 00000nas 2200397 i 450 038804492 0000044627 20130319051910.0 @@ -248050,7 +248050,7 @@ - 01153nas 2200349 i 450 + 00000nas 2200349 i 450 044730217 0000054255 20131016164556.0 @@ -248145,7 +248145,7 @@ - 01001nas 2200301 i 450 + 00000nas 2200301 i 450 038804883 0000046127 20140109163311.0 @@ -248226,7 +248226,7 @@ - 01127cas0 2200313 450 + 00000cas0 2200313 450 036503924 0001083703 20130319051910.0 @@ -248306,7 +248306,7 @@ - 01011nas 2200301 i 450 + 00000nas 2200301 i 450 040145158 0000044330 20130911162245.0 @@ -248383,7 +248383,7 @@ - 01146nls 2200337 i 450 + 00000nls 2200337 i 450 0000622049 0000622049 20130319051911.0 @@ -248468,7 +248468,7 @@ - 00966nas 2200265 i 450 + 00000nas 2200265 i 450 053567986 0000159740 20130319051912.0 @@ -248534,7 +248534,7 @@ - 00959nas 2200277 i 450 + 00000nas 2200277 i 450 040409082 0000219301 20130319051912.0 @@ -248600,7 +248600,7 @@ - 01819nas 2200373 i 450 + 00000nas 2200373 i 450 048858781 0000432640 20130618144526.0 @@ -248702,7 +248702,7 @@ - 01370nas 2200373 i 450 + 00000nas 2200373 i 450 036646598 0000113733 20130319051912.0 @@ -248805,7 +248805,7 @@ - 01098nas 2200313 i 450 + 00000nas 2200313 i 450 039785203 0000090495 20130319051912.0 @@ -248888,7 +248888,7 @@ - 00999nas 2200301 i 450 + 00000nas 2200301 i 450 039819116 0000106367 20130319051912.0 @@ -248967,7 +248967,7 @@ - 01327nas 2200349 i 450 + 00000nas 2200349 i 450 040406369 0000177394 20130319051912.0 @@ -249062,7 +249062,7 @@ - 01027nas 2200313 i 450 + 00000nas 2200313 i 450 059483415 0000050433 20130319051912.0 @@ -249145,7 +249145,7 @@ - 01219nas 2200337 i 450 + 00000nas 2200337 i 450 039812227 0000107442 20130319051912.0 @@ -249235,7 +249235,7 @@ - 01253nas 2200361 i 450 + 00000nas 2200361 i 450 003936902 0000004960 20130319051912.0 @@ -249335,7 +249335,7 @@ - 01188nas 2200337 i 450 + 00000nas 2200337 i 450 032995997 0000020515 20130319051912.0 @@ -249426,7 +249426,7 @@ - 01162nas 2200325 i 450 + 00000nas 2200325 i 450 0000106369 0000106369 20130319051912.0 @@ -249513,7 +249513,7 @@ - 01146nas 2200325 i 450 + 00000nas 2200325 i 450 0000106371 0000106371 20130319051912.0 @@ -249600,7 +249600,7 @@ - 01149nas 2200313 i 450 + 00000nas 2200313 i 450 040047776 0000103432 20130319051912.0 @@ -249684,7 +249684,7 @@ - 01352nas 2200361 i 450 + 00000nas 2200361 i 450 0000597020 0000597020 20130319051912.0 @@ -249781,7 +249781,7 @@ - 01058nas 2200313 i 450 + 00000nas 2200313 i 450 0000433771 0000433771 20130319051912.0 @@ -249864,7 +249864,7 @@ - 01301nas 2200349 i 450 + 00000nas 2200349 i 450 039819639 0000164996 20130910115215.0 @@ -249957,7 +249957,7 @@ - 01155nas 2200313 i 450 + 00000nas 2200313 i 450 039443426 0000111620 20131104104740.0 @@ -250040,7 +250040,7 @@ - 01124nas 2200325 i 450 + 00000nas 2200325 i 450 040411206 0000008198 20130319051913.0 @@ -250129,7 +250129,7 @@ - 01073nas 2200313 i 450 + 00000nas 2200313 i 450 040111768 0000034484 20130319051913.0 @@ -250211,7 +250211,7 @@ - 01094nas 2200313 i 450 + 00000nas 2200313 i 450 040111776 0000035219 20130319051913.0 @@ -250293,7 +250293,7 @@ - 01118nas 2200301 i 450 + 00000nas 2200301 i 450 040111776 0000034479 20130313093146.0 @@ -250372,7 +250372,7 @@ - 01360nas 2200325 i 450 + 00000nas 2200325 i 450 0000461357 0000461357 20130319051913.0 @@ -250460,7 +250460,7 @@ - 01370nas 2200325 i 450 + 00000nas 2200325 i 450 040048128 0000278099 20130919143351.0 @@ -250549,7 +250549,7 @@ - 00779nls 2200265 i 450 + 00000nls 2200265 i 450 0000984336 0000984336 20130319051913.0 @@ -250613,7 +250613,7 @@ - 00999nas 2200289 i 450 + 00000nas 2200289 i 450 038880954 0000081235 20131104144332.0 @@ -250686,7 +250686,7 @@ - 01414nas 2200301 i 450 + 00000nas 2200301 i 450 032945523 0000083361 20130605154506.0 @@ -250765,7 +250765,7 @@ - 01045nas 2200325 i 450 + 00000nas 2200325 i 450 0000574172 0000574172 20130319051915.0 @@ -250848,7 +250848,7 @@ - 00980nas 2200313 i 450 + 00000nas 2200313 i 450 003067688 0000107476 20130319051915.0 @@ -250926,7 +250926,7 @@ - 00908nas 2200289 i 450 + 00000nas 2200289 i 450 040046621 0000038479 20130827112625.0 @@ -250999,7 +250999,7 @@ - 00907nas 2200325 i 450 + 00000nas 2200325 i 450 038892219 0000046151 20130319051916.0 @@ -251082,7 +251082,7 @@ - 01108nas 2200313 i 450 + 00000nas 2200313 i 450 037406507 0000163391 20130319051916.0 @@ -251165,7 +251165,7 @@ - 01103nas 2200325 i 450 + 00000nas 2200325 i 450 039382125 0000043739 20130319051916.0 @@ -251253,7 +251253,7 @@ - 01096nas 2200289 i 450 + 00000nas 2200289 i 450 038978520 0000144813 20130530101801.0 @@ -251327,7 +251327,7 @@ - 01086nas 2200289 i 450 + 00000nas 2200289 i 450 0000087407 0000087407 20130319051916.0 @@ -251401,7 +251401,7 @@ - 01182nas 2200325 i 450 + 00000nas 2200325 i 450 075228408 0000559737 20140109140030.0 @@ -251483,7 +251483,7 @@ - 01210nas 2200277 i 450 + 00000nas 2200277 i 450 0000182998 0000182998 20130319051916.0 @@ -251551,7 +251551,7 @@ - 01222cas0 2200349 450 + 00000cas0 2200349 450 040231925 0001165728 20140115115917.0 @@ -251646,7 +251646,7 @@ - 01206nas 2200361 i 450 + 00000nas 2200361 i 450 039459616 0000539820 20130319051916.0 @@ -251745,7 +251745,7 @@ - 01199nas 2200361 i 450 + 00000nas 2200361 i 450 039597407 0000043535 20130716152123.0 @@ -251843,7 +251843,7 @@ - 01036nas 2200337 i 450 + 00000nas 2200337 i 450 038807106 0000043537 20130319051916.0 @@ -251931,7 +251931,7 @@ - 01140nas 2200361 i 450 + 00000nas 2200361 i 450 03987866X 0000043547 20140109141049.0 @@ -252023,7 +252023,7 @@ - 01046cas0 2200337 450 + 00000cas0 2200337 450 13150049X 0001164446 20130319051916.0 @@ -252114,7 +252114,7 @@ - 01034cas0 2200337 450 + 00000cas0 2200337 450 078578256 0001052043 20130319051916.0 @@ -252205,7 +252205,7 @@ - 01211nas 2200337 i 450 + 00000nas 2200337 i 450 013662678 0000043551 20131025125602.0 @@ -252295,7 +252295,7 @@ - 01150nas 2200325 i 450 + 00000nas 2200325 i 450 0000203569 0000203569 20130319051917.0 @@ -252386,7 +252386,7 @@ - 01162cas0 2200361 450 + 00000cas0 2200361 450 057915946 0000733063 20130319051917.0 @@ -252480,7 +252480,7 @@ - 01124nas0 2200349 450 + 00000nas0 2200349 450 088603695 0000902903 20130319051917.0 @@ -252569,7 +252569,7 @@ - 00941nas 2200289 i 450 + 00000nas 2200289 i 450 040085198 0000005942 20140114173252.0 @@ -252640,7 +252640,7 @@ - 00878nas 2200301 i 450 + 00000nas 2200301 i 450 038807378 0000046142 20130319051918.0 @@ -252716,7 +252716,7 @@ - 00986nls 2200289 i 450 + 00000nls 2200289 i 450 0001242398 20130522102711.0 @@ -252792,7 +252792,7 @@ - 01372nas 2200361 i 450 + 00000nas 2200361 i 450 013561154 0000071793 20130319051919.0 @@ -252886,7 +252886,7 @@ - 00785nas 2200277 i 450 + 00000nas 2200277 i 450 038808307 0000046147 20130319051919.0 @@ -252954,7 +252954,7 @@ - 01258nas 2200325 i 450 + 00000nas 2200325 i 450 039379248 0000046148 20130319051919.0 @@ -253034,7 +253034,7 @@ - 01236nas 2200337 i 450 + 00000nas 2200337 i 450 039687651 0000043590 20130319051919.0 @@ -253122,7 +253122,7 @@ - 01713nas 2200385 i 450 + 00000nas 2200385 i 450 039082946 0000005532 20130319051920.0 @@ -253222,7 +253222,7 @@ - 01329nas 2200349 i 450 + 00000nas 2200349 i 450 013321374 0000005535 20140103105648.0 @@ -253311,7 +253311,7 @@ - 01112cas0 2200373 450 + 00000cas0 2200373 450 104482826 0001174417 20130319051920.0 @@ -253415,7 +253415,7 @@ - 01131nas 2200313 i 450 + 00000nas 2200313 i 450 040095681 0000055570 20130319051920.0 @@ -253493,7 +253493,7 @@ - 00879nas 2200277 i 450 + 00000nas 2200277 i 450 039399524 0000038384 20130919095729.0 @@ -253564,7 +253564,7 @@ - 01041nas 2200337 i 450 + 00000nas 2200337 i 450 039690717 0000014439 20130319051921.0 @@ -253651,7 +253651,7 @@ - 00778nas 2200265 i 450 + 00000nas 2200265 i 450 0000043649 0000043649 20130319051921.0 @@ -253714,7 +253714,7 @@ - 01195nas 2200337 i 450 + 00000nas 2200337 i 450 058262474 0000402311 20130319051921.0 @@ -253803,7 +253803,7 @@ - 00975cas0 2200313 450 + 00000cas0 2200313 450 078925592 0000912965 20130319051921.0 @@ -253885,7 +253885,7 @@ - 01535cas0 2200433 450 + 00000cas0 2200433 450 039136027 0001174237 20130319051923.0 @@ -254005,7 +254005,7 @@ - 01440cas0 2200397 450 + 00000cas0 2200397 450 076270394 0001127831 20130531142715.0 @@ -254110,7 +254110,7 @@ - 01009nas 2200301 i 450 + 00000nas 2200301 i 450 039276996 0000100333 20130417172402.0 @@ -254186,7 +254186,7 @@ - 01067nas 2200313 i 450 + 00000nas 2200313 i 450 0000630860 0000630860 20130319051923.0 @@ -254266,7 +254266,7 @@ - 00914nas 2200301 i 450 + 00000nas 2200301 i 450 0000134479 0000134479 20130319051924.0 @@ -254340,7 +254340,7 @@ - 01003cas0 2200337 450 + 00000cas0 2200337 450 099272237 0001011776 20130319051925.0 @@ -254433,7 +254433,7 @@ - 00751nls 2200265 i 450 + 00000nls 2200265 i 450 0001166444 0001166444 20130319051925.0 @@ -254496,7 +254496,7 @@ - 01182cas0 2200361 450 + 00000cas0 2200361 450 133934713 0001170846 20130319051925.0 @@ -254593,7 +254593,7 @@ - 00852nas 2200289 i 450 + 00000nas 2200289 i 450 039300919 0000085466 20130531165131.0 @@ -254664,7 +254664,7 @@ - 00886nas 2200301 i 450 + 00000nas 2200301 i 450 040054926 0000085290 20130319051926.0 @@ -254739,7 +254739,7 @@ - 01594nas 2200385 i 450 + 00000nas 2200385 i 450 04877989X 0000209296 20140117121816.0 @@ -254844,7 +254844,7 @@ - 01357nls 2200349 i 450 + 00000nls 2200349 i 450 0001239076 0001239076 20130521100717.0 @@ -254939,7 +254939,7 @@ - 01243nas 2200361 i 450 + 00000nas 2200361 i 450 039741877 0000089204 20130319051926.0 @@ -255036,7 +255036,7 @@ - 01033nas 2200313 i 450 + 00000nas 2200313 i 450 040152928 0000086121 20130319051926.0 @@ -255117,7 +255117,7 @@ - 00748nas 2200253 i 450 + 00000nas 2200253 i 450 110659554 0000181473 20130319051927.0 @@ -255178,7 +255178,7 @@ - 01226nas 2200337 i 450 + 00000nas 2200337 i 450 045092052 0000272837 20130319051927.0 @@ -255273,7 +255273,7 @@ - 01372cas0 2200397 450 + 00000cas0 2200397 450 055391605 0000405310 20130319051927.0 @@ -255377,7 +255377,7 @@ - 01313nas 2200337 i 450 + 00000nas 2200337 i 450 013304461 0000005537 20140106174822.0 @@ -255470,7 +255470,7 @@ - 00839nls 2200277 i 450 + 00000nls 2200277 i 450 0000977514 0000977514 20130319051927.0 @@ -255536,7 +255536,7 @@ - 00906nas 2200277 i 450 + 00000nas 2200277 i 450 039235750 0000044037 20130319051928.0 @@ -255605,7 +255605,7 @@ - 01169cas0 2200337 450 + 00000cas0 2200337 450 058809945 0000830554 20131029095921.0 @@ -255695,7 +255695,7 @@ - 01002nas 2200289 i 450 + 00000nas 2200289 i 450 167146955 0000105022 20131104104526.0 @@ -255772,7 +255772,7 @@ - 01150nas 2200349 i 450 + 00000nas 2200349 i 450 039337626 0000044045 20130319051928.0 @@ -255861,7 +255861,7 @@ - 01248nas 2200313 i 450 + 00000nas 2200313 i 450 040521427 0000203318 20131126151926.0 @@ -255942,7 +255942,7 @@ - 00978nas 2200325 i 450 + 00000nas 2200325 i 450 039323161 0000044072 20131015114240.0 @@ -256028,7 +256028,7 @@ - 01068nas0 2200289 i 450 + 00000nas0 2200289 i 450 132450259 0001165736 20130319051928.0 @@ -256106,7 +256106,7 @@ - 01060nls 2200253 i 450 + 00000nls 2200253 i 450 0000708960 0000708960 20130319051929.0 @@ -256165,7 +256165,7 @@ - 01161nas 2200337 i 450 + 00000nas 2200337 i 450 040092836 0000129920 20130319051929.0 @@ -256256,7 +256256,7 @@ - 01222nas 2200337 i 450 + 00000nas 2200337 i 450 058261117 0000405166 20130319051930.0 @@ -256343,7 +256343,7 @@ - 00966nas 2200301 i 450 + 00000nas 2200301 i 450 036520462 0000044227 20130319051931.0 @@ -256420,7 +256420,7 @@ - 00791nas 2200277 i 450 + 00000nas 2200277 i 450 038811251 0000044228 20130530164817.0 @@ -256487,7 +256487,7 @@ - 00963nas0 2200301 450 + 00000nas0 2200301 450 113737246 0001079285 20130319051932.0 @@ -256564,7 +256564,7 @@ - 01957cas0 2200457 450 + 00000cas0 2200457 450 088099369 0000713816 20130319051933.0 @@ -256704,7 +256704,7 @@ - 01068nas 2200301 i 450 + 00000nas 2200301 i 450 03646306X 0000137999 20130717151815.0 @@ -256783,7 +256783,7 @@ - 01246nas 2200325 i 450 + 00000nas 2200325 i 450 039974987 0000100249 20131008111212.0 @@ -256867,7 +256867,7 @@ - 01318nas 2200337 i 450 + 00000nas 2200337 i 450 038895366 0000074448 20140115110302.0 @@ -256956,7 +256956,7 @@ - 01044nls 2200265 i 450 + 00000nls 2200265 i 450 0001243674 20130522153526.0 @@ -257024,7 +257024,7 @@ - 01222nls 2200325 i 450 + 00000nls 2200325 i 450 0000470117 0000470117 20130319051936.0 @@ -257103,7 +257103,7 @@ - 01268nas 2200325 i 450 + 00000nas 2200325 i 450 039257754 0000077528 20131008172606.0 @@ -257188,7 +257188,7 @@ - 01073nas 2200313 i 450 + 00000nas 2200313 i 450 036528323 0000044233 20130319051937.0 @@ -257268,7 +257268,7 @@ - 01036nas 2200313 i 450 + 00000nas 2200313 i 450 040325466 0000154912 20130319051937.0 @@ -257348,7 +257348,7 @@ - 00892nas 2200289 i 450 + 00000nas 2200289 i 450 039333167 0000044234 20140107130050.0 @@ -257420,7 +257420,7 @@ - 01726nas 2200385 i 450 + 00000nas 2200385 i 450 038812797 0000044236 20130319051937.0 @@ -257520,7 +257520,7 @@ - 01171nas 2200361 i 450 + 00000nas 2200361 i 450 013803522 0000074907 20130429104407.0 @@ -257618,7 +257618,7 @@ - 01150nas 2200313 i 450 + 00000nas 2200313 i 450 039631680 0000067406 20130319051938.0 @@ -257706,7 +257706,7 @@ - 01034nas 2200337 i 450 + 00000nas 2200337 i 450 038811154 0000044297 20131129142914.0 @@ -257792,7 +257792,7 @@ - 00682nas 2200241 i 450 + 00000nas 2200241 i 450 040161315 0000120258 20130523155158.0 @@ -257851,7 +257851,7 @@ - 00876nas 2200301 i 450 + 00000nas 2200301 i 450 040239160 0000239118 20130319051940.0 @@ -257929,7 +257929,7 @@ - 00918nas 2200253 i 450 + 00000nas 2200253 i 450 040164330 0000006953 20130321141925.0 @@ -257992,7 +257992,7 @@ - 01292cas0 2200385 i 450 + 00000cas0 2200385 i 450 119206803 0001120020 20130319051941.0 @@ -258097,7 +258097,7 @@ - 01196nas 2200361 i 450 + 00000nas 2200361 i 450 039628221 0000044468 20130319051941.0 @@ -258192,7 +258192,7 @@ - 00961nas 2200301 i 450 + 00000nas 2200301 i 450 038813947 0000044472 20130319051942.0 @@ -258270,7 +258270,7 @@ - 00808nas 2200277 i 450 + 00000nas 2200277 i 450 039957691 0000071591 20130319051942.0 @@ -258338,7 +258338,7 @@ - 00960cls0 2200313 450 + 00000cls0 2200313 450 080064981 0000847494 20130319051942.0 @@ -258423,7 +258423,7 @@ - 01042nas 2200325 i 450 + 00000nas 2200325 i 450 039324540 0000044478 20130319051942.0 @@ -258508,7 +258508,7 @@ - 01355nas 2200289 i 450 + 00000nas 2200289 i 450 037984357 0000044854 20130319051942.0 @@ -258589,7 +258589,7 @@ - 01311cas0 2200325 450 + 00000cas0 2200325 450 038724987 0001075561 20131007175223.0 @@ -258676,7 +258676,7 @@ - 01316nas 2200349 i 450 + 00000nas 2200349 i 450 038814544 0000044558 20130319051944.0 @@ -258769,7 +258769,7 @@ - 01396nas 2200349 i 450 + 00000nas 2200349 i 450 039463400 0000109092 20130518175143.0 @@ -258859,7 +258859,7 @@ - 01464nas 2200385 i 450 + 00000nas 2200385 i 450 001020196 0000002032 20131220103022.0 @@ -258958,7 +258958,7 @@ - 01033nas0 2200265 450 + 00000nas0 2200265 450 113692668 0001079085 20130319051946.0 @@ -259025,7 +259025,7 @@ - 01063cas0 2200325 450 + 00000cas0 2200325 450 077567609 0000986884 20130319051946.0 @@ -259113,7 +259113,7 @@ - 00859nas 2200289 i 450 + 00000nas 2200289 i 450 039628655 0000044796 20130726155423.0 @@ -259186,7 +259186,7 @@ - 01021nas 2200277 i 450 + 00000nas 2200277 i 450 040033325 0000071488 20130319051948.0 @@ -259255,7 +259255,7 @@ - 01289cas0 2200409 450 + 00000cas0 2200409 450 094685118 0000919199 20131028154707.0 @@ -259369,7 +259369,7 @@ - 01121nas 2200301 i 450 + 00000nas 2200301 i 450 038815893 0000089051 20130319051949.0 @@ -259447,7 +259447,7 @@ - 00945nls 2200289 i 450 + 00000nls 2200289 i 450 0001131866 0001131866 20130319051949.0 @@ -259514,7 +259514,7 @@ - 01217nas 2200325 i 450 + 00000nas 2200325 i 450 039107620 0000005658 20140110153348.0 @@ -259599,7 +259599,7 @@ - 01207cas0 2200397 450 + 00000cas0 2200397 450 161404901 0001243127 20131105191623.0 @@ -259711,7 +259711,7 @@ - 01547nas 2200397 i 450 + 00000nas 2200397 i 450 039075354 0000005546 20131220103111.0 @@ -259823,7 +259823,7 @@ - 01205cas0 2200325 450 + 00000cas0 2200325 450 113877641 0000887028 20130319051953.0 @@ -259907,7 +259907,7 @@ - 01259nas 2200301 i 450 + 00000nas 2200301 i 450 038885379 0000082773 20130319051953.0 @@ -259993,7 +259993,7 @@ - 01303nas 2200313 i 450 + 00000nas 2200313 i 450 032915853 0000011212 20130319051953.0 @@ -260079,7 +260079,7 @@ - 00842nas 2200301 i 450 + 00000nas 2200301 i 450 139889957 0000191974 20130319051954.0 @@ -260155,7 +260155,7 @@ - 01151nls 2200325 450 + 00000nls 2200325 450 0001168713 0001168713 20130319051954.0 @@ -260241,7 +260241,7 @@ - 01055nas 2200289 i 450 + 00000nas 2200289 i 450 038817799 0000045763 20130603145638.0 @@ -260313,7 +260313,7 @@ - 01028nas 2200313 i 450 + 00000nas 2200313 i 450 038817845 0000045704 20130319051955.0 @@ -260394,7 +260394,7 @@ - 00834nas 2200265 i 450 + 00000nas 2200265 i 450 038815338 0000045730 20140106161136.0 @@ -260462,7 +260462,7 @@ - 01410nas 2200397 i 450 + 00000nas 2200397 i 450 039150291 0000045201 20130910173622.0 @@ -260565,7 +260565,7 @@ - 01337nas 2200337 i 450 + 00000nas 2200337 i 450 040077152 0000031523 20130319051956.0 @@ -260650,7 +260650,7 @@ - 00888nls 2200301 450 + 00000nls 2200301 450 0000412118 0000412118 20130319051957.0 @@ -260722,7 +260722,7 @@ - 00976nls 2200289 i 450 + 00000nls 2200289 i 450 0000311802 0000311802 20130319051957.0 @@ -260789,7 +260789,7 @@ - 00940nls 2200277 i 450 + 00000nls 2200277 i 450 0000550341 0000550341 20130319051957.0 @@ -260857,7 +260857,7 @@ - 00887nas 2200241 i 450 + 00000nas 2200241 i 450 0000380019 0000380019 20130319051957.0 @@ -260912,7 +260912,7 @@ - 00913nls 2200301 450 + 00000nls 2200301 450 0000579578 0000579578 20130319051957.0 @@ -260985,7 +260985,7 @@ - 01278nas 2200313 i 450 + 00000nas 2200313 i 450 038818337 0000045688 20130725120532.0 @@ -261069,7 +261069,7 @@ - 01075nas 2200325 i 450 + 00000nas 2200325 i 450 038885697 0000145013 20131121113030.0 @@ -261150,7 +261150,7 @@ - 01426nas 2200373 i 450 + 00000nas 2200373 i 450 039300471 0000142140 20140107142552.0 @@ -261246,7 +261246,7 @@ - 01502nas 2200373 i 450 + 00000nas 2200373 i 450 039290654 0000102472 20140107143113.0 @@ -261345,7 +261345,7 @@ - 01160nas 2200325 i 450 + 00000nas 2200325 i 450 039394700 0000045204 20140107143410.0 @@ -261430,7 +261430,7 @@ - 00957nas 2200289 i 450 + 00000nas 2200289 i 450 168600447 0000010941 20130410144354.0 @@ -261504,7 +261504,7 @@ - 00891nas 2200277 i 450 + 00000nas 2200277 i 450 0000242968 0000242968 20130912133418.0 @@ -261574,7 +261574,7 @@ - 01321nas 2200361 i 450 + 00000nas 2200361 i 450 039285154 0000004975 20130605135523.0 @@ -261665,7 +261665,7 @@ - 00953nls 2200301 i 450 + 00000nls 2200301 i 450 0001245085 20130605135505.0 @@ -261742,7 +261742,7 @@ - 01309nas 2200325 i 450 + 00000nas 2200325 i 450 039557065 0000045199 20131202121905.0 @@ -261824,7 +261824,7 @@ - 00841nas 2200289 i 450 + 00000nas 2200289 i 450 04021852X 0000150282 20140107152711.0 @@ -261896,7 +261896,7 @@ - 01008nas 2200325 i 450 + 00000nas 2200325 i 450 040180891 0000200888 20130319051957.0 @@ -261979,7 +261979,7 @@ - 00907nas 2200289 i 450 + 00000nas 2200289 i 450 039703541 0000045194 20130319051957.0 @@ -262050,7 +262050,7 @@ - 01228nas 2200349 i 450 + 00000nas 2200349 i 450 038818655 0000045160 20131220103626.0 @@ -262140,7 +262140,7 @@ - 01056nas 2200325 i 450 + 00000nas 2200325 i 450 03881871X 0000045686 20130319051957.0 @@ -262226,7 +262226,7 @@ - 01044nas 2200313 i 450 + 00000nas 2200313 i 450 067229794 0000610430 20140107133040.0 @@ -262305,7 +262305,7 @@ - 01352nas 2200361 i 450 + 00000nas 2200361 i 450 039470253 0000045720 20130918130023.0 @@ -262398,7 +262398,7 @@ - 01054nls 2200301 i 450 + 00000nls 2200301 i 450 0000480110 0000480110 20130319051958.0 @@ -262473,7 +262473,7 @@ - 01065nas 2200313 i 450 + 00000nas 2200313 i 450 03881921X 0000045188 20130319051958.0 @@ -262551,7 +262551,7 @@ - 01060nas 2200313 i 450 + 00000nas 2200313 i 450 143713396 0000095856 20130522101608.0 @@ -262633,7 +262633,7 @@ - 00852nls 2200289 i 450 + 00000nls 2200289 i 450 0001241627 0001241627 20130319051958.0 @@ -262703,7 +262703,7 @@ - 01407nas 2200373 i 450 + 00000nas 2200373 i 450 038886472 0000002860 20131008112311.0 @@ -262799,7 +262799,7 @@ - 01153nas 2200337 i 450 + 00000nas 2200337 i 450 0000135080 0000135080 20130319051958.0 @@ -262881,7 +262881,7 @@ - 01117nls 2200313 i 450 + 00000nls 2200313 i 450 0000463642 0000463642 20130319051958.0 @@ -262956,7 +262956,7 @@ - 01026nas 2200313 i 450 + 00000nas 2200313 i 450 0000518692 0000518692 20130319051958.0 @@ -263038,7 +263038,7 @@ - 00955nas 2200277 i 450 + 00000nas 2200277 i 450 038819457 0000074716 20130319051958.0 @@ -263105,7 +263105,7 @@ - 01317nas 2200361 i 450 + 00000nas 2200361 i 450 03881949X 0000026171 20130319051958.0 @@ -263206,7 +263206,7 @@ - 01003nas 2200277 i 450 + 00000nas 2200277 i 450 038819856 0000067369 20130319051959.0 @@ -263274,7 +263274,7 @@ - 00927cas0 2200313 450 + 00000cas0 2200313 450 080045243 0000733080 20140107172456.0 @@ -263353,7 +263353,7 @@ - 01140nas 2200313 i 450 + 00000nas 2200313 i 450 038820048 0000045221 20130319051959.0 @@ -263435,7 +263435,7 @@ - 01244cas0 2200373 450 + 00000cas0 2200373 450 131674390 0001169164 20130319051959.0 @@ -263536,7 +263536,7 @@ - 00969nas 2200325 i 450 + 00000nas 2200325 i 450 038820285 0000045237 20130319051959.0 @@ -263621,7 +263621,7 @@ - 00991nas 2200313 i 450 + 00000nas 2200313 i 450 069435758 0000195600 20140110153836.0 @@ -263700,7 +263700,7 @@ - 01066nas 2200325 i 450 + 00000nas 2200325 i 450 03946346X 0000045611 20131024170438.0 @@ -263782,7 +263782,7 @@ - 01127nas 2200325 i 450 + 00000nas 2200325 i 450 038820471 0000045219 20130319051959.0 @@ -263868,7 +263868,7 @@ - 01053nas 2200337 i 450 + 00000nas 2200337 i 450 037135686 0000211031 20130319051959.0 @@ -263954,7 +263954,7 @@ - 01047nas 2200313 i 450 + 00000nas 2200313 i 450 039683214 0000045641 20131021145909.0 @@ -264034,7 +264034,7 @@ - 01154nas 2200337 i 450 + 00000nas 2200337 i 450 039607259 0000092236 20140108134649.0 diff --git a/src/test/resources/org/xbib/marc/error.mrc.xml b/src/test/resources/org/xbib/marc/error.mrc.xml index 8f807fc..6ecb3d1 100644 --- a/src/test/resources/org/xbib/marc/error.mrc.xml +++ b/src/test/resources/org/xbib/marc/error.mrc.xml @@ -1,7 +1,7 @@ - 00714cam a2200205 a 4500 + 00000cam a2200205 a 4500 12883376 20030616111422.0 020805s2002 nyu j 000 1 eng diff --git a/src/test/resources/org/xbib/marc/makrtest.mrc.xml b/src/test/resources/org/xbib/marc/makrtest.mrc.xml index 5b8020c..7a708b2 100644 --- a/src/test/resources/org/xbib/marc/makrtest.mrc.xml +++ b/src/test/resources/org/xbib/marc/makrtest.mrc.xml @@ -1 +1 @@ -01201nam 2200253 a 4500tes96000001 ViArRB199602210153555.7960221s1955 dcuabcdjdbkoqu001 0deng dViArRBViArRBPQ1234.T39 1955Deer-Doe, J.(Jane),saint,1355-1401,spirit.New test record number 1 with ordinary data[large print] /by Jane Deer-Doe ; edited by Patty O'Furniture.New test record number one with ordinary dataWashington, DC :Library of Congress,1955-<1957>v. 1-<5> :ill., maps, ports., charts ; cm.Test record series ;no. 1This is a test of ordinary features like replacement of the mnemonics for currency and dollar signs and backslashes (backsolidus \) used for blanks in certain areas.This is a test for the conversion of curly braces; the opening curly brace ({) and the closing curly brace (}).Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.O'Furniture, Patty,ed.02665nam 2200229 a 4500tes96000002 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 2 with currently defined ANSEL characters (mostly diacritics) input with their real hexadecimal values[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 2This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaIncludes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.02652nam 2200229 a 4500tes96000003 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 3 with currently defined ANSEL characters (mostly diacritics) input with mnemonic strings[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 3This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaIncludes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.01276nam 2200229 a 4500tes96000004 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 4 with newly-defined diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 4This field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}, also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℗1994, the copyright mark in ©1955, the musical sharp in concerto in F♯ major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.03101nam 2200241 a 4500tes96000005 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 5 for all diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 5This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaThis field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}; also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℓ1994, the copyright mark in ℗1955, the musical sharp in concerto in F© major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.03099nam 2200241 a 4500tes96000006 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A new ultimate test record for diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 6This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaThis field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}, also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℗1994, the copyright mark in ©1955, the musical sharp in concerto in F♯ major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00959nam 2200241 a 4500tes96000007 ViArRB19960221165955.9960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A check of the processing of unrecognized mnemonic strings like &zilch; which might be encountered in the MARCMakr input file.Washington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 7This is a test of mnemonic conversion, like a real backslash or back solidus, as it is sometimes called (\).Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.ftp.loc.gov\pub\marc00833nam 2200217 a 4500tes96000008 ViArRB19960221195511.9960221s1955 dcuabcdjdbkoqu001 0dspa d84722365790777000008 :$35.990777000008 :$35.993777000008 (German ed.):$46.00ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A check of the processing of the dollar sign and mnemonic strings used for real dollar signs (associated with prices).Washington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 8This is a test of mnemonic conversion, like a real backslash or back solidus, as it is sometimes called (\). \ No newline at end of file +00000nam 2200253 a 4500tes96000001 ViArRB199602210153555.7960221s1955 dcuabcdjdbkoqu001 0deng dViArRBViArRBPQ1234.T39 1955Deer-Doe, J.(Jane),saint,1355-1401,spirit.New test record number 1 with ordinary data[large print] /by Jane Deer-Doe ; edited by Patty O'Furniture.New test record number one with ordinary dataWashington, DC :Library of Congress,1955-<1957>v. 1-<5> :ill., maps, ports., charts ; cm.Test record series ;no. 1This is a test of ordinary features like replacement of the mnemonics for currency and dollar signs and backslashes (backsolidus \) used for blanks in certain areas.This is a test for the conversion of curly braces; the opening curly brace ({) and the closing curly brace (}).Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.O'Furniture, Patty,ed.00000nam 2200229 a 4500tes96000002 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 2 with currently defined ANSEL characters (mostly diacritics) input with their real hexadecimal values[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 2This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaIncludes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00000nam 2200229 a 4500tes96000003 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 3 with currently defined ANSEL characters (mostly diacritics) input with mnemonic strings[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 3This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaIncludes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00000nam 2200229 a 4500tes96000004 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 4 with newly-defined diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 4This field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}, also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℗1994, the copyright mark in ©1955, the musical sharp in concerto in F♯ major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00000nam 2200241 a 4500tes96000005 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-New test record number 5 for all diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 5This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaThis field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}; also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℓ1994, the copyright mark in ℗1955, the musical sharp in concerto in F© major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00000nam 2200241 a 4500tes96000006 ViArRB19960221075055.7960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A new ultimate test record for diacritics[large print] /by Jane Deer-DoeWashington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 6This is a test of diacritics like the uppercase Polish L in Łódź, the uppercase Scandinavia O in Øst, the uppercase D with crossbar in Đuro, the uppercase Icelandic thorn in Þann, the uppercase digraph AE in Ægir, the uppercase digraph OE in Œuvres, the soft sign in rechʹ, the middle dot in col·lecció, the musical flat in F♭, the patent mark in Frizbee®, the plus or minus sign in ±54%, the uppercase O-hook in BƠ, the uppercase U-hook in XƯA, the alif in masʼalah, the ayn in ʻarab, the lowercase Polish l in Włocław, the lowercase Scandinavian o in København, the lowercase d with crossbar in đavola, the lowercase Icelandic thorn in þann, the lowercase digraph ae in være, the lowercase digraph oe in cœur, the lowercase hardsign in sʺezd, the Turkish dotless i in masalı, the British pound sign in £5.95, the lowercase eth in verður, the lowercase o-hook (with pseudo question mark) in Sở, the lowercase u-hook in Tư Dưc, the pseudo question mark in củi, the grave accent in très, the acute accent in désirée, the circumflex in côte, the tilde in mañana, the macron in Tōkyo, the breve in russkiĭ, the dot above in żaba, the dieresis (umlaut) in Löwenbräu, the caron (hachek) in črny, the circle above (angstrom) in årbok, the ligature first and second halves in di͡adi͡a, the high comma off center in rozdelo̕vac, the double acute in időszaki, the candrabindu (breve with dot above) in Alii̐ev, the cedilla in ça va comme ça, the right hook in vietą, the dot below in teḍa, the double dot below in k̲h̲ut̤bah, the circle below in Saṃskr̥ta, the double underscore in G̳hulam, the left hook in Lech Wałe̦sa, the right cedilla (comma below) in kho̜ng, the upadhmaniya (half circle below) in ḫumantuš, double tilde, first and second halves in n͠galan, high comma (centered) in ge̓otermikaThis field tests the 13 new USMARC characters which include the spacing circumflex "^", the spacing underscore in "file_name", the grave "`", the spacing tilde "~", and the opening and closing curly brackets, {text}, also included are new extended characters degree sign 98.6°, small script l in 45ℓ, the phono copyright mark in ℗1994, the copyright mark in ©1955, the musical sharp in concerto in F♯ major, the inverted question mark in ¿Que pasó?, and the inverted exclamation mark in ¡Ay caramba!.Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.00000nam 2200241 a 4500tes96000007 ViArRB19960221165955.9960221s1955 dcuabcdjdbkoqu001 0dspa d8472236579ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A check of the processing of unrecognized mnemonic strings like &zilch; which might be encountered in the MARCMakr input file.Washington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 7This is a test of mnemonic conversion, like a real backslash or back solidus, as it is sometimes called (\).Includes Bibliographies, discographies, filmographies, and reviews.Includes index.Test recordJuvenile.Doe, John,1955- Biography.ftp.loc.gov\pub\marc00000nam 2200217 a 4500tes96000008 ViArRB19960221195511.9960221s1955 dcuabcdjdbkoqu001 0dspa d84722365790777000008 :$35.990777000008 :$35.993777000008 (German ed.):$46.00ViArRBViArRBPQ1234.T39 1955Deer-Doe, Jane,1957-A check of the processing of the dollar sign and mnemonic strings used for real dollar signs (associated with prices).Washington, DC :Library of Congress,1955.300 p. :ill., maps, ports., charts ; cm.Test record series ;no. 8This is a test of mnemonic conversion, like a real backslash or back solidus, as it is sometimes called (\). \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/oclc_63111280_export_as_UTF8_from_connexion.mrc.indented.xml b/src/test/resources/org/xbib/marc/oclc_63111280_export_as_UTF8_from_connexion.mrc.indented.xml index 3d79400..0740884 100644 --- a/src/test/resources/org/xbib/marc/oclc_63111280_export_as_UTF8_from_connexion.mrc.indented.xml +++ b/src/test/resources/org/xbib/marc/oclc_63111280_export_as_UTF8_from_connexion.mrc.indented.xml @@ -1,7 +1,7 @@ - 01685cam a2200421Ia 4500 + 00000cam a2200421Ia 4500 ocm63111280 OCoLC 20150710113452.0 diff --git a/src/test/resources/org/xbib/marc/oclc_63111280_export_as_UTF8_from_connexion.mrc.xml b/src/test/resources/org/xbib/marc/oclc_63111280_export_as_UTF8_from_connexion.mrc.xml index 9d1d360..458f02e 100644 --- a/src/test/resources/org/xbib/marc/oclc_63111280_export_as_UTF8_from_connexion.mrc.xml +++ b/src/test/resources/org/xbib/marc/oclc_63111280_export_as_UTF8_from_connexion.mrc.xml @@ -1 +1 @@ -01685cam a2200421Ia 4500ocm63111280 OCoLC20150710113452.0060119s2005 ch a b 000 0 chi dKKUengKKUOCLCGOCLCFOCLCOOCLCQ98672710339789867271037GEBAY10724576(OCoLC)63111280a-ja---a-cc---DS821.5.C5Y4 2005VA@@880-01Ye, Hanao,1952-880-02Riben min su, xin yang, yi neng, yu Zhongguo wen hua /Ye Hanao zhu.880-03Taibei Shi :Da xin shu ju,[2005]5, xiv, 332 pages :illustrations (some color) ;21 cmtexttxtrdacontentunmediatednrdamediavolumencrdacarrierIncludes bibliographical references.JapanSocial life and customs.ChinaSocial life and customs.JapanCivilizationChinese influences.CivilizationChinese influences.fast(OCoLC)fst00862903Manners and customs.fast(OCoLC)fst01007815China.fast(OCoLC)fst01206073Japan.fast(OCoLC)fst01204082Online version:Ye, Hanao, 1952-Riben min su, xin yang, yi neng, yu Zhongguo wen hua.Taibei Shi : Da xin shu ju, [2005](OCoLC)654474548100-01葉漢鰲,1952-245-02日本民俗·信仰·藝能·與中國文化 /葉漢鰲著.246-00日本民俗信仰藝能與中國文化260-03台北市 :大新書局,[2005]C0VA@ \ No newline at end of file +00000cam a2200421Ia 4500ocm63111280 OCoLC20150710113452.0060119s2005 ch a b 000 0 chi dKKUengKKUOCLCGOCLCFOCLCOOCLCQ98672710339789867271037GEBAY10724576(OCoLC)63111280a-ja---a-cc---DS821.5.C5Y4 2005VA@@880-01Ye, Hanao,1952-880-02Riben min su, xin yang, yi neng, yu Zhongguo wen hua /Ye Hanao zhu.880-03Taibei Shi :Da xin shu ju,[2005]5, xiv, 332 pages :illustrations (some color) ;21 cmtexttxtrdacontentunmediatednrdamediavolumencrdacarrierIncludes bibliographical references.JapanSocial life and customs.ChinaSocial life and customs.JapanCivilizationChinese influences.CivilizationChinese influences.fast(OCoLC)fst00862903Manners and customs.fast(OCoLC)fst01007815China.fast(OCoLC)fst01206073Japan.fast(OCoLC)fst01204082Online version:Ye, Hanao, 1952-Riben min su, xin yang, yi neng, yu Zhongguo wen hua.Taibei Shi : Da xin shu ju, [2005](OCoLC)654474548100-01葉漢鰲,1952-245-02日本民俗·信仰·藝能·與中國文化 /葉漢鰲著.246-00日本民俗信仰藝能與中國文化260-03台北市 :大新書局,[2005]C0VA@ \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/summerland.mrc.trans.xml b/src/test/resources/org/xbib/marc/summerland.mrc.trans.xml index 10dc1c7..9e35c7a 100644 --- a/src/test/resources/org/xbib/marc/summerland.mrc.trans.xml +++ b/src/test/resources/org/xbib/marc/summerland.mrc.trans.xml @@ -1 +1 @@ -00714cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file +00000cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/summerland.mrc.utf8.xml b/src/test/resources/org/xbib/marc/summerland.mrc.utf8.xml index 10dc1c7..9e35c7a 100644 --- a/src/test/resources/org/xbib/marc/summerland.mrc.utf8.xml +++ b/src/test/resources/org/xbib/marc/summerland.mrc.utf8.xml @@ -1 +1 @@ -00714cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file +00000cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/summerland.mrc.xml b/src/test/resources/org/xbib/marc/summerland.mrc.xml index 78f9656..9e35c7a 100644 --- a/src/test/resources/org/xbib/marc/summerland.mrc.xml +++ b/src/test/resources/org/xbib/marc/summerland.mrc.xml @@ -1 +1 @@ -00714cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file +00000cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/summerland2.mrc.xml b/src/test/resources/org/xbib/marc/summerland2.mrc.xml index 78f9656..9e35c7a 100644 --- a/src/test/resources/org/xbib/marc/summerland2.mrc.xml +++ b/src/test/resources/org/xbib/marc/summerland2.mrc.xml @@ -1 +1 @@ -00714cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file +00000cam a2200205 a 45001288337620030616111422.0020805s2002 nyu j 000 1 eng 07868087720786816155 (pbk.)DLCDLCDLCChabon, Michael.Summerland /Michael Chabon.1st ed.New York :Miramax Books/Hyperion Books for Children,c2002.500 p. ;22 cm.Ethan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy.Fantasy.BaseballFiction.MagicFiction. \ No newline at end of file diff --git a/src/test/resources/org/xbib/marc/zdblokutf8.mrc.xml b/src/test/resources/org/xbib/marc/zdblokutf8.mrc.xml index 12b7308..3ced91d 100644 --- a/src/test/resources/org/xbib/marc/zdblokutf8.mrc.xml +++ b/src/test/resources/org/xbib/marc/zdblokutf8.mrc.xml @@ -1 +1 @@ -00388ny a22001813n 4500054980291DE-10101000001120061003220047.0021223||||||||||||||||ger|||||||5-xDE-600(DE-603)118577352351000-14HESac1Wp 98/1100DE-41.1\x11196911.196900367ny a22001693n 4500054980240DE-10101000001120061003220047.0021223||||||||||||||||ger|||||||5-xDE-600(DE-603)118577271351301-44/301HESbd2DE-4-3011.1\x11196911.196900367ny a22001693n 4500054980259DE-10101000001120061003220047.0021223||||||||||||||||ger|||||||5-xDE-600(DE-603)118577328351304-x4/304HESbd3DE-4-3041.1\x11196911.196900367ny a22001693n 4500054980275DE-10101000001120061003220047.0060922||||||||||||||||ger|||||||5-xDE-600(DE-603)118577298351338-54/338HESbd4DE-4-3381.1\x11196911.196900367ny a22001693n 4500054980283DE-10101000001120061003220047.0060922||||||||||||||||ger|||||||5-xDE-600(DE-603)118577255351351-84/351HESbd5DE-4-3511.1\x11196911.196900396ny a22001813n 4500054980321DE-10101000001120061003220047.0060922||||||||||||||||ger|||||||5-xDE-600(DE-603)11857728X351364-64/364HESbd6Vg 136 d00DE-4-3641.1\x11196911.196900407ny a22001813n 450005498033XDE-10101000001120061003220047.0060922||||||||||||||||ger|||||||5-xDE-600(DE-603)11857731X351403-14/403HESbd7AL 25.550, 11.Aufl.00DE-4-4031.1\x11196911.196900396ny a22001813n 4500094696373DE-10101000001120061003220047.0040415||||||||||||||||ger|||||||5-xDE-600(DE-603)212760920351404-34/404HESbd8Deu 901000DE-4-4041.1\x11196911.196900395ny a22001813n 4500054980348DE-10101000001120061003220047.0060922||||||||||||||||ger|||||||5-xDE-600(DE-603)045947058351406-74/406HESbd9EO 185300DE-4-4061.1\x11196911.196900395ny a22001813n 4500000000124DE-10101000001120050802220915.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)4497233-7441017-86/017NRWbd1C I 27900DE-6-0171.1\x11196911.196900385ny a22001813n 4500107954613DE-10101000001120050802220915.0050802||||||||||||||||ger|||||||5-xDE-600a441069-56/069NRWbd1P:A/25-15(11)00DE-6-0691.1\x11196911.196900389ny a22001813n 4500000000132DE-10101000001120050802220915.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)3037506-x441300-36/ANRWac1Z 91200DE-6-A1.1\x11196911.196900426ny a22001933n 4500088791300DE-10101000001120120703174114.0940801||||||||||||||||ger|||||||5-xDE-600(DE-601)384074456(DE-7)165646314341000-67NIEac1ZA 18414bl00DE-71.1\x11196911.196900432ny a22001933n 4500000000159DE-10101000001120030714103122.0991125||||||||||||||||ger|||||||5-xDE-600(XX-XxUND)YA 31190(DE-600)3800010-6341037-77/037NIEbd1XXVIII, 500DE-7-0371.1\x11196911.196900367ny a22001693n 4500000000167DE-10101000001120030714103122.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)3800109-3341041-97/041NIEac1DE-7-0411.1\x11196911.196900402ny a22001813n 4500000000175DE-10101000001120030714103122.0991125||||||||||||||||ger|||||||5-xDE-600(XX-XxUND)YA 31190(DE-600)3800015-5341154-07/154NIEbd1DE-7-1541.1\x11196911.196900364ny a22001693n 4500000000183DE-10101000001120030714103122.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)15-2130133-011/133BERac1DE-11-1331.1\x11196911.196900356ny a22001693n 4500100779565DE-10101000001120050429220126.0050429||||||||||||||||ger|||||||5-xDE-600691000-216BAWac170 A 39100DE-161.1\x11196911.196900359ny a22001693n 4500100308511DE-10101000001120050429220126.0050222||||||||||||||||ger|||||||5-xDE-600691034-816/34BAWbd1Hj 1300DE-16-341.1\x11196911.196900394ny a22001813n 4500150777833DE-10101000001120090310171414.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)24-3691160-216/160BAWab1N I 36-1100DE-16-1601.1\x11196911.196900387ny a22001813n 4500054980135DE-10101000001120091130165211.0091123||||||||||||||||ger|||||||5-xDE-600(DE-603)061100374611000-917HESac170/1800DE-171.1\x11196911.196900400ny a22001813n 4500113693915DE-10101000001120090915214625.0060216||||||||||||||||ger|||||||5-xDE-600(DE-603)355999005618136-317/136HESbd2-136-1054400DE-17-1361.1\x11196911.196900455ny a22002053n 4500078692210DE-10101000001120110125180622.0960603||||||||||||||||ger|||||||5-xDE-600(DE-601)004029917(DE-18)165646314201000-818HAMac1A 1970/7029ul00SM09DE-181.1\x11196911.196900403ny a22001813n 4500078692229DE-10101000001120070626213815.0960603||||||||||||||||ger|||||||5-xDE-600(DE-601)004180291(DE-18-57)165646314201057-418/57HAMbd2DE-18-571.1\x11196911.196900439ny a22001933n 4500098305018DE-10101000001120070626213815.0020529||||||||||||||||ger|||||||5-xDE-600(DE-601)556829247(DE-18-304)165646314201304-618/304HAMbd6ÖR My 3i00DE-18-3041.1\x11196911.196900428ny a22001933n 4500127945296DE-10101000001120070626213815.0960603||||||||||||||||ger|||||||5-xDE-600(DE-601)004219562(DE-18-309)165646314201309-518/309HAMbd3h09DE-18-3091.1\x11196911.196900435ny a22001933n 4500078692253DE-10101000001120071112172255.0010406||||||||||||||||ger|||||||5-xDE-600(DE-601)476803470(DE-H250)165646314208250-0H 250HAMbd5I Sj 53in00DE-H2501.1\x11196911.196900435ny a22001933n 4500091762006DE-10101000001120120821213900.0900326||||||||||||||||ger|||||||5-xDE-600(DE-604)8041009200479810001-919BAYac40001 A8 70-517l00000109DE-191.1\x19691969(=11.Aufl.)00403ny a22001813n 4500213647109DE-10101000001120120821213900.0110831||||||||||||||||ger|||||||5-xDE-600810001-919BAYad40302 A n0003020302/MG 81000 S27609DE-191.1\x11196911.196900374ny a22001693n 4500140053085DE-10101000001120120821213900.0080516||||||||||||||||ger|||||||5-xDE-600810001-919BAYad40312 A03120312/DDR Zs 1809DE-191.1\x11196911.196900391ny a22001813n 4500109522141DE-10101000001120120821213900.0051006||||||||||||||||ger|||||||5-xDE-600810001-919BAYad40506 A05060506/A 8609DE-191.1\x111969Aufl.11.196900422ny a22001813n 4500091762014DE-10101000001120120821213900.0000303||||||||||||||||ger|||||||5-xDE-600(DE-604)8041036373257810001-919BAYab40900 A09000900/NQ 6960 S276(11)09DE-191.1\x11196911.196900418ny a22001813n 4500091762022DE-10101000001120120821213900.0000303||||||||||||||||ger|||||||5-xDE-600(DE-604)8041036373303810001-919BAYab41502 A15021502/DDR 1 SBZ 1g09DE-191.1\x11196911.196900421ny a22001813n 4500081067259DE-10101000001120120821213900.0030218||||||||||||||||ger|||||||5-xDE-600(DE-604)8027027264335881037-0936BAYbc228 B2828/AE 61805 F528(11)09DE-9361.1\x11196911.196900393ny a22001813n 4500000000329DE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)27-9741000-121BAWac1Fo XII a 5068 ak00DE-211.1\x11196911.196900333ny a22001573n 4500075723549DE-10101000001120030714103124.0011127||||||||||||||||ger|||||||5-xDE-600741025-621/24BAWbd1DE-21-241.1\x11196911.196900359ny a22001693n 4500210110392DE-10101000001120110704102526.0110704||||||||||||||||ger|||||||5-xDE-600748552-9Rot 2BAWac1Z 145a00DE-Rot21.1\x11196911.196900384ny a22001813n 4500000000337DE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)25-5700100-924BAWac120/446800DE-241.1\x11196911.196900382ny a22001813n 4500000000345DE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)30-9781000-325BAWac1ZR 9300DE-251.1\x11196911.196900360ny a22001693n 4500000000353DE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)31-0781009-x25/9BAWbd1DE-25-91.1\x11196911.196900393ny a22001813n 4500000000361DE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)33-4785100-5Frei 129BAWac1O 19500DE-Frei1291.1\x11196911.196900372ny a22001693n 450000000037XDE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2074031-1785300-2Frei 160BAWac1DE-Frei1601.1\x11196911.196900456ny a22001933n 4500173791476DE-10101000001120100406213400.0100309||||||||||||||||ger|||||||5-xDE-600(DE-603)589550020631005-926/005HESbc1B 52/1409, 11. Aufl.l00005 RG 10006 D486 (11)09DE-26-0051.1\x11196911.196900401ny a22001813n 4500173791492DE-10101000001120100406213400.0100324||||||||||||||||ger|||||||5-xDE-600(DE-603)59020260X631030-826/030HESac203.10934l00DE-26-0301.1\x11196911.196900377ny a22001693n 4500176539433DE-10101000001120100504115737.0100504||||||||||||||||ger|||||||5-xDE-600851000-329BAYad202JU A02JU02JU/KJ/IIII 105609DE-291.1\x11196911.196900391ny a22001813n 4500054980119DE-10101000001120041014114504.0041012||||||||||||||||ger|||||||5-xDE-600(DE-603)020000316601000-330HESac180.767.9400DE-301.1\x11196911.196900414ny a22001933n 4500054980127DE-10101000001120041014114504.0041012||||||||||||||||ger|||||||5-xDE-600(DE-603)126171920601000-330HESac280.386.4300DE-301.1\x1119692. Ex.11.196900405ny a22001813n 4500116350709DE-10101000001120060517172439.0060425||||||||||||||||ger|||||||5-xDE-600(DE-603)387472517601330-230/330HESbd302/NQ 6950 S26700DE-30-3301.1\x11196911.196900421ny a22001813n 450000000040XDE-10101000001120091218121900.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)28-0750100-631BAWac1DE-311.1\x11196911.1969Einzelnachweis <69 A 3662; 69 A 3890; 70 A 618>00391ny a22001813n 4500054980178DE-10101000001120040419133948.0021223||||||||||||||||ger|||||||5-xDE-600(DE-603)080482597655000-936HESac1Z 6/619 a00DE-361.1\x11196911.196900364ny a22001693n 4500000000434DE-10101000001120040323220219.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)19-x501102-438/102NRWbd1DE-38-1021.1\x11196911.196900375ny a22001693n 4500000000442DE-10101000001120040323220219.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)4432612-9501205-338/205NRWbd1DE-38-2051.1\x111969Aufl. 11.196900388ny a22001813n 4500054980186DE-10101000001120120619214915.0021223||||||||||||||||ger|||||||5-xDE-600(DE-603)070000085651000-077HESac1Y 109700DE-771.1\x11196911.196900439ny a22001933n 4500054980216DE-10101000001120120619214915.0101016||||||||||||||||ger|||||||5-xDE-600(DE-603)070698449651002-477/SB IIHESbd2AB 15300Politikwissenschaft09DE-77-SBII1.1\x11196911.196900450ny a22001933n 4500054980194DE-10101000001120120619214915.0120606||||||||||||||||ger|||||||5-xDE-600(DE-603)070698384651016-477/016HESbd3FB 01 Kath. Theol.00Katholische Theologie09DE-77-0161.1\x11196911.196900442ny a22001933n 4500054980232DE-10101000001120120619214915.0990616||||||||||||||||ger|||||||5-xDE-600(DE-603)134018508651092-977/092HESbd4Yc 300Osteuropäische Geschichte09DE-77-0921.1\x11196911.196900416ny a22001933n 450011262684XDE-10101000001120120619214915.0051227||||||||||||||||ger|||||||5-xDE-600(DE-603)333571193658005-1Mz 5HESbd1OX 3400IEG/209DE-Mz51.1\x11196911.196900407ny a22001933n 4500000000515DE-10101000001120080214124527.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)29-2751000-790BAWac1V A 126800DE-901.1\x111969Aufl.11.196900407ny a22001813n 4500091292786DE-10101000001120100615214213.0940127||||||||||||||||ger|||||||5-xDE-600(DE-604)8040013577743820001-491BAYad40430 A04300430/70-809DE-911.1\x11196911.196900389ny a22001813n 450000000054XDE-10101000001120030714103126.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)4710522-7701000-x93BAWac12A 258000DE-931.1\x11196911.196900393ny a22001813n 4500204427827DE-10101000001120110319193259.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2475713-5170100-9109BERab11Ab 17600DE-1091.1\x11196911.196900423ny a22001933n 4500000000558DE-10101000001120030714103126.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2071096-3681000-7180BAWac1ZA 377400Tiefmagazin09DE-1801.1\x11196911.196900389ny a22001813n 4500000000566DE-10101000001120080801213526.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)1-2120000-8188BERac110 ZE 108/200DE-1881.1\x11196911.196900365ny a22001693n 4500000000582DE-10101000001120080801213526.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)3-6120211-x188/211BERac1DE-188-2111.1\x11196911.196900337ny a22001573n 4500142182710DE-10101000001120080801213526.0080801||||||||||||||||ger|||||||5-xDE-600120726-x188/726BERbd1DE-188-7261.1\x11196911.196900365ny a22001693n 4500000000590DE-10101000001120080801213526.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)6-1120807-x188/807BERbd1DE-188-8071.1\x11196911.196900365ny a22001693n 4500000000604DE-10101000001120080801213526.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)7-3120808-1188/808BERbd1DE-188-8081.1\x11196911.196900365ny a22001693n 4500000000620DE-10101000001120080801213526.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)4-8120820-2188/820BERbd1DE-188-8201.1\x11196911.196900428ny a22001933n 450009606837XDE-10101000001120040705125933.0960603||||||||||||||||ger|||||||5-xDE-600(DE-601)19743066X(DE-206)165646314231206-2206HAMac1X 14628s00DE-2061.1\x11196911.196900427ny a22001933n 4500096068388DE-10101000001120040705125933.0960603||||||||||||||||ger|||||||5-xDE-600(DE-601)197430678(DE-206)165646314231206-2206HAMac2Arb-S VII 39s00DE-20611.1969= X 1462800357ny a22001693n 4500147137608DE-10101000001120090114104916.0090114||||||||||||||||ger|||||||5-xDE-600661000-6291BAWac169-523300DE-2911.1\x11196911.196900439ny a22001933n 450007840181XDE-10101000001120120207214430.0020508||||||||||||||||ger|||||||5-xDE-600(DE-604)8069056807155841000-8355BAYac200 A0000/MG 81000 S27609DE-3551.1\x111969Aufl.11.196900455ny a22002053n 4500092995861DE-10101000001120120207214430.0030930||||||||||||||||ger|||||||5-xDE-600(DE-604)8069058608648847000-5155BAYac3999 APolym.349l0099909DE-1551.1\x111969Aufl.11.196900456ny a22002053n 450009299587XDE-10101000001120120207214430.0030930||||||||||||||||ger|||||||5-xDE-600(DE-604)8069058608664847000-5155BAYac3999 BPolym.349al0099909DE-1551.1\x111969Aufl.11.196900402ny a22001813n 4500098655388DE-10101000001120120207214430.0041108||||||||||||||||ger|||||||5-xDE-600848005-9Re 5BAYbd49995 A99959995/Hist.p.A 16809DE-Re51.1\x111969Aufl.11.196900345ny a22001573n 4500221799680DE-10101000001120120207214430.0120203||||||||||||||||ger|||||||5-xDE-600848013-8Re 13BAYabW 01W 01/70-9309DE-Re131.1\x1111,196900405ny a22001813n 4500075924889DE-10101000001120041007031632.0010306||||||||||||||||ger|||||||5-xDE-600(DE-604)8007003180514895000-337BAYac AStw 653l00DE-371.1\x11196911.196900385ny a22001813n 450000000068XDE-10101000001120030714103128.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)21-8558002-xTr 2NRWac1X 14200DE-Tr21.1\x11196911.196900391ny a22001813n 4500000000698DE-10101000001120030714103128.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)22-x591000-6467NRWac1S 04-40 S 1400DE-4671.1\x11196911.196900408ny a22001813n 4500066718724DE-10101000001120041008041252.0970624||||||||||||||||ger|||||||5-xDE-600(DE-604)8013024843989865000-722BAYac222 A2222/74.75309DE-221.1\x11196911.196900408ny a22001813n 450000000071XDE-10101000001120060714112226.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2993964-1291000-7715NIEac1H pol 300 2br ZA 8188d00DE-7151.1\x11196911.196900409ny a22001813n 4500000000728DE-10101000001120060714112239.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2993964-1291000-7715NIEac2H pol 300 2br ZA 8188ad00DE-7151.1\x11196911.196900409ny a22001813n 4500000000736DE-10101000001120060714112258.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2993964-1291000-7715NIEac3H pol 300 2br ZA 8188bd00DE-7151.1\x11196911.196900443ny a22001933n 4500081067186DE-10101000001120041009052227.0030218||||||||||||||||ger|||||||5-xDE-600(DE-604)8027027262707881000-x824BAYac200 A0000/AE 61805 F528(11)09DE-8241.1\x111969Aufl.11.196900399ny a22001813n 4500000000744DE-10101000001120030714103129.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2006246-1540100-8929NRWac6107101Z 76900DE-9291.1\x11196911.196900379ny a22001813n 450021508537XDE-10101000001120111013093143.0111013||||||||||||||||ger|||||||5-xDE-600540101-xZw 1NRWac1GGm 5100DE-Zw11.1\x11196911.19692 Ex.00366ny a22001693n 4500000000760DE-10101000001120100125215947.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2459842-2180042-5B 183BERbd1DE-B1831.1\x11196911.196900366ny a22001693n 4500000000779DE-10101000001120100125215947.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2459839-2180177-6B 177BERbd1DE-B1771.1\x11196911.196900369ny a22001693n 4500000000795DE-10101000001120100125215947.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2459848-3180724-9B 724BERbd51DE-B7241.1\x11196911.196900495ny a22001933n 450010910207XDE-10101000001120051101175650.0050310||||||||||||||||ger|||||||5-xDE-600(DE-601)710960107(DE-Luen4)165646314314000-3Lün 4NIEac1D-a 4/11u00OST09DE-Luen4v11/1969 ; Für Bandanzeige bitte "zugehörige Publikationen" anklicken00390ny a22001813n 4500000000817DE-10101000001120030714103130.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)20-6538133-2Bo 133NRWac1X 153800DE-Bo1331.1\x11196911.196900402ny a22001813n 4500205343961DE-10101000001120110401101038.0110331||||||||||||||||ger|||||||5-xDE-600953000-9Ch 1SAXac1A 2007100DE-Ch11.1\x111969Aufl. 11.1969Stiftung Land Sachsen00383ny a22001693n 4500179893556DE-10101000001120100623172643.0000315||||||||||||||||ger|||||||5-xDE-600(DE-601)684114887(DE-Old3)165646314298003-4Old 3NIEac1F.II.b.040.ul00DE-Old300454ny a22002053n 4500155521748DE-10101000001120100611215228.0990511||||||||||||||||ger|||||||5-xDE-600(DE-601)339109602(DE-Au3)165646314298103-8Au 3NIEab1ZS 498fk00Au09DE-Au31.1\x11196911.196900358ny a22001693n 4500000000833DE-10101000001120030714103130.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)26-7703000-9752BAWac1DE-7521.1\x11196911.196900377ny a22001813n 4500074163337DE-10101000001120071004121038.0010726||||||||||||||||ger|||||||5-xDE-600672000-6Lan 1NRWacges 021DE-Lan11.1\x111969Aufl.11.196900431ny a22001933n 4500000000841DE-10101000001120050707151646.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)5073736-3792000-3747BAWac1Z 80800Ausweichmagazin09DE-7471.1\x111969Aufl. 11.196900399ny a22001813n 4500080731155DE-10101000001120040419133948.0021203||||||||||||||||ger|||||||5-xDE-600(DE-603)178472808358050-7Mb 50HESac130 VII O 4/200DE-Mb501.1\x11196911.196900374ny a22001693n 4500075814846DE-10101000001120120405123317.0011210||||||||||||||||ger|||||||5-xDE-600120876-7578/876BERbd130 Hist. 1969/1100DE-578-8761.1\x11196911.196900383ny a22001813n 4500000000752DE-10101000001120030714103130.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)17-6490100-951NRWac1Hz 48000DE-511.1\x11196911.196900403ny a22001813n 4500053371631DE-10101000001120030714103131.0991229||||||||||||||||ger|||||||5-xDE-600(DE-600)5096727-7758026-5Ka 26BAWac1LW 059(11)00DE-Ka261.1\x111969Aufl. 11.196900440ny a22002053n 450021217911XDE-10101000001120110802214350.0110127||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)002591068a030003-2AT-BMAWEUbd00.012.075-B00AT-BMA1.1\x111969Aufl.11.196900406ny a22001813n 450010665344XDE-10101000001120110802214350.0861104||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)001057099030009-3AT-UBS-HBWEUbd00.0156664 I00AT-UBS-HB1.1\x11196911.196900410ny a22001813n 4500107042835DE-10101000001120110802214350.0030401||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)001249538030010-xAT-UBG-HBWEUbd00.01I 37507500AT-UBG-HB1.1\x196911. Aufl. 196900445ny a22002053n 4500162174675DE-10101000001120110802214350.0090706||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)002181192a030011-1AT-UBI-HBWEUbd00.0140327900AT-UBI-HB1.1\x111969Aufl.11.196900433ny a22001933n 450012499234XDE-10101000001120110802214350.0070305||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)001655347a030012-3AT-UBW-002WEUbd00.01I-91893900AT-UBW-0021.1\x111969Aufl. 11.196900426ny a22001933n 4500130689637DE-10101000001120110802214350.0070710||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)001676711a030019-6AT-UBWW-HBWEUbd00.0168334-B00AT-UBWW-HB1.1\x11196911.196900358ny a22001693n 4500162660677DE-10101000001120090911214243.0090911||||||||||||||||ger|||||||5-xDE-600808457-9M 457BAYbb1 ZA 749 k00DE-M4571.1\x1969196900377ny a22001693n 4500150213794DE-10101000001120090911214243.0090227||||||||||||||||ger|||||||5-xDE-600808909-7M 124BAYbd1B002B002/39, 11209DE-M1241.1\x111969Aufl. 11.196900398ny a22001813n 4500000000205DE-10101000001120050728030426.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2151173-1698208-6B 208BAWab1D: XIX F: 100DE-B2081.1\x11196911.196900393ny a22001813n 4500000000299DE-10101000001120060517213353.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)16-4208212-3B 212HAMbd1Allg. 501/100DE-B2121.1\x11196911.196900356ny a22001693n 4500242007309DE-10101000001120120815163641.0120815||||||||||||||||ger|||||||5-xDE-600468364-x364NRWac1MX 10100DE-3641.1\x11196911.196900468ny a22001933n 4500089345657DE-10101000002X20080906223026.0030819||||||||||||||||ger|||||||7-3DE-600(XX-XxUND)0008/0547950200-2101aSAXabL-1963-0893456571ZA 80306ab 18. 1991/9200ZD 499bis 17.1990/9101DE-101a1.1963/66 - 26.200800409ny a22001813n 4500612882284DE-10101000002X20080906223026.0031002||||||||||||||||ger|||||||7-3DE-600(XX-XxUND)0001/0026600100-2101bHESbdF-1963-6128822841DZs 976600DE-101b1.1963/66 - 26.200800514ny a22002053n 4500082748799DE-10101000002X20080412034001.0991125||||||||||||||||ger|||||||7-3DE-600(DE-601)244251967(DE-1a)129058068101005-01aBERac1Zsn 82567ul00DE-1a1.1\x191993/941.2\x26200819.1993/94; 20.1995/96; 21.1997/99; 22.2000/02 - 26.200800514ny a22002173n 4500082748802DE-10101000002X20070302160221.0991125||||||||||||||||ger|||||||7-3DE-600(DE-601)416869696(DE-1)129058068910107-x1BERac218 Per 335ul00Außenmagazin09DE-11.1\x11963/661.2\x51974/751.1963/66 - 5.1974/75,100510ny a22002173n 4500082748810DE-10101000002X20070302160221.0991125||||||||||||||||ger|||||||7-3DE-600(DE-601)499072286(DE-1)129058068910107-x1BERac330 SA 2567ul00Außenmagazin09DE-11.1\x51974/751.2\x1819925.1974/75,2 - 18.199200501ny a22002173n 4500171332229DE-10101000002X20120626171554.0990322||||||||||||||||ger|||||||7-3DE-600(DE-601)329340905(DE-3-7)129058068931007-13/7SAAab1ZT 253fk00Ha 709DE-3-71.1\x21967/691.2\x2620082.1967/69 - 26.200800485ny a22002053n 4500160752078DE-10101000002X20100316214820.0991125||||||||||||||||ger|||||||7-3DE-600(DE-601)500033811(DE-Ha2)129058068938102-8Ha 2SAAac1Lb 1 / 70. 8°ul00DE-Ha21.1\x21967/691.2\x2620082.1967/69 - 26.200800431ny a22001933n 4500054980399DE-10101000002X20070302160222.0021223||||||||||||||||ger|||||||7-3DE-600(DE-603)040063240351000-14HESac1M 64/1800DE-41.1\x119631.2\x319711.1963/64 - 3.1969/7100436ny a22001933n 4500000000892DE-10101000002X20080226091044.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)41-3538127-7Bo 127NRWab1AZ 48400DE-Bo1271.1\x21967/691.2\x2620082.1967/69 - 26.200800430ny a22001933n 4500087807629DE-10101000002X20120725171852.0940801||||||||||||||||ger|||||||7-3DE-600(DE-601)129247502(DE-7)129058068341000-67NIEac1ZA 22327bl00DE-71.1\x61965/666.1965/6600537ny a22002293n 4500069236658DE-10101000002X20080506171629.0960101||||||||||||||||ger|||||||7-3DE-600(DE-601)193692058(DE-8)129058068231000-48HAMad1Y 4464gn001010bia 380 r09DE-81.1\x11963/661.2\x2620081.1963/66 - 26.2008*14 ; *15 ; *100588ny a22002293n 4500169633691DE-10101000002X20100129214230.0100115||||||||||||||||ger|||||||7-3DE-600(DE-601)1109357400(DE-9)129058068922000-89HAMab1672/Z 65 A 59fk00UB 67209DE-91.1\x11964/662.1\x61976/772.2\x201995/961.1964/66,4-7; 6.1976/77 - 8.1980; 9.1981,2; 10.1982 - 20.1995/9600590ny a22002413n 4500108575063DE-10101000002X20100129214230.0081027||||||||||||||||ger|||||||7-3DE-600(DE-601)470478829(DE-9)129058068922000-89HAMab2660/WA 48300fk00UB 66509DE-91.1\x21967/691.2\x51974/752.1\x2119972.2\x2520042.1967/69 - 5.1974/75; 21.1997 - 25.200400449ny a22001933n 4500067786189DE-10101000002X20080227144801.0950325||||||||||||||||ger|||||||7-3DE-600(DE-604)8036057301352800100-512BAYac AZ 65.36200DE-121.1\x11963/661.2\x2620081.1963/66 - 26.200800438ny a22001933n 4500000000957DE-10101000002X20080407090344.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)2752408-5950100-914SAXac1Y. 8. 160500DE-141.1\x11963/661.2\x2620081.1963/66 - 26.200800357ny a22001693n 4500079697836DE-10101000002X20070302160224.0020722||||||||||||||||ger|||||||7-3DE-600950100-914SAXac7Y. 8. 160500DE-14- Suppl. zu21.1997/9900454ny a22002053n 4500000000965DE-10101000002X20070302160224.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)2724987-6952000-415SAXab174-7-6900HB09DE-151.1\x119631.2\x2220001.1963 - 22.2000,100433ny a22001933n 4500000000973DE-10101000002X20080213091607.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)49-8691000-216BAWac1ZSN 2980 B00DE-161.1\x11963/661.2\x2620081.1963/66 - 26.200800474ny a22002053n 450007856669XDE-10101000002X20110119170707.0960603||||||||||||||||ger|||||||7-3DE-600(DE-601)003985512(DE-18)129058068201000-818HAMab1X/20507sk00DE-181.1\x21967/691.2\x2620082.1967/69 - 26.200800492ny a22002053n 4500078566703DE-10101000002X20100609170318.0960603||||||||||||||||ger|||||||7-3DE-600(DE-601)004097114(DE-18-19)129058068201019-718/19HAMbd2Museum Ent. Abt.in00DE-18-191.1\x11963/661.2\x2620081.1963/66 - 26.200800453ny a22001933n 4500067786227DE-10101000002X20080304090130.0960729||||||||||||||||ger|||||||7-3DE-600(DE-604)8079015993035871000-420BAYac200 B0000/PM 127809DE-201.1\x11963/661.2\x2620081.1963/66-26.200800429ny a22001933n 4500000001023DE-10101000002X20080613141409.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)50-4700100-924BAWac1Z 654800DE-241.1\x11963/661.2\x2620081.1963/66 - 26.200800467ny a22001933n 4500000001031DE-10101000002X20080310082415.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)4399911-6781033-725/33BAWbd1DE-25-331.1\x11963/661.2\x2620081.1963/66 - 26.2008Dauerleihgabe der UB: V 5733,mc; ZN 600439ny a22001933n 4500054980380DE-10101000002X20080519141312.0080514||||||||||||||||ger|||||||7-3DE-600(DE-603)000034908631000-x26HESac1ZZ 57/25/20l00DE-261.1\x119631.2\x2620081.1963/66 - 26.200800497ny a22002173n 4500069910731DE-10101000002X20070302160226.0980602||||||||||||||||ger|||||||7-3DE-600(DE-601)145675890(DE-27)129058068941000-427THUac18 Z 2531Cs00Mag09DE-271.1\x11963/661.2\x1319861.1963/66 - 13.198600570ny a22002293n 450006991074XDE-10101000002X20080714170957.0000419||||||||||||||||ger|||||||7-3DE-600(DE-601)387023941(DE-27-26)129058068941026-027/26THUbb28 Z 2531Csk00J 26BIO:ZT:609DE-27-261.1\x141986/871.2\x26200814.1986/87 - 26.2008Jg.18.1991 Bestand lückenhaft00504ny a22002173n 4500156423286DE-10101000002X20090602173349.0070723||||||||||||||||ger|||||||7-3DE-600(DE-601)827938403(DE-28)129058068921000-328HAMac1WA 48540bl0028/BB1-ZM209DE-281.1\x119631.2\x61976/771.1963 - 6.1976/7700439ny a22001933n 4500115422838DE-10101000002X20080218170109.0080212||||||||||||||||ger|||||||7-3DE-600(DE-603)03604668x601000-330HESac18° P 11.219/700DE-301.1\x119631.2\x2620081.1963/66 - 26.200800392ny a22001813n 4500115422846DE-10101000002X20070302160226.0990422||||||||||||||||ger|||||||7-3DE-600(DE-603)132971518601000-330HESac28° P 11.219/700DE-30- Suppl. zu21.199800473ny a22002053n 4500070194718DE-10101000002X20101112190830.0980222||||||||||||||||ger|||||||7-3DE-600(DE-601)239021762(DE-33)129058068925300-233HAMab1Z 1375sk00DE-331.1\x21967/691.2\x1719892.1967/69 - 17.198900432ny a22001933n 4500054980372DE-10101000002X20080325162909.0080319||||||||||||||||ger|||||||7-3DE-600(DE-603)057508992620100-343HESac1ZSA 69300DE-431.1\x519631.2\x2620085.1963/66 - 26.200800474ny a22002053n 4500070693277DE-10101000002X20120105190851.0960603||||||||||||||||ger|||||||7-3DE-600(DE-601)125780656(DE-46)129058068281000-146HAMac1fc 3856dl00DE-461.1\x11963/19661.2\x719781.1963/66 - 7.197800493ny a22002173n 4500071110607DE-10101000002X20111109190504.0950131||||||||||||||||ger|||||||7-3DE-600(DE-601)133476979(DE-84)129058068331000-084NIEab1BL Z 523fk00ZFM09DE-841.1\x119631.2\x2620081.1963 - 26.200800500ny a22002173n 4500081753977DE-10101000002X20090717170742.0940910||||||||||||||||ger|||||||7-3DE-600(DE-601)13842151X(DE-89)129058068301000-489NIEab1NG 1970fk00Haus209DE-891.1\x11963/661.2\x2620081.1963/66 - 26.200800479ny a22002053n 4500000001112DE-10101000002X20080624103400.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)48-6670100-0107NRWac1Per. 615500DE-1071.1\x11963/662.1\x31969/712.2\x2620081.1963/66; 3.1969/71 - 26.200800390ny a22001813n 4500108098761DE-10101000002X20080410133108.0050809||||||||||||||||ger|||||||7-3DE-600170100-9109BERabRJ1ZA 216000DE-1091.1\x119631.1963Standort: BSTB00516ny a22002173n 4500000001120DE-10101000002X20070302160229.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)34-6120000-8188BERac116 ZR 41/100DE-1881.1\x11963/652.1\x31969/712.2\x2019951.1963/65; 3.1969/71 - 20.1995,1Bezug abgebrochen00441ny a22001933n 4500000000930DE-10101000002X20100127212050.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)2671752-9130016-7B 16BERab1de leipzig00DE-B161.1\x11963/661.2\x2620081.1963/66 - 26.200800429ny a22001933n 4500000001139DE-10101000002X20070302160229.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)46-2661000-6291BAWac1Z 205100DE-2911.1\x119631.2\x31969/711.1963 - 3.1969/7100460ny a22001933n 4500067786197DE-10101000002X20080211134811.0991206||||||||||||||||ger|||||||7-3DE-600(DE-604)8069051847515841000-8355BAYac3237 A237237/WA 4854009DE-3551.1\x11963/661.2\x2620081.1963/66 - 26.200800413ny a22001813n 4500094277931DE-10101000002X20070302160229.0040211||||||||||||||||ger|||||||7-3DE-600(DE-604)8007004231449895000-337BAYac A4 NV 3 cl00DE-371.1\x11963/661. 1963/66 -00448ny a22001933n 4500067786219DE-10101000002X20080222155612.0951230||||||||||||||||ger|||||||7-3DE-600(DE-604)8013023109106865000-722BAYac222 B2222/Z 65609DE-221.1\x11963/661.2\x2620081.1963/66 - 26.200800452ny a22001933n 4500067786200DE-10101000002X20080325141158.0960403||||||||||||||||ger|||||||7-3DE-600(DE-604)8017019220928852000-8703BAYac285 A8585/WA 4854009DE-7031.1\x119631.2\x2620081.1963 - 26.200800403ny a22001813n 4500078039274DE-10101000002X20090804215444.0020502||||||||||||||||ger|||||||7-3DE-600958024-4Gl 1SAXab1Z 14 b00DE-Gl11.1\x11963/661.2\x2620081.1963/66 - 26.200800408ny a22001813n 4500117136700DE-10101000002X20090804215444.0060620||||||||||||||||ger|||||||7-3DE-600958075-xD 5SAXab1Zz Eu Deu 00400DE-D51.1\x11963/661.2\x2620081.1963/66 - 26.200800405ny a22001813n 4500138685975DE-10101000002X20090804215444.0080328||||||||||||||||ger|||||||7-3DE-600958806-1Fb 24SAXbd1FJ-Fau00DE-Fb241.1\x11963/661.2\x2620081.1963/66 - 26.200800396ny a22001813n 4500000001201DE-10101000002X20090917160236.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)2728301-x978004-xEb 1BERac71Z33900DE-Eb11.1\x11963/661.1963/6600517ny a22002173n 4500000001171DE-10101000002X20080319141813.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)2000061-3490100-951NRWac1Nz 57c00DE-511.1\x11963/661.2\x2220002.1\x2420032.2\x2620081.1963/66 - 22.2000; 24.2003 - 26.200800450ny a22001933n 4500106920987DE-10101000002X20120314183059.0020729||||||||||||||||ger|||||||7-3DE-600(AT-9:OBV)001186306030032-9AT-ÖAWWEUbd00.018055600AT-OeAW-BA1.1\x11963/661.2\x2620081.1963/66 - 26.200800437ny a22001933n 4500181226952DE-10101000002X20110926183308.0110916||||||||||||||||ger|||||||7-3DE-600(DE-603)594283329978201-1B 15BERab111 53900DE-B151.1\x11963/661.2\x2620081.1963/66 - 26.200800425ny a22001813n 4500603436196DE-10101000003820080906215733.0961015||||||||||||||||ger|||||||9-7DE-600950200-2101aSAXabL-1964-6034361961ZA 8030516. 1992/93-01ZD 499-15. 199002DE-101a1.1964/67 - 24.200600374ny a22001693n 4500612907880DE-10101000003820080906215733.0031002||||||||||||||||ger|||||||9-7DE-600600100-2101bHESbdF-1964-6129078801DZs 1063300DE-101b1.1964/67 - 24.200600478ny a22002053n 4500082748829DE-10101000003820070530171737.0991125||||||||||||||||ger|||||||9-7DE-600(DE-601)244194319(DE-1a)129058076101005-01aBERac1Zsn 81777ul00DE-1a1.1\x161992/931.2\x24200616.1992/93 - 24.200600512ny a22002173n 4500082748837DE-10101000003820070613173710.0991125||||||||||||||||ger|||||||9-7DE-600(DE-601)416869726(DE-1)129058076910107-x1BERac220 Per 428ul00Außenmagazin09DE-11.1\x11964/671.2\x41973/751.1964/67 - 4.1973/7500502ny a22002173n 4500082748845DE-10101000003820070613173711.0991125||||||||||||||||ger|||||||9-7DE-600(DE-601)416869734(DE-1)129058076910107-x1BERac329 PA 2959ul00Außenmagazin09DE-11.1\x519761.2\x1519905.1976 - 15.199000471ny a22002053n 4500171332237DE-10101000003820100316214820.0941231||||||||||||||||ger|||||||9-7DE-600(DE-601)145496597(DE-3)129058076931000-93SAAab1ZA 1332fk00DE-31.1\x11964/671.2\x2020001.1964/67 - 20.200000487ny a22002053n 4500160752086DE-10101000003820100316214820.0991125||||||||||||||||ger|||||||9-7DE-600(DE-601)50003382X(DE-Ha2)129058076938102-8Ha 2SAAab1Cb 1 / 114.a 8°sk00DE-Ha21.1\x11964/671.2\x2420061.1964/67 - 24.200600472ny a22002053n 4500087807637DE-10101000003820120725171852.0940718||||||||||||||||ger|||||||9-7DE-600(DE-601)128109580(DE-7)129058076341000-67NIEac1ZA 28968bl00DE-71.1\x11964/671.2\x2320051.1964/67 - 23.200500441ny a22001933n 4500068324170DE-10101000003820070425134316.0950325||||||||||||||||ger|||||||9-7DE-600(DE-604)8036057368457800100-512BAYac AZ 65.61700DE-121.1\x11964/671.2\x2420061.1964/67 - 24.200600438ny a22001933n 4500000001309DE-10101000003820070530104907.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)2411657-9950100-914SAXac1Y. 8. 195000DE-141.1\x11964/671.2\x2420061.1964/67 - 24.200600474ny a22002053n 4500078566711DE-10101000003820071026170550.0960603||||||||||||||||ger|||||||9-7DE-600(DE-601)003952940(DE-18)129058076201000-818HAMab1X/14743sk00DE-181.1\x11964/671.2\x2420061.1964/67 - 24.200600449ny a22001933n 450007856672XDE-10101000003820070719171459.0960603||||||||||||||||ger|||||||9-7DE-600(DE-601)004097122(DE-18-19)129058076201019-718/19HAMbd2DE-18-191.1\x11964/671.2\x2420061.1964/67 - 24.200600455ny a22001933n 4500091762030DE-10101000003820070917142250.0931008||||||||||||||||ger|||||||9-7DE-600(DE-604)8041017567106810001-919BAYad42002 A20022002/A 2109DE-191.1\x11964/671.2\x2420061.1964/67- 24.200600407ny a22001813n 4500111608104DE-10101000003820070302160419.0051207||||||||||||||||ger|||||||9-7DE-600781000-325BAWac1ZN 269000DE-251.1\x11964/671.2\x202000/021.1964/67 - 20.2000/0200510ny a22002173n 4500069930341DE-10101000003820070302160419.0980905||||||||||||||||ger|||||||9-7DE-600(DE-601)295952539(DE-27-26)129058076941026-027/26THUbd1BIO:ZT:5s00J 2609DE-27-261.1\x11964/671.2\x21966/691.1964/67 - 2.1966/6900432ny a22001933n 4500128116927DE-10101000003820070702171517.0070626||||||||||||||||ger|||||||9-7DE-600(DE-603)505865254601000-330HESac1SZ 236100DE-301.1\x119641.2\x2420061.1964/67 - 24.200600473ny a22002053n 4500070194726DE-10101000003820101112190830.0980222||||||||||||||||ger|||||||9-7DE-600(DE-601)23902172X(DE-33)129058076925300-233HAMab1Z 1386sk00DE-331.1\x11964/671.2\x1519901.1964/67 - 15.199000482ny a22002053n 4500070693285DE-10101000003820120202180749.0960603||||||||||||||||ger|||||||9-7DE-600(DE-601)125780664(DE-46)129058076281000-146HAMac1fb 5388dl00DE-461.1\x11964/19671.2\x61978/19791.1964/67 - 6.1978/7900434ny a22001933n 4500000001392DE-10101000003820070619140504.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)60-7670100-0107NRWac1Per. 615400DE-1071.1\x11964/671.2\x2420061.1964/67 - 24.200600562ny a22002293n 4500000001406DE-10101000003820070302160420.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)53-x170100-9109BERabRB1N 838/3500DE-1091.1\x819822.1\x1819972.2\x1919993.1\x2020028,1.1982; 18,2.1997 - 19,2.1999; 20,2.2002 - 24.2006Standort: BSTB00474ny a22002053n 4500000001414DE-10101000003820070302160420.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)2613502-4170100-9109BERabRB1Kg 375100DE-1091.1\x11964/671.2\x1819961.1964/67 - 18,1.1996Standort: BSTB00475ny a22002053n 4500000001422DE-10101000003820070302160420.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)52-8120000-8188BERac116 ZR 41/200DE-1881.1\x11964/671.2\x161992/931.1964/67 - 16.1992/93Bezug abgebrochen00436ny a22001933n 4500000001287DE-10101000003820100127212051.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)2694670-1130016-7B 16BERab1moll.09DE-B161.1\x11964/671.2\x2420061.1964/67 - 24.200600462ny a22001933n 4500068324197DE-10101000003820070302160421.0951118||||||||||||||||ger|||||||9-7DE-600(DE-604)8069042629438841000-8355BAYac288 A8888/WQ 801509DE-3551.1\x11964/672.1\x21966/691. 1964/67; 2. 1966/6900554ny a22002173n 4500000001457DE-10101000003820070302160421.0991125||||||||||||||||ger|||||||9-7DE-600(XX-XxUND)#SB:E160=1964-2002<19 QQ000 M062>%01#(DE-600)2899690-2481000-4361NRWac119 QQ000 M06200DE-3611.1\x11964/671.2\x202000/022.1\x2320051.1964/67 - 20.2000/02; 23.200500442ny a22001933n 4500077936205DE-10101000003820091118111155.0020415||||||||||||||||ger|||||||9-7DE-600958024-4Gl 1SAXab1Z Mal00DE-Gl11.1\x11964/671.2\x2420061.1964/67 - 24.2006[N=12.1987; 17.1994/95]00408ny a22001813n 4500117136735DE-10101000003820090804215445.0060620||||||||||||||||ger|||||||9-7DE-600958075-xD 5SAXab1Zz Eu Deu 00500DE-D51.1\x11964/671.2\x2420061.1964/67 - 24.200600458ny a22001933n 4500100728952DE-10101000003820070302160421.0050419||||||||||||||||ger|||||||9-7DE-600180085-1B 85BERac1I. A. 3. 1919600DE-B851.1\x11964/672.1\x31970/722.2\x2020011.1964/67; 3.1970/72 - 20.2001,100457ny a22001933n 4500127799672DE-10101000003820070621144927.0070621||||||||||||||||ger|||||||9-7DE-600708265-4Stg 265BAWbdI/401Mal-Z Malakologische Abhandlungen00DE-Stg2651.1\x11964/671.2\x2420061.1964/67 - 24.200600450ny a22001933n 4500106920979DE-10101000003820070926215419.0020729||||||||||||||||ger|||||||9-7DE-600(AT-9:OBV)001186302030032-9AT-ÖAWWEUbd00.018055700AT-OeAW-BA1.1\x11964/671.2\x2420061.1964/67 - 24.200600412ny a22001813n 4500106886347DE-10101000003820070926215419.0020612||||||||||||||||ger|||||||9-7DE-600(AT-9:OBV)001164588030039-1AT-LMOWEUbd00.01I-9352700AT-LMO-BIB1.1\x171994/9517.1994/95 -00569ny a22002173n 4500087807645DE-10101000004620120718171411.0010420||||||||||||||||ger|||||||10-3DE-600(DE-601)477858376(DE-7)129058084341000-67NIEab18 Z GEN 301sk00BBCSRE 370 a1 3 = 8 Z GEN 30109DE-71.1\x1/31922/491.2\x121922/59[1/3.]1922/49(1949); 4.1922/51(1951) - 12.1922/59(1960)00542ny a22002173n 4500087807653DE-10101000004620120718171412.0010420||||||||||||||||ger|||||||10-3DE-600(DE-601)477858384(DE-7)129058084341000-67NIEab2ZA 25002sk00BBCSRE 370 a1 3 = ZA 2500209DE-71.1\x131922/661.2\x151922/6213.1922/66(1961) - 15.1922/62(1964)00557ny a22002173n 4500061460613DE-10101000004620070627061749.0950325||||||||||||||||ger|||||||10-3DE-600(DE-604)8036057053731800100-512BAYac AZ 65.65700DE-121.1\x19492.1\x19511922/512.2\x19621922/621949=1922/49; 1951=4.1922/51 - 1962=15.1922/62(1964)QK-Imagenr.: 4090015900454ny a22001933n 4500000001503DE-10101000004620030714103138.0991125||||||||||||||||ger|||||||10-3DE-600(DE-600)65-6700100-924BAWac1Z 406300DE-241.1\x1/31922/491.2\x151922/62[1/3.]1922/49(1949) - 15.1922/62(1964)00437ny a22001933n 4500000001511DE-10101000004620030714103138.0991125||||||||||||||||ger|||||||10-3DE-600(DE-600)66-8781000-325BAWac1ZN 139700DE-251.1\x51922/531.2\x151922/625.1922/53 - 15.1922/6200506ny a22002053n 4500115941703DE-10101000004620060507174450.0060308||||||||||||||||ger|||||||10-3DE-600(DE-603)127272100601000-330HESac18° P 12.329/2800DE-301.1\x19222.1\x419222.2\x1519621922/49(1949); Suppl. 4.1922/51(1952) - 15.1922/62(1964)00503ny a22002053n 4500070693293DE-10101000004620030714103138.0960603||||||||||||||||ger|||||||10-3DE-600(DE-601)125780672(DE-46)129058084281000-146HAMac1b che 176 gd/568d00DE-461.1\x1/31922/491.2\x151922/621/3.1922/49(1949) - 15.1922/62(1964)00515ny a22002053n 4500000001538DE-10101000004620030714103139.0991125||||||||||||||||ger|||||||10-3DE-600(DE-600)63-2120000-8188BERac16 ZR 149/1 - 100DE-1881.1\x1/31922/492.1\x41922/512.2\x151922/62[1/3.]1922/49(1949); 4.1922/51(1951) - 15.1922/62(1964)00531ny a22002173n 4500106809318DE-10101000004620110725174319.0020114||||||||||||||||ger|||||||10-3DE-600(AT-9:OBV)001127658030015-9AT-UBTUW-HBWEUbd00.0173880 I00ZsMag09AT-UBTUW-HB1.1\x1922/492.1\x1922/511922/49; 1922/51An "La ricerca scientifica" angebunden00439ny a22001813n 4500211980749DE-10101000004620110725174319.0020114||||||||||||||||ger|||||||10-3DE-600(AT-9:OBV)001127658e2030015-9AT-UBTUW-HBWEUbd00.02AT-UBTUW-HB1.1\x141922/611.2\x151922/2214.1922/61 - 15.1922/2200399ny a22001813n 4500087767589DE-10101000005420080831000425.0030811||||||||||||||||ger|||||||12-7DE-600(XX-XxUND)0012/0004950200-2101aSAXabL-1943-0877675891ZB 2279600DE-101a6.1953 -00372ny a22001693n 4500089758668DE-10101000005420080831000425.0031002||||||||||||||||ger|||||||12-7DE-600600100-2101bHESbdF-1943-0897586681DZb 1013600DE-101b6.1953 - 12.198600425ny a22001933n 4500082748853DE-10101000005420070302160423.0991125||||||||||||||||ger|||||||12-7DE-600(DE-601)416869742(DE-1)129058092910107-x1BERac1Ogb 5/90<a>d00DE-11.1\x519435.194300464ny a22002053n 4500082748861DE-10101000005420070302160423.0991125||||||||||||||||ger|||||||12-7DE-600(DE-601)416869750(DE-1)129058092910107-x1BERac2Ogb 5/90u00DE-11.1\x719581.2\x1019697.1958 - 10.196900462ny a22002053n 450008274887XDE-10101000005420090102172138.0991125||||||||||||||||ger|||||||12-7DE-600(DE-601)416869769(DE-1)129058092910107-x1BERac341 SA 154ul00Außenmagazin09DE-11.1\x12198612.198600465ny a22002053n 4500171332245DE-10101000005420100316170005.0960603||||||||||||||||ger|||||||12-7DE-600(DE-601)219297665(DE-3)129058092931000-93SAAab1Tb 25 o 8°k00DE-31.1\x519431.2\x719585.1943 - 7.195800463ny a22002053n 4500171332253DE-10101000005420100316170006.0960603||||||||||||||||ger|||||||12-7DE-600(DE-601)219297673(DE-3)129058092931000-93SAAab2ZA 8646k00DE-31.1\x819631.2\x1119738.1963 - 11.197300434ny a22001933n 4500054980496DE-10101000005420110726215639.0070417||||||||||||||||ger|||||||12-7DE-600(DE-603)040156680351000-14HESac1XII C 153 acn00DE-41.1\x619531.2\x1219866.1953 - 12.198600436ny a22001933n 450005498050XDE-10101000005420110726215639.0021223||||||||||||||||ger|||||||12-7DE-600(DE-603)116816279351110-84/110HESac2U 10/3600DE-4-1101.1\x619531.2\x1119736.1953 - 11.197300393ny a22001813n 4500054980526DE-10101000005420110726215639.0000322||||||||||||||||ger|||||||12-7DE-600(DE-603)141917237351123-64/123HESbd3C 5/3000DE-4-1231.1\x919679.196700427ny a22001933n 4500000001635DE-10101000005420100611173000.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)87-5531014-35 NNRWac1Z 53/18700DE-5N1.1\x619531.2\x1119736.1953 - 11.197300440ny a22001933n 4500000001643DE-10101000005420070302160424.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)88-7532030-65/30NRWbd1DE-5-301.1\x519432.1\x619532.2\x1119735.1943; 6.1953 - 11.197300466ny a22002053n 4500000001651DE-10101000005420070302160425.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)83-8441000-26NRWac21Z 772700DE-61.1\x619531.2\x1119732.1\x1219866.1953 - 11.1973; 12.198600469ny a22002053n 4500087807661DE-10101000005420070302160425.0940801||||||||||||||||ger|||||||12-7DE-600(DE-601)129217654(DE-7)129058092341000-67NIEac18 Z TECHN 224b00DE-71.1\x519431.2\x1219865.1943 - 12.198600484ny a22002173n 4500069435480DE-10101000005420070302160425.0960802||||||||||||||||ger|||||||12-7DE-600(DE-601)001643827(DE-8)129058092231000-48HAMac1X 4818ul00DE-81.1\x619531.2\x1119736.1953 - 11.1973*100462ny a22002053n 4500108582965DE-10101000005420070302160426.0960801||||||||||||||||ger|||||||12-7DE-600(DE-601)215775473(DE-9)129058092922000-89HAMac1Ki 246:2k00DE-91.1\x719581.2\x1119737.1958 - 11.197300519ny a22002173n 4500000001708DE-10101000005420110817153136.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)4884759-8951000-x14/00SAXac101 8 0114200DE-14-001.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.198600430ny a22001933n 4500000001716DE-10101000005420070302160427.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)3025935-6952000-415SAXab159-7-4000DE-151.1\x719581.2\x1219867.1958 - 12.198600469ny a22002053n 4500000001724DE-10101000005420091215214902.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)97-8691000-216BAWac1ZSN 2958 B00DE-161.1\x619531.2\x1119732.1\x1219866.1953 - 11.1973; 12.198600360ny a22001693n 4500100152651DE-10101000005420091215214902.0050210||||||||||||||||ger|||||||12-7DE-600691121-316/121BAWbd1Hdb00DE-16-1211.1\x12198612.198600430ny a22001933n 4500054980429DE-10101000005420100115172110.0100112||||||||||||||||ger|||||||12-7DE-600(DE-603)060078030611000-917HESac1Zs 874100DE-171.1\x519431.2\x1219865.1943 - 12.198600455dy a22002053n 4500054980437DE-10101000005420120821180010.0100126||||||||||||||||ger|||||||12-7DE-600(DE-603)060078057611000-917HESac2Zs 8741 a00DE-171.1\x719581.2\x1119732. Ex.7.1958 - 11.197300465ny a22002053n 4500078965918DE-10101000005420070302160428.0960603||||||||||||||||ger|||||||12-7DE-600(DE-601)003788512(DE-18)129058092201000-818HAMac1Y/2000s00DE-181.1\x619531.2\x1119736.1953 - 11.197300510ny a22002173n 4500078965926DE-10101000005420070302160428.0010504||||||||||||||||ger|||||||12-7DE-600(DE-601)485293382(DE-18-47)129058092201047-118/47HAMbd2E 3/47in00DE-18-471.1\x519431.2\x919675.1943 - 9.1967Standort : Magazin00485ny a22002053n 4500078965934DE-10101000005420070302160428.0010504||||||||||||||||ger|||||||12-7DE-600(DE-601)485293390(DE-18-269)129058092201269-818/269HAMbd342.72 Techin00DE-18-2691.1\x1019692.1\x12198610.1969; 12.198600556ny a22002293n 4500098663895DE-10101000005420070302160428.0970607||||||||||||||||ger|||||||12-7DE-600(DE-601)238319369(DE-18-302)129058092201302-218/302HAMbd1Ea 109i00DE-18-3021.1\x619531.2\x719582.1\x919672.2\x1119736.1953 - 7.1958; 9.1967 - 11.197300462ny a22001933n 4500062014919DE-10101000005420070302160429.0960809||||||||||||||||ger|||||||12-7DE-600(DE-604)8039003086062805200-1M 347BAYac200 A0000/ZG 8600 L84609DE-M3471.1\x1019692.1\x12198610.1969 ; 12.198600573ny a22002293n 4500089720008DE-10101000005420081128150025.0030801||||||||||||||||ger|||||||12-7DE-600(DE-604)8057001733222808908-5210BAYab41000 AZA 113100100009DE-2101.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.1986; damit Ersch. eingest.00416ny a22001813n 4500091762049DE-10101000005420070302160429.0940506||||||||||||||||ger|||||||12-7DE-600(DE-604)8041020721145810001-919BAYad41603 A16031603/Z 2 Osr 00109DE-191.1\x719587.195800419ny a22001813n 4500091762057DE-10101000005420091209141124.0971006||||||||||||||||ger|||||||12-7DE-600(DE-604)8041030626447810001-919BAYab41801 A18011801/VB 4010 L84609DE-191.1\x12198612.198600442ny a22001933n 4500062015028DE-10101000005420070302160429.0960729||||||||||||||||ger|||||||12-7DE-600(DE-604)8079015912574871000-420BAYad BZ 53.26809DE-201.1\x619531.2\x1219866.1953-12.198600426ny a22001933n 4500000001848DE-10101000005420070302160430.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)109-0741000-121BAWac1El 123600DE-211.1\x619531.2\x1019696.1953 - 10.196900425ny a22001933n 4500000001856DE-10101000005420070302160430.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)100-4700100-924BAWac1Z 584200DE-241.1\x819631.2\x1219868.1963 - 12.198600423ny a22001933n 4500000001864DE-10101000005420070302160431.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)113-2781000-325BAWac1U 507200DE-251.1\x619531.2\x919676.1953 - 9.196700427ny a22001933n 4500000001872DE-10101000005420070302160431.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)113-2781000-325BAWac2ZN 95500DE-251.1\x1019691.2\x12198610.1969 - 12.198600480ny a22002053n 450005498047XDE-10101000005420070302160431.0021223||||||||||||||||ger|||||||12-7DE-600(DE-603)000086479631000-x26HESac1ZZ 53/25000DE-261.1\x219312.1\x619532.2\x1119732.1931; 6.1953 - 11.1973; (00=8.)00532ny a22002293n 4500069640572DE-10101000005420070302160431.0960603||||||||||||||||ger|||||||12-7DE-600(DE-601)125587244(DE-27)129058092941000-427THUac18 Z 1463s00Mag09DE-271.1\x619531.2\x1119732.1\x1219866.1953 - 11.1973; 12.198600453ny a22002053n 4500156423294DE-10101000005420090602173350.0980718||||||||||||||||ger|||||||12-7DE-600(DE-601)196319285(DE-28)129058092921000-328HAMac1O-3171bl0028-MAG09DE-281.1\x719587.195800499ny a22002173n 4500156423308DE-10101000005420090602173350.0980718||||||||||||||||ger|||||||12-7DE-600(DE-601)291072313(DE-28)129058092921000-328HAMac2ZB 793bl0028/BB1-MAG09DE-281.1\x819631.2\x1219868.1963 - 12.198600456ny a22001933n 4500062014986DE-10101000005420080304121733.0961101||||||||||||||||ger|||||||12-7DE-600(DE-604)8028027344606851000-329BAYacH200 AH00H00/4 TECHN.A 47609DE-291.1\x619531.2\x919676.1953 - 9.196700502ny a22002053n 450006201501XDE-10101000005420070418215641.0961101||||||||||||||||ger|||||||12-7DE-600(DE-604)8028027344622851036-229 TBAYad209GP202 A09GP0209GP02/6.1 O8309DE-29T1.1\x619531.2\x1119732.1\x1219866.1953 - 11.1973; 12.198600533ny a22002173n 4500062014994DE-10101000005420070418215641.0961101||||||||||||||||ger|||||||12-7DE-600(DE-604)8028027344630851036-229 TBAYac214HT A14HT14HT/D 4209DE-29T1.1\x619532.1\x819633.1\x1019694.1\x1119736.1953; 8.1963; 10.1969; 11.197300497ny a22002053n 4500062015001DE-10101000005420120308172606.0961101||||||||||||||||ger|||||||12-7DE-600(DE-604)8028027344614851036-229 TBAYacT200 AT00T00/elt 12-609DE-29T1.1\x619531.2\x1119732.1\x1219866.1953 - 11.1973; 12.198600429ny a22001933n 4500115422862DE-10101000005420070302160433.0060307||||||||||||||||ger|||||||12-7DE-600(DE-603)03610129x601000-330HESac1SZ 41700DE-301.1\x619531.2\x1219866.1953 - 12.198600458ny a22002053n 450000000197XDE-10101000005420100310100309.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)110-7750100-631BAWac1ZB 72300DE-311.1\x619531.2\x1219866.1953 - 12.1986Desiderat: [N=5]00509ny a22002173n 4500099032597DE-10101000005420070302160434.0941002||||||||||||||||ger|||||||12-7DE-600(DE-601)138217661(DE-35)129058092300100-335NIEac1(Zs 2497)u00DE-351.1\x619531.2\x1019692.1\x1219866.1953 - 10.1969; 12.198600424ny a22001933n 450005337164XDE-10101000005420070302160434.0991229||||||||||||||||ger|||||||12-7DE-600(DE-600)85-1501000-738NRWac1Uaa21500DE-381.1\x519431.2\x1219865.1943 - 12.198600507ny a22002173n 4500070693307DE-10101000005420070302160435.0960603||||||||||||||||ger|||||||12-7DE-600(DE-601)125780680(DE-46)129058092281000-146HAMac1fc 7500d00DE-461.1\x719581.2\x1119732.1\x1219867.1958 - 11.1973; 12.198600448ny a22002053n 4500000002011DE-10101000005420091203152846.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)81-4401000-061NRWab1za 7864009009DE-611.1\x719581.2\x1219867.1958 - 12.198600465ny a22002053n 4500080648142DE-10101000005420070302160436.0021017||||||||||||||||ger|||||||12-7DE-600(DE-603)176685871651006-177/PMCHESac1ZZ 9451l00PMC09DE-77-PMC1.1\x619531.2\x1219866.1953 - 12.198600468ny a22002053n 4500000002046DE-10101000005420070302160436.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)86-3511000-282NRWac11Za118700DE-821.1\x519431.2\x1119732.1\x1219865.1943 - 11.1973; 12.198600452ny a22002053n 4500000002054DE-10101000005420090828170159.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)67-x110000-283BERab214Z44000ZFMAG09DE-831.1\x519431.2\x1219865.1943 - 12.198600459ny a22002053n 4500073920819DE-10101000005420090619171946.0941008||||||||||||||||ger|||||||12-7DE-600(DE-601)133688925(DE-84)129058092331000-084NIEac1UBbl00DE-841.1\x619531.2\x1119736.1973 - 1100490ny a22002173n 4500081753985DE-10101000005420070302160437.0940912||||||||||||||||ger|||||||12-7DE-600(DE-601)139709266(DE-89)129058092301000-489NIEac1ZS 230 k00Haus209DE-891.1\x519431.2\x1219865.1943 - 12.198600548ny a22002293n 4500000002089DE-10101000005420070302160438.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)111-9751000-790BAWac1ZE 112000DE-901.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.19867-10 u. 12 in 2 Ex. vorh.00453ny a22001933n 4500091292794DE-10101000005420070302160438.0900326||||||||||||||||ger|||||||12-7DE-600(DE-604)8040009435697820001-491BAYac40022 A00220022/IV 44209DE-911.1\x519431.2\x1219865.1943 - 12.198600415ny a22001813n 4500091292808DE-10101000005420070302160438.0900326||||||||||||||||ger|||||||12-7DE-600(DE-604)8040009435719820001-491BAYad40811 A08110811/Ohne Sign.09DE-911.1\x719587.195800451ny a22001933n 4500091292816DE-10101000005420070302160438.0900326||||||||||||||||ger|||||||12-7DE-600(DE-604)8040009435727820001-491BAYad40826 A08260826/B.312009DE-911.1\x719581.2\x819637.1958 - 8.196300427ny a22001933n 4500000002143DE-10101000005420070302160439.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)101-6701000-x93BAWac12Ca 136800DE-931.1\x519431.2\x1219865.1943 - 12.198600427ny a22001933n 4500000002151DE-10101000005420070302160439.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)102-8701002-393/2BAWbd1DE-93-21.1\x619531.2\x1119736.1953 - 11.1973[N=8-10]00391ny a22001813n 450000000216XDE-10101000005420070302160439.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)4891131-8701050-393/50BAWbd1m 8500DE-93-501.1\x719587.195800406ny a22001813n 4500000002178DE-10101000005420070302160439.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)104-1701101-593/101BAWbd1DE-93-1011.1\x919671.2\x1119739.1967 - 11.197300399ny a22001813n 4500000002186DE-10101000005420071022103224.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)105-3701114-393/114BAWbd1Einzelsignatur00DE-93-1141.1\x619536.195300428ny a22001933n 4500000002194DE-10101000005420070302160439.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)106-5701168-493/168BAWbd1DE-93-1681.1\x719581.2\x1019697.1958 - 10.1969[N=8]00510ny a22002173n 4500099330369DE-10101000005420070302160439.0970919||||||||||||||||ger|||||||12-7DE-600(DE-601)131156209(DE-104)129058092333000-x104NIEac1Za 2314f00DE-1041.1\x719581.2\x1119732.1\x1219867.1958 - 11.1973; 12.198600473ny a22002053n 4500000002232DE-10101000005420080630123903.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)71-1170100-9109BERabRWE1T 595/3600DE-1091.1\x919671.2\x1119739.1967 - 11.1973Standort: Außenmagazin00473ny a22002053n 4500000002240DE-10101000005420080603005032.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)68-1120000-8188BERac14° @3 ZR 26500DE-1881.1\x619531.2\x919672.1\x1219866.1953 - 9.1967; 12.198600419ny a22001813n 4500140549412DE-10101000005420080603005032.0080602||||||||||||||||ger|||||||12-7DE-600120814-7188/814BERbd1DE-188-8141.1\x619531.2\x1019692.1\x1219866.1953 - 10.1969; 12.198600506ny a22002173n 4500000002267DE-10101000005420070302160441.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)84-x463000-2290NRWac1ZN 30100DE-2901.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.198600425ny a22001933n 4500000002275DE-10101000005420070302160441.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)96-6661000-6291BAWac1Z 27800DE-2911.1\x519431.2\x1119735.1943 - 11.197300481ny a22002053n 4500062015036DE-10101000005420070302160442.0961219||||||||||||||||ger|||||||12-7DE-600(DE-604)8006001019228892001-1Aug 4BAYac201 A10346 [u.a.]l000109DE-Aug41.1\x819631.2\x1119738. 1963 - 11. 197300455ny a22001933n 4500000002291DE-10101000005420070302160442.0991125||||||||||||||||ger|||||||12-7DE-600(XX-XxUND)#SB:A440=1986<D 40/88 Z 132>%01#(DE-600)82-6411000-6464NRWacA1D 40/88 Z 13200DE-4641.1\x12198612.198600319ny a22001453n 4500000002305DE-10101000005420120210125532.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)2266620-5471000-9466NRWacDE-466Ausgesondert00470ny a22002053n 4500000002313DE-10101000005420070302160443.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)89-9591000-6467NRWac1S 04-88 T 100DE-4671.1\x619531.2\x719582.1\x1119736.1953 - 7.1958; 11.197300396ny a22001813n 4500000002321DE-10101000005420070302160444.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)2993965-3291000-7715NIEac1ing SA 007900DE-7151.1\x11197311.197300473ny a22002053n 4500073124486DE-10101000005420070302160444.0951014||||||||||||||||ger|||||||12-7DE-600(DE-601)167386506(DE-830)129058092203000-7830HAMac1Einzelsign.f00DE-8301.1\x619531.2\x1219866.1953 - 12.198600497ny a22002173n 4500168652226DE-10101000005420100119170053.0000418||||||||||||||||ger|||||||12-7DE-600(DE-601)125587252(DE-Ilm1)129058092946000-7Ilm 1THUac174 A 17ul009109DE-Ilm11.1\x519431.2\x1219865.1943-12.198600614ny a22002413n 450021206147XDE-10101000005420110726165503.0991125||||||||||||||||ger|||||||12-7DE-600(DE-601)851894976(DE-B108)129058092180108-9B 108BERab2Zeitschrift Bsk00DE-B1081.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.1986Standort: Mag. 2, Reg. 5 (s. Osram)00583ny a22002413n 4500212094556DE-10101000005420110726172741.0061215||||||||||||||||ger|||||||12-7DE-600(DE-601)12630744X(DE-Bs68)129058092338068-3Bs 68NIEab1Zeitschriftsk00K109DE-Bs681.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.198600519ny a22002173n 4500134201566DE-10101000005420110517214444.0940507||||||||||||||||ger|||||||12-7DE-600(DE-601)125211449(DE-Goe116)129058092348116-5Gö 116NIEad1C 1/12n00DE-Goe1161.1\x719582.1\x1119733.1\x1219867.1958; 11.1973; 12.198600457ny a22002053n 4500076510662DE-10101000005420110517214444.0020114||||||||||||||||ger|||||||12-7DE-600(DE-601)54151671X(DE-542)129058092934000-2542SAAac1FH 2001:6776/1u00WA09DE-5421.1\x719587.195800498ny a22002173n 4500075392372DE-10101000005420110517214444.0960101||||||||||||||||ger|||||||12-7DE-600(DE-601)158931084(DE-Wim2)129058092947200-9Wim 2THUab1Z 823fk00Mag09DE-Wim21.1\x719581.2\x1219867.1958 - 12.198600471ny a22002053n 4500075447274DE-10101000005420110517214444.0030522||||||||||||||||ger|||||||12-7DE-600(DE-601)312273797(DE-J59)129058092948737-2J 59THUac1Alphabetische Aufstellungf00UZ09DE-J591.1\x11197311.197300331ny a22001573n 4500074234897DE-10101000005420070302160446.0010810||||||||||||||||ger|||||||12-7DE-600438301-1Mm 1aNRWac1DE-Mm1a1.1\x619536.195300375ny a22001693n 4500121871495DE-10101000005420070302160447.0061128||||||||||||||||ger|||||||12-7DE-600181550-7B 1550BERbd1DE-B15501.1\x619531.2\x1119736.1953 - 11.197300414ny a22001813n 4500181861380DE-10101000005420100706214358.0020513||||||||||||||||ger|||||||12-7DE-600(AT-9:OBV)001156687030014-7AT-UBTUG-HBWEUac00.01Z I 86.55500AT-UBTUG-HB1.1\x10196910.196900423ny a22001813n 4500107138662DE-10101000005420100706214358.0031204||||||||||||||||ger|||||||12-7DE-600(AT-9:OBV)001299629030015-9AT-UBTUW-HBWEUbd00.01AT-UBTUW-HB1.1\x519431.2\x1219865.1943 - 12.198600497ny a22002173n 4500212146254DE-10101000005420120314192738.0100923||||||||||||||||ger|||||||12-7DE-600(AT-9:OBV)002473920a030060-3AT-UBW-071WEUbd00.01167200Tiefspeicher09AT-UBW-0711.1\x519431.2\x1019695.1943 - 10.196900494ny a22001933n 4500603417809DE-10101000006220080906233227.0030811||||||||||||||||ger|||||||13-9DE-600(XX-XxUND)0008/0547950200-2101aSAXabL-1961-6034178091ZA 80304Bd.46.1990/91 - 56.200600ZD 499Bd.26.1961/64 - 45.198901DE-101a26.1961/64(1961) - 56.200600375ny a22001693n 4500612626458DE-101010000062 \ No newline at end of file +00000ny a22001813n 4500054980291DE-10101000001120061003220047.0021223||||||||||||||||ger|||||||5-xDE-600(DE-603)118577352351000-14HESac1Wp 98/1100DE-41.1\x11196911.196900000ny a22001693n 4500054980240DE-10101000001120061003220047.0021223||||||||||||||||ger|||||||5-xDE-600(DE-603)118577271351301-44/301HESbd2DE-4-3011.1\x11196911.196900000ny a22001693n 4500054980259DE-10101000001120061003220047.0021223||||||||||||||||ger|||||||5-xDE-600(DE-603)118577328351304-x4/304HESbd3DE-4-3041.1\x11196911.196900000ny a22001693n 4500054980275DE-10101000001120061003220047.0060922||||||||||||||||ger|||||||5-xDE-600(DE-603)118577298351338-54/338HESbd4DE-4-3381.1\x11196911.196900000ny a22001693n 4500054980283DE-10101000001120061003220047.0060922||||||||||||||||ger|||||||5-xDE-600(DE-603)118577255351351-84/351HESbd5DE-4-3511.1\x11196911.196900000ny a22001813n 4500054980321DE-10101000001120061003220047.0060922||||||||||||||||ger|||||||5-xDE-600(DE-603)11857728X351364-64/364HESbd6Vg 136 d00DE-4-3641.1\x11196911.196900000ny a22001813n 450005498033XDE-10101000001120061003220047.0060922||||||||||||||||ger|||||||5-xDE-600(DE-603)11857731X351403-14/403HESbd7AL 25.550, 11.Aufl.00DE-4-4031.1\x11196911.196900000ny a22001813n 4500094696373DE-10101000001120061003220047.0040415||||||||||||||||ger|||||||5-xDE-600(DE-603)212760920351404-34/404HESbd8Deu 901000DE-4-4041.1\x11196911.196900000ny a22001813n 4500054980348DE-10101000001120061003220047.0060922||||||||||||||||ger|||||||5-xDE-600(DE-603)045947058351406-74/406HESbd9EO 185300DE-4-4061.1\x11196911.196900000ny a22001813n 4500000000124DE-10101000001120050802220915.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)4497233-7441017-86/017NRWbd1C I 27900DE-6-0171.1\x11196911.196900000ny a22001813n 4500107954613DE-10101000001120050802220915.0050802||||||||||||||||ger|||||||5-xDE-600a441069-56/069NRWbd1P:A/25-15(11)00DE-6-0691.1\x11196911.196900000ny a22001813n 4500000000132DE-10101000001120050802220915.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)3037506-x441300-36/ANRWac1Z 91200DE-6-A1.1\x11196911.196900000ny a22001933n 4500088791300DE-10101000001120120703174114.0940801||||||||||||||||ger|||||||5-xDE-600(DE-601)384074456(DE-7)165646314341000-67NIEac1ZA 18414bl00DE-71.1\x11196911.196900000ny a22001933n 4500000000159DE-10101000001120030714103122.0991125||||||||||||||||ger|||||||5-xDE-600(XX-XxUND)YA 31190(DE-600)3800010-6341037-77/037NIEbd1XXVIII, 500DE-7-0371.1\x11196911.196900000ny a22001693n 4500000000167DE-10101000001120030714103122.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)3800109-3341041-97/041NIEac1DE-7-0411.1\x11196911.196900000ny a22001813n 4500000000175DE-10101000001120030714103122.0991125||||||||||||||||ger|||||||5-xDE-600(XX-XxUND)YA 31190(DE-600)3800015-5341154-07/154NIEbd1DE-7-1541.1\x11196911.196900000ny a22001693n 4500000000183DE-10101000001120030714103122.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)15-2130133-011/133BERac1DE-11-1331.1\x11196911.196900000ny a22001693n 4500100779565DE-10101000001120050429220126.0050429||||||||||||||||ger|||||||5-xDE-600691000-216BAWac170 A 39100DE-161.1\x11196911.196900000ny a22001693n 4500100308511DE-10101000001120050429220126.0050222||||||||||||||||ger|||||||5-xDE-600691034-816/34BAWbd1Hj 1300DE-16-341.1\x11196911.196900000ny a22001813n 4500150777833DE-10101000001120090310171414.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)24-3691160-216/160BAWab1N I 36-1100DE-16-1601.1\x11196911.196900000ny a22001813n 4500054980135DE-10101000001120091130165211.0091123||||||||||||||||ger|||||||5-xDE-600(DE-603)061100374611000-917HESac170/1800DE-171.1\x11196911.196900000ny a22001813n 4500113693915DE-10101000001120090915214625.0060216||||||||||||||||ger|||||||5-xDE-600(DE-603)355999005618136-317/136HESbd2-136-1054400DE-17-1361.1\x11196911.196900000ny a22002053n 4500078692210DE-10101000001120110125180622.0960603||||||||||||||||ger|||||||5-xDE-600(DE-601)004029917(DE-18)165646314201000-818HAMac1A 1970/7029ul00SM09DE-181.1\x11196911.196900000ny a22001813n 4500078692229DE-10101000001120070626213815.0960603||||||||||||||||ger|||||||5-xDE-600(DE-601)004180291(DE-18-57)165646314201057-418/57HAMbd2DE-18-571.1\x11196911.196900000ny a22001933n 4500098305018DE-10101000001120070626213815.0020529||||||||||||||||ger|||||||5-xDE-600(DE-601)556829247(DE-18-304)165646314201304-618/304HAMbd6ÖR My 3i00DE-18-3041.1\x11196911.196900000ny a22001933n 4500127945296DE-10101000001120070626213815.0960603||||||||||||||||ger|||||||5-xDE-600(DE-601)004219562(DE-18-309)165646314201309-518/309HAMbd3h09DE-18-3091.1\x11196911.196900000ny a22001933n 4500078692253DE-10101000001120071112172255.0010406||||||||||||||||ger|||||||5-xDE-600(DE-601)476803470(DE-H250)165646314208250-0H 250HAMbd5I Sj 53in00DE-H2501.1\x11196911.196900000ny a22001933n 4500091762006DE-10101000001120120821213900.0900326||||||||||||||||ger|||||||5-xDE-600(DE-604)8041009200479810001-919BAYac40001 A8 70-517l00000109DE-191.1\x19691969(=11.Aufl.)00000ny a22001813n 4500213647109DE-10101000001120120821213900.0110831||||||||||||||||ger|||||||5-xDE-600810001-919BAYad40302 A n0003020302/MG 81000 S27609DE-191.1\x11196911.196900000ny a22001693n 4500140053085DE-10101000001120120821213900.0080516||||||||||||||||ger|||||||5-xDE-600810001-919BAYad40312 A03120312/DDR Zs 1809DE-191.1\x11196911.196900000ny a22001813n 4500109522141DE-10101000001120120821213900.0051006||||||||||||||||ger|||||||5-xDE-600810001-919BAYad40506 A05060506/A 8609DE-191.1\x111969Aufl.11.196900000ny a22001813n 4500091762014DE-10101000001120120821213900.0000303||||||||||||||||ger|||||||5-xDE-600(DE-604)8041036373257810001-919BAYab40900 A09000900/NQ 6960 S276(11)09DE-191.1\x11196911.196900000ny a22001813n 4500091762022DE-10101000001120120821213900.0000303||||||||||||||||ger|||||||5-xDE-600(DE-604)8041036373303810001-919BAYab41502 A15021502/DDR 1 SBZ 1g09DE-191.1\x11196911.196900000ny a22001813n 4500081067259DE-10101000001120120821213900.0030218||||||||||||||||ger|||||||5-xDE-600(DE-604)8027027264335881037-0936BAYbc228 B2828/AE 61805 F528(11)09DE-9361.1\x11196911.196900000ny a22001813n 4500000000329DE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)27-9741000-121BAWac1Fo XII a 5068 ak00DE-211.1\x11196911.196900000ny a22001573n 4500075723549DE-10101000001120030714103124.0011127||||||||||||||||ger|||||||5-xDE-600741025-621/24BAWbd1DE-21-241.1\x11196911.196900000ny a22001693n 4500210110392DE-10101000001120110704102526.0110704||||||||||||||||ger|||||||5-xDE-600748552-9Rot 2BAWac1Z 145a00DE-Rot21.1\x11196911.196900000ny a22001813n 4500000000337DE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)25-5700100-924BAWac120/446800DE-241.1\x11196911.196900000ny a22001813n 4500000000345DE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)30-9781000-325BAWac1ZR 9300DE-251.1\x11196911.196900000ny a22001693n 4500000000353DE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)31-0781009-x25/9BAWbd1DE-25-91.1\x11196911.196900000ny a22001813n 4500000000361DE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)33-4785100-5Frei 129BAWac1O 19500DE-Frei1291.1\x11196911.196900000ny a22001693n 450000000037XDE-10101000001120030714103124.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2074031-1785300-2Frei 160BAWac1DE-Frei1601.1\x11196911.196900000ny a22001933n 4500173791476DE-10101000001120100406213400.0100309||||||||||||||||ger|||||||5-xDE-600(DE-603)589550020631005-926/005HESbc1B 52/1409, 11. Aufl.l00005 RG 10006 D486 (11)09DE-26-0051.1\x11196911.196900000ny a22001813n 4500173791492DE-10101000001120100406213400.0100324||||||||||||||||ger|||||||5-xDE-600(DE-603)59020260X631030-826/030HESac203.10934l00DE-26-0301.1\x11196911.196900000ny a22001693n 4500176539433DE-10101000001120100504115737.0100504||||||||||||||||ger|||||||5-xDE-600851000-329BAYad202JU A02JU02JU/KJ/IIII 105609DE-291.1\x11196911.196900000ny a22001813n 4500054980119DE-10101000001120041014114504.0041012||||||||||||||||ger|||||||5-xDE-600(DE-603)020000316601000-330HESac180.767.9400DE-301.1\x11196911.196900000ny a22001933n 4500054980127DE-10101000001120041014114504.0041012||||||||||||||||ger|||||||5-xDE-600(DE-603)126171920601000-330HESac280.386.4300DE-301.1\x1119692. Ex.11.196900000ny a22001813n 4500116350709DE-10101000001120060517172439.0060425||||||||||||||||ger|||||||5-xDE-600(DE-603)387472517601330-230/330HESbd302/NQ 6950 S26700DE-30-3301.1\x11196911.196900000ny a22001813n 450000000040XDE-10101000001120091218121900.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)28-0750100-631BAWac1DE-311.1\x11196911.1969Einzelnachweis <69 A 3662; 69 A 3890; 70 A 618>00000ny a22001813n 4500054980178DE-10101000001120040419133948.0021223||||||||||||||||ger|||||||5-xDE-600(DE-603)080482597655000-936HESac1Z 6/619 a00DE-361.1\x11196911.196900000ny a22001693n 4500000000434DE-10101000001120040323220219.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)19-x501102-438/102NRWbd1DE-38-1021.1\x11196911.196900000ny a22001693n 4500000000442DE-10101000001120040323220219.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)4432612-9501205-338/205NRWbd1DE-38-2051.1\x111969Aufl. 11.196900000ny a22001813n 4500054980186DE-10101000001120120619214915.0021223||||||||||||||||ger|||||||5-xDE-600(DE-603)070000085651000-077HESac1Y 109700DE-771.1\x11196911.196900000ny a22001933n 4500054980216DE-10101000001120120619214915.0101016||||||||||||||||ger|||||||5-xDE-600(DE-603)070698449651002-477/SB IIHESbd2AB 15300Politikwissenschaft09DE-77-SBII1.1\x11196911.196900000ny a22001933n 4500054980194DE-10101000001120120619214915.0120606||||||||||||||||ger|||||||5-xDE-600(DE-603)070698384651016-477/016HESbd3FB 01 Kath. Theol.00Katholische Theologie09DE-77-0161.1\x11196911.196900000ny a22001933n 4500054980232DE-10101000001120120619214915.0990616||||||||||||||||ger|||||||5-xDE-600(DE-603)134018508651092-977/092HESbd4Yc 300Osteuropäische Geschichte09DE-77-0921.1\x11196911.196900000ny a22001933n 450011262684XDE-10101000001120120619214915.0051227||||||||||||||||ger|||||||5-xDE-600(DE-603)333571193658005-1Mz 5HESbd1OX 3400IEG/209DE-Mz51.1\x11196911.196900000ny a22001933n 4500000000515DE-10101000001120080214124527.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)29-2751000-790BAWac1V A 126800DE-901.1\x111969Aufl.11.196900000ny a22001813n 4500091292786DE-10101000001120100615214213.0940127||||||||||||||||ger|||||||5-xDE-600(DE-604)8040013577743820001-491BAYad40430 A04300430/70-809DE-911.1\x11196911.196900000ny a22001813n 450000000054XDE-10101000001120030714103126.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)4710522-7701000-x93BAWac12A 258000DE-931.1\x11196911.196900000ny a22001813n 4500204427827DE-10101000001120110319193259.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2475713-5170100-9109BERab11Ab 17600DE-1091.1\x11196911.196900000ny a22001933n 4500000000558DE-10101000001120030714103126.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2071096-3681000-7180BAWac1ZA 377400Tiefmagazin09DE-1801.1\x11196911.196900000ny a22001813n 4500000000566DE-10101000001120080801213526.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)1-2120000-8188BERac110 ZE 108/200DE-1881.1\x11196911.196900000ny a22001693n 4500000000582DE-10101000001120080801213526.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)3-6120211-x188/211BERac1DE-188-2111.1\x11196911.196900000ny a22001573n 4500142182710DE-10101000001120080801213526.0080801||||||||||||||||ger|||||||5-xDE-600120726-x188/726BERbd1DE-188-7261.1\x11196911.196900000ny a22001693n 4500000000590DE-10101000001120080801213526.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)6-1120807-x188/807BERbd1DE-188-8071.1\x11196911.196900000ny a22001693n 4500000000604DE-10101000001120080801213526.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)7-3120808-1188/808BERbd1DE-188-8081.1\x11196911.196900000ny a22001693n 4500000000620DE-10101000001120080801213526.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)4-8120820-2188/820BERbd1DE-188-8201.1\x11196911.196900000ny a22001933n 450009606837XDE-10101000001120040705125933.0960603||||||||||||||||ger|||||||5-xDE-600(DE-601)19743066X(DE-206)165646314231206-2206HAMac1X 14628s00DE-2061.1\x11196911.196900000ny a22001933n 4500096068388DE-10101000001120040705125933.0960603||||||||||||||||ger|||||||5-xDE-600(DE-601)197430678(DE-206)165646314231206-2206HAMac2Arb-S VII 39s00DE-20611.1969= X 1462800000ny a22001693n 4500147137608DE-10101000001120090114104916.0090114||||||||||||||||ger|||||||5-xDE-600661000-6291BAWac169-523300DE-2911.1\x11196911.196900000ny a22001933n 450007840181XDE-10101000001120120207214430.0020508||||||||||||||||ger|||||||5-xDE-600(DE-604)8069056807155841000-8355BAYac200 A0000/MG 81000 S27609DE-3551.1\x111969Aufl.11.196900000ny a22002053n 4500092995861DE-10101000001120120207214430.0030930||||||||||||||||ger|||||||5-xDE-600(DE-604)8069058608648847000-5155BAYac3999 APolym.349l0099909DE-1551.1\x111969Aufl.11.196900000ny a22002053n 450009299587XDE-10101000001120120207214430.0030930||||||||||||||||ger|||||||5-xDE-600(DE-604)8069058608664847000-5155BAYac3999 BPolym.349al0099909DE-1551.1\x111969Aufl.11.196900000ny a22001813n 4500098655388DE-10101000001120120207214430.0041108||||||||||||||||ger|||||||5-xDE-600848005-9Re 5BAYbd49995 A99959995/Hist.p.A 16809DE-Re51.1\x111969Aufl.11.196900000ny a22001573n 4500221799680DE-10101000001120120207214430.0120203||||||||||||||||ger|||||||5-xDE-600848013-8Re 13BAYabW 01W 01/70-9309DE-Re131.1\x1111,196900000ny a22001813n 4500075924889DE-10101000001120041007031632.0010306||||||||||||||||ger|||||||5-xDE-600(DE-604)8007003180514895000-337BAYac AStw 653l00DE-371.1\x11196911.196900000ny a22001813n 450000000068XDE-10101000001120030714103128.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)21-8558002-xTr 2NRWac1X 14200DE-Tr21.1\x11196911.196900000ny a22001813n 4500000000698DE-10101000001120030714103128.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)22-x591000-6467NRWac1S 04-40 S 1400DE-4671.1\x11196911.196900000ny a22001813n 4500066718724DE-10101000001120041008041252.0970624||||||||||||||||ger|||||||5-xDE-600(DE-604)8013024843989865000-722BAYac222 A2222/74.75309DE-221.1\x11196911.196900000ny a22001813n 450000000071XDE-10101000001120060714112226.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2993964-1291000-7715NIEac1H pol 300 2br ZA 8188d00DE-7151.1\x11196911.196900000ny a22001813n 4500000000728DE-10101000001120060714112239.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2993964-1291000-7715NIEac2H pol 300 2br ZA 8188ad00DE-7151.1\x11196911.196900000ny a22001813n 4500000000736DE-10101000001120060714112258.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2993964-1291000-7715NIEac3H pol 300 2br ZA 8188bd00DE-7151.1\x11196911.196900000ny a22001933n 4500081067186DE-10101000001120041009052227.0030218||||||||||||||||ger|||||||5-xDE-600(DE-604)8027027262707881000-x824BAYac200 A0000/AE 61805 F528(11)09DE-8241.1\x111969Aufl.11.196900000ny a22001813n 4500000000744DE-10101000001120030714103129.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2006246-1540100-8929NRWac6107101Z 76900DE-9291.1\x11196911.196900000ny a22001813n 450021508537XDE-10101000001120111013093143.0111013||||||||||||||||ger|||||||5-xDE-600540101-xZw 1NRWac1GGm 5100DE-Zw11.1\x11196911.19692 Ex.00000ny a22001693n 4500000000760DE-10101000001120100125215947.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2459842-2180042-5B 183BERbd1DE-B1831.1\x11196911.196900000ny a22001693n 4500000000779DE-10101000001120100125215947.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2459839-2180177-6B 177BERbd1DE-B1771.1\x11196911.196900000ny a22001693n 4500000000795DE-10101000001120100125215947.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2459848-3180724-9B 724BERbd51DE-B7241.1\x11196911.196900000ny a22001933n 450010910207XDE-10101000001120051101175650.0050310||||||||||||||||ger|||||||5-xDE-600(DE-601)710960107(DE-Luen4)165646314314000-3Lün 4NIEac1D-a 4/11u00OST09DE-Luen4v11/1969 ; Für Bandanzeige bitte "zugehörige Publikationen" anklicken00000ny a22001813n 4500000000817DE-10101000001120030714103130.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)20-6538133-2Bo 133NRWac1X 153800DE-Bo1331.1\x11196911.196900000ny a22001813n 4500205343961DE-10101000001120110401101038.0110331||||||||||||||||ger|||||||5-xDE-600953000-9Ch 1SAXac1A 2007100DE-Ch11.1\x111969Aufl. 11.1969Stiftung Land Sachsen00000ny a22001693n 4500179893556DE-10101000001120100623172643.0000315||||||||||||||||ger|||||||5-xDE-600(DE-601)684114887(DE-Old3)165646314298003-4Old 3NIEac1F.II.b.040.ul00DE-Old300000ny a22002053n 4500155521748DE-10101000001120100611215228.0990511||||||||||||||||ger|||||||5-xDE-600(DE-601)339109602(DE-Au3)165646314298103-8Au 3NIEab1ZS 498fk00Au09DE-Au31.1\x11196911.196900000ny a22001693n 4500000000833DE-10101000001120030714103130.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)26-7703000-9752BAWac1DE-7521.1\x11196911.196900000ny a22001813n 4500074163337DE-10101000001120071004121038.0010726||||||||||||||||ger|||||||5-xDE-600672000-6Lan 1NRWacges 021DE-Lan11.1\x111969Aufl.11.196900000ny a22001933n 4500000000841DE-10101000001120050707151646.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)5073736-3792000-3747BAWac1Z 80800Ausweichmagazin09DE-7471.1\x111969Aufl. 11.196900000ny a22001813n 4500080731155DE-10101000001120040419133948.0021203||||||||||||||||ger|||||||5-xDE-600(DE-603)178472808358050-7Mb 50HESac130 VII O 4/200DE-Mb501.1\x11196911.196900000ny a22001693n 4500075814846DE-10101000001120120405123317.0011210||||||||||||||||ger|||||||5-xDE-600120876-7578/876BERbd130 Hist. 1969/1100DE-578-8761.1\x11196911.196900000ny a22001813n 4500000000752DE-10101000001120030714103130.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)17-6490100-951NRWac1Hz 48000DE-511.1\x11196911.196900000ny a22001813n 4500053371631DE-10101000001120030714103131.0991229||||||||||||||||ger|||||||5-xDE-600(DE-600)5096727-7758026-5Ka 26BAWac1LW 059(11)00DE-Ka261.1\x111969Aufl. 11.196900000ny a22002053n 450021217911XDE-10101000001120110802214350.0110127||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)002591068a030003-2AT-BMAWEUbd00.012.075-B00AT-BMA1.1\x111969Aufl.11.196900000ny a22001813n 450010665344XDE-10101000001120110802214350.0861104||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)001057099030009-3AT-UBS-HBWEUbd00.0156664 I00AT-UBS-HB1.1\x11196911.196900000ny a22001813n 4500107042835DE-10101000001120110802214350.0030401||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)001249538030010-xAT-UBG-HBWEUbd00.01I 37507500AT-UBG-HB1.1\x196911. Aufl. 196900000ny a22002053n 4500162174675DE-10101000001120110802214350.0090706||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)002181192a030011-1AT-UBI-HBWEUbd00.0140327900AT-UBI-HB1.1\x111969Aufl.11.196900000ny a22001933n 450012499234XDE-10101000001120110802214350.0070305||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)001655347a030012-3AT-UBW-002WEUbd00.01I-91893900AT-UBW-0021.1\x111969Aufl. 11.196900000ny a22001933n 4500130689637DE-10101000001120110802214350.0070710||||||||||||||||ger|||||||5-xDE-600(AT-9:OBV)001676711a030019-6AT-UBWW-HBWEUbd00.0168334-B00AT-UBWW-HB1.1\x11196911.196900000ny a22001693n 4500162660677DE-10101000001120090911214243.0090911||||||||||||||||ger|||||||5-xDE-600808457-9M 457BAYbb1 ZA 749 k00DE-M4571.1\x1969196900000ny a22001693n 4500150213794DE-10101000001120090911214243.0090227||||||||||||||||ger|||||||5-xDE-600808909-7M 124BAYbd1B002B002/39, 11209DE-M1241.1\x111969Aufl. 11.196900000ny a22001813n 4500000000205DE-10101000001120050728030426.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)2151173-1698208-6B 208BAWab1D: XIX F: 100DE-B2081.1\x11196911.196900000ny a22001813n 4500000000299DE-10101000001120060517213353.0991125||||||||||||||||ger|||||||5-xDE-600(DE-600)16-4208212-3B 212HAMbd1Allg. 501/100DE-B2121.1\x11196911.196900000ny a22001693n 4500242007309DE-10101000001120120815163641.0120815||||||||||||||||ger|||||||5-xDE-600468364-x364NRWac1MX 10100DE-3641.1\x11196911.196900000ny a22001933n 4500089345657DE-10101000002X20080906223026.0030819||||||||||||||||ger|||||||7-3DE-600(XX-XxUND)0008/0547950200-2101aSAXabL-1963-0893456571ZA 80306ab 18. 1991/9200ZD 499bis 17.1990/9101DE-101a1.1963/66 - 26.200800000ny a22001813n 4500612882284DE-10101000002X20080906223026.0031002||||||||||||||||ger|||||||7-3DE-600(XX-XxUND)0001/0026600100-2101bHESbdF-1963-6128822841DZs 976600DE-101b1.1963/66 - 26.200800000ny a22002053n 4500082748799DE-10101000002X20080412034001.0991125||||||||||||||||ger|||||||7-3DE-600(DE-601)244251967(DE-1a)129058068101005-01aBERac1Zsn 82567ul00DE-1a1.1\x191993/941.2\x26200819.1993/94; 20.1995/96; 21.1997/99; 22.2000/02 - 26.200800000ny a22002173n 4500082748802DE-10101000002X20070302160221.0991125||||||||||||||||ger|||||||7-3DE-600(DE-601)416869696(DE-1)129058068910107-x1BERac218 Per 335ul00Außenmagazin09DE-11.1\x11963/661.2\x51974/751.1963/66 - 5.1974/75,100000ny a22002173n 4500082748810DE-10101000002X20070302160221.0991125||||||||||||||||ger|||||||7-3DE-600(DE-601)499072286(DE-1)129058068910107-x1BERac330 SA 2567ul00Außenmagazin09DE-11.1\x51974/751.2\x1819925.1974/75,2 - 18.199200000ny a22002173n 4500171332229DE-10101000002X20120626171554.0990322||||||||||||||||ger|||||||7-3DE-600(DE-601)329340905(DE-3-7)129058068931007-13/7SAAab1ZT 253fk00Ha 709DE-3-71.1\x21967/691.2\x2620082.1967/69 - 26.200800000ny a22002053n 4500160752078DE-10101000002X20100316214820.0991125||||||||||||||||ger|||||||7-3DE-600(DE-601)500033811(DE-Ha2)129058068938102-8Ha 2SAAac1Lb 1 / 70. 8°ul00DE-Ha21.1\x21967/691.2\x2620082.1967/69 - 26.200800000ny a22001933n 4500054980399DE-10101000002X20070302160222.0021223||||||||||||||||ger|||||||7-3DE-600(DE-603)040063240351000-14HESac1M 64/1800DE-41.1\x119631.2\x319711.1963/64 - 3.1969/7100000ny a22001933n 4500000000892DE-10101000002X20080226091044.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)41-3538127-7Bo 127NRWab1AZ 48400DE-Bo1271.1\x21967/691.2\x2620082.1967/69 - 26.200800000ny a22001933n 4500087807629DE-10101000002X20120725171852.0940801||||||||||||||||ger|||||||7-3DE-600(DE-601)129247502(DE-7)129058068341000-67NIEac1ZA 22327bl00DE-71.1\x61965/666.1965/6600000ny a22002293n 4500069236658DE-10101000002X20080506171629.0960101||||||||||||||||ger|||||||7-3DE-600(DE-601)193692058(DE-8)129058068231000-48HAMad1Y 4464gn001010bia 380 r09DE-81.1\x11963/661.2\x2620081.1963/66 - 26.2008*14 ; *15 ; *100000ny a22002293n 4500169633691DE-10101000002X20100129214230.0100115||||||||||||||||ger|||||||7-3DE-600(DE-601)1109357400(DE-9)129058068922000-89HAMab1672/Z 65 A 59fk00UB 67209DE-91.1\x11964/662.1\x61976/772.2\x201995/961.1964/66,4-7; 6.1976/77 - 8.1980; 9.1981,2; 10.1982 - 20.1995/9600000ny a22002413n 4500108575063DE-10101000002X20100129214230.0081027||||||||||||||||ger|||||||7-3DE-600(DE-601)470478829(DE-9)129058068922000-89HAMab2660/WA 48300fk00UB 66509DE-91.1\x21967/691.2\x51974/752.1\x2119972.2\x2520042.1967/69 - 5.1974/75; 21.1997 - 25.200400000ny a22001933n 4500067786189DE-10101000002X20080227144801.0950325||||||||||||||||ger|||||||7-3DE-600(DE-604)8036057301352800100-512BAYac AZ 65.36200DE-121.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001933n 4500000000957DE-10101000002X20080407090344.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)2752408-5950100-914SAXac1Y. 8. 160500DE-141.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001693n 4500079697836DE-10101000002X20070302160224.0020722||||||||||||||||ger|||||||7-3DE-600950100-914SAXac7Y. 8. 160500DE-14- Suppl. zu21.1997/9900000ny a22002053n 4500000000965DE-10101000002X20070302160224.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)2724987-6952000-415SAXab174-7-6900HB09DE-151.1\x119631.2\x2220001.1963 - 22.2000,100000ny a22001933n 4500000000973DE-10101000002X20080213091607.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)49-8691000-216BAWac1ZSN 2980 B00DE-161.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22002053n 450007856669XDE-10101000002X20110119170707.0960603||||||||||||||||ger|||||||7-3DE-600(DE-601)003985512(DE-18)129058068201000-818HAMab1X/20507sk00DE-181.1\x21967/691.2\x2620082.1967/69 - 26.200800000ny a22002053n 4500078566703DE-10101000002X20100609170318.0960603||||||||||||||||ger|||||||7-3DE-600(DE-601)004097114(DE-18-19)129058068201019-718/19HAMbd2Museum Ent. Abt.in00DE-18-191.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001933n 4500067786227DE-10101000002X20080304090130.0960729||||||||||||||||ger|||||||7-3DE-600(DE-604)8079015993035871000-420BAYac200 B0000/PM 127809DE-201.1\x11963/661.2\x2620081.1963/66-26.200800000ny a22001933n 4500000001023DE-10101000002X20080613141409.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)50-4700100-924BAWac1Z 654800DE-241.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001933n 4500000001031DE-10101000002X20080310082415.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)4399911-6781033-725/33BAWbd1DE-25-331.1\x11963/661.2\x2620081.1963/66 - 26.2008Dauerleihgabe der UB: V 5733,mc; ZN 600000ny a22001933n 4500054980380DE-10101000002X20080519141312.0080514||||||||||||||||ger|||||||7-3DE-600(DE-603)000034908631000-x26HESac1ZZ 57/25/20l00DE-261.1\x119631.2\x2620081.1963/66 - 26.200800000ny a22002173n 4500069910731DE-10101000002X20070302160226.0980602||||||||||||||||ger|||||||7-3DE-600(DE-601)145675890(DE-27)129058068941000-427THUac18 Z 2531Cs00Mag09DE-271.1\x11963/661.2\x1319861.1963/66 - 13.198600000ny a22002293n 450006991074XDE-10101000002X20080714170957.0000419||||||||||||||||ger|||||||7-3DE-600(DE-601)387023941(DE-27-26)129058068941026-027/26THUbb28 Z 2531Csk00J 26BIO:ZT:609DE-27-261.1\x141986/871.2\x26200814.1986/87 - 26.2008Jg.18.1991 Bestand lückenhaft00000ny a22002173n 4500156423286DE-10101000002X20090602173349.0070723||||||||||||||||ger|||||||7-3DE-600(DE-601)827938403(DE-28)129058068921000-328HAMac1WA 48540bl0028/BB1-ZM209DE-281.1\x119631.2\x61976/771.1963 - 6.1976/7700000ny a22001933n 4500115422838DE-10101000002X20080218170109.0080212||||||||||||||||ger|||||||7-3DE-600(DE-603)03604668x601000-330HESac18° P 11.219/700DE-301.1\x119631.2\x2620081.1963/66 - 26.200800000ny a22001813n 4500115422846DE-10101000002X20070302160226.0990422||||||||||||||||ger|||||||7-3DE-600(DE-603)132971518601000-330HESac28° P 11.219/700DE-30- Suppl. zu21.199800000ny a22002053n 4500070194718DE-10101000002X20101112190830.0980222||||||||||||||||ger|||||||7-3DE-600(DE-601)239021762(DE-33)129058068925300-233HAMab1Z 1375sk00DE-331.1\x21967/691.2\x1719892.1967/69 - 17.198900000ny a22001933n 4500054980372DE-10101000002X20080325162909.0080319||||||||||||||||ger|||||||7-3DE-600(DE-603)057508992620100-343HESac1ZSA 69300DE-431.1\x519631.2\x2620085.1963/66 - 26.200800000ny a22002053n 4500070693277DE-10101000002X20120105190851.0960603||||||||||||||||ger|||||||7-3DE-600(DE-601)125780656(DE-46)129058068281000-146HAMac1fc 3856dl00DE-461.1\x11963/19661.2\x719781.1963/66 - 7.197800000ny a22002173n 4500071110607DE-10101000002X20111109190504.0950131||||||||||||||||ger|||||||7-3DE-600(DE-601)133476979(DE-84)129058068331000-084NIEab1BL Z 523fk00ZFM09DE-841.1\x119631.2\x2620081.1963 - 26.200800000ny a22002173n 4500081753977DE-10101000002X20090717170742.0940910||||||||||||||||ger|||||||7-3DE-600(DE-601)13842151X(DE-89)129058068301000-489NIEab1NG 1970fk00Haus209DE-891.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22002053n 4500000001112DE-10101000002X20080624103400.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)48-6670100-0107NRWac1Per. 615500DE-1071.1\x11963/662.1\x31969/712.2\x2620081.1963/66; 3.1969/71 - 26.200800000ny a22001813n 4500108098761DE-10101000002X20080410133108.0050809||||||||||||||||ger|||||||7-3DE-600170100-9109BERabRJ1ZA 216000DE-1091.1\x119631.1963Standort: BSTB00000ny a22002173n 4500000001120DE-10101000002X20070302160229.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)34-6120000-8188BERac116 ZR 41/100DE-1881.1\x11963/652.1\x31969/712.2\x2019951.1963/65; 3.1969/71 - 20.1995,1Bezug abgebrochen00000ny a22001933n 4500000000930DE-10101000002X20100127212050.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)2671752-9130016-7B 16BERab1de leipzig00DE-B161.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001933n 4500000001139DE-10101000002X20070302160229.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)46-2661000-6291BAWac1Z 205100DE-2911.1\x119631.2\x31969/711.1963 - 3.1969/7100000ny a22001933n 4500067786197DE-10101000002X20080211134811.0991206||||||||||||||||ger|||||||7-3DE-600(DE-604)8069051847515841000-8355BAYac3237 A237237/WA 4854009DE-3551.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001813n 4500094277931DE-10101000002X20070302160229.0040211||||||||||||||||ger|||||||7-3DE-600(DE-604)8007004231449895000-337BAYac A4 NV 3 cl00DE-371.1\x11963/661. 1963/66 -00000ny a22001933n 4500067786219DE-10101000002X20080222155612.0951230||||||||||||||||ger|||||||7-3DE-600(DE-604)8013023109106865000-722BAYac222 B2222/Z 65609DE-221.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001933n 4500067786200DE-10101000002X20080325141158.0960403||||||||||||||||ger|||||||7-3DE-600(DE-604)8017019220928852000-8703BAYac285 A8585/WA 4854009DE-7031.1\x119631.2\x2620081.1963 - 26.200800000ny a22001813n 4500078039274DE-10101000002X20090804215444.0020502||||||||||||||||ger|||||||7-3DE-600958024-4Gl 1SAXab1Z 14 b00DE-Gl11.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001813n 4500117136700DE-10101000002X20090804215444.0060620||||||||||||||||ger|||||||7-3DE-600958075-xD 5SAXab1Zz Eu Deu 00400DE-D51.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001813n 4500138685975DE-10101000002X20090804215444.0080328||||||||||||||||ger|||||||7-3DE-600958806-1Fb 24SAXbd1FJ-Fau00DE-Fb241.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001813n 4500000001201DE-10101000002X20090917160236.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)2728301-x978004-xEb 1BERac71Z33900DE-Eb11.1\x11963/661.1963/6600000ny a22002173n 4500000001171DE-10101000002X20080319141813.0991125||||||||||||||||ger|||||||7-3DE-600(DE-600)2000061-3490100-951NRWac1Nz 57c00DE-511.1\x11963/661.2\x2220002.1\x2420032.2\x2620081.1963/66 - 22.2000; 24.2003 - 26.200800000ny a22001933n 4500106920987DE-10101000002X20120314183059.0020729||||||||||||||||ger|||||||7-3DE-600(AT-9:OBV)001186306030032-9AT-ÖAWWEUbd00.018055600AT-OeAW-BA1.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001933n 4500181226952DE-10101000002X20110926183308.0110916||||||||||||||||ger|||||||7-3DE-600(DE-603)594283329978201-1B 15BERab111 53900DE-B151.1\x11963/661.2\x2620081.1963/66 - 26.200800000ny a22001813n 4500603436196DE-10101000003820080906215733.0961015||||||||||||||||ger|||||||9-7DE-600950200-2101aSAXabL-1964-6034361961ZA 8030516. 1992/93-01ZD 499-15. 199002DE-101a1.1964/67 - 24.200600000ny a22001693n 4500612907880DE-10101000003820080906215733.0031002||||||||||||||||ger|||||||9-7DE-600600100-2101bHESbdF-1964-6129078801DZs 1063300DE-101b1.1964/67 - 24.200600000ny a22002053n 4500082748829DE-10101000003820070530171737.0991125||||||||||||||||ger|||||||9-7DE-600(DE-601)244194319(DE-1a)129058076101005-01aBERac1Zsn 81777ul00DE-1a1.1\x161992/931.2\x24200616.1992/93 - 24.200600000ny a22002173n 4500082748837DE-10101000003820070613173710.0991125||||||||||||||||ger|||||||9-7DE-600(DE-601)416869726(DE-1)129058076910107-x1BERac220 Per 428ul00Außenmagazin09DE-11.1\x11964/671.2\x41973/751.1964/67 - 4.1973/7500000ny a22002173n 4500082748845DE-10101000003820070613173711.0991125||||||||||||||||ger|||||||9-7DE-600(DE-601)416869734(DE-1)129058076910107-x1BERac329 PA 2959ul00Außenmagazin09DE-11.1\x519761.2\x1519905.1976 - 15.199000000ny a22002053n 4500171332237DE-10101000003820100316214820.0941231||||||||||||||||ger|||||||9-7DE-600(DE-601)145496597(DE-3)129058076931000-93SAAab1ZA 1332fk00DE-31.1\x11964/671.2\x2020001.1964/67 - 20.200000000ny a22002053n 4500160752086DE-10101000003820100316214820.0991125||||||||||||||||ger|||||||9-7DE-600(DE-601)50003382X(DE-Ha2)129058076938102-8Ha 2SAAab1Cb 1 / 114.a 8°sk00DE-Ha21.1\x11964/671.2\x2420061.1964/67 - 24.200600000ny a22002053n 4500087807637DE-10101000003820120725171852.0940718||||||||||||||||ger|||||||9-7DE-600(DE-601)128109580(DE-7)129058076341000-67NIEac1ZA 28968bl00DE-71.1\x11964/671.2\x2320051.1964/67 - 23.200500000ny a22001933n 4500068324170DE-10101000003820070425134316.0950325||||||||||||||||ger|||||||9-7DE-600(DE-604)8036057368457800100-512BAYac AZ 65.61700DE-121.1\x11964/671.2\x2420061.1964/67 - 24.200600000ny a22001933n 4500000001309DE-10101000003820070530104907.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)2411657-9950100-914SAXac1Y. 8. 195000DE-141.1\x11964/671.2\x2420061.1964/67 - 24.200600000ny a22002053n 4500078566711DE-10101000003820071026170550.0960603||||||||||||||||ger|||||||9-7DE-600(DE-601)003952940(DE-18)129058076201000-818HAMab1X/14743sk00DE-181.1\x11964/671.2\x2420061.1964/67 - 24.200600000ny a22001933n 450007856672XDE-10101000003820070719171459.0960603||||||||||||||||ger|||||||9-7DE-600(DE-601)004097122(DE-18-19)129058076201019-718/19HAMbd2DE-18-191.1\x11964/671.2\x2420061.1964/67 - 24.200600000ny a22001933n 4500091762030DE-10101000003820070917142250.0931008||||||||||||||||ger|||||||9-7DE-600(DE-604)8041017567106810001-919BAYad42002 A20022002/A 2109DE-191.1\x11964/671.2\x2420061.1964/67- 24.200600000ny a22001813n 4500111608104DE-10101000003820070302160419.0051207||||||||||||||||ger|||||||9-7DE-600781000-325BAWac1ZN 269000DE-251.1\x11964/671.2\x202000/021.1964/67 - 20.2000/0200000ny a22002173n 4500069930341DE-10101000003820070302160419.0980905||||||||||||||||ger|||||||9-7DE-600(DE-601)295952539(DE-27-26)129058076941026-027/26THUbd1BIO:ZT:5s00J 2609DE-27-261.1\x11964/671.2\x21966/691.1964/67 - 2.1966/6900000ny a22001933n 4500128116927DE-10101000003820070702171517.0070626||||||||||||||||ger|||||||9-7DE-600(DE-603)505865254601000-330HESac1SZ 236100DE-301.1\x119641.2\x2420061.1964/67 - 24.200600000ny a22002053n 4500070194726DE-10101000003820101112190830.0980222||||||||||||||||ger|||||||9-7DE-600(DE-601)23902172X(DE-33)129058076925300-233HAMab1Z 1386sk00DE-331.1\x11964/671.2\x1519901.1964/67 - 15.199000000ny a22002053n 4500070693285DE-10101000003820120202180749.0960603||||||||||||||||ger|||||||9-7DE-600(DE-601)125780664(DE-46)129058076281000-146HAMac1fb 5388dl00DE-461.1\x11964/19671.2\x61978/19791.1964/67 - 6.1978/7900000ny a22001933n 4500000001392DE-10101000003820070619140504.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)60-7670100-0107NRWac1Per. 615400DE-1071.1\x11964/671.2\x2420061.1964/67 - 24.200600000ny a22002293n 4500000001406DE-10101000003820070302160420.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)53-x170100-9109BERabRB1N 838/3500DE-1091.1\x819822.1\x1819972.2\x1919993.1\x2020028,1.1982; 18,2.1997 - 19,2.1999; 20,2.2002 - 24.2006Standort: BSTB00000ny a22002053n 4500000001414DE-10101000003820070302160420.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)2613502-4170100-9109BERabRB1Kg 375100DE-1091.1\x11964/671.2\x1819961.1964/67 - 18,1.1996Standort: BSTB00000ny a22002053n 4500000001422DE-10101000003820070302160420.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)52-8120000-8188BERac116 ZR 41/200DE-1881.1\x11964/671.2\x161992/931.1964/67 - 16.1992/93Bezug abgebrochen00000ny a22001933n 4500000001287DE-10101000003820100127212051.0991125||||||||||||||||ger|||||||9-7DE-600(DE-600)2694670-1130016-7B 16BERab1moll.09DE-B161.1\x11964/671.2\x2420061.1964/67 - 24.200600000ny a22001933n 4500068324197DE-10101000003820070302160421.0951118||||||||||||||||ger|||||||9-7DE-600(DE-604)8069042629438841000-8355BAYac288 A8888/WQ 801509DE-3551.1\x11964/672.1\x21966/691. 1964/67; 2. 1966/6900000ny a22002173n 4500000001457DE-10101000003820070302160421.0991125||||||||||||||||ger|||||||9-7DE-600(XX-XxUND)#SB:E160=1964-2002<19 QQ000 M062>%01#(DE-600)2899690-2481000-4361NRWac119 QQ000 M06200DE-3611.1\x11964/671.2\x202000/022.1\x2320051.1964/67 - 20.2000/02; 23.200500000ny a22001933n 4500077936205DE-10101000003820091118111155.0020415||||||||||||||||ger|||||||9-7DE-600958024-4Gl 1SAXab1Z Mal00DE-Gl11.1\x11964/671.2\x2420061.1964/67 - 24.2006[N=12.1987; 17.1994/95]00000ny a22001813n 4500117136735DE-10101000003820090804215445.0060620||||||||||||||||ger|||||||9-7DE-600958075-xD 5SAXab1Zz Eu Deu 00500DE-D51.1\x11964/671.2\x2420061.1964/67 - 24.200600000ny a22001933n 4500100728952DE-10101000003820070302160421.0050419||||||||||||||||ger|||||||9-7DE-600180085-1B 85BERac1I. A. 3. 1919600DE-B851.1\x11964/672.1\x31970/722.2\x2020011.1964/67; 3.1970/72 - 20.2001,100000ny a22001933n 4500127799672DE-10101000003820070621144927.0070621||||||||||||||||ger|||||||9-7DE-600708265-4Stg 265BAWbdI/401Mal-Z Malakologische Abhandlungen00DE-Stg2651.1\x11964/671.2\x2420061.1964/67 - 24.200600000ny a22001933n 4500106920979DE-10101000003820070926215419.0020729||||||||||||||||ger|||||||9-7DE-600(AT-9:OBV)001186302030032-9AT-ÖAWWEUbd00.018055700AT-OeAW-BA1.1\x11964/671.2\x2420061.1964/67 - 24.200600000ny a22001813n 4500106886347DE-10101000003820070926215419.0020612||||||||||||||||ger|||||||9-7DE-600(AT-9:OBV)001164588030039-1AT-LMOWEUbd00.01I-9352700AT-LMO-BIB1.1\x171994/9517.1994/95 -00000ny a22002173n 4500087807645DE-10101000004620120718171411.0010420||||||||||||||||ger|||||||10-3DE-600(DE-601)477858376(DE-7)129058084341000-67NIEab18 Z GEN 301sk00BBCSRE 370 a1 3 = 8 Z GEN 30109DE-71.1\x1/31922/491.2\x121922/59[1/3.]1922/49(1949); 4.1922/51(1951) - 12.1922/59(1960)00000ny a22002173n 4500087807653DE-10101000004620120718171412.0010420||||||||||||||||ger|||||||10-3DE-600(DE-601)477858384(DE-7)129058084341000-67NIEab2ZA 25002sk00BBCSRE 370 a1 3 = ZA 2500209DE-71.1\x131922/661.2\x151922/6213.1922/66(1961) - 15.1922/62(1964)00000ny a22002173n 4500061460613DE-10101000004620070627061749.0950325||||||||||||||||ger|||||||10-3DE-600(DE-604)8036057053731800100-512BAYac AZ 65.65700DE-121.1\x19492.1\x19511922/512.2\x19621922/621949=1922/49; 1951=4.1922/51 - 1962=15.1922/62(1964)QK-Imagenr.: 4090015900000ny a22001933n 4500000001503DE-10101000004620030714103138.0991125||||||||||||||||ger|||||||10-3DE-600(DE-600)65-6700100-924BAWac1Z 406300DE-241.1\x1/31922/491.2\x151922/62[1/3.]1922/49(1949) - 15.1922/62(1964)00000ny a22001933n 4500000001511DE-10101000004620030714103138.0991125||||||||||||||||ger|||||||10-3DE-600(DE-600)66-8781000-325BAWac1ZN 139700DE-251.1\x51922/531.2\x151922/625.1922/53 - 15.1922/6200000ny a22002053n 4500115941703DE-10101000004620060507174450.0060308||||||||||||||||ger|||||||10-3DE-600(DE-603)127272100601000-330HESac18° P 12.329/2800DE-301.1\x19222.1\x419222.2\x1519621922/49(1949); Suppl. 4.1922/51(1952) - 15.1922/62(1964)00000ny a22002053n 4500070693293DE-10101000004620030714103138.0960603||||||||||||||||ger|||||||10-3DE-600(DE-601)125780672(DE-46)129058084281000-146HAMac1b che 176 gd/568d00DE-461.1\x1/31922/491.2\x151922/621/3.1922/49(1949) - 15.1922/62(1964)00000ny a22002053n 4500000001538DE-10101000004620030714103139.0991125||||||||||||||||ger|||||||10-3DE-600(DE-600)63-2120000-8188BERac16 ZR 149/1 - 100DE-1881.1\x1/31922/492.1\x41922/512.2\x151922/62[1/3.]1922/49(1949); 4.1922/51(1951) - 15.1922/62(1964)00000ny a22002173n 4500106809318DE-10101000004620110725174319.0020114||||||||||||||||ger|||||||10-3DE-600(AT-9:OBV)001127658030015-9AT-UBTUW-HBWEUbd00.0173880 I00ZsMag09AT-UBTUW-HB1.1\x1922/492.1\x1922/511922/49; 1922/51An "La ricerca scientifica" angebunden00000ny a22001813n 4500211980749DE-10101000004620110725174319.0020114||||||||||||||||ger|||||||10-3DE-600(AT-9:OBV)001127658e2030015-9AT-UBTUW-HBWEUbd00.02AT-UBTUW-HB1.1\x141922/611.2\x151922/2214.1922/61 - 15.1922/2200000ny a22001813n 4500087767589DE-10101000005420080831000425.0030811||||||||||||||||ger|||||||12-7DE-600(XX-XxUND)0012/0004950200-2101aSAXabL-1943-0877675891ZB 2279600DE-101a6.1953 -00000ny a22001693n 4500089758668DE-10101000005420080831000425.0031002||||||||||||||||ger|||||||12-7DE-600600100-2101bHESbdF-1943-0897586681DZb 1013600DE-101b6.1953 - 12.198600000ny a22001933n 4500082748853DE-10101000005420070302160423.0991125||||||||||||||||ger|||||||12-7DE-600(DE-601)416869742(DE-1)129058092910107-x1BERac1Ogb 5/90<a>d00DE-11.1\x519435.194300000ny a22002053n 4500082748861DE-10101000005420070302160423.0991125||||||||||||||||ger|||||||12-7DE-600(DE-601)416869750(DE-1)129058092910107-x1BERac2Ogb 5/90u00DE-11.1\x719581.2\x1019697.1958 - 10.196900000ny a22002053n 450008274887XDE-10101000005420090102172138.0991125||||||||||||||||ger|||||||12-7DE-600(DE-601)416869769(DE-1)129058092910107-x1BERac341 SA 154ul00Außenmagazin09DE-11.1\x12198612.198600000ny a22002053n 4500171332245DE-10101000005420100316170005.0960603||||||||||||||||ger|||||||12-7DE-600(DE-601)219297665(DE-3)129058092931000-93SAAab1Tb 25 o 8°k00DE-31.1\x519431.2\x719585.1943 - 7.195800000ny a22002053n 4500171332253DE-10101000005420100316170006.0960603||||||||||||||||ger|||||||12-7DE-600(DE-601)219297673(DE-3)129058092931000-93SAAab2ZA 8646k00DE-31.1\x819631.2\x1119738.1963 - 11.197300000ny a22001933n 4500054980496DE-10101000005420110726215639.0070417||||||||||||||||ger|||||||12-7DE-600(DE-603)040156680351000-14HESac1XII C 153 acn00DE-41.1\x619531.2\x1219866.1953 - 12.198600000ny a22001933n 450005498050XDE-10101000005420110726215639.0021223||||||||||||||||ger|||||||12-7DE-600(DE-603)116816279351110-84/110HESac2U 10/3600DE-4-1101.1\x619531.2\x1119736.1953 - 11.197300000ny a22001813n 4500054980526DE-10101000005420110726215639.0000322||||||||||||||||ger|||||||12-7DE-600(DE-603)141917237351123-64/123HESbd3C 5/3000DE-4-1231.1\x919679.196700000ny a22001933n 4500000001635DE-10101000005420100611173000.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)87-5531014-35 NNRWac1Z 53/18700DE-5N1.1\x619531.2\x1119736.1953 - 11.197300000ny a22001933n 4500000001643DE-10101000005420070302160424.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)88-7532030-65/30NRWbd1DE-5-301.1\x519432.1\x619532.2\x1119735.1943; 6.1953 - 11.197300000ny a22002053n 4500000001651DE-10101000005420070302160425.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)83-8441000-26NRWac21Z 772700DE-61.1\x619531.2\x1119732.1\x1219866.1953 - 11.1973; 12.198600000ny a22002053n 4500087807661DE-10101000005420070302160425.0940801||||||||||||||||ger|||||||12-7DE-600(DE-601)129217654(DE-7)129058092341000-67NIEac18 Z TECHN 224b00DE-71.1\x519431.2\x1219865.1943 - 12.198600000ny a22002173n 4500069435480DE-10101000005420070302160425.0960802||||||||||||||||ger|||||||12-7DE-600(DE-601)001643827(DE-8)129058092231000-48HAMac1X 4818ul00DE-81.1\x619531.2\x1119736.1953 - 11.1973*100000ny a22002053n 4500108582965DE-10101000005420070302160426.0960801||||||||||||||||ger|||||||12-7DE-600(DE-601)215775473(DE-9)129058092922000-89HAMac1Ki 246:2k00DE-91.1\x719581.2\x1119737.1958 - 11.197300000ny a22002173n 4500000001708DE-10101000005420110817153136.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)4884759-8951000-x14/00SAXac101 8 0114200DE-14-001.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.198600000ny a22001933n 4500000001716DE-10101000005420070302160427.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)3025935-6952000-415SAXab159-7-4000DE-151.1\x719581.2\x1219867.1958 - 12.198600000ny a22002053n 4500000001724DE-10101000005420091215214902.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)97-8691000-216BAWac1ZSN 2958 B00DE-161.1\x619531.2\x1119732.1\x1219866.1953 - 11.1973; 12.198600000ny a22001693n 4500100152651DE-10101000005420091215214902.0050210||||||||||||||||ger|||||||12-7DE-600691121-316/121BAWbd1Hdb00DE-16-1211.1\x12198612.198600000ny a22001933n 4500054980429DE-10101000005420100115172110.0100112||||||||||||||||ger|||||||12-7DE-600(DE-603)060078030611000-917HESac1Zs 874100DE-171.1\x519431.2\x1219865.1943 - 12.198600000dy a22002053n 4500054980437DE-10101000005420120821180010.0100126||||||||||||||||ger|||||||12-7DE-600(DE-603)060078057611000-917HESac2Zs 8741 a00DE-171.1\x719581.2\x1119732. Ex.7.1958 - 11.197300000ny a22002053n 4500078965918DE-10101000005420070302160428.0960603||||||||||||||||ger|||||||12-7DE-600(DE-601)003788512(DE-18)129058092201000-818HAMac1Y/2000s00DE-181.1\x619531.2\x1119736.1953 - 11.197300000ny a22002173n 4500078965926DE-10101000005420070302160428.0010504||||||||||||||||ger|||||||12-7DE-600(DE-601)485293382(DE-18-47)129058092201047-118/47HAMbd2E 3/47in00DE-18-471.1\x519431.2\x919675.1943 - 9.1967Standort : Magazin00000ny a22002053n 4500078965934DE-10101000005420070302160428.0010504||||||||||||||||ger|||||||12-7DE-600(DE-601)485293390(DE-18-269)129058092201269-818/269HAMbd342.72 Techin00DE-18-2691.1\x1019692.1\x12198610.1969; 12.198600000ny a22002293n 4500098663895DE-10101000005420070302160428.0970607||||||||||||||||ger|||||||12-7DE-600(DE-601)238319369(DE-18-302)129058092201302-218/302HAMbd1Ea 109i00DE-18-3021.1\x619531.2\x719582.1\x919672.2\x1119736.1953 - 7.1958; 9.1967 - 11.197300000ny a22001933n 4500062014919DE-10101000005420070302160429.0960809||||||||||||||||ger|||||||12-7DE-600(DE-604)8039003086062805200-1M 347BAYac200 A0000/ZG 8600 L84609DE-M3471.1\x1019692.1\x12198610.1969 ; 12.198600000ny a22002293n 4500089720008DE-10101000005420081128150025.0030801||||||||||||||||ger|||||||12-7DE-600(DE-604)8057001733222808908-5210BAYab41000 AZA 113100100009DE-2101.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.1986; damit Ersch. eingest.00000ny a22001813n 4500091762049DE-10101000005420070302160429.0940506||||||||||||||||ger|||||||12-7DE-600(DE-604)8041020721145810001-919BAYad41603 A16031603/Z 2 Osr 00109DE-191.1\x719587.195800000ny a22001813n 4500091762057DE-10101000005420091209141124.0971006||||||||||||||||ger|||||||12-7DE-600(DE-604)8041030626447810001-919BAYab41801 A18011801/VB 4010 L84609DE-191.1\x12198612.198600000ny a22001933n 4500062015028DE-10101000005420070302160429.0960729||||||||||||||||ger|||||||12-7DE-600(DE-604)8079015912574871000-420BAYad BZ 53.26809DE-201.1\x619531.2\x1219866.1953-12.198600000ny a22001933n 4500000001848DE-10101000005420070302160430.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)109-0741000-121BAWac1El 123600DE-211.1\x619531.2\x1019696.1953 - 10.196900000ny a22001933n 4500000001856DE-10101000005420070302160430.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)100-4700100-924BAWac1Z 584200DE-241.1\x819631.2\x1219868.1963 - 12.198600000ny a22001933n 4500000001864DE-10101000005420070302160431.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)113-2781000-325BAWac1U 507200DE-251.1\x619531.2\x919676.1953 - 9.196700000ny a22001933n 4500000001872DE-10101000005420070302160431.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)113-2781000-325BAWac2ZN 95500DE-251.1\x1019691.2\x12198610.1969 - 12.198600000ny a22002053n 450005498047XDE-10101000005420070302160431.0021223||||||||||||||||ger|||||||12-7DE-600(DE-603)000086479631000-x26HESac1ZZ 53/25000DE-261.1\x219312.1\x619532.2\x1119732.1931; 6.1953 - 11.1973; (00=8.)00000ny a22002293n 4500069640572DE-10101000005420070302160431.0960603||||||||||||||||ger|||||||12-7DE-600(DE-601)125587244(DE-27)129058092941000-427THUac18 Z 1463s00Mag09DE-271.1\x619531.2\x1119732.1\x1219866.1953 - 11.1973; 12.198600000ny a22002053n 4500156423294DE-10101000005420090602173350.0980718||||||||||||||||ger|||||||12-7DE-600(DE-601)196319285(DE-28)129058092921000-328HAMac1O-3171bl0028-MAG09DE-281.1\x719587.195800000ny a22002173n 4500156423308DE-10101000005420090602173350.0980718||||||||||||||||ger|||||||12-7DE-600(DE-601)291072313(DE-28)129058092921000-328HAMac2ZB 793bl0028/BB1-MAG09DE-281.1\x819631.2\x1219868.1963 - 12.198600000ny a22001933n 4500062014986DE-10101000005420080304121733.0961101||||||||||||||||ger|||||||12-7DE-600(DE-604)8028027344606851000-329BAYacH200 AH00H00/4 TECHN.A 47609DE-291.1\x619531.2\x919676.1953 - 9.196700000ny a22002053n 450006201501XDE-10101000005420070418215641.0961101||||||||||||||||ger|||||||12-7DE-600(DE-604)8028027344622851036-229 TBAYad209GP202 A09GP0209GP02/6.1 O8309DE-29T1.1\x619531.2\x1119732.1\x1219866.1953 - 11.1973; 12.198600000ny a22002173n 4500062014994DE-10101000005420070418215641.0961101||||||||||||||||ger|||||||12-7DE-600(DE-604)8028027344630851036-229 TBAYac214HT A14HT14HT/D 4209DE-29T1.1\x619532.1\x819633.1\x1019694.1\x1119736.1953; 8.1963; 10.1969; 11.197300000ny a22002053n 4500062015001DE-10101000005420120308172606.0961101||||||||||||||||ger|||||||12-7DE-600(DE-604)8028027344614851036-229 TBAYacT200 AT00T00/elt 12-609DE-29T1.1\x619531.2\x1119732.1\x1219866.1953 - 11.1973; 12.198600000ny a22001933n 4500115422862DE-10101000005420070302160433.0060307||||||||||||||||ger|||||||12-7DE-600(DE-603)03610129x601000-330HESac1SZ 41700DE-301.1\x619531.2\x1219866.1953 - 12.198600000ny a22002053n 450000000197XDE-10101000005420100310100309.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)110-7750100-631BAWac1ZB 72300DE-311.1\x619531.2\x1219866.1953 - 12.1986Desiderat: [N=5]00000ny a22002173n 4500099032597DE-10101000005420070302160434.0941002||||||||||||||||ger|||||||12-7DE-600(DE-601)138217661(DE-35)129058092300100-335NIEac1(Zs 2497)u00DE-351.1\x619531.2\x1019692.1\x1219866.1953 - 10.1969; 12.198600000ny a22001933n 450005337164XDE-10101000005420070302160434.0991229||||||||||||||||ger|||||||12-7DE-600(DE-600)85-1501000-738NRWac1Uaa21500DE-381.1\x519431.2\x1219865.1943 - 12.198600000ny a22002173n 4500070693307DE-10101000005420070302160435.0960603||||||||||||||||ger|||||||12-7DE-600(DE-601)125780680(DE-46)129058092281000-146HAMac1fc 7500d00DE-461.1\x719581.2\x1119732.1\x1219867.1958 - 11.1973; 12.198600000ny a22002053n 4500000002011DE-10101000005420091203152846.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)81-4401000-061NRWab1za 7864009009DE-611.1\x719581.2\x1219867.1958 - 12.198600000ny a22002053n 4500080648142DE-10101000005420070302160436.0021017||||||||||||||||ger|||||||12-7DE-600(DE-603)176685871651006-177/PMCHESac1ZZ 9451l00PMC09DE-77-PMC1.1\x619531.2\x1219866.1953 - 12.198600000ny a22002053n 4500000002046DE-10101000005420070302160436.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)86-3511000-282NRWac11Za118700DE-821.1\x519431.2\x1119732.1\x1219865.1943 - 11.1973; 12.198600000ny a22002053n 4500000002054DE-10101000005420090828170159.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)67-x110000-283BERab214Z44000ZFMAG09DE-831.1\x519431.2\x1219865.1943 - 12.198600000ny a22002053n 4500073920819DE-10101000005420090619171946.0941008||||||||||||||||ger|||||||12-7DE-600(DE-601)133688925(DE-84)129058092331000-084NIEac1UBbl00DE-841.1\x619531.2\x1119736.1973 - 1100000ny a22002173n 4500081753985DE-10101000005420070302160437.0940912||||||||||||||||ger|||||||12-7DE-600(DE-601)139709266(DE-89)129058092301000-489NIEac1ZS 230 k00Haus209DE-891.1\x519431.2\x1219865.1943 - 12.198600000ny a22002293n 4500000002089DE-10101000005420070302160438.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)111-9751000-790BAWac1ZE 112000DE-901.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.19867-10 u. 12 in 2 Ex. vorh.00000ny a22001933n 4500091292794DE-10101000005420070302160438.0900326||||||||||||||||ger|||||||12-7DE-600(DE-604)8040009435697820001-491BAYac40022 A00220022/IV 44209DE-911.1\x519431.2\x1219865.1943 - 12.198600000ny a22001813n 4500091292808DE-10101000005420070302160438.0900326||||||||||||||||ger|||||||12-7DE-600(DE-604)8040009435719820001-491BAYad40811 A08110811/Ohne Sign.09DE-911.1\x719587.195800000ny a22001933n 4500091292816DE-10101000005420070302160438.0900326||||||||||||||||ger|||||||12-7DE-600(DE-604)8040009435727820001-491BAYad40826 A08260826/B.312009DE-911.1\x719581.2\x819637.1958 - 8.196300000ny a22001933n 4500000002143DE-10101000005420070302160439.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)101-6701000-x93BAWac12Ca 136800DE-931.1\x519431.2\x1219865.1943 - 12.198600000ny a22001933n 4500000002151DE-10101000005420070302160439.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)102-8701002-393/2BAWbd1DE-93-21.1\x619531.2\x1119736.1953 - 11.1973[N=8-10]00000ny a22001813n 450000000216XDE-10101000005420070302160439.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)4891131-8701050-393/50BAWbd1m 8500DE-93-501.1\x719587.195800000ny a22001813n 4500000002178DE-10101000005420070302160439.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)104-1701101-593/101BAWbd1DE-93-1011.1\x919671.2\x1119739.1967 - 11.197300000ny a22001813n 4500000002186DE-10101000005420071022103224.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)105-3701114-393/114BAWbd1Einzelsignatur00DE-93-1141.1\x619536.195300000ny a22001933n 4500000002194DE-10101000005420070302160439.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)106-5701168-493/168BAWbd1DE-93-1681.1\x719581.2\x1019697.1958 - 10.1969[N=8]00000ny a22002173n 4500099330369DE-10101000005420070302160439.0970919||||||||||||||||ger|||||||12-7DE-600(DE-601)131156209(DE-104)129058092333000-x104NIEac1Za 2314f00DE-1041.1\x719581.2\x1119732.1\x1219867.1958 - 11.1973; 12.198600000ny a22002053n 4500000002232DE-10101000005420080630123903.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)71-1170100-9109BERabRWE1T 595/3600DE-1091.1\x919671.2\x1119739.1967 - 11.1973Standort: Außenmagazin00000ny a22002053n 4500000002240DE-10101000005420080603005032.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)68-1120000-8188BERac14° @3 ZR 26500DE-1881.1\x619531.2\x919672.1\x1219866.1953 - 9.1967; 12.198600000ny a22001813n 4500140549412DE-10101000005420080603005032.0080602||||||||||||||||ger|||||||12-7DE-600120814-7188/814BERbd1DE-188-8141.1\x619531.2\x1019692.1\x1219866.1953 - 10.1969; 12.198600000ny a22002173n 4500000002267DE-10101000005420070302160441.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)84-x463000-2290NRWac1ZN 30100DE-2901.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.198600000ny a22001933n 4500000002275DE-10101000005420070302160441.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)96-6661000-6291BAWac1Z 27800DE-2911.1\x519431.2\x1119735.1943 - 11.197300000ny a22002053n 4500062015036DE-10101000005420070302160442.0961219||||||||||||||||ger|||||||12-7DE-600(DE-604)8006001019228892001-1Aug 4BAYac201 A10346 [u.a.]l000109DE-Aug41.1\x819631.2\x1119738. 1963 - 11. 197300000ny a22001933n 4500000002291DE-10101000005420070302160442.0991125||||||||||||||||ger|||||||12-7DE-600(XX-XxUND)#SB:A440=1986<D 40/88 Z 132>%01#(DE-600)82-6411000-6464NRWacA1D 40/88 Z 13200DE-4641.1\x12198612.198600000ny a22001453n 4500000002305DE-10101000005420120210125532.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)2266620-5471000-9466NRWacDE-466Ausgesondert00000ny a22002053n 4500000002313DE-10101000005420070302160443.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)89-9591000-6467NRWac1S 04-88 T 100DE-4671.1\x619531.2\x719582.1\x1119736.1953 - 7.1958; 11.197300000ny a22001813n 4500000002321DE-10101000005420070302160444.0991125||||||||||||||||ger|||||||12-7DE-600(DE-600)2993965-3291000-7715NIEac1ing SA 007900DE-7151.1\x11197311.197300000ny a22002053n 4500073124486DE-10101000005420070302160444.0951014||||||||||||||||ger|||||||12-7DE-600(DE-601)167386506(DE-830)129058092203000-7830HAMac1Einzelsign.f00DE-8301.1\x619531.2\x1219866.1953 - 12.198600000ny a22002173n 4500168652226DE-10101000005420100119170053.0000418||||||||||||||||ger|||||||12-7DE-600(DE-601)125587252(DE-Ilm1)129058092946000-7Ilm 1THUac174 A 17ul009109DE-Ilm11.1\x519431.2\x1219865.1943-12.198600000ny a22002413n 450021206147XDE-10101000005420110726165503.0991125||||||||||||||||ger|||||||12-7DE-600(DE-601)851894976(DE-B108)129058092180108-9B 108BERab2Zeitschrift Bsk00DE-B1081.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.1986Standort: Mag. 2, Reg. 5 (s. Osram)00000ny a22002413n 4500212094556DE-10101000005420110726172741.0061215||||||||||||||||ger|||||||12-7DE-600(DE-601)12630744X(DE-Bs68)129058092338068-3Bs 68NIEab1Zeitschriftsk00K109DE-Bs681.1\x519432.1\x619532.2\x1119733.1\x1219865.1943; 6.1953 - 11.1973; 12.198600000ny a22002173n 4500134201566DE-10101000005420110517214444.0940507||||||||||||||||ger|||||||12-7DE-600(DE-601)125211449(DE-Goe116)129058092348116-5Gö 116NIEad1C 1/12n00DE-Goe1161.1\x719582.1\x1119733.1\x1219867.1958; 11.1973; 12.198600000ny a22002053n 4500076510662DE-10101000005420110517214444.0020114||||||||||||||||ger|||||||12-7DE-600(DE-601)54151671X(DE-542)129058092934000-2542SAAac1FH 2001:6776/1u00WA09DE-5421.1\x719587.195800000ny a22002173n 4500075392372DE-10101000005420110517214444.0960101||||||||||||||||ger|||||||12-7DE-600(DE-601)158931084(DE-Wim2)129058092947200-9Wim 2THUab1Z 823fk00Mag09DE-Wim21.1\x719581.2\x1219867.1958 - 12.198600000ny a22002053n 4500075447274DE-10101000005420110517214444.0030522||||||||||||||||ger|||||||12-7DE-600(DE-601)312273797(DE-J59)129058092948737-2J 59THUac1Alphabetische Aufstellungf00UZ09DE-J591.1\x11197311.197300000ny a22001573n 4500074234897DE-10101000005420070302160446.0010810||||||||||||||||ger|||||||12-7DE-600438301-1Mm 1aNRWac1DE-Mm1a1.1\x619536.195300000ny a22001693n 4500121871495DE-10101000005420070302160447.0061128||||||||||||||||ger|||||||12-7DE-600181550-7B 1550BERbd1DE-B15501.1\x619531.2\x1119736.1953 - 11.197300000ny a22001813n 4500181861380DE-10101000005420100706214358.0020513||||||||||||||||ger|||||||12-7DE-600(AT-9:OBV)001156687030014-7AT-UBTUG-HBWEUac00.01Z I 86.55500AT-UBTUG-HB1.1\x10196910.196900000ny a22001813n 4500107138662DE-10101000005420100706214358.0031204||||||||||||||||ger|||||||12-7DE-600(AT-9:OBV)001299629030015-9AT-UBTUW-HBWEUbd00.01AT-UBTUW-HB1.1\x519431.2\x1219865.1943 - 12.198600000ny a22002173n 4500212146254DE-10101000005420120314192738.0100923||||||||||||||||ger|||||||12-7DE-600(AT-9:OBV)002473920a030060-3AT-UBW-071WEUbd00.01167200Tiefspeicher09AT-UBW-0711.1\x519431.2\x1019695.1943 - 10.196900000ny a22001933n 4500603417809DE-10101000006220080906233227.0030811||||||||||||||||ger|||||||13-9DE-600(XX-XxUND)0008/0547950200-2101aSAXabL-1961-6034178091ZA 80304Bd.46.1990/91 - 56.200600ZD 499Bd.26.1961/64 - 45.198901DE-101a26.1961/64(1961) - 56.200600000ny a22001693n 4500612626458DE-101010000062 \ No newline at end of file